[
  {
    "path": ".github/workflows/docs.yml",
    "content": "name: docs\n\non:\n  # trigger deployment on every push to main branch\n  push:\n    branches: [docs]\n  # trigger deployment manually\n  workflow_dispatch:\n\npermissions:\n  pages: write\n  contents: write\n  id-token: write\n\njobs:\n  docs:\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v3\n        with:\n          # fetch all commits to get last updated time or other git log info\n          fetch-depth: 0\n          ref: docs\n\n      # - name: Setup pnpm\n      #   uses: pnpm/action-setup@v2\n      #   with:\n      #     # choose pnpm version to use\n      #     version: 7\n      #     # install deps with pnpm\n      #     run_install: true\n\n      - name: Setup Node.js\n        uses: actions/setup-node@v3\n        with:\n          # choose node.js version to use\n          node-version: 18\n          cache: npm\n\n      # run build script\n      - name: Build VuePress site\n        run: |\n          npm install\n          npm run build\n      - name: Setup Pages\n        uses: actions/configure-pages@v3\n      - name: Upload artifact\n        uses: actions/upload-pages-artifact@v1\n        with:\n          # Upload entire repository\n          path: './docs/.vuepress/dist'\n      - name: Deploy to GitHub Pages\n        id: deployment\n        uses: actions/deploy-pages@v2\n"
  },
  {
    "path": ".github/workflows/node-vless-docker.yml",
    "content": "name: node-vless-docker\non:\n  workflow_dispatch:\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v2\n      # - name: Use Node.js\n      #   uses: actions/setup-node@v1\n      #   with:\n      #     node-version: 18.x\n      # - name: Run a multi-line script\n      #   run: |\n      #     npm install\n      #     npm run node-vless:bunled\n      - name: Set up QEMU\n        uses: docker/setup-qemu-action@v1\n      - name: Set up Docker Buildx\n        id: buildx\n        uses: docker/setup-buildx-action@v1\n        with:\n          install: true\n      - name: Login to DockerHub\n        uses: docker/login-action@v2\n        with:\n          username: ${{ secrets.DOCKERHUB_USERNAME }}\n          password: ${{ secrets.DOCKERHUB_TOKEN }}\n      - name: Build and push\n        uses: docker/build-push-action@v3\n        with:\n          # context: ./temp11\n          platforms: linux/amd64,linux/arm64\n          push: true\n          tags: zizifn/node-vless:latest,zizifn/node-vless:1.0.${{ github.run_number }}"
  },
  {
    "path": ".github/workflows/nodejs.yml",
    "content": "# This is a basic workflow to help you get started with Actions\n\nname: npm-install\n\n# Controls when the action will run.\non:\n  # Triggers the workflow on push or pull request events but only for the master branch\n  # push:\n  #   branches: [master]\n  # pull_request:\n  #   branches: [master]\n\n  # Allows you to run this workflow manually from the Actions tab\n  workflow_dispatch:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n  # This workflow contains a single job called \"build\"\n  build:\n    # The type of runner that the job will run on\n    runs-on: ubuntu-latest\n\n    # Steps represent a sequence of tasks that will be executed as part of the job\n    steps:\n      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n      - uses: actions/checkout@v2\n      - name: Use Node.js\n        uses: actions/setup-node@v1\n        with:\n          node-version: 18.x\n\n      #\n      # - name: add ssh script\n      #   run: |\n      #     echo Hello, world!\n      #   # check ssh or install ssh\n      #     command -v ssh-agent >/dev/null || (apt-get update -y && apt-get install openssh-client -y)\n      #     eval $(ssh-agent -s)\n      #     echo $SSH_PRIVATE_KEY | tr -d '\\r' | ssh-add -\n      #     mkdir -p ~/.ssh && chmod 700 ~./.ssh\n      #     echo $SSH_KNOW_HOSTS >> ~./.ssh/known_hosts && chmod 644 ~./.ssh/known_hosts\n      #     ssh root@host\n\n      # Runs a set of commands using the runners shell\n      - name: Run a multi-line script\n        run: |\n          npm install"
  },
  {
    "path": ".github/workflows/remove-old-artifacts.yml",
    "content": "name: Remove old artifacts\n\non:\n  workflow_dispatch:\n\njobs:\n  remove-old-artifacts:\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n\n    steps:\n    - name: Remove old artifacts\n      uses: c-hive/gha-remove-artifacts@v1\n      with:\n        age: '2 years' # '<number> <unit>', e.g. 5 days, 2 years, 90 seconds, parsed by Moment.js\n        # Optional inputs\n        # skip-tags: true\n        # skip-recent: 5\n"
  },
  {
    "path": ".github/workflows/version-comment.yml",
    "content": "name: Add Version Comment\n\non:\n  # trigger deployment on every push to main branch\n  push:\n    branches: [main]\n  # trigger deployment manually\n  workflow_dispatch:\n\npermissions:\n  contents: write\n\njobs:\n  version-comment:\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v3\n      - name: Modify version worker-vless.js\n        uses: jaywcjlove/github-action-modify-file-content@main\n        with:\n          path: src/worker-vless.js\n          body: \"version base on commit ${{ github.sha }}, time is {{date:YYYY-MM-DD HH:mm:ss}} UTC\"\n          message: \"Update version worker-vless.js\"\n      - name: Modify version worker-with-socks5-experimental.js\n        uses: jaywcjlove/github-action-modify-file-content@main\n        with:\n          path: src/worker-with-socks5-experimental.js\n          body: \"version base on commit ${{ github.sha }}, time is {{date:YYYY-MM-DD HH:mm:ss}} UTC\"\n          message: \"Update version worker-with-socks5-experimental.js\"\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\n/node_modules\n*-lock.*\n*.lock\n*.log\ndist"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The licenses for most software are designed to take away your\nfreedom to share and change it.  By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users.  This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it.  (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.)  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n  To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have.  You must make sure that they, too, receive or can get the\nsource code.  And you must show them these terms so they know their\nrights.\n\n  We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n  Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware.  If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n  Finally, any free program is threatened constantly by software\npatents.  We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary.  To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                    GNU GENERAL PUBLIC LICENSE\n   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n  0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License.  The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage.  (Hereinafter, translation is included without limitation in\nthe term \"modification\".)  Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope.  The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n  1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n  2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n    a) You must cause the modified files to carry prominent notices\n    stating that you changed the files and the date of any change.\n\n    b) You must cause any work that you distribute or publish, that in\n    whole or in part contains or is derived from the Program or any\n    part thereof, to be licensed as a whole at no charge to all third\n    parties under the terms of this License.\n\n    c) If the modified program normally reads commands interactively\n    when run, you must cause it, when started running for such\n    interactive use in the most ordinary way, to print or display an\n    announcement including an appropriate copyright notice and a\n    notice that there is no warranty (or else, saying that you provide\n    a warranty) and that users may redistribute the program under\n    these conditions, and telling the user how to view a copy of this\n    License.  (Exception: if the Program itself is interactive but\n    does not normally print such an announcement, your work based on\n    the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole.  If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works.  But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n  3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n    a) Accompany it with the complete corresponding machine-readable\n    source code, which must be distributed under the terms of Sections\n    1 and 2 above on a medium customarily used for software interchange; or,\n\n    b) Accompany it with a written offer, valid for at least three\n    years, to give any third party, for a charge no more than your\n    cost of physically performing source distribution, a complete\n    machine-readable copy of the corresponding source code, to be\n    distributed under the terms of Sections 1 and 2 above on a medium\n    customarily used for software interchange; or,\n\n    c) Accompany it with the information you received as to the offer\n    to distribute corresponding source code.  (This alternative is\n    allowed only for noncommercial distribution and only if you\n    received the program in object code or executable form with such\n    an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it.  For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable.  However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n  4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License.  Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n  5. You are not required to accept this License, since you have not\nsigned it.  However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works.  These actions are\nprohibited by law if you do not accept this License.  Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n  6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions.  You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n  7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all.  For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices.  Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n  8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded.  In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n  9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number.  If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation.  If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n  10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission.  For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this.  Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n                            NO WARRANTY\n\n  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software; you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation; either version 2 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License along\n    with this program; if not, write to the Free Software Foundation, Inc.,\n    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n    Gnomovision version 69, Copyright (C) year name of author\n    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, the commands you use may\nbe called something other than `show w' and `show c'; they could even be\nmouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary.  Here is a sample; alter the names:\n\n  Yoyodyne, Inc., hereby disclaims all copyright interest in the program\n  `Gnomovision' (which makes passes at compilers) written by James Hacker.\n\n  <signature of Ty Coon>, 1 April 1989\n  Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program into\nproprietary programs.  If your program is a subroutine library, you may\nconsider it more useful to permit linking proprietary applications with the\nlibrary.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.\n"
  },
  {
    "path": "README.md",
    "content": "------\n"
  },
  {
    "path": "config/config-client-with-dns-lcoal.json",
    "content": "{\n  \"log\": {\n    \"loglevel\": \"debug\"\n  },\n  \"inbounds\": [\n    {\n      \"listen\": \"0.0.0.0\",\n      \"port\": \"4080\",\n      \"protocol\": \"socks\",\n      \"settings\": {\n        \"auth\": \"noauth\",\n        \"udp\": true,\n        \"ip\": \"0.0.0.0\"\n      }\n    },\n    {\n      \"listen\": \"0.0.0.0\",\n      \"port\": \"4081\",\n      \"protocol\": \"http\"\n    }\n  ],\n  \"dns\": {\n    \"servers\": [\"8.8.8.8\"]\n  },\n  \"outbounds\": [\n    {\n      \"protocol\": \"vless\",\n      \"settings\": {\n        \"vnext\": [\n          {\n            \"address\": \"127.0.0.1\",\n            \"port\": 8788,\n            \"users\": [\n              {\n                \"id\": \"1a403b79-039b-4dc2-9b45-1ad13197b99a\",\n                \"encryption\": \"none\",\n                \"level\": 0\n              }\n            ]\n          }\n        ]\n      },\n      \"streamSettings\": {\n        \"network\": \"ws\",\n        \"wsSettings\": {\n          \"path\": \"/vless\"\n        }\n        // \"security\": \"tls\"\n      },\n      \"tag\": \"zizi-ws\"\n    },\n    {\n      \"protocol\": \"freedom\",\n      \"tag\": \"direct\"\n    }\n  ],\n  \"routing\": {\n    \"domainStrategy\": \"IPIfNonMatch\",\n    \"rules\": [\n      {\n        \"type\": \"field\",\n        \"ip\": [\"8.8.8.8\"],\n        \"outboundTag\": \"zizi-ws\"\n      },\n      {\n        \"type\": \"field\",\n        \"ip\": [\"geoip:private\"],\n        \"outboundTag\": \"zizi-ws\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "config/config-client-without-dns-lcoal.json",
    "content": "{\n  \"log\": {\n    \"loglevel\": \"debug\"\n  },\n  \"inbounds\": [\n    {\n      \"listen\": \"0.0.0.0\",\n      \"port\": \"4080\",\n      \"protocol\": \"socks\",\n      \"settings\": {\n        \"auth\": \"noauth\",\n        \"udp\": true,\n        \"ip\": \"0.0.0.0\"\n      }\n    },\n    {\n      \"listen\": \"0.0.0.0\",\n      \"port\": \"4081\",\n      \"protocol\": \"http\"\n    }\n  ],\n  \"dns\": {\n    \"servers\": [\"8.8.8.8\"]\n  },\n  \"outbounds\": [\n    {\n      \"protocol\": \"vless\",\n      \"settings\": {\n        \"vnext\": [\n          {\n            \"address\": \"127.0.0.1\",\n            \"port\": 8787,\n            \"users\": [\n              {\n                \"id\": \"1a403b79-039b-4dc2-9b45-1ad13197b99a\",\n                \"encryption\": \"none\",\n                \"level\": 0\n              }\n            ]\n          }\n        ]\n      },\n      \"streamSettings\": {\n        \"network\": \"ws\"\n        // \"wsSettings\": {\n        //   \"path\": \"/node-vless\"\n        // }\n        // \"security\": \"tls\"\n      },\n      \"tag\": \"zizi-ws\"\n    },\n    {\n      \"protocol\": \"freedom\",\n      \"tag\": \"direct\"\n    }\n  ],\n  \"routing\": {\n    \"domainStrategy\": \"IPIfNonMatch\",\n    \"rules\": [\n      {\n        \"type\": \"field\",\n        \"ip\": [\"8.8.8.8\"],\n        \"outboundTag\": \"zizi-ws\"\n      },\n      {\n        \"type\": \"field\",\n        \"ip\": [\"geoip:private\"],\n        \"outboundTag\": \"zizi-ws\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "jsonconfig.json",
    "content": "{\n\t\"compilerOptions\": {\n\t\t\"noEmit\": true,\n\t\t\"module\": \"esnext\",\n\t\t\"target\": \"ES2022\",\n\t\t\"lib\": [\"ES2022\"],\n\t\t\"strict\": true,\n\t\t\"alwaysStrict\": true,\n\t\t\"preserveConstEnums\": true,\n\t\t\"moduleResolution\": \"node\",\n\t\t\"sourceMap\": true,\n\t\t\"types\": [\"@cloudflare/workers-types\"]\n\t},\n\t\"include\": [\"src\"],\n\t\"exclude\": [\"node_modules\", \"dist\", \"test\"]\n}"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"edgetunnel\",\n  \"version\": \"1.0.0\",\n  \"description\": \"Delete code, but keep the project for the sake of memories. I'm only create this project for fun, for try new things and for learn by doing. **I'm even not write any outside marketing post for this project. Just for my own fun...** But I feel emotional damage by the community.\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"deploy\": \"wrangler publish\",\n    \"dev-vless\": \"wrangler dev src/worker-vless.js\"\n  },\n  \"author\": \"\",\n  \"license\": \"ISC\",\n  \"devDependencies\": {\n    \"@cloudflare/workers-types\": \"^4.20230518.0\",\n    \"wrangler\": \"^3.1.0\"\n  },\n  \"dependencies\": {\n    \"dns-packet\": \"^5.6.0\",\n    \"ip-cidr\": \"^3.1.0\",\n    \"ip-range-check\": \"^0.2.0\",\n    \"ipaddr.js\": \"^2.0.1\"\n  }\n}\n"
  },
  {
    "path": "src/worker-vless.js",
    "content": "// <!--GAMFC-->version base on commit 58686d5d125194d34a1137913b3a64ddcf55872f, time is 2024-11-27 09:26:01 UTC<!--GAMFC-END-->.\n// @ts-ignore\nimport { connect } from 'cloudflare:sockets';\n\n// How to generate your own UUID:\n// [Windows] Press \"Win + R\", input cmd and run:  Powershell -NoExit -Command \"[guid]::NewGuid()\"\nlet userID = 'd342d11e-d424-4583-b36e-524ab1f0afa4';\n\nlet proxyIP = '';\n\n\nif (!isValidUUID(userID)) {\n\tthrow new Error('uuid is not valid');\n}\n\nexport default {\n\t/**\n\t * @param {import(\"@cloudflare/workers-types\").Request} request\n\t * @param {{UUID: string, PROXYIP: string}} env\n\t * @param {import(\"@cloudflare/workers-types\").ExecutionContext} ctx\n\t * @returns {Promise<Response>}\n\t */\n\tasync fetch(request, env, ctx) {\n\t\ttry {\n\t\t\tuserID = env.UUID || userID;\n\t\t\tproxyIP = env.PROXYIP || proxyIP;\n\t\t\tconst upgradeHeader = request.headers.get('Upgrade');\n\t\t\tif (!upgradeHeader || upgradeHeader !== 'websocket') {\n\t\t\t\tconst url = new URL(request.url);\n\t\t\t\tswitch (url.pathname) {\n\t\t\t\t\tcase '/':\n\t\t\t\t\t\treturn new Response(JSON.stringify(request.cf), { status: 200 });\n\t\t\t\t\tcase `/${userID}`: {\n\t\t\t\t\t\tconst vlessConfig = getVLESSConfig(userID, request.headers.get('Host'));\n\t\t\t\t\t\treturn new Response(`${vlessConfig}`, {\n\t\t\t\t\t\t\tstatus: 200,\n\t\t\t\t\t\t\theaders: {\n\t\t\t\t\t\t\t\t\"Content-Type\": \"text/plain;charset=utf-8\",\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t\tdefault:\n\t\t\t\t\t\treturn new Response('Not found', { status: 404 });\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\treturn await vlessOverWSHandler(request);\n\t\t\t}\n\t\t} catch (err) {\n\t\t\t/** @type {Error} */ let e = err;\n\t\t\treturn new Response(e.toString());\n\t\t}\n\t},\n};\n\n\n\n\n/**\n * \n * @param {import(\"@cloudflare/workers-types\").Request} request\n */\nasync function vlessOverWSHandler(request) {\n\n\t/** @type {import(\"@cloudflare/workers-types\").WebSocket[]} */\n\t// @ts-ignore\n\tconst webSocketPair = new WebSocketPair();\n\tconst [client, webSocket] = Object.values(webSocketPair);\n\n\twebSocket.accept();\n\n\tlet address = '';\n\tlet portWithRandomLog = '';\n\tconst log = (/** @type {string} */ info, /** @type {string | undefined} */ event) => {\n\t\tconsole.log(`[${address}:${portWithRandomLog}] ${info}`, event || '');\n\t};\n\tconst earlyDataHeader = request.headers.get('sec-websocket-protocol') || '';\n\n\tconst readableWebSocketStream = makeReadableWebSocketStream(webSocket, earlyDataHeader, log);\n\n\t/** @type {{ value: import(\"@cloudflare/workers-types\").Socket | null}}*/\n\tlet remoteSocketWapper = {\n\t\tvalue: null,\n\t};\n\tlet udpStreamWrite = null;\n\tlet isDns = false;\n\n\t// ws --> remote\n\treadableWebSocketStream.pipeTo(new WritableStream({\n\t\tasync write(chunk, controller) {\n\t\t\tif (isDns && udpStreamWrite) {\n\t\t\t\treturn udpStreamWrite(chunk);\n\t\t\t}\n\t\t\tif (remoteSocketWapper.value) {\n\t\t\t\tconst writer = remoteSocketWapper.value.writable.getWriter()\n\t\t\t\tawait writer.write(chunk);\n\t\t\t\twriter.releaseLock();\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst {\n\t\t\t\thasError,\n\t\t\t\tmessage,\n\t\t\t\tportRemote = 443,\n\t\t\t\taddressRemote = '',\n\t\t\t\trawDataIndex,\n\t\t\t\tvlessVersion = new Uint8Array([0, 0]),\n\t\t\t\tisUDP,\n\t\t\t} = processVlessHeader(chunk, userID);\n\t\t\taddress = addressRemote;\n\t\t\tportWithRandomLog = `${portRemote}--${Math.random()} ${isUDP ? 'udp ' : 'tcp '\n\t\t\t\t} `;\n\t\t\tif (hasError) {\n\t\t\t\t// controller.error(message);\n\t\t\t\tthrow new Error(message); // cf seems has bug, controller.error will not end stream\n\t\t\t\t// webSocket.close(1000, message);\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t// if UDP but port not DNS port, close it\n\t\t\tif (isUDP) {\n\t\t\t\tif (portRemote === 53) {\n\t\t\t\t\tisDns = true;\n\t\t\t\t} else {\n\t\t\t\t\t// controller.error('UDP proxy only enable for DNS which is port 53');\n\t\t\t\t\tthrow new Error('UDP proxy only enable for DNS which is port 53'); // cf seems has bug, controller.error will not end stream\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// [\"version\", \"附加信息长度 N\"]\n\t\t\tconst vlessResponseHeader = new Uint8Array([vlessVersion[0], 0]);\n\t\t\tconst rawClientData = chunk.slice(rawDataIndex);\n\n\t\t\t// TODO: support udp here when cf runtime has udp support\n\t\t\tif (isDns) {\n\t\t\t\tconst { write } = await handleUDPOutBound(webSocket, vlessResponseHeader, log);\n\t\t\t\tudpStreamWrite = write;\n\t\t\t\tudpStreamWrite(rawClientData);\n\t\t\t\treturn;\n\t\t\t}\n\t\t\thandleTCPOutBound(remoteSocketWapper, addressRemote, portRemote, rawClientData, webSocket, vlessResponseHeader, log);\n\t\t},\n\t\tclose() {\n\t\t\tlog(`readableWebSocketStream is close`);\n\t\t},\n\t\tabort(reason) {\n\t\t\tlog(`readableWebSocketStream is abort`, JSON.stringify(reason));\n\t\t},\n\t})).catch((err) => {\n\t\tlog('readableWebSocketStream pipeTo error', err);\n\t});\n\n\treturn new Response(null, {\n\t\tstatus: 101,\n\t\t// @ts-ignore\n\t\twebSocket: client,\n\t});\n}\n\n/**\n * Handles outbound TCP connections.\n *\n * @param {any} remoteSocket \n * @param {string} addressRemote The remote address to connect to.\n * @param {number} portRemote The remote port to connect to.\n * @param {Uint8Array} rawClientData The raw client data to write.\n * @param {import(\"@cloudflare/workers-types\").WebSocket} webSocket The WebSocket to pass the remote socket to.\n * @param {Uint8Array} vlessResponseHeader The VLESS response header.\n * @param {function} log The logging function.\n * @returns {Promise<void>} The remote socket.\n */\nasync function handleTCPOutBound(remoteSocket, addressRemote, portRemote, rawClientData, webSocket, vlessResponseHeader, log,) {\n\tasync function connectAndWrite(address, port) {\n\t\t/** @type {import(\"@cloudflare/workers-types\").Socket} */\n\t\tconst tcpSocket = connect({\n\t\t\thostname: address,\n\t\t\tport: port,\n\t\t});\n\t\tremoteSocket.value = tcpSocket;\n\t\tlog(`connected to ${address}:${port}`);\n\t\tconst writer = tcpSocket.writable.getWriter();\n\t\tawait writer.write(rawClientData); // first write, nomal is tls client hello\n\t\twriter.releaseLock();\n\t\treturn tcpSocket;\n\t}\n\n\t// if the cf connect tcp socket have no incoming data, we retry to redirect ip\n\tasync function retry() {\n\t\tconst tcpSocket = await connectAndWrite(proxyIP || addressRemote, portRemote)\n\t\t// no matter retry success or not, close websocket\n\t\ttcpSocket.closed.catch(error => {\n\t\t\tconsole.log('retry tcpSocket closed error', error);\n\t\t}).finally(() => {\n\t\t\tsafeCloseWebSocket(webSocket);\n\t\t})\n\t\tremoteSocketToWS(tcpSocket, webSocket, vlessResponseHeader, null, log);\n\t}\n\n\tconst tcpSocket = await connectAndWrite(addressRemote, portRemote);\n\n\t// when remoteSocket is ready, pass to websocket\n\t// remote--> ws\n\tremoteSocketToWS(tcpSocket, webSocket, vlessResponseHeader, retry, log);\n}\n\n/**\n * \n * @param {import(\"@cloudflare/workers-types\").WebSocket} webSocketServer\n * @param {string} earlyDataHeader for ws 0rtt\n * @param {(info: string)=> void} log for ws 0rtt\n */\nfunction makeReadableWebSocketStream(webSocketServer, earlyDataHeader, log) {\n\tlet readableStreamCancel = false;\n\tconst stream = new ReadableStream({\n\t\tstart(controller) {\n\t\t\twebSocketServer.addEventListener('message', (event) => {\n\t\t\t\tif (readableStreamCancel) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tconst message = event.data;\n\t\t\t\tcontroller.enqueue(message);\n\t\t\t});\n\n\t\t\t// The event means that the client closed the client -> server stream.\n\t\t\t// However, the server -> client stream is still open until you call close() on the server side.\n\t\t\t// The WebSocket protocol says that a separate close message must be sent in each direction to fully close the socket.\n\t\t\twebSocketServer.addEventListener('close', () => {\n\t\t\t\t// client send close, need close server\n\t\t\t\t// if stream is cancel, skip controller.close\n\t\t\t\tsafeCloseWebSocket(webSocketServer);\n\t\t\t\tif (readableStreamCancel) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tcontroller.close();\n\t\t\t}\n\t\t\t);\n\t\t\twebSocketServer.addEventListener('error', (err) => {\n\t\t\t\tlog('webSocketServer has error');\n\t\t\t\tcontroller.error(err);\n\t\t\t}\n\t\t\t);\n\t\t\t// for ws 0rtt\n\t\t\tconst { earlyData, error } = base64ToArrayBuffer(earlyDataHeader);\n\t\t\tif (error) {\n\t\t\t\tcontroller.error(error);\n\t\t\t} else if (earlyData) {\n\t\t\t\tcontroller.enqueue(earlyData);\n\t\t\t}\n\t\t},\n\n\t\tpull(controller) {\n\t\t\t// if ws can stop read if stream is full, we can implement backpressure\n\t\t\t// https://streams.spec.whatwg.org/#example-rs-push-backpressure\n\t\t},\n\t\tcancel(reason) {\n\t\t\t// 1. pipe WritableStream has error, this cancel will called, so ws handle server close into here\n\t\t\t// 2. if readableStream is cancel, all controller.close/enqueue need skip,\n\t\t\t// 3. but from testing controller.error still work even if readableStream is cancel\n\t\t\tif (readableStreamCancel) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tlog(`ReadableStream was canceled, due to ${reason}`)\n\t\t\treadableStreamCancel = true;\n\t\t\tsafeCloseWebSocket(webSocketServer);\n\t\t}\n\t});\n\n\treturn stream;\n\n}\n\n// https://xtls.github.io/development/protocols/vless.html\n// https://github.com/zizifn/excalidraw-backup/blob/main/v2ray-protocol.excalidraw\n\n/**\n * \n * @param { ArrayBuffer} vlessBuffer \n * @param {string} userID \n * @returns \n */\nfunction processVlessHeader(\n\tvlessBuffer,\n\tuserID\n) {\n\tif (vlessBuffer.byteLength < 24) {\n\t\treturn {\n\t\t\thasError: true,\n\t\t\tmessage: 'invalid data',\n\t\t};\n\t}\n\tconst version = new Uint8Array(vlessBuffer.slice(0, 1));\n\tlet isValidUser = false;\n\tlet isUDP = false;\n\tif (stringify(new Uint8Array(vlessBuffer.slice(1, 17))) === userID) {\n\t\tisValidUser = true;\n\t}\n\tif (!isValidUser) {\n\t\treturn {\n\t\t\thasError: true,\n\t\t\tmessage: 'invalid user',\n\t\t};\n\t}\n\n\tconst optLength = new Uint8Array(vlessBuffer.slice(17, 18))[0];\n\t//skip opt for now\n\n\tconst command = new Uint8Array(\n\t\tvlessBuffer.slice(18 + optLength, 18 + optLength + 1)\n\t)[0];\n\n\t// 0x01 TCP\n\t// 0x02 UDP\n\t// 0x03 MUX\n\tif (command === 1) {\n\t} else if (command === 2) {\n\t\tisUDP = true;\n\t} else {\n\t\treturn {\n\t\t\thasError: true,\n\t\t\tmessage: `command ${command} is not support, command 01-tcp,02-udp,03-mux`,\n\t\t};\n\t}\n\tconst portIndex = 18 + optLength + 1;\n\tconst portBuffer = vlessBuffer.slice(portIndex, portIndex + 2);\n\t// port is big-Endian in raw data etc 80 == 0x005d\n\tconst portRemote = new DataView(portBuffer).getUint16(0);\n\n\tlet addressIndex = portIndex + 2;\n\tconst addressBuffer = new Uint8Array(\n\t\tvlessBuffer.slice(addressIndex, addressIndex + 1)\n\t);\n\n\t// 1--> ipv4  addressLength =4\n\t// 2--> domain name addressLength=addressBuffer[1]\n\t// 3--> ipv6  addressLength =16\n\tconst addressType = addressBuffer[0];\n\tlet addressLength = 0;\n\tlet addressValueIndex = addressIndex + 1;\n\tlet addressValue = '';\n\tswitch (addressType) {\n\t\tcase 1:\n\t\t\taddressLength = 4;\n\t\t\taddressValue = new Uint8Array(\n\t\t\t\tvlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)\n\t\t\t).join('.');\n\t\t\tbreak;\n\t\tcase 2:\n\t\t\taddressLength = new Uint8Array(\n\t\t\t\tvlessBuffer.slice(addressValueIndex, addressValueIndex + 1)\n\t\t\t)[0];\n\t\t\taddressValueIndex += 1;\n\t\t\taddressValue = new TextDecoder().decode(\n\t\t\t\tvlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)\n\t\t\t);\n\t\t\tbreak;\n\t\tcase 3:\n\t\t\taddressLength = 16;\n\t\t\tconst dataView = new DataView(\n\t\t\t\tvlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)\n\t\t\t);\n\t\t\t// 2001:0db8:85a3:0000:0000:8a2e:0370:7334\n\t\t\tconst ipv6 = [];\n\t\t\tfor (let i = 0; i < 8; i++) {\n\t\t\t\tipv6.push(dataView.getUint16(i * 2).toString(16));\n\t\t\t}\n\t\t\taddressValue = ipv6.join(':');\n\t\t\t// seems no need add [] for ipv6\n\t\t\tbreak;\n\t\tdefault:\n\t\t\treturn {\n\t\t\t\thasError: true,\n\t\t\t\tmessage: `invild  addressType is ${addressType}`,\n\t\t\t};\n\t}\n\tif (!addressValue) {\n\t\treturn {\n\t\t\thasError: true,\n\t\t\tmessage: `addressValue is empty, addressType is ${addressType}`,\n\t\t};\n\t}\n\n\treturn {\n\t\thasError: false,\n\t\taddressRemote: addressValue,\n\t\taddressType,\n\t\tportRemote,\n\t\trawDataIndex: addressValueIndex + addressLength,\n\t\tvlessVersion: version,\n\t\tisUDP,\n\t};\n}\n\n\n/**\n * \n * @param {import(\"@cloudflare/workers-types\").Socket} remoteSocket \n * @param {import(\"@cloudflare/workers-types\").WebSocket} webSocket \n * @param {ArrayBuffer} vlessResponseHeader \n * @param {(() => Promise<void>) | null} retry\n * @param {*} log \n */\nasync function remoteSocketToWS(remoteSocket, webSocket, vlessResponseHeader, retry, log) {\n\t// remote--> ws\n\tlet remoteChunkCount = 0;\n\tlet chunks = [];\n\t/** @type {ArrayBuffer | null} */\n\tlet vlessHeader = vlessResponseHeader;\n\tlet hasIncomingData = false; // check if remoteSocket has incoming data\n\tawait remoteSocket.readable\n\t\t.pipeTo(\n\t\t\tnew WritableStream({\n\t\t\t\tstart() {\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t * \n\t\t\t\t * @param {Uint8Array} chunk \n\t\t\t\t * @param {*} controller \n\t\t\t\t */\n\t\t\t\tasync write(chunk, controller) {\n\t\t\t\t\thasIncomingData = true;\n\t\t\t\t\t// remoteChunkCount++;\n\t\t\t\t\tif (webSocket.readyState !== WS_READY_STATE_OPEN) {\n\t\t\t\t\t\tcontroller.error(\n\t\t\t\t\t\t\t'webSocket.readyState is not open, maybe close'\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\tif (vlessHeader) {\n\t\t\t\t\t\twebSocket.send(await new Blob([vlessHeader, chunk]).arrayBuffer());\n\t\t\t\t\t\tvlessHeader = null;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// seems no need rate limit this, CF seems fix this??..\n\t\t\t\t\t\t// if (remoteChunkCount > 20000) {\n\t\t\t\t\t\t// \t// cf one package is 4096 byte(4kb),  4096 * 20000 = 80M\n\t\t\t\t\t\t// \tawait delay(1);\n\t\t\t\t\t\t// }\n\t\t\t\t\t\twebSocket.send(chunk);\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\tclose() {\n\t\t\t\t\tlog(`remoteConnection!.readable is close with hasIncomingData is ${hasIncomingData}`);\n\t\t\t\t\t// safeCloseWebSocket(webSocket); // no need server close websocket frist for some case will casue HTTP ERR_CONTENT_LENGTH_MISMATCH issue, client will send close event anyway.\n\t\t\t\t},\n\t\t\t\tabort(reason) {\n\t\t\t\t\tconsole.error(`remoteConnection!.readable abort`, reason);\n\t\t\t\t},\n\t\t\t})\n\t\t)\n\t\t.catch((error) => {\n\t\t\tconsole.error(\n\t\t\t\t`remoteSocketToWS has exception `,\n\t\t\t\terror.stack || error\n\t\t\t);\n\t\t\tsafeCloseWebSocket(webSocket);\n\t\t});\n\n\t// seems is cf connect socket have error,\n\t// 1. Socket.closed will have error\n\t// 2. Socket.readable will be close without any data coming\n\tif (hasIncomingData === false && retry) {\n\t\tlog(`retry`)\n\t\tretry();\n\t}\n}\n\n/**\n * \n * @param {string} base64Str \n * @returns \n */\nfunction base64ToArrayBuffer(base64Str) {\n\tif (!base64Str) {\n\t\treturn { error: null };\n\t}\n\ttry {\n\t\t// go use modified Base64 for URL rfc4648 which js atob not support\n\t\tbase64Str = base64Str.replace(/-/g, '+').replace(/_/g, '/');\n\t\tconst decode = atob(base64Str);\n\t\tconst arryBuffer = Uint8Array.from(decode, (c) => c.charCodeAt(0));\n\t\treturn { earlyData: arryBuffer.buffer, error: null };\n\t} catch (error) {\n\t\treturn { error };\n\t}\n}\n\n/**\n * This is not real UUID validation\n * @param {string} uuid \n */\nfunction isValidUUID(uuid) {\n\tconst uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[4][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;\n\treturn uuidRegex.test(uuid);\n}\n\nconst WS_READY_STATE_OPEN = 1;\nconst WS_READY_STATE_CLOSING = 2;\n/**\n * Normally, WebSocket will not has exceptions when close.\n * @param {import(\"@cloudflare/workers-types\").WebSocket} socket\n */\nfunction safeCloseWebSocket(socket) {\n\ttry {\n\t\tif (socket.readyState === WS_READY_STATE_OPEN || socket.readyState === WS_READY_STATE_CLOSING) {\n\t\t\tsocket.close();\n\t\t}\n\t} catch (error) {\n\t\tconsole.error('safeCloseWebSocket error', error);\n\t}\n}\n\nconst byteToHex = [];\nfor (let i = 0; i < 256; ++i) {\n\tbyteToHex.push((i + 256).toString(16).slice(1));\n}\nfunction unsafeStringify(arr, offset = 0) {\n\treturn (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + \"-\" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + \"-\" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + \"-\" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + \"-\" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();\n}\nfunction stringify(arr, offset = 0) {\n\tconst uuid = unsafeStringify(arr, offset);\n\tif (!isValidUUID(uuid)) {\n\t\tthrow TypeError(\"Stringified UUID is invalid\");\n\t}\n\treturn uuid;\n}\n\n\n/**\n * \n * @param {import(\"@cloudflare/workers-types\").WebSocket} webSocket \n * @param {ArrayBuffer} vlessResponseHeader \n * @param {(string)=> void} log \n */\nasync function handleUDPOutBound(webSocket, vlessResponseHeader, log) {\n\n\tlet isVlessHeaderSent = false;\n\tconst transformStream = new TransformStream({\n\t\tstart(controller) {\n\n\t\t},\n\t\ttransform(chunk, controller) {\n\t\t\t// udp message 2 byte is the the length of udp data\n\t\t\t// TODO: this should have bug, beacsue maybe udp chunk can be in two websocket message\n\t\t\tfor (let index = 0; index < chunk.byteLength;) {\n\t\t\t\tconst lengthBuffer = chunk.slice(index, index + 2);\n\t\t\t\tconst udpPakcetLength = new DataView(lengthBuffer).getUint16(0);\n\t\t\t\tconst udpData = new Uint8Array(\n\t\t\t\t\tchunk.slice(index + 2, index + 2 + udpPakcetLength)\n\t\t\t\t);\n\t\t\t\tindex = index + 2 + udpPakcetLength;\n\t\t\t\tcontroller.enqueue(udpData);\n\t\t\t}\n\t\t},\n\t\tflush(controller) {\n\t\t}\n\t});\n\n\t// only handle dns udp for now\n\ttransformStream.readable.pipeTo(new WritableStream({\n\t\tasync write(chunk) {\n\t\t\tconst resp = await fetch('https://1.1.1.1/dns-query',\n\t\t\t\t{\n\t\t\t\t\tmethod: 'POST',\n\t\t\t\t\theaders: {\n\t\t\t\t\t\t'content-type': 'application/dns-message',\n\t\t\t\t\t},\n\t\t\t\t\tbody: chunk,\n\t\t\t\t})\n\t\t\tconst dnsQueryResult = await resp.arrayBuffer();\n\t\t\tconst udpSize = dnsQueryResult.byteLength;\n\t\t\t// console.log([...new Uint8Array(dnsQueryResult)].map((x) => x.toString(16)));\n\t\t\tconst udpSizeBuffer = new Uint8Array([(udpSize >> 8) & 0xff, udpSize & 0xff]);\n\t\t\tif (webSocket.readyState === WS_READY_STATE_OPEN) {\n\t\t\t\tlog(`doh success and dns message length is ${udpSize}`);\n\t\t\t\tif (isVlessHeaderSent) {\n\t\t\t\t\twebSocket.send(await new Blob([udpSizeBuffer, dnsQueryResult]).arrayBuffer());\n\t\t\t\t} else {\n\t\t\t\t\twebSocket.send(await new Blob([vlessResponseHeader, udpSizeBuffer, dnsQueryResult]).arrayBuffer());\n\t\t\t\t\tisVlessHeaderSent = true;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t})).catch((error) => {\n\t\tlog('dns udp has error' + error)\n\t});\n\n\tconst writer = transformStream.writable.getWriter();\n\n\treturn {\n\t\t/**\n\t\t * \n\t\t * @param {Uint8Array} chunk \n\t\t */\n\t\twrite(chunk) {\n\t\t\twriter.write(chunk);\n\t\t}\n\t};\n}\n\n/**\n * \n * @param {string} userID \n * @param {string | null} hostName\n * @returns {string}\n */\nfunction getVLESSConfig(userID, hostName) {\n\tconst protocol = \"vless\";\n\tconst vlessMain = \n\t`${protocol}` + \n\t`://${userID}@${hostName}:443`+\n\t`?encryption=none&security=tls&sni=${hostName}&fp=randomized&type=ws&host=${hostName}&path=%2F%3Fed%3D2048#${hostName}`;\n\t\n\treturn `\n################################################################\nv2ray\n---------------------------------------------------------------\n${vlessMain}\n---------------------------------------------------------------\n################################################################\nclash-meta\n---------------------------------------------------------------\n- type: vless\n  name: ${hostName}\n  server: ${hostName}\n  port: 443\n  uuid: ${userID}\n  network: ws\n  tls: true\n  udp: false\n  sni: ${hostName}\n  client-fingerprint: chrome\n  ws-opts:\n    path: \"/?ed=2048\"\n    headers:\n      host: ${hostName}\n---------------------------------------------------------------\n################################################################\n`;\n}\n\n"
  },
  {
    "path": "src/worker-with-socks5-experimental.js",
    "content": "// <!--GAMFC-->version base on commit 58686d5d125194d34a1137913b3a64ddcf55872f, time is 2024-11-27 09:26:02 UTC<!--GAMFC-END-->.\n// @ts-ignore\nimport { connect } from 'cloudflare:sockets';\n\n// How to generate your own UUID:\n// [Windows] Press \"Win + R\", input cmd and run:  Powershell -NoExit -Command \"[guid]::NewGuid()\"\nlet userID = 'd342d11e-d424-4583-b36e-524ab1f0afa4';\n\nlet proxyIP = '';\n\n// The user name and password do not contain special characters\n// Setting the address will ignore proxyIP\n// Example:  user:pass@host:port  or  host:port\nlet socks5Address = '';\n\nif (!isValidUUID(userID)) {\n\tthrow new Error('uuid is not valid');\n}\n\nlet parsedSocks5Address = {}; \nlet enableSocks = false;\n\nexport default {\n\t/**\n\t * @param {import(\"@cloudflare/workers-types\").Request} request\n\t * @param {{UUID: string, PROXYIP: string}} env\n\t * @param {import(\"@cloudflare/workers-types\").ExecutionContext} ctx\n\t * @returns {Promise<Response>}\n\t */\n\tasync fetch(request, env, ctx) {\n\t\ttry {\n\t\t\tuserID = env.UUID || userID;\n\t\t\tproxyIP = env.PROXYIP || proxyIP;\n\t\t\tsocks5Address = env.SOCKS5 || socks5Address;\n\t\t\tif (socks5Address) {\n\t\t\t\ttry {\n\t\t\t\t\tparsedSocks5Address = socks5AddressParser(socks5Address);\n\t\t\t\t\tenableSocks = true;\n\t\t\t\t} catch (err) {\n  \t\t\t/** @type {Error} */ let e = err;\n\t\t\t\t\tconsole.log(e.toString());\n\t\t\t\t\tenableSocks = false;\n\t\t\t\t}\n\t\t\t}\n\t\t\tconst upgradeHeader = request.headers.get('Upgrade');\n\t\t\tif (!upgradeHeader || upgradeHeader !== 'websocket') {\n\t\t\t\tconst url = new URL(request.url);\n\t\t\t\tswitch (url.pathname) {\n\t\t\t\t\tcase '/':\n\t\t\t\t\t\treturn new Response(JSON.stringify(request.cf), { status: 200 });\n\t\t\t\t\tcase `/${userID}`: {\n\t\t\t\t\t\tconst vlessConfig = getVLESSConfig(userID, request.headers.get('Host'));\n\t\t\t\t\t\treturn new Response(`${vlessConfig}`, {\n\t\t\t\t\t\t\tstatus: 200,\n\t\t\t\t\t\t\theaders: {\n\t\t\t\t\t\t\t\t\"Content-Type\": \"text/plain;charset=utf-8\",\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t\tdefault:\n\t\t\t\t\t\treturn new Response('Not found', { status: 404 });\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\treturn await vlessOverWSHandler(request);\n\t\t\t}\n\t\t} catch (err) {\n\t\t\t/** @type {Error} */ let e = err;\n\t\t\treturn new Response(e.toString());\n\t\t}\n\t},\n};\n\n\n\n\n/**\n * \n * @param {import(\"@cloudflare/workers-types\").Request} request\n */\nasync function vlessOverWSHandler(request) {\n\n\t/** @type {import(\"@cloudflare/workers-types\").WebSocket[]} */\n\t// @ts-ignore\n\tconst webSocketPair = new WebSocketPair();\n\tconst [client, webSocket] = Object.values(webSocketPair);\n\n\twebSocket.accept();\n\n\tlet address = '';\n\tlet portWithRandomLog = '';\n\tconst log = (/** @type {string} */ info, /** @type {string | undefined} */ event) => {\n\t\tconsole.log(`[${address}:${portWithRandomLog}] ${info}`, event || '');\n\t};\n\tconst earlyDataHeader = request.headers.get('sec-websocket-protocol') || '';\n\n\tconst readableWebSocketStream = makeReadableWebSocketStream(webSocket, earlyDataHeader, log);\n\n\t/** @type {{ value: import(\"@cloudflare/workers-types\").Socket | null}}*/\n\tlet remoteSocketWapper = {\n\t\tvalue: null,\n\t};\n\tlet isDns = false;\n\n\t// ws --> remote\n\treadableWebSocketStream.pipeTo(new WritableStream({\n\t\tasync write(chunk, controller) {\n\t\t\tif (isDns) {\n\t\t\t\treturn await handleDNSQuery(chunk, webSocket, null, log);\n\t\t\t}\n\t\t\tif (remoteSocketWapper.value) {\n\t\t\t\tconst writer = remoteSocketWapper.value.writable.getWriter()\n\t\t\t\tawait writer.write(chunk);\n\t\t\t\twriter.releaseLock();\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst {\n\t\t\t\thasError,\n\t\t\t\tmessage,\n\t\t\t\taddressType,\n\t\t\t\tportRemote = 443,\n\t\t\t\taddressRemote = '',\n\t\t\t\trawDataIndex,\n\t\t\t\tvlessVersion = new Uint8Array([0, 0]),\n\t\t\t\tisUDP,\n\t\t\t} = processVlessHeader(chunk, userID);\n\t\t\taddress = addressRemote;\n\t\t\tportWithRandomLog = `${portRemote}--${Math.random()} ${isUDP ? 'udp ' : 'tcp '\n\t\t\t\t} `;\n\t\t\tif (hasError) {\n\t\t\t\t// controller.error(message);\n\t\t\t\tthrow new Error(message); // cf seems has bug, controller.error will not end stream\n\t\t\t\t// webSocket.close(1000, message);\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t// if UDP but port not DNS port, close it\n\t\t\tif (isUDP) {\n\t\t\t\tif (portRemote === 53) {\n\t\t\t\t\tisDns = true;\n\t\t\t\t} else {\n\t\t\t\t\t// controller.error('UDP proxy only enable for DNS which is port 53');\n\t\t\t\t\tthrow new Error('UDP proxy only enable for DNS which is port 53'); // cf seems has bug, controller.error will not end stream\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// [\"version\", \"附加信息长度 N\"]\n\t\t\tconst vlessResponseHeader = new Uint8Array([vlessVersion[0], 0]);\n\t\t\tconst rawClientData = chunk.slice(rawDataIndex);\n\n\t\t\tif (isDns) {\n\t\t\t\treturn handleDNSQuery(rawClientData, webSocket, vlessResponseHeader, log);\n\t\t\t}\n\t\t\thandleTCPOutBound(remoteSocketWapper, addressType, addressRemote, portRemote, rawClientData, webSocket, vlessResponseHeader, log);\n\t\t},\n\t\tclose() {\n\t\t\tlog(`readableWebSocketStream is close`);\n\t\t},\n\t\tabort(reason) {\n\t\t\tlog(`readableWebSocketStream is abort`, JSON.stringify(reason));\n\t\t},\n\t})).catch((err) => {\n\t\tlog('readableWebSocketStream pipeTo error', err);\n\t});\n\n\treturn new Response(null, {\n\t\tstatus: 101,\n\t\t// @ts-ignore\n\t\twebSocket: client,\n\t});\n}\n\n/**\n * Handles outbound TCP connections.\n *\n * @param {any} remoteSocket\n * @param {number} addressType The remote address type to connect to.\n * @param {string} addressRemote The remote address to connect to.\n * @param {number} portRemote The remote port to connect to.\n * @param {Uint8Array} rawClientData The raw client data to write.\n * @param {import(\"@cloudflare/workers-types\").WebSocket} webSocket The WebSocket to pass the remote socket to.\n * @param {Uint8Array} vlessResponseHeader The VLESS response header.\n * @param {function} log The logging function.\n * @returns {Promise<void>} The remote socket.\n */\nasync function handleTCPOutBound(remoteSocket, addressType, addressRemote, portRemote, rawClientData, webSocket, vlessResponseHeader, log,) {\n\tasync function connectAndWrite(address, port, socks = false) {\n\t\t/** @type {import(\"@cloudflare/workers-types\").Socket} */\n\t\tconst tcpSocket = socks ? await socks5Connect(addressType, address, port, log)\n\t\t\t: connect({\n\t\t\t\thostname: address,\n\t\t\t\tport: port,\n\t\t\t});\n\t\tremoteSocket.value = tcpSocket;\n\t\tlog(`connected to ${address}:${port}`);\n\t\tconst writer = tcpSocket.writable.getWriter();\n\t\tawait writer.write(rawClientData); // first write, normal is tls client hello\n\t\twriter.releaseLock();\n\t\treturn tcpSocket;\n\t}\n\n\t// if the cf connect tcp socket have no incoming data, we retry to redirect ip\n\tasync function retry() {\n\t\tif (enableSocks) {\n\t\t\ttcpSocket = await connectAndWrite(addressRemote, portRemote, true);\n\t\t} else {\n\t\t\ttcpSocket = await connectAndWrite(proxyIP || addressRemote, portRemote);\n\t\t}\n\t\t// no matter retry success or not, close websocket\n\t\ttcpSocket.closed.catch(error => {\n\t\t\tconsole.log('retry tcpSocket closed error', error);\n\t\t}).finally(() => {\n\t\t\tsafeCloseWebSocket(webSocket);\n\t\t})\n\t\tremoteSocketToWS(tcpSocket, webSocket, vlessResponseHeader, null, log);\n\t}\n\n\tlet tcpSocket = await connectAndWrite(addressRemote, portRemote);\n\n\t// when remoteSocket is ready, pass to websocket\n\t// remote--> ws\n\tremoteSocketToWS(tcpSocket, webSocket, vlessResponseHeader, retry, log);\n}\n\n/**\n * \n * @param {import(\"@cloudflare/workers-types\").WebSocket} webSocketServer\n * @param {string} earlyDataHeader for ws 0rtt\n * @param {(info: string)=> void} log for ws 0rtt\n */\nfunction makeReadableWebSocketStream(webSocketServer, earlyDataHeader, log) {\n\tlet readableStreamCancel = false;\n\tconst stream = new ReadableStream({\n\t\tstart(controller) {\n\t\t\twebSocketServer.addEventListener('message', (event) => {\n\t\t\t\tif (readableStreamCancel) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tconst message = event.data;\n\t\t\t\tcontroller.enqueue(message);\n\t\t\t});\n\n\t\t\t// The event means that the client closed the client -> server stream.\n\t\t\t// However, the server -> client stream is still open until you call close() on the server side.\n\t\t\t// The WebSocket protocol says that a separate close message must be sent in each direction to fully close the socket.\n\t\t\twebSocketServer.addEventListener('close', () => {\n\t\t\t\t// client send close, need close server\n\t\t\t\t// if stream is cancel, skip controller.close\n\t\t\t\tsafeCloseWebSocket(webSocketServer);\n\t\t\t\tif (readableStreamCancel) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tcontroller.close();\n\t\t\t}\n\t\t\t);\n\t\t\twebSocketServer.addEventListener('error', (err) => {\n\t\t\t\tlog('webSocketServer has error');\n\t\t\t\tcontroller.error(err);\n\t\t\t}\n\t\t\t);\n\t\t\t// for ws 0rtt\n\t\t\tconst { earlyData, error } = base64ToArrayBuffer(earlyDataHeader);\n\t\t\tif (error) {\n\t\t\t\tcontroller.error(error);\n\t\t\t} else if (earlyData) {\n\t\t\t\tcontroller.enqueue(earlyData);\n\t\t\t}\n\t\t},\n\n\t\tpull(controller) {\n\t\t\t// if ws can stop read if stream is full, we can implement backpressure\n\t\t\t// https://streams.spec.whatwg.org/#example-rs-push-backpressure\n\t\t},\n\t\tcancel(reason) {\n\t\t\t// 1. pipe WritableStream has error, this cancel will called, so ws handle server close into here\n\t\t\t// 2. if readableStream is cancel, all controller.close/enqueue need skip,\n\t\t\t// 3. but from testing controller.error still work even if readableStream is cancel\n\t\t\tif (readableStreamCancel) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tlog(`ReadableStream was canceled, due to ${reason}`)\n\t\t\treadableStreamCancel = true;\n\t\t\tsafeCloseWebSocket(webSocketServer);\n\t\t}\n\t});\n\n\treturn stream;\n\n}\n\n// https://xtls.github.io/development/protocols/vless.html\n// https://github.com/zizifn/excalidraw-backup/blob/main/v2ray-protocol.excalidraw\n\n/**\n * \n * @param { ArrayBuffer} vlessBuffer \n * @param {string} userID \n * @returns \n */\nfunction processVlessHeader(\n\tvlessBuffer,\n\tuserID\n) {\n\tif (vlessBuffer.byteLength < 24) {\n\t\treturn {\n\t\t\thasError: true,\n\t\t\tmessage: 'invalid data',\n\t\t};\n\t}\n\tconst version = new Uint8Array(vlessBuffer.slice(0, 1));\n\tlet isValidUser = false;\n\tlet isUDP = false;\n\tif (stringify(new Uint8Array(vlessBuffer.slice(1, 17))) === userID) {\n\t\tisValidUser = true;\n\t}\n\tif (!isValidUser) {\n\t\treturn {\n\t\t\thasError: true,\n\t\t\tmessage: 'invalid user',\n\t\t};\n\t}\n\n\tconst optLength = new Uint8Array(vlessBuffer.slice(17, 18))[0];\n\t//skip opt for now\n\n\tconst command = new Uint8Array(\n\t\tvlessBuffer.slice(18 + optLength, 18 + optLength + 1)\n\t)[0];\n\n\t// 0x01 TCP\n\t// 0x02 UDP\n\t// 0x03 MUX\n\tif (command === 1) {\n\t} else if (command === 2) {\n\t\tisUDP = true;\n\t} else {\n\t\treturn {\n\t\t\thasError: true,\n\t\t\tmessage: `command ${command} is not support, command 01-tcp,02-udp,03-mux`,\n\t\t};\n\t}\n\tconst portIndex = 18 + optLength + 1;\n\tconst portBuffer = vlessBuffer.slice(portIndex, portIndex + 2);\n\t// port is big-Endian in raw data etc 80 == 0x005d\n\tconst portRemote = new DataView(portBuffer).getUint16(0);\n\n\tlet addressIndex = portIndex + 2;\n\tconst addressBuffer = new Uint8Array(\n\t\tvlessBuffer.slice(addressIndex, addressIndex + 1)\n\t);\n\n\t// 1--> ipv4  addressLength =4\n\t// 2--> domain name addressLength=addressBuffer[1]\n\t// 3--> ipv6  addressLength =16\n\tconst addressType = addressBuffer[0];\n\tlet addressLength = 0;\n\tlet addressValueIndex = addressIndex + 1;\n\tlet addressValue = '';\n\tswitch (addressType) {\n\t\tcase 1:\n\t\t\taddressLength = 4;\n\t\t\taddressValue = new Uint8Array(\n\t\t\t\tvlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)\n\t\t\t).join('.');\n\t\t\tbreak;\n\t\tcase 2:\n\t\t\taddressLength = new Uint8Array(\n\t\t\t\tvlessBuffer.slice(addressValueIndex, addressValueIndex + 1)\n\t\t\t)[0];\n\t\t\taddressValueIndex += 1;\n\t\t\taddressValue = new TextDecoder().decode(\n\t\t\t\tvlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)\n\t\t\t);\n\t\t\tbreak;\n\t\tcase 3:\n\t\t\taddressLength = 16;\n\t\t\tconst dataView = new DataView(\n\t\t\t\tvlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)\n\t\t\t);\n\t\t\t// 2001:0db8:85a3:0000:0000:8a2e:0370:7334\n\t\t\tconst ipv6 = [];\n\t\t\tfor (let i = 0; i < 8; i++) {\n\t\t\t\tipv6.push(dataView.getUint16(i * 2).toString(16));\n\t\t\t}\n\t\t\taddressValue = ipv6.join(':');\n\t\t\t// seems no need add [] for ipv6\n\t\t\tbreak;\n\t\tdefault:\n\t\t\treturn {\n\t\t\t\thasError: true,\n\t\t\t\tmessage: `invild  addressType is ${addressType}`,\n\t\t\t};\n\t}\n\tif (!addressValue) {\n\t\treturn {\n\t\t\thasError: true,\n\t\t\tmessage: `addressValue is empty, addressType is ${addressType}`,\n\t\t};\n\t}\n\n\treturn {\n\t\thasError: false,\n\t\taddressRemote: addressValue,\n\t\taddressType,\n\t\tportRemote,\n\t\trawDataIndex: addressValueIndex + addressLength,\n\t\tvlessVersion: version,\n\t\tisUDP,\n\t};\n}\n\n\n/**\n * \n * @param {import(\"@cloudflare/workers-types\").Socket} remoteSocket \n * @param {import(\"@cloudflare/workers-types\").WebSocket} webSocket \n * @param {ArrayBuffer} vlessResponseHeader \n * @param {(() => Promise<void>) | null} retry\n * @param {*} log \n */\nasync function remoteSocketToWS(remoteSocket, webSocket, vlessResponseHeader, retry, log) {\n\t// remote--> ws\n\tlet remoteChunkCount = 0;\n\tlet chunks = [];\n\t/** @type {ArrayBuffer | null} */\n\tlet vlessHeader = vlessResponseHeader;\n\tlet hasIncomingData = false; // check if remoteSocket has incoming data\n\tawait remoteSocket.readable\n\t\t.pipeTo(\n\t\t\tnew WritableStream({\n\t\t\t\tstart() {\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t * \n\t\t\t\t * @param {Uint8Array} chunk \n\t\t\t\t * @param {*} controller \n\t\t\t\t */\n\t\t\t\tasync write(chunk, controller) {\n\t\t\t\t\thasIncomingData = true;\n\t\t\t\t\t// remoteChunkCount++;\n\t\t\t\t\tif (webSocket.readyState !== WS_READY_STATE_OPEN) {\n\t\t\t\t\t\tcontroller.error(\n\t\t\t\t\t\t\t'webSocket.readyState is not open, maybe close'\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\tif (vlessHeader) {\n\t\t\t\t\t\twebSocket.send(await new Blob([vlessHeader, chunk]).arrayBuffer());\n\t\t\t\t\t\tvlessHeader = null;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// seems no need rate limit this, CF seems fix this??..\n\t\t\t\t\t\t// if (remoteChunkCount > 20000) {\n\t\t\t\t\t\t// \t// cf one package is 4096 byte(4kb),  4096 * 20000 = 80M\n\t\t\t\t\t\t// \tawait delay(1);\n\t\t\t\t\t\t// }\n\t\t\t\t\t\twebSocket.send(chunk);\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\tclose() {\n\t\t\t\t\tlog(`remoteConnection!.readable is close with hasIncomingData is ${hasIncomingData}`);\n\t\t\t\t\t// safeCloseWebSocket(webSocket); // no need server close websocket frist for some case will casue HTTP ERR_CONTENT_LENGTH_MISMATCH issue, client will send close event anyway.\n\t\t\t\t},\n\t\t\t\tabort(reason) {\n\t\t\t\t\tconsole.error(`remoteConnection!.readable abort`, reason);\n\t\t\t\t},\n\t\t\t})\n\t\t)\n\t\t.catch((error) => {\n\t\t\tconsole.error(\n\t\t\t\t`remoteSocketToWS has exception `,\n\t\t\t\terror.stack || error\n\t\t\t);\n\t\t\tsafeCloseWebSocket(webSocket);\n\t\t});\n\n\t// seems is cf connect socket have error,\n\t// 1. Socket.closed will have error\n\t// 2. Socket.readable will be close without any data coming\n\tif (hasIncomingData === false && retry) {\n\t\tlog(`retry`)\n\t\tretry();\n\t}\n}\n\n/**\n * \n * @param {string} base64Str \n * @returns \n */\nfunction base64ToArrayBuffer(base64Str) {\n\tif (!base64Str) {\n\t\treturn { error: null };\n\t}\n\ttry {\n\t\t// go use modified Base64 for URL rfc4648 which js atob not support\n\t\tbase64Str = base64Str.replace(/-/g, '+').replace(/_/g, '/');\n\t\tconst decode = atob(base64Str);\n\t\tconst arryBuffer = Uint8Array.from(decode, (c) => c.charCodeAt(0));\n\t\treturn { earlyData: arryBuffer.buffer, error: null };\n\t} catch (error) {\n\t\treturn { error };\n\t}\n}\n\n/**\n * This is not real UUID validation\n * @param {string} uuid \n */\nfunction isValidUUID(uuid) {\n\tconst uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[4][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;\n\treturn uuidRegex.test(uuid);\n}\n\nconst WS_READY_STATE_OPEN = 1;\nconst WS_READY_STATE_CLOSING = 2;\n/**\n * Normally, WebSocket will not has exceptions when close.\n * @param {import(\"@cloudflare/workers-types\").WebSocket} socket\n */\nfunction safeCloseWebSocket(socket) {\n\ttry {\n\t\tif (socket.readyState === WS_READY_STATE_OPEN || socket.readyState === WS_READY_STATE_CLOSING) {\n\t\t\tsocket.close();\n\t\t}\n\t} catch (error) {\n\t\tconsole.error('safeCloseWebSocket error', error);\n\t}\n}\n\nconst byteToHex = [];\nfor (let i = 0; i < 256; ++i) {\n\tbyteToHex.push((i + 256).toString(16).slice(1));\n}\nfunction unsafeStringify(arr, offset = 0) {\n\treturn (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + \"-\" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + \"-\" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + \"-\" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + \"-\" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();\n}\nfunction stringify(arr, offset = 0) {\n\tconst uuid = unsafeStringify(arr, offset);\n\tif (!isValidUUID(uuid)) {\n\t\tthrow TypeError(\"Stringified UUID is invalid\");\n\t}\n\treturn uuid;\n}\n\n/**\n * \n * @param {ArrayBuffer} udpChunk \n * @param {import(\"@cloudflare/workers-types\").WebSocket} webSocket \n * @param {ArrayBuffer} vlessResponseHeader \n * @param {(string)=> void} log \n */\nasync function handleDNSQuery(udpChunk, webSocket, vlessResponseHeader, log) {\n\t// no matter which DNS server client send, we alwasy use hard code one.\n\t// beacsue someof DNS server is not support DNS over TCP\n\ttry {\n\t\tconst dnsServer = '8.8.4.4'; // change to 1.1.1.1 after cf fix connect own ip bug\n\t\tconst dnsPort = 53;\n\t\t/** @type {ArrayBuffer | null} */\n\t\tlet vlessHeader = vlessResponseHeader;\n\t\t/** @type {import(\"@cloudflare/workers-types\").Socket} */\n\t\tconst tcpSocket = connect({\n\t\t\thostname: dnsServer,\n\t\t\tport: dnsPort,\n\t\t});\n\n\t\tlog(`connected to ${dnsServer}:${dnsPort}`);\n\t\tconst writer = tcpSocket.writable.getWriter();\n\t\tawait writer.write(udpChunk);\n\t\twriter.releaseLock();\n\t\tawait tcpSocket.readable.pipeTo(new WritableStream({\n\t\t\tasync write(chunk) {\n\t\t\t\tif (webSocket.readyState === WS_READY_STATE_OPEN) {\n\t\t\t\t\tif (vlessHeader) {\n\t\t\t\t\t\twebSocket.send(await new Blob([vlessHeader, chunk]).arrayBuffer());\n\t\t\t\t\t\tvlessHeader = null;\n\t\t\t\t\t} else {\n\t\t\t\t\t\twebSocket.send(chunk);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tclose() {\n\t\t\t\tlog(`dns server(${dnsServer}) tcp is close`);\n\t\t\t},\n\t\t\tabort(reason) {\n\t\t\t\tconsole.error(`dns server(${dnsServer}) tcp is abort`, reason);\n\t\t\t},\n\t\t}));\n\t} catch (error) {\n\t\tconsole.error(\n\t\t\t`handleDNSQuery have exception, error: ${error.message}`\n\t\t);\n\t}\n}\n\n/**\n * \n * @param {number} addressType\n * @param {string} addressRemote\n * @param {number} portRemote\n * @param {function} log The logging function.\n */\nasync function socks5Connect(addressType, addressRemote, portRemote, log) {\n\tconst { username, password, hostname, port } = parsedSocks5Address;\n\t// Connect to the SOCKS server\n\tconst socket = connect({\n\t\thostname,\n\t\tport,\n\t});\n\n\t// Request head format (Worker -> Socks Server):\n\t// +----+----------+----------+\n\t// |VER | NMETHODS | METHODS  |\n\t// +----+----------+----------+\n\t// | 1  |    1     | 1 to 255 |\n\t// +----+----------+----------+\n\n\t// https://en.wikipedia.org/wiki/SOCKS#SOCKS5\n\t// For METHODS:\n\t// 0x00 NO AUTHENTICATION REQUIRED\n\t// 0x02 USERNAME/PASSWORD https://datatracker.ietf.org/doc/html/rfc1929\n\tconst socksGreeting = new Uint8Array([5, 2, 0, 2]);\n\n\tconst writer = socket.writable.getWriter();\n\n\tawait writer.write(socksGreeting);\n\tlog('sent socks greeting');\n\n\tconst reader = socket.readable.getReader();\n\tconst encoder = new TextEncoder();\n\tlet res = (await reader.read()).value;\n\t// Response format (Socks Server -> Worker):\n\t// +----+--------+\n\t// |VER | METHOD |\n\t// +----+--------+\n\t// | 1  |   1    |\n\t// +----+--------+\n\tif (res[0] !== 0x05) {\n\t\tlog(`socks server version error: ${res[0]} expected: 5`);\n\t\treturn;\n\t}\n\tif (res[1] === 0xff) {\n\t\tlog(\"no acceptable methods\");\n\t\treturn;\n\t}\n\n\t// if return 0x0502\n\tif (res[1] === 0x02) {\n\t\tlog(\"socks server needs auth\");\n\t\tif (!username || !password) {\n\t\t\tlog(\"please provide username/password\");\n\t\t\treturn;\n\t\t}\n\t\t// +----+------+----------+------+----------+\n\t\t// |VER | ULEN |  UNAME   | PLEN |  PASSWD  |\n\t\t// +----+------+----------+------+----------+\n\t\t// | 1  |  1   | 1 to 255 |  1   | 1 to 255 |\n\t\t// +----+------+----------+------+----------+\n\t\tconst authRequest = new Uint8Array([\n\t\t\t1,\n\t\t\tusername.length,\n\t\t\t...encoder.encode(username),\n\t\t\tpassword.length,\n\t\t\t...encoder.encode(password)\n\t\t]);\n\t\tawait writer.write(authRequest);\n\t\tres = (await reader.read()).value;\n\t\t// expected 0x0100\n\t\tif (res[0] !== 0x01 || res[1] !== 0x00) {\n\t\t\tlog(\"fail to auth socks server\");\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Request data format (Worker -> Socks Server):\n\t// +----+-----+-------+------+----------+----------+\n\t// |VER | CMD |  RSV  | ATYP | DST.ADDR | DST.PORT |\n\t// +----+-----+-------+------+----------+----------+\n\t// | 1  |  1  | X'00' |  1   | Variable |    2     |\n\t// +----+-----+-------+------+----------+----------+\n\t// ATYP: address type of following address\n\t// 0x01: IPv4 address\n\t// 0x03: Domain name\n\t// 0x04: IPv6 address\n\t// DST.ADDR: desired destination address\n\t// DST.PORT: desired destination port in network octet order\n\n\t// addressType\n\t// 1--> ipv4  addressLength =4\n\t// 2--> domain name\n\t// 3--> ipv6  addressLength =16\n\tlet DSTADDR;\t// DSTADDR = ATYP + DST.ADDR\n\tswitch (addressType) {\n\t\tcase 1:\n\t\t\tDSTADDR = new Uint8Array(\n\t\t\t\t[1, ...addressRemote.split('.').map(Number)]\n\t\t\t);\n\t\t\tbreak;\n\t\tcase 2:\n\t\t\tDSTADDR = new Uint8Array(\n\t\t\t\t[3, addressRemote.length, ...encoder.encode(addressRemote)]\n\t\t\t);\n\t\t\tbreak;\n\t\tcase 3:\n\t\t\tDSTADDR = new Uint8Array(\n\t\t\t\t[4, ...addressRemote.split(':').flatMap(x => [parseInt(x.slice(0, 2), 16), parseInt(x.slice(2), 16)])]\n\t\t\t);\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tlog(`invild  addressType is ${addressType}`);\n\t\t\treturn;\n\t}\n\tconst socksRequest = new Uint8Array([5, 1, 0, ...DSTADDR, portRemote >> 8, portRemote & 0xff]);\n\tawait writer.write(socksRequest);\n\tlog('sent socks request');\n\n\tres = (await reader.read()).value;\n\t// Response format (Socks Server -> Worker):\n\t//  +----+-----+-------+------+----------+----------+\n\t// |VER | REP |  RSV  | ATYP | BND.ADDR | BND.PORT |\n\t// +----+-----+-------+------+----------+----------+\n\t// | 1  |  1  | X'00' |  1   | Variable |    2     |\n\t// +----+-----+-------+------+----------+----------+\n\tif (res[1] === 0x00) {\n\t\tlog(\"socks connection opened\");\n\t} else {\n\t\tlog(\"fail to open socks connection\");\n\t\treturn;\n\t}\n\twriter.releaseLock();\n\treader.releaseLock();\n\treturn socket;\n}\n\n\n/**\n * \n * @param {string} address\n */\nfunction socks5AddressParser(address) {\n\tlet [latter, former] = address.split(\"@\").reverse();\n\tlet username, password, hostname, port;\n\tif (former) {\n\t\tconst formers = former.split(\":\");\n\t\tif (formers.length !== 2) {\n\t\t\tthrow new Error('Invalid SOCKS address format');\n\t\t}\n\t\t[username, password] = formers;\n\t}\n\tconst latters = latter.split(\":\");\n\tport = Number(latters.pop());\n\tif (isNaN(port)) {\n\t\tthrow new Error('Invalid SOCKS address format');\n\t}\n\thostname = latters.join(\":\");\n\tconst regex = /^\\[.*\\]$/;\n\tif (hostname.includes(\":\") && !regex.test(hostname)) {\n\t\tthrow new Error('Invalid SOCKS address format');\n\t}\n\treturn {\n\t\tusername,\n\t\tpassword,\n\t\thostname,\n\t\tport,\n\t}\n}\n\n/**\n * \n * @param {string} userID \n * @param {string | null} hostName\n * @returns {string}\n */\nfunction getVLESSConfig(userID, hostName) {\n\tconst protocol = \"vless\";\n\tconst vlessMain = \n\t`${protocol}` + \n\t`://${userID}@${hostName}:443`+\n\t`?encryption=none&security=tls&sni=${hostName}&fp=randomized&type=ws&host=${hostName}&path=%2F%3Fed%3D2048#${hostName}`;\n\t\n\treturn `\n################################################################\nv2ray\n---------------------------------------------------------------\n${vlessMain}\n---------------------------------------------------------------\n################################################################\nclash-meta\n---------------------------------------------------------------\n- type: vless\n  name: ${hostName}\n  server: ${hostName}\n  port: 443\n  uuid: ${userID}\n  network: ws\n  tls: true\n  udp: false\n  sni: ${hostName}\n  client-fingerprint: chrome\n  ws-opts:\n    path: \"/?ed=2048\"\n    headers:\n      host: ${hostName}\n---------------------------------------------------------------\n################################################################\n`;\n}\n\n\n"
  },
  {
    "path": "test/cidr.js",
    "content": "function isIPv4InCFCIDR(ip) {\n\tconst currentIPNum = convertIp2Num(ip);\n\t// if not valid number, return false\n\tif(!currentIPNum){\n\t\treturn false;\n\t}\n\n\t// 134866688 / -256\n  // 134866689:     1000000010011110011100000001\n  // -256:      11111111111111111111100000000000\n  // 134866688      1000000010011110011100000000\n\treturn cidrNumberList.some(({ipNumber, ipMask}) => (currentIPNum & ipMask) === (ipNumber & ipMask));\n}\n\n/**\n * \n * @param {string} ip \n */\n\nfunction convertIp2Num(ip){\n\tconst ipParts = ip.split('.');\n\tif(ipParts.length !== 4){\n\t\treturn 0;\n\t}\n\tlet ipNumber = 0;\n\tfor (const ipPart of ipParts) {\n\t\tipNumber  = (ipNumber << 8) + parseInt(ipPart, 10); // 8.9.231.0 --> 134866688// 134866688 --> 1000000010011110011100000000\n\t}\n\n\treturn ipNumber >>> 0; // unsgined int\n}\n\n\nconst cidrList = [\n    \"1.0.0.0/24\",\n    \"1.1.1.0/24\",\n    \"8.6.144.0/24\",\n    \"8.6.145.0/24\",\n    \"8.6.146.0/24\",\n    \"8.9.231.0/24\",\n    \"8.10.148.0/24\",\n    \"8.14.199.0/24\",\n    \"8.14.201.0/24\",\n    \"8.14.202.0/24\",\n    \"8.14.203.0/24\",\n    \"8.14.204.0/24\",\n    \"8.17.205.0/24\",\n    \"8.17.206.0/24\",\n    \"8.18.50.0/24\",\n    \"8.18.113.0/24\",\n    \"8.18.194.0/24\",\n    \"8.18.195.0/24\",\n    \"8.18.196.0/24\",\n    \"8.19.8.0/24\",\n    \"8.20.100.0/24\",\n    \"8.20.101.0/24\",\n    \"8.20.103.0/24\",\n    \"8.20.122.0/24\",\n    \"8.20.123.0/24\",\n    \"8.20.124.0/24\",\n    \"8.20.125.0/24\",\n    \"8.20.126.0/24\",\n    \"8.20.253.0/24\",\n    \"8.21.8.0/24\",\n    \"8.21.9.0/24\",\n    \"8.21.10.0/24\",\n    \"8.21.13.0/24\",\n    \"8.21.110.0/24\",\n    \"8.21.111.0/24\",\n    \"8.21.239.0/24\",\n    \"8.23.139.0/24\",\n    \"8.23.240.0/24\",\n    \"8.24.87.0/24\",\n    \"8.24.242.0/24\",\n    \"8.24.243.0/24\",\n    \"8.24.244.0/24\",\n    \"8.25.96.0/24\",\n    \"8.25.97.0/24\",\n    \"8.25.249.0/24\",\n    \"8.26.180.0/24\",\n    \"8.26.182.0/24\",\n    \"8.27.64.0/24\",\n    \"8.27.66.0/24\",\n    \"8.27.67.0/24\",\n    \"8.27.68.0/24\",\n    \"8.27.69.0/24\",\n    \"8.27.79.0/24\",\n    \"8.28.20.0/24\",\n    \"8.28.82.0/24\",\n    \"8.28.126.0/24\",\n    \"8.28.213.0/24\",\n    \"8.29.105.0/24\",\n    \"8.29.230.0/24\",\n    \"8.29.231.0/24\",\n    \"8.30.234.0/24\",\n    \"8.31.2.0/24\",\n    \"8.31.160.0/24\",\n    \"8.31.161.0/24\",\n    \"8.34.69.0/24\",\n    \"8.34.70.0/24\",\n    \"8.34.71.0/24\",\n    \"8.34.200.0/24\",\n    \"8.34.201.0/24\",\n    \"8.34.202.0/24\",\n    \"8.35.57.0/24\",\n    \"8.35.58.0/24\",\n    \"8.35.59.0/24\",\n    \"8.35.149.0/24\",\n    \"8.35.211.0/24\",\n    \"8.36.216.0/24\",\n    \"8.36.217.0/24\",\n    \"8.36.218.0/24\",\n    \"8.36.219.0/24\",\n    \"8.36.220.0/24\",\n    \"8.37.41.0/24\",\n    \"8.37.43.0/24\",\n    \"8.38.147.0/24\",\n    \"8.38.148.0/24\",\n    \"8.38.149.0/24\",\n    \"8.38.172.0/24\",\n    \"8.39.6.0/24\",\n    \"8.39.18.0/24\",\n    \"8.39.125.0/24\",\n    \"8.39.126.0/24\",\n    \"8.39.201.0/24\",\n    \"8.39.202.0/24\",\n    \"8.39.203.0/24\",\n    \"8.39.204.0/24\",\n    \"8.39.205.0/24\",\n    \"8.39.206.0/24\",\n    \"8.39.207.0/24\",\n    \"8.39.212.0/24\",\n    \"8.39.213.0/24\",\n    \"8.39.214.0/24\",\n    \"8.39.215.0/24\",\n    \"8.40.26.0/24\",\n    \"8.40.27.0/24\",\n    \"8.40.28.0/24\",\n    \"8.40.29.0/24\",\n    \"8.40.30.0/24\",\n    \"8.40.31.0/24\",\n    \"8.40.107.0/24\",\n    \"8.40.111.0/24\",\n    \"8.40.140.0/24\",\n    \"8.41.5.0/24\",\n    \"8.41.6.0/24\",\n    \"8.41.7.0/24\",\n    \"8.41.36.0/24\",\n    \"8.41.37.0/24\",\n    \"8.42.51.0/24\",\n    \"8.42.52.0/24\",\n    \"8.42.54.0/24\",\n    \"8.42.55.0/24\",\n    \"8.42.161.0/24\",\n    \"8.42.164.0/24\",\n    \"8.42.172.0/24\",\n    \"8.42.245.0/24\",\n    \"8.43.121.0/24\",\n    \"8.43.122.0/24\",\n    \"8.43.123.0/24\",\n    \"8.43.224.0/24\",\n    \"8.43.225.0/24\",\n    \"8.43.226.0/24\",\n    \"8.44.0.0/24\",\n    \"8.44.1.0/24\",\n    \"8.44.2.0/24\",\n    \"8.44.3.0/24\",\n    \"8.44.6.0/24\",\n    \"8.44.58.0/24\",\n    \"8.44.60.0/24\",\n    \"8.44.61.0/24\",\n    \"8.44.62.0/24\",\n    \"8.44.63.0/24\",\n    \"8.45.41.0/24\",\n    \"8.45.43.0/24\",\n    \"8.45.44.0/24\",\n    \"8.45.45.0/24\",\n    \"8.45.46.0/24\",\n    \"8.45.47.0/24\",\n    \"8.45.97.0/24\",\n    \"8.45.101.0/24\",\n    \"8.45.102.0/24\",\n    \"8.45.108.0/24\",\n    \"8.45.111.0/24\",\n    \"8.45.144.0/24\",\n    \"8.45.145.0/24\",\n    \"8.45.146.0/24\",\n    \"8.45.147.0/24\",\n    \"8.46.113.0/24\",\n    \"8.46.114.0/24\",\n    \"8.46.115.0/24\",\n    \"8.46.117.0/24\",\n    \"8.46.118.0/24\",\n    \"8.46.119.0/24\",\n    \"8.47.9.0/24\",\n    \"8.47.12.0/24\",\n    \"8.47.13.0/24\",\n    \"8.47.14.0/24\",\n    \"8.47.15.0/24\",\n    \"8.47.69.0/24\",\n    \"8.47.71.0/24\",\n    \"8.48.130.0/24\",\n    \"8.48.132.0/24\",\n    \"8.48.133.0/24\",\n    \"8.48.134.0/24\",\n    \"23.227.37.0/24\",\n    \"23.227.38.0/24\",\n    \"23.227.39.0/24\",\n    \"23.227.60.0/24\",\n    \"64.68.192.0/24\",\n    \"65.110.63.0/24\",\n    \"66.235.200.0/24\",\n    \"68.67.65.0/24\",\n    \"91.234.214.0/24\",\n    \"103.21.244.0/24\",\n    \"103.22.200.0/24\",\n    \"103.22.201.0/24\",\n    \"103.22.202.0/24\",\n    \"103.22.203.0/24\",\n    \"103.81.228.0/24\",\n    \"104.16.0.0/24\",\n    \"104.16.1.0/24\",\n    \"104.16.2.0/24\",\n    \"104.16.3.0/24\",\n    \"104.16.4.0/24\",\n    \"104.16.5.0/24\",\n    \"104.16.6.0/24\",\n    \"104.16.7.0/24\",\n    \"104.16.8.0/24\",\n    \"104.16.9.0/24\",\n    \"104.16.10.0/24\",\n    \"104.16.11.0/24\",\n    \"104.16.12.0/24\",\n    \"104.16.13.0/24\",\n    \"104.16.14.0/24\",\n    \"104.16.15.0/24\",\n    \"104.16.16.0/24\",\n    \"104.16.17.0/24\",\n    \"104.16.18.0/24\",\n    \"104.16.19.0/24\",\n    \"104.16.20.0/24\",\n    \"104.16.21.0/24\",\n    \"104.16.22.0/24\",\n    \"104.16.23.0/24\",\n    \"104.16.24.0/24\",\n    \"104.16.25.0/24\",\n    \"104.16.26.0/24\",\n    \"104.16.27.0/24\",\n    \"104.16.28.0/24\",\n    \"104.16.29.0/24\",\n    \"104.16.30.0/24\",\n    \"104.16.31.0/24\",\n    \"104.16.32.0/24\",\n    \"104.16.33.0/24\",\n    \"104.16.34.0/24\",\n    \"104.16.35.0/24\",\n    \"104.16.36.0/24\",\n    \"104.16.37.0/24\",\n    \"104.16.38.0/24\",\n    \"104.16.39.0/24\",\n    \"104.16.40.0/24\",\n    \"104.16.41.0/24\",\n    \"104.16.42.0/24\",\n    \"104.16.43.0/24\",\n    \"104.16.44.0/24\",\n    \"104.16.45.0/24\",\n    \"104.16.46.0/24\",\n    \"104.16.47.0/24\",\n    \"104.16.48.0/24\",\n    \"104.16.49.0/24\",\n    \"104.16.50.0/24\",\n    \"104.16.51.0/24\",\n    \"104.16.52.0/24\",\n    \"104.16.53.0/24\",\n    \"104.16.54.0/24\",\n    \"104.16.55.0/24\",\n    \"104.16.56.0/24\",\n    \"104.16.57.0/24\",\n    \"104.16.58.0/24\",\n    \"104.16.59.0/24\",\n    \"104.16.60.0/24\",\n    \"104.16.61.0/24\",\n    \"104.16.62.0/24\",\n    \"104.16.63.0/24\",\n    \"104.16.64.0/24\",\n    \"104.16.65.0/24\",\n    \"104.16.66.0/24\",\n    \"104.16.67.0/24\",\n    \"104.16.68.0/24\",\n    \"104.16.69.0/24\",\n    \"104.16.70.0/24\",\n    \"104.16.71.0/24\",\n    \"104.16.72.0/24\",\n    \"104.16.73.0/24\",\n    \"104.16.74.0/24\",\n    \"104.16.75.0/24\",\n    \"104.16.76.0/24\",\n    \"104.16.77.0/24\",\n    \"104.16.78.0/24\",\n    \"104.16.79.0/24\",\n    \"104.16.80.0/24\",\n    \"104.16.81.0/24\",\n    \"104.16.82.0/24\",\n    \"104.16.83.0/24\",\n    \"104.16.84.0/24\",\n    \"104.16.85.0/24\",\n    \"104.16.86.0/24\",\n    \"104.16.87.0/24\",\n    \"104.16.88.0/24\",\n    \"104.16.89.0/24\",\n    \"104.16.90.0/24\",\n    \"104.16.91.0/24\",\n    \"104.16.92.0/24\",\n    \"104.16.93.0/24\",\n    \"104.16.94.0/24\",\n    \"104.16.95.0/24\",\n    \"104.16.96.0/24\",\n    \"104.16.97.0/24\",\n    \"104.16.98.0/24\",\n    \"104.16.99.0/24\",\n    \"104.16.100.0/24\",\n    \"104.16.101.0/24\",\n    \"104.16.102.0/24\",\n    \"104.16.103.0/24\",\n    \"104.16.104.0/24\",\n    \"104.16.105.0/24\",\n    \"104.16.106.0/24\",\n    \"104.16.107.0/24\",\n    \"104.16.108.0/24\",\n    \"104.16.109.0/24\",\n    \"104.16.110.0/24\",\n    \"104.16.111.0/24\",\n    \"104.16.112.0/24\",\n    \"104.16.113.0/24\",\n    \"104.16.114.0/24\",\n    \"104.16.115.0/24\",\n    \"104.16.116.0/24\",\n    \"104.16.117.0/24\",\n    \"104.16.118.0/24\",\n    \"104.16.119.0/24\",\n    \"104.16.120.0/24\",\n    \"104.16.121.0/24\",\n    \"104.16.122.0/24\",\n    \"104.16.123.0/24\",\n    \"104.16.124.0/24\",\n    \"104.16.125.0/24\",\n    \"104.16.126.0/24\",\n    \"104.16.127.0/24\",\n    \"104.16.128.0/24\",\n    \"104.16.129.0/24\",\n    \"104.16.130.0/24\",\n    \"104.16.131.0/24\",\n    \"104.16.132.0/24\",\n    \"104.16.133.0/24\",\n    \"104.16.134.0/24\",\n    \"104.16.135.0/24\",\n    \"104.16.136.0/24\",\n    \"104.16.137.0/24\",\n    \"104.16.138.0/24\",\n    \"104.16.139.0/24\",\n    \"104.16.140.0/24\",\n    \"104.16.141.0/24\",\n    \"104.16.142.0/24\",\n    \"104.16.143.0/24\",\n    \"104.16.144.0/24\",\n    \"104.16.145.0/24\",\n    \"104.16.146.0/24\",\n    \"104.16.147.0/24\",\n    \"104.16.148.0/24\",\n    \"104.16.149.0/24\",\n    \"104.16.150.0/24\",\n    \"104.16.151.0/24\",\n    \"104.16.152.0/24\",\n    \"104.16.153.0/24\",\n    \"104.16.154.0/24\",\n    \"104.16.155.0/24\",\n    \"104.16.156.0/24\",\n    \"104.16.157.0/24\",\n    \"104.16.158.0/24\",\n    \"104.16.159.0/24\",\n    \"104.16.160.0/24\",\n    \"104.16.161.0/24\",\n    \"104.16.162.0/24\",\n    \"104.16.163.0/24\",\n    \"104.16.164.0/24\",\n    \"104.16.165.0/24\",\n    \"104.16.166.0/24\",\n    \"104.16.167.0/24\",\n    \"104.16.168.0/24\",\n    \"104.16.169.0/24\",\n    \"104.16.170.0/24\",\n    \"104.16.171.0/24\",\n    \"104.16.172.0/24\",\n    \"104.16.173.0/24\",\n    \"104.16.174.0/24\",\n    \"104.16.175.0/24\",\n    \"104.16.176.0/24\",\n    \"104.16.177.0/24\",\n    \"104.16.178.0/24\",\n    \"104.16.179.0/24\",\n    \"104.16.180.0/24\",\n    \"104.16.181.0/24\",\n    \"104.16.182.0/24\",\n    \"104.16.183.0/24\",\n    \"104.16.184.0/24\",\n    \"104.16.185.0/24\",\n    \"104.16.186.0/24\",\n    \"104.16.187.0/24\",\n    \"104.16.188.0/24\",\n    \"104.16.189.0/24\",\n    \"104.16.190.0/24\",\n    \"104.16.191.0/24\",\n    \"104.16.192.0/24\",\n    \"104.16.193.0/24\",\n    \"104.16.194.0/24\",\n    \"104.16.195.0/24\",\n    \"104.16.196.0/24\",\n    \"104.16.197.0/24\",\n    \"104.16.198.0/24\",\n    \"104.16.199.0/24\",\n    \"104.16.200.0/24\",\n    \"104.16.201.0/24\",\n    \"104.16.202.0/24\",\n    \"104.16.203.0/24\",\n    \"104.16.204.0/24\",\n    \"104.16.205.0/24\",\n    \"104.16.206.0/24\",\n    \"104.16.207.0/24\",\n    \"104.16.208.0/24\",\n    \"104.16.209.0/24\",\n    \"104.16.210.0/24\",\n    \"104.16.211.0/24\",\n    \"104.16.212.0/24\",\n    \"104.16.213.0/24\",\n    \"104.16.214.0/24\",\n    \"104.16.215.0/24\",\n    \"104.16.216.0/24\",\n    \"104.16.217.0/24\",\n    \"104.16.218.0/24\",\n    \"104.16.219.0/24\",\n    \"104.16.220.0/24\",\n    \"104.16.221.0/24\",\n    \"104.16.222.0/24\",\n    \"104.16.223.0/24\",\n    \"104.16.224.0/24\",\n    \"104.16.225.0/24\",\n    \"104.16.226.0/24\",\n    \"104.16.227.0/24\",\n    \"104.16.228.0/24\",\n    \"104.16.229.0/24\",\n    \"104.16.230.0/24\",\n    \"104.16.231.0/24\",\n    \"104.16.232.0/24\",\n    \"104.16.233.0/24\",\n    \"104.16.234.0/24\",\n    \"104.16.235.0/24\",\n    \"104.16.236.0/24\",\n    \"104.16.237.0/24\",\n    \"104.16.238.0/24\",\n    \"104.16.239.0/24\",\n    \"104.16.240.0/24\",\n    \"104.16.241.0/24\",\n    \"104.16.242.0/24\",\n    \"104.16.243.0/24\",\n    \"104.16.244.0/24\",\n    \"104.16.245.0/24\",\n    \"104.16.246.0/24\",\n    \"104.16.247.0/24\",\n    \"104.16.248.0/24\",\n    \"104.16.249.0/24\",\n    \"104.16.250.0/24\",\n    \"104.16.251.0/24\",\n    \"104.16.252.0/24\",\n    \"104.16.253.0/24\",\n    \"104.16.254.0/24\",\n    \"104.16.255.0/24\",\n    \"104.17.0.0/24\",\n    \"104.17.1.0/24\",\n    \"104.17.2.0/24\",\n    \"104.17.3.0/24\",\n    \"104.17.4.0/24\",\n    \"104.17.5.0/24\",\n    \"104.17.6.0/24\",\n    \"104.17.7.0/24\",\n    \"104.17.8.0/24\",\n    \"104.17.9.0/24\",\n    \"104.17.10.0/24\",\n    \"104.17.11.0/24\",\n    \"104.17.12.0/24\",\n    \"104.17.13.0/24\",\n    \"104.17.14.0/24\",\n    \"104.17.15.0/24\",\n    \"104.17.16.0/24\",\n    \"104.17.17.0/24\",\n    \"104.17.18.0/24\",\n    \"104.17.19.0/24\",\n    \"104.17.20.0/24\",\n    \"104.17.21.0/24\",\n    \"104.17.22.0/24\",\n    \"104.17.23.0/24\",\n    \"104.17.24.0/24\",\n    \"104.17.25.0/24\",\n    \"104.17.26.0/24\",\n    \"104.17.27.0/24\",\n    \"104.17.28.0/24\",\n    \"104.17.29.0/24\",\n    \"104.17.30.0/24\",\n    \"104.17.31.0/24\",\n    \"104.17.32.0/24\",\n    \"104.17.33.0/24\",\n    \"104.17.34.0/24\",\n    \"104.17.35.0/24\",\n    \"104.17.36.0/24\",\n    \"104.17.37.0/24\",\n    \"104.17.38.0/24\",\n    \"104.17.39.0/24\",\n    \"104.17.40.0/24\",\n    \"104.17.41.0/24\",\n    \"104.17.42.0/24\",\n    \"104.17.43.0/24\",\n    \"104.17.44.0/24\",\n    \"104.17.45.0/24\",\n    \"104.17.46.0/24\",\n    \"104.17.47.0/24\",\n    \"104.17.48.0/24\",\n    \"104.17.49.0/24\",\n    \"104.17.50.0/24\",\n    \"104.17.51.0/24\",\n    \"104.17.52.0/24\",\n    \"104.17.53.0/24\",\n    \"104.17.54.0/24\",\n    \"104.17.55.0/24\",\n    \"104.17.56.0/24\",\n    \"104.17.57.0/24\",\n    \"104.17.58.0/24\",\n    \"104.17.59.0/24\",\n    \"104.17.60.0/24\",\n    \"104.17.61.0/24\",\n    \"104.17.62.0/24\",\n    \"104.17.63.0/24\",\n    \"104.17.64.0/24\",\n    \"104.17.65.0/24\",\n    \"104.17.66.0/24\",\n    \"104.17.67.0/24\",\n    \"104.17.68.0/24\",\n    \"104.17.69.0/24\",\n    \"104.17.70.0/24\",\n    \"104.17.71.0/24\",\n    \"104.17.72.0/24\",\n    \"104.17.73.0/24\",\n    \"104.17.74.0/24\",\n    \"104.17.75.0/24\",\n    \"104.17.76.0/24\",\n    \"104.17.77.0/24\",\n    \"104.17.78.0/24\",\n    \"104.17.79.0/24\",\n    \"104.17.80.0/24\",\n    \"104.17.81.0/24\",\n    \"104.17.82.0/24\",\n    \"104.17.83.0/24\",\n    \"104.17.84.0/24\",\n    \"104.17.85.0/24\",\n    \"104.17.86.0/24\",\n    \"104.17.87.0/24\",\n    \"104.17.88.0/24\",\n    \"104.17.89.0/24\",\n    \"104.17.90.0/24\",\n    \"104.17.91.0/24\",\n    \"104.17.92.0/24\",\n    \"104.17.93.0/24\",\n    \"104.17.94.0/24\",\n    \"104.17.95.0/24\",\n    \"104.17.96.0/24\",\n    \"104.17.97.0/24\",\n    \"104.17.98.0/24\",\n    \"104.17.99.0/24\",\n    \"104.17.100.0/24\",\n    \"104.17.101.0/24\",\n    \"104.17.102.0/24\",\n    \"104.17.103.0/24\",\n    \"104.17.104.0/24\",\n    \"104.17.105.0/24\",\n    \"104.17.106.0/24\",\n    \"104.17.107.0/24\",\n    \"104.17.108.0/24\",\n    \"104.17.109.0/24\",\n    \"104.17.110.0/24\",\n    \"104.17.111.0/24\",\n    \"104.17.112.0/24\",\n    \"104.17.113.0/24\",\n    \"104.17.114.0/24\",\n    \"104.17.115.0/24\",\n    \"104.17.116.0/24\",\n    \"104.17.117.0/24\",\n    \"104.17.118.0/24\",\n    \"104.17.119.0/24\",\n    \"104.17.120.0/24\",\n    \"104.17.121.0/24\",\n    \"104.17.122.0/24\",\n    \"104.17.123.0/24\",\n    \"104.17.124.0/24\",\n    \"104.17.125.0/24\",\n    \"104.17.126.0/24\",\n    \"104.17.127.0/24\",\n    \"104.17.128.0/24\",\n    \"104.17.129.0/24\",\n    \"104.17.130.0/24\",\n    \"104.17.131.0/24\",\n    \"104.17.132.0/24\",\n    \"104.17.133.0/24\",\n    \"104.17.134.0/24\",\n    \"104.17.135.0/24\",\n    \"104.17.136.0/24\",\n    \"104.17.137.0/24\",\n    \"104.17.138.0/24\",\n    \"104.17.139.0/24\",\n    \"104.17.140.0/24\",\n    \"104.17.141.0/24\",\n    \"104.17.142.0/24\",\n    \"104.17.143.0/24\",\n    \"104.17.144.0/24\",\n    \"104.17.145.0/24\",\n    \"104.17.146.0/24\",\n    \"104.17.147.0/24\",\n    \"104.17.148.0/24\",\n    \"104.17.149.0/24\",\n    \"104.17.150.0/24\",\n    \"104.17.151.0/24\",\n    \"104.17.152.0/24\",\n    \"104.17.153.0/24\",\n    \"104.17.154.0/24\",\n    \"104.17.155.0/24\",\n    \"104.17.156.0/24\",\n    \"104.17.157.0/24\",\n    \"104.17.158.0/24\",\n    \"104.17.159.0/24\",\n    \"104.17.160.0/24\",\n    \"104.17.161.0/24\",\n    \"104.17.162.0/24\",\n    \"104.17.163.0/24\",\n    \"104.17.164.0/24\",\n    \"104.17.165.0/24\",\n    \"104.17.166.0/24\",\n    \"104.17.167.0/24\",\n    \"104.17.168.0/24\",\n    \"104.17.169.0/24\",\n    \"104.17.170.0/24\",\n    \"104.17.171.0/24\",\n    \"104.17.172.0/24\",\n    \"104.17.173.0/24\",\n    \"104.17.174.0/24\",\n    \"104.17.175.0/24\",\n    \"104.17.176.0/24\",\n    \"104.17.177.0/24\",\n    \"104.17.178.0/24\",\n    \"104.17.179.0/24\",\n    \"104.17.180.0/24\",\n    \"104.17.181.0/24\",\n    \"104.17.182.0/24\",\n    \"104.17.183.0/24\",\n    \"104.17.184.0/24\",\n    \"104.17.185.0/24\",\n    \"104.17.186.0/24\",\n    \"104.17.187.0/24\",\n    \"104.17.188.0/24\",\n    \"104.17.189.0/24\",\n    \"104.17.190.0/24\",\n    \"104.17.191.0/24\",\n    \"104.17.192.0/24\",\n    \"104.17.193.0/24\",\n    \"104.17.194.0/24\",\n    \"104.17.195.0/24\",\n    \"104.17.196.0/24\",\n    \"104.17.197.0/24\",\n    \"104.17.198.0/24\",\n    \"104.17.199.0/24\",\n    \"104.17.200.0/24\",\n    \"104.17.201.0/24\",\n    \"104.17.202.0/24\",\n    \"104.17.203.0/24\",\n    \"104.17.204.0/24\",\n    \"104.17.205.0/24\",\n    \"104.17.206.0/24\",\n    \"104.17.207.0/24\",\n    \"104.17.208.0/24\",\n    \"104.17.209.0/24\",\n    \"104.17.210.0/24\",\n    \"104.17.211.0/24\",\n    \"104.17.212.0/24\",\n    \"104.17.213.0/24\",\n    \"104.17.214.0/24\",\n    \"104.17.215.0/24\",\n    \"104.17.216.0/24\",\n    \"104.17.217.0/24\",\n    \"104.17.218.0/24\",\n    \"104.17.219.0/24\",\n    \"104.17.220.0/24\",\n    \"104.17.221.0/24\",\n    \"104.17.222.0/24\",\n    \"104.17.223.0/24\",\n    \"104.17.224.0/24\",\n    \"104.17.225.0/24\",\n    \"104.17.226.0/24\",\n    \"104.17.227.0/24\",\n    \"104.17.228.0/24\",\n    \"104.17.229.0/24\",\n    \"104.17.230.0/24\",\n    \"104.17.231.0/24\",\n    \"104.17.232.0/24\",\n    \"104.17.233.0/24\",\n    \"104.17.234.0/24\",\n    \"104.17.235.0/24\",\n    \"104.17.236.0/24\",\n    \"104.17.237.0/24\",\n    \"104.17.238.0/24\",\n    \"104.17.239.0/24\",\n    \"104.17.240.0/24\",\n    \"104.17.241.0/24\",\n    \"104.17.242.0/24\",\n    \"104.17.243.0/24\",\n    \"104.17.244.0/24\",\n    \"104.17.245.0/24\",\n    \"104.17.246.0/24\",\n    \"104.17.247.0/24\",\n    \"104.17.248.0/24\",\n    \"104.17.249.0/24\",\n    \"104.17.250.0/24\",\n    \"104.17.251.0/24\",\n    \"104.17.252.0/24\",\n    \"104.17.253.0/24\",\n    \"104.17.254.0/24\",\n    \"104.17.255.0/24\",\n    \"104.18.0.0/24\",\n    \"104.18.1.0/24\",\n    \"104.18.2.0/24\",\n    \"104.18.3.0/24\",\n    \"104.18.4.0/24\",\n    \"104.18.5.0/24\",\n    \"104.18.6.0/24\",\n    \"104.18.7.0/24\",\n    \"104.18.8.0/24\",\n    \"104.18.9.0/24\",\n    \"104.18.10.0/24\",\n    \"104.18.11.0/24\",\n    \"104.18.12.0/24\",\n    \"104.18.13.0/24\",\n    \"104.18.14.0/24\",\n    \"104.18.15.0/24\",\n    \"104.18.16.0/24\",\n    \"104.18.17.0/24\",\n    \"104.18.18.0/24\",\n    \"104.18.19.0/24\",\n    \"104.18.20.0/24\",\n    \"104.18.21.0/24\",\n    \"104.18.22.0/24\",\n    \"104.18.23.0/24\",\n    \"104.18.24.0/24\",\n    \"104.18.25.0/24\",\n    \"104.18.26.0/24\",\n    \"104.18.27.0/24\",\n    \"104.18.28.0/24\",\n    \"104.18.29.0/24\",\n    \"104.18.30.0/24\",\n    \"104.18.31.0/24\",\n    \"104.18.32.0/24\",\n    \"104.18.33.0/24\",\n    \"104.18.34.0/24\",\n    \"104.18.35.0/24\",\n    \"104.18.36.0/24\",\n    \"104.18.37.0/24\",\n    \"104.18.38.0/24\",\n    \"104.18.39.0/24\",\n    \"104.18.40.0/24\",\n    \"104.18.41.0/24\",\n    \"104.18.42.0/24\",\n    \"104.18.43.0/24\",\n    \"104.18.44.0/24\",\n    \"104.18.45.0/24\",\n    \"104.18.46.0/24\",\n    \"104.18.47.0/24\",\n    \"104.18.48.0/24\",\n    \"104.18.49.0/24\",\n    \"104.18.50.0/24\",\n    \"104.18.51.0/24\",\n    \"104.18.52.0/24\",\n    \"104.18.53.0/24\",\n    \"104.18.54.0/24\",\n    \"104.18.55.0/24\",\n    \"104.18.56.0/24\",\n    \"104.18.57.0/24\",\n    \"104.18.58.0/24\",\n    \"104.18.59.0/24\",\n    \"104.18.60.0/24\",\n    \"104.18.61.0/24\",\n    \"104.18.62.0/24\",\n    \"104.18.63.0/24\",\n    \"104.18.64.0/24\",\n    \"104.18.65.0/24\",\n    \"104.18.66.0/24\",\n    \"104.18.67.0/24\",\n    \"104.18.68.0/24\",\n    \"104.18.69.0/24\",\n    \"104.18.70.0/24\",\n    \"104.18.71.0/24\",\n    \"104.18.72.0/24\",\n    \"104.18.73.0/24\",\n    \"104.18.74.0/24\",\n    \"104.18.75.0/24\",\n    \"104.18.76.0/24\",\n    \"104.18.77.0/24\",\n    \"104.18.78.0/24\",\n    \"104.18.79.0/24\",\n    \"104.18.80.0/24\",\n    \"104.18.81.0/24\",\n    \"104.18.82.0/24\",\n    \"104.18.83.0/24\",\n    \"104.18.84.0/24\",\n    \"104.18.85.0/24\",\n    \"104.18.86.0/24\",\n    \"104.18.87.0/24\",\n    \"104.18.88.0/24\",\n    \"104.18.89.0/24\",\n    \"104.18.90.0/24\",\n    \"104.18.91.0/24\",\n    \"104.18.92.0/24\",\n    \"104.18.93.0/24\",\n    \"104.18.94.0/24\",\n    \"104.18.95.0/24\",\n    \"104.18.96.0/24\",\n    \"104.18.97.0/24\",\n    \"104.18.98.0/24\",\n    \"104.18.99.0/24\",\n    \"104.18.100.0/24\",\n    \"104.18.101.0/24\",\n    \"104.18.102.0/24\",\n    \"104.18.103.0/24\",\n    \"104.18.104.0/24\",\n    \"104.18.105.0/24\",\n    \"104.18.106.0/24\",\n    \"104.18.107.0/24\",\n    \"104.18.108.0/24\",\n    \"104.18.109.0/24\",\n    \"104.18.110.0/24\",\n    \"104.18.111.0/24\",\n    \"104.18.112.0/24\",\n    \"104.18.113.0/24\",\n    \"104.18.114.0/24\",\n    \"104.18.115.0/24\",\n    \"104.18.116.0/24\",\n    \"104.18.117.0/24\",\n    \"104.18.118.0/24\",\n    \"104.18.119.0/24\",\n    \"104.18.120.0/24\",\n    \"104.18.121.0/24\",\n    \"104.18.122.0/24\",\n    \"104.18.123.0/24\",\n    \"104.18.124.0/24\",\n    \"104.18.125.0/24\",\n    \"104.18.126.0/24\",\n    \"104.18.127.0/24\",\n    \"104.18.128.0/24\",\n    \"104.18.129.0/24\",\n    \"104.18.130.0/24\",\n    \"104.18.131.0/24\",\n    \"104.18.132.0/24\",\n    \"104.18.133.0/24\",\n    \"104.18.134.0/24\",\n    \"104.18.135.0/24\",\n    \"104.18.136.0/24\",\n    \"104.18.137.0/24\",\n    \"104.18.138.0/24\",\n    \"104.18.139.0/24\",\n    \"104.18.140.0/24\",\n    \"104.18.141.0/24\",\n    \"104.18.142.0/24\",\n    \"104.18.143.0/24\",\n    \"104.18.144.0/24\",\n    \"104.18.145.0/24\",\n    \"104.18.146.0/24\",\n    \"104.18.147.0/24\",\n    \"104.18.148.0/24\",\n    \"104.18.149.0/24\",\n    \"104.18.150.0/24\",\n    \"104.18.151.0/24\",\n    \"104.18.152.0/24\",\n    \"104.18.153.0/24\",\n    \"104.18.154.0/24\",\n    \"104.18.155.0/24\",\n    \"104.18.156.0/24\",\n    \"104.18.157.0/24\",\n    \"104.18.158.0/24\",\n    \"104.18.159.0/24\",\n    \"104.18.160.0/24\",\n    \"104.18.161.0/24\",\n    \"104.18.162.0/24\",\n    \"104.18.163.0/24\",\n    \"104.18.164.0/24\",\n    \"104.18.165.0/24\",\n    \"104.18.166.0/24\",\n    \"104.18.167.0/24\",\n    \"104.18.168.0/24\",\n    \"104.18.169.0/24\",\n    \"104.18.170.0/24\",\n    \"104.18.171.0/24\",\n    \"104.18.172.0/24\",\n    \"104.18.173.0/24\",\n    \"104.18.174.0/24\",\n    \"104.18.175.0/24\",\n    \"104.18.176.0/24\",\n    \"104.18.177.0/24\",\n    \"104.18.178.0/24\",\n    \"104.18.179.0/24\",\n    \"104.18.180.0/24\",\n    \"104.18.181.0/24\",\n    \"104.18.182.0/24\",\n    \"104.18.183.0/24\",\n    \"104.18.184.0/24\",\n    \"104.18.185.0/24\",\n    \"104.18.186.0/24\",\n    \"104.18.187.0/24\",\n    \"104.18.188.0/24\",\n    \"104.18.189.0/24\",\n    \"104.18.190.0/24\",\n    \"104.18.191.0/24\",\n    \"104.18.192.0/24\",\n    \"104.18.193.0/24\",\n    \"104.18.194.0/24\",\n    \"104.18.195.0/24\",\n    \"104.18.196.0/24\",\n    \"104.18.197.0/24\",\n    \"104.18.198.0/24\",\n    \"104.18.199.0/24\",\n    \"104.18.200.0/24\",\n    \"104.18.201.0/24\",\n    \"104.18.202.0/24\",\n    \"104.18.203.0/24\",\n    \"104.18.204.0/24\",\n    \"104.18.205.0/24\",\n    \"104.18.206.0/24\",\n    \"104.18.207.0/24\",\n    \"104.18.208.0/24\",\n    \"104.18.209.0/24\",\n    \"104.18.210.0/24\",\n    \"104.18.211.0/24\",\n    \"104.18.212.0/24\",\n    \"104.18.213.0/24\",\n    \"104.18.214.0/24\",\n    \"104.18.215.0/24\",\n    \"104.18.216.0/24\",\n    \"104.18.217.0/24\",\n    \"104.18.218.0/24\",\n    \"104.18.219.0/24\",\n    \"104.18.220.0/24\",\n    \"104.18.221.0/24\",\n    \"104.18.222.0/24\",\n    \"104.18.223.0/24\",\n    \"104.18.224.0/24\",\n    \"104.18.225.0/24\",\n    \"104.18.226.0/24\",\n    \"104.18.227.0/24\",\n    \"104.18.228.0/24\",\n    \"104.18.229.0/24\",\n    \"104.18.230.0/24\",\n    \"104.18.231.0/24\",\n    \"104.18.232.0/24\",\n    \"104.18.233.0/24\",\n    \"104.18.234.0/24\",\n    \"104.18.235.0/24\",\n    \"104.18.236.0/24\",\n    \"104.18.237.0/24\",\n    \"104.18.238.0/24\",\n    \"104.18.239.0/24\",\n    \"104.18.240.0/24\",\n    \"104.18.241.0/24\",\n    \"104.18.242.0/24\",\n    \"104.18.243.0/24\",\n    \"104.18.244.0/24\",\n    \"104.18.245.0/24\",\n    \"104.18.246.0/24\",\n    \"104.18.247.0/24\",\n    \"104.18.248.0/24\",\n    \"104.18.249.0/24\",\n    \"104.18.250.0/24\",\n    \"104.18.251.0/24\",\n    \"104.18.252.0/24\",\n    \"104.18.253.0/24\",\n    \"104.18.254.0/24\",\n    \"104.18.255.0/24\",\n    \"104.19.0.0/24\",\n    \"104.19.1.0/24\",\n    \"104.19.2.0/24\",\n    \"104.19.3.0/24\",\n    \"104.19.4.0/24\",\n    \"104.19.5.0/24\",\n    \"104.19.6.0/24\",\n    \"104.19.7.0/24\",\n    \"104.19.8.0/24\",\n    \"104.19.9.0/24\",\n    \"104.19.10.0/24\",\n    \"104.19.11.0/24\",\n    \"104.19.12.0/24\",\n    \"104.19.13.0/24\",\n    \"104.19.14.0/24\",\n    \"104.19.15.0/24\",\n    \"104.19.16.0/24\",\n    \"104.19.17.0/24\",\n    \"104.19.18.0/24\",\n    \"104.19.19.0/24\",\n    \"104.19.20.0/24\",\n    \"104.19.21.0/24\",\n    \"104.19.22.0/24\",\n    \"104.19.23.0/24\",\n    \"104.19.24.0/24\",\n    \"104.19.25.0/24\",\n    \"104.19.26.0/24\",\n    \"104.19.27.0/24\",\n    \"104.19.28.0/24\",\n    \"104.19.29.0/24\",\n    \"104.19.30.0/24\",\n    \"104.19.31.0/24\",\n    \"104.19.32.0/24\",\n    \"104.19.33.0/24\",\n    \"104.19.34.0/24\",\n    \"104.19.35.0/24\",\n    \"104.19.36.0/24\",\n    \"104.19.37.0/24\",\n    \"104.19.38.0/24\",\n    \"104.19.39.0/24\",\n    \"104.19.40.0/24\",\n    \"104.19.41.0/24\",\n    \"104.19.42.0/24\",\n    \"104.19.43.0/24\",\n    \"104.19.44.0/24\",\n    \"104.19.45.0/24\",\n    \"104.19.46.0/24\",\n    \"104.19.47.0/24\",\n    \"104.19.48.0/24\",\n    \"104.19.49.0/24\",\n    \"104.19.50.0/24\",\n    \"104.19.51.0/24\",\n    \"104.19.52.0/24\",\n    \"104.19.53.0/24\",\n    \"104.19.54.0/24\",\n    \"104.19.55.0/24\",\n    \"104.19.56.0/24\",\n    \"104.19.57.0/24\",\n    \"104.19.58.0/24\",\n    \"104.19.59.0/24\",\n    \"104.19.60.0/24\",\n    \"104.19.61.0/24\",\n    \"104.19.62.0/24\",\n    \"104.19.63.0/24\",\n    \"104.19.64.0/24\",\n    \"104.19.65.0/24\",\n    \"104.19.66.0/24\",\n    \"104.19.67.0/24\",\n    \"104.19.68.0/24\",\n    \"104.19.69.0/24\",\n    \"104.19.70.0/24\",\n    \"104.19.71.0/24\",\n    \"104.19.72.0/24\",\n    \"104.19.73.0/24\",\n    \"104.19.74.0/24\",\n    \"104.19.75.0/24\",\n    \"104.19.76.0/24\",\n    \"104.19.77.0/24\",\n    \"104.19.78.0/24\",\n    \"104.19.79.0/24\",\n    \"104.19.80.0/24\",\n    \"104.19.81.0/24\",\n    \"104.19.82.0/24\",\n    \"104.19.83.0/24\",\n    \"104.19.84.0/24\",\n    \"104.19.85.0/24\",\n    \"104.19.86.0/24\",\n    \"104.19.87.0/24\",\n    \"104.19.88.0/24\",\n    \"104.19.89.0/24\",\n    \"104.19.90.0/24\",\n    \"104.19.91.0/24\",\n    \"104.19.92.0/24\",\n    \"104.19.93.0/24\",\n    \"104.19.94.0/24\",\n    \"104.19.95.0/24\",\n    \"104.19.96.0/24\",\n    \"104.19.97.0/24\",\n    \"104.19.98.0/24\",\n    \"104.19.99.0/24\",\n    \"104.19.100.0/24\",\n    \"104.19.101.0/24\",\n    \"104.19.102.0/24\",\n    \"104.19.103.0/24\",\n    \"104.19.104.0/24\",\n    \"104.19.105.0/24\",\n    \"104.19.106.0/24\",\n    \"104.19.107.0/24\",\n    \"104.19.108.0/24\",\n    \"104.19.109.0/24\",\n    \"104.19.110.0/24\",\n    \"104.19.111.0/24\",\n    \"104.19.112.0/24\",\n    \"104.19.113.0/24\",\n    \"104.19.114.0/24\",\n    \"104.19.115.0/24\",\n    \"104.19.116.0/24\",\n    \"104.19.117.0/24\",\n    \"104.19.118.0/24\",\n    \"104.19.119.0/24\",\n    \"104.19.120.0/24\",\n    \"104.19.121.0/24\",\n    \"104.19.122.0/24\",\n    \"104.19.123.0/24\",\n    \"104.19.124.0/24\",\n    \"104.19.125.0/24\",\n    \"104.19.126.0/24\",\n    \"104.19.127.0/24\",\n    \"104.19.128.0/24\",\n    \"104.19.129.0/24\",\n    \"104.19.130.0/24\",\n    \"104.19.131.0/24\",\n    \"104.19.132.0/24\",\n    \"104.19.133.0/24\",\n    \"104.19.134.0/24\",\n    \"104.19.135.0/24\",\n    \"104.19.136.0/24\",\n    \"104.19.137.0/24\",\n    \"104.19.138.0/24\",\n    \"104.19.139.0/24\",\n    \"104.19.140.0/24\",\n    \"104.19.141.0/24\",\n    \"104.19.142.0/24\",\n    \"104.19.143.0/24\",\n    \"104.19.144.0/24\",\n    \"104.19.145.0/24\",\n    \"104.19.146.0/24\",\n    \"104.19.147.0/24\",\n    \"104.19.148.0/24\",\n    \"104.19.149.0/24\",\n    \"104.19.150.0/24\",\n    \"104.19.151.0/24\",\n    \"104.19.152.0/24\",\n    \"104.19.153.0/24\",\n    \"104.19.154.0/24\",\n    \"104.19.155.0/24\",\n    \"104.19.156.0/24\",\n    \"104.19.157.0/24\",\n    \"104.19.158.0/24\",\n    \"104.19.159.0/24\",\n    \"104.19.160.0/24\",\n    \"104.19.161.0/24\",\n    \"104.19.162.0/24\",\n    \"104.19.163.0/24\",\n    \"104.19.164.0/24\",\n    \"104.19.165.0/24\",\n    \"104.19.166.0/24\",\n    \"104.19.167.0/24\",\n    \"104.19.168.0/24\",\n    \"104.19.169.0/24\",\n    \"104.19.170.0/24\",\n    \"104.19.171.0/24\",\n    \"104.19.172.0/24\",\n    \"104.19.173.0/24\",\n    \"104.19.174.0/24\",\n    \"104.19.175.0/24\",\n    \"104.19.176.0/24\",\n    \"104.19.177.0/24\",\n    \"104.19.178.0/24\",\n    \"104.19.179.0/24\",\n    \"104.19.180.0/24\",\n    \"104.19.181.0/24\",\n    \"104.19.182.0/24\",\n    \"104.19.183.0/24\",\n    \"104.19.184.0/24\",\n    \"104.19.185.0/24\",\n    \"104.19.186.0/24\",\n    \"104.19.187.0/24\",\n    \"104.19.188.0/24\",\n    \"104.19.189.0/24\",\n    \"104.19.190.0/24\",\n    \"104.19.191.0/24\",\n    \"104.19.192.0/24\",\n    \"104.19.193.0/24\",\n    \"104.19.194.0/24\",\n    \"104.19.195.0/24\",\n    \"104.19.196.0/24\",\n    \"104.19.197.0/24\",\n    \"104.19.198.0/24\",\n    \"104.19.199.0/24\",\n    \"104.19.200.0/24\",\n    \"104.19.201.0/24\",\n    \"104.19.202.0/24\",\n    \"104.19.203.0/24\",\n    \"104.19.204.0/24\",\n    \"104.19.205.0/24\",\n    \"104.19.206.0/24\",\n    \"104.19.207.0/24\",\n    \"104.19.208.0/24\",\n    \"104.19.209.0/24\",\n    \"104.19.210.0/24\",\n    \"104.19.211.0/24\",\n    \"104.19.212.0/24\",\n    \"104.19.213.0/24\",\n    \"104.19.214.0/24\",\n    \"104.19.215.0/24\",\n    \"104.19.216.0/24\",\n    \"104.19.217.0/24\",\n    \"104.19.218.0/24\",\n    \"104.19.219.0/24\",\n    \"104.19.220.0/24\",\n    \"104.19.221.0/24\",\n    \"104.19.222.0/24\",\n    \"104.19.223.0/24\",\n    \"104.19.224.0/24\",\n    \"104.19.225.0/24\",\n    \"104.19.226.0/24\",\n    \"104.19.227.0/24\",\n    \"104.19.228.0/24\",\n    \"104.19.229.0/24\",\n    \"104.19.230.0/24\",\n    \"104.19.231.0/24\",\n    \"104.19.232.0/24\",\n    \"104.19.233.0/24\",\n    \"104.19.234.0/24\",\n    \"104.19.235.0/24\",\n    \"104.19.236.0/24\",\n    \"104.19.237.0/24\",\n    \"104.19.238.0/24\",\n    \"104.19.239.0/24\",\n    \"104.19.240.0/24\",\n    \"104.19.241.0/24\",\n    \"104.19.242.0/24\",\n    \"104.19.243.0/24\",\n    \"104.19.244.0/24\",\n    \"104.19.245.0/24\",\n    \"104.19.246.0/24\",\n    \"104.19.247.0/24\",\n    \"104.19.248.0/24\",\n    \"104.19.249.0/24\",\n    \"104.19.250.0/24\",\n    \"104.19.251.0/24\",\n    \"104.19.252.0/24\",\n    \"104.19.253.0/24\",\n    \"104.19.254.0/24\",\n    \"104.19.255.0/24\",\n    \"104.20.0.0/24\",\n    \"104.20.1.0/24\",\n    \"104.20.2.0/24\",\n    \"104.20.3.0/24\",\n    \"104.20.4.0/24\",\n    \"104.20.5.0/24\",\n    \"104.20.6.0/24\",\n    \"104.20.7.0/24\",\n    \"104.20.8.0/24\",\n    \"104.20.9.0/24\",\n    \"104.20.10.0/24\",\n    \"104.20.11.0/24\",\n    \"104.20.12.0/24\",\n    \"104.20.13.0/24\",\n    \"104.20.14.0/24\",\n    \"104.20.15.0/24\",\n    \"104.20.16.0/24\",\n    \"104.20.17.0/24\",\n    \"104.20.18.0/24\",\n    \"104.20.19.0/24\",\n    \"104.20.20.0/24\",\n    \"104.20.21.0/24\",\n    \"104.20.22.0/24\",\n    \"104.20.23.0/24\",\n    \"104.20.24.0/24\",\n    \"104.20.25.0/24\",\n    \"104.20.26.0/24\",\n    \"104.20.27.0/24\",\n    \"104.20.28.0/24\",\n    \"104.20.29.0/24\",\n    \"104.20.30.0/24\",\n    \"104.20.31.0/24\",\n    \"104.20.32.0/24\",\n    \"104.20.33.0/24\",\n    \"104.20.34.0/24\",\n    \"104.20.35.0/24\",\n    \"104.20.36.0/24\",\n    \"104.20.37.0/24\",\n    \"104.20.38.0/24\",\n    \"104.20.39.0/24\",\n    \"104.20.40.0/24\",\n    \"104.20.41.0/24\",\n    \"104.20.42.0/24\",\n    \"104.20.43.0/24\",\n    \"104.20.44.0/24\",\n    \"104.20.45.0/24\",\n    \"104.20.46.0/24\",\n    \"104.20.47.0/24\",\n    \"104.20.48.0/24\",\n    \"104.20.49.0/24\",\n    \"104.20.50.0/24\",\n    \"104.20.51.0/24\",\n    \"104.20.52.0/24\",\n    \"104.20.53.0/24\",\n    \"104.20.54.0/24\",\n    \"104.20.55.0/24\",\n    \"104.20.56.0/24\",\n    \"104.20.57.0/24\",\n    \"104.20.58.0/24\",\n    \"104.20.59.0/24\",\n    \"104.20.60.0/24\",\n    \"104.20.61.0/24\",\n    \"104.20.62.0/24\",\n    \"104.20.63.0/24\",\n    \"104.20.64.0/24\",\n    \"104.20.65.0/24\",\n    \"104.20.66.0/24\",\n    \"104.20.67.0/24\",\n    \"104.20.68.0/24\",\n    \"104.20.69.0/24\",\n    \"104.20.70.0/24\",\n    \"104.20.71.0/24\",\n    \"104.20.72.0/24\",\n    \"104.20.73.0/24\",\n    \"104.20.74.0/24\",\n    \"104.20.75.0/24\",\n    \"104.20.76.0/24\",\n    \"104.20.77.0/24\",\n    \"104.20.78.0/24\",\n    \"104.20.79.0/24\",\n    \"104.20.80.0/24\",\n    \"104.20.81.0/24\",\n    \"104.20.82.0/24\",\n    \"104.20.83.0/24\",\n    \"104.20.84.0/24\",\n    \"104.20.85.0/24\",\n    \"104.20.86.0/24\",\n    \"104.20.87.0/24\",\n    \"104.20.88.0/24\",\n    \"104.20.89.0/24\",\n    \"104.20.90.0/24\",\n    \"104.20.91.0/24\",\n    \"104.20.92.0/24\",\n    \"104.20.93.0/24\",\n    \"104.20.94.0/24\",\n    \"104.20.95.0/24\",\n    \"104.20.96.0/24\",\n    \"104.20.97.0/24\",\n    \"104.20.98.0/24\",\n    \"104.20.99.0/24\",\n    \"104.20.100.0/24\",\n    \"104.20.101.0/24\",\n    \"104.20.102.0/24\",\n    \"104.20.103.0/24\",\n    \"104.20.104.0/24\",\n    \"104.20.105.0/24\",\n    \"104.20.106.0/24\",\n    \"104.20.107.0/24\",\n    \"104.20.108.0/24\",\n    \"104.20.109.0/24\",\n    \"104.20.110.0/24\",\n    \"104.20.111.0/24\",\n    \"104.20.112.0/24\",\n    \"104.20.113.0/24\",\n    \"104.20.114.0/24\",\n    \"104.20.115.0/24\",\n    \"104.20.116.0/24\",\n    \"104.20.117.0/24\",\n    \"104.20.118.0/24\",\n    \"104.20.119.0/24\",\n    \"104.20.120.0/24\",\n    \"104.20.121.0/24\",\n    \"104.20.122.0/24\",\n    \"104.20.123.0/24\",\n    \"104.20.124.0/24\",\n    \"104.20.125.0/24\",\n    \"104.20.126.0/24\",\n    \"104.20.127.0/24\",\n    \"104.20.128.0/24\",\n    \"104.20.129.0/24\",\n    \"104.20.130.0/24\",\n    \"104.20.131.0/24\",\n    \"104.20.132.0/24\",\n    \"104.20.133.0/24\",\n    \"104.20.134.0/24\",\n    \"104.20.135.0/24\",\n    \"104.20.136.0/24\",\n    \"104.20.137.0/24\",\n    \"104.20.138.0/24\",\n    \"104.20.139.0/24\",\n    \"104.20.140.0/24\",\n    \"104.20.141.0/24\",\n    \"104.20.142.0/24\",\n    \"104.20.143.0/24\",\n    \"104.20.144.0/24\",\n    \"104.20.145.0/24\",\n    \"104.20.146.0/24\",\n    \"104.20.147.0/24\",\n    \"104.20.148.0/24\",\n    \"104.20.149.0/24\",\n    \"104.20.150.0/24\",\n    \"104.20.151.0/24\",\n    \"104.20.152.0/24\",\n    \"104.20.153.0/24\",\n    \"104.20.154.0/24\",\n    \"104.20.155.0/24\",\n    \"104.20.156.0/24\",\n    \"104.20.157.0/24\",\n    \"104.20.158.0/24\",\n    \"104.20.159.0/24\",\n    \"104.20.160.0/24\",\n    \"104.20.161.0/24\",\n    \"104.20.162.0/24\",\n    \"104.20.163.0/24\",\n    \"104.20.164.0/24\",\n    \"104.20.165.0/24\",\n    \"104.20.166.0/24\",\n    \"104.20.167.0/24\",\n    \"104.20.168.0/24\",\n    \"104.20.169.0/24\",\n    \"104.20.170.0/24\",\n    \"104.20.171.0/24\",\n    \"104.20.172.0/24\",\n    \"104.20.173.0/24\",\n    \"104.20.174.0/24\",\n    \"104.20.175.0/24\",\n    \"104.20.176.0/24\",\n    \"104.20.177.0/24\",\n    \"104.20.178.0/24\",\n    \"104.20.179.0/24\",\n    \"104.20.180.0/24\",\n    \"104.20.181.0/24\",\n    \"104.20.182.0/24\",\n    \"104.20.183.0/24\",\n    \"104.20.184.0/24\",\n    \"104.20.185.0/24\",\n    \"104.20.186.0/24\",\n    \"104.20.187.0/24\",\n    \"104.20.188.0/24\",\n    \"104.20.189.0/24\",\n    \"104.20.190.0/24\",\n    \"104.20.191.0/24\",\n    \"104.20.192.0/24\",\n    \"104.20.193.0/24\",\n    \"104.20.194.0/24\",\n    \"104.20.195.0/24\",\n    \"104.20.196.0/24\",\n    \"104.20.197.0/24\",\n    \"104.20.198.0/24\",\n    \"104.20.199.0/24\",\n    \"104.20.200.0/24\",\n    \"104.20.201.0/24\",\n    \"104.20.202.0/24\",\n    \"104.20.203.0/24\",\n    \"104.20.204.0/24\",\n    \"104.20.205.0/24\",\n    \"104.20.206.0/24\",\n    \"104.20.207.0/24\",\n    \"104.20.208.0/24\",\n    \"104.20.209.0/24\",\n    \"104.20.210.0/24\",\n    \"104.20.211.0/24\",\n    \"104.20.212.0/24\",\n    \"104.20.213.0/24\",\n    \"104.20.214.0/24\",\n    \"104.20.215.0/24\",\n    \"104.20.216.0/24\",\n    \"104.20.217.0/24\",\n    \"104.20.218.0/24\",\n    \"104.20.219.0/24\",\n    \"104.20.220.0/24\",\n    \"104.20.221.0/24\",\n    \"104.20.222.0/24\",\n    \"104.20.223.0/24\",\n    \"104.20.224.0/24\",\n    \"104.20.225.0/24\",\n    \"104.20.226.0/24\",\n    \"104.20.227.0/24\",\n    \"104.20.228.0/24\",\n    \"104.20.229.0/24\",\n    \"104.20.230.0/24\",\n    \"104.20.231.0/24\",\n    \"104.20.232.0/24\",\n    \"104.20.233.0/24\",\n    \"104.20.234.0/24\",\n    \"104.20.235.0/24\",\n    \"104.20.236.0/24\",\n    \"104.20.237.0/24\",\n    \"104.20.238.0/24\",\n    \"104.20.239.0/24\",\n    \"104.20.240.0/24\",\n    \"104.20.241.0/24\",\n    \"104.20.242.0/24\",\n    \"104.20.243.0/24\",\n    \"104.20.244.0/24\",\n    \"104.20.245.0/24\",\n    \"104.20.246.0/24\",\n    \"104.20.247.0/24\",\n    \"104.20.248.0/24\",\n    \"104.20.249.0/24\",\n    \"104.20.250.0/24\",\n    \"104.20.251.0/24\",\n    \"104.20.252.0/24\",\n    \"104.20.253.0/24\",\n    \"104.20.254.0/24\",\n    \"104.20.255.0/24\",\n    \"104.21.0.0/24\",\n    \"104.21.1.0/24\",\n    \"104.21.2.0/24\",\n    \"104.21.3.0/24\",\n    \"104.21.4.0/24\",\n    \"104.21.5.0/24\",\n    \"104.21.6.0/24\",\n    \"104.21.7.0/24\",\n    \"104.21.8.0/24\",\n    \"104.21.9.0/24\",\n    \"104.21.10.0/24\",\n    \"104.21.11.0/24\",\n    \"104.21.12.0/24\",\n    \"104.21.13.0/24\",\n    \"104.21.14.0/24\",\n    \"104.21.15.0/24\",\n    \"104.21.16.0/24\",\n    \"104.21.17.0/24\",\n    \"104.21.18.0/24\",\n    \"104.21.19.0/24\",\n    \"104.21.20.0/24\",\n    \"104.21.21.0/24\",\n    \"104.21.22.0/24\",\n    \"104.21.23.0/24\",\n    \"104.21.24.0/24\",\n    \"104.21.25.0/24\",\n    \"104.21.26.0/24\",\n    \"104.21.27.0/24\",\n    \"104.21.28.0/24\",\n    \"104.21.29.0/24\",\n    \"104.21.30.0/24\",\n    \"104.21.31.0/24\",\n    \"104.21.32.0/24\",\n    \"104.21.33.0/24\",\n    \"104.21.34.0/24\",\n    \"104.21.35.0/24\",\n    \"104.21.36.0/24\",\n    \"104.21.37.0/24\",\n    \"104.21.38.0/24\",\n    \"104.21.39.0/24\",\n    \"104.21.40.0/24\",\n    \"104.21.41.0/24\",\n    \"104.21.42.0/24\",\n    \"104.21.43.0/24\",\n    \"104.21.44.0/24\",\n    \"104.21.45.0/24\",\n    \"104.21.46.0/24\",\n    \"104.21.47.0/24\",\n    \"104.21.48.0/24\",\n    \"104.21.49.0/24\",\n    \"104.21.50.0/24\",\n    \"104.21.51.0/24\",\n    \"104.21.52.0/24\",\n    \"104.21.53.0/24\",\n    \"104.21.54.0/24\",\n    \"104.21.55.0/24\",\n    \"104.21.56.0/24\",\n    \"104.21.57.0/24\",\n    \"104.21.58.0/24\",\n    \"104.21.59.0/24\",\n    \"104.21.60.0/24\",\n    \"104.21.61.0/24\",\n    \"104.21.62.0/24\",\n    \"104.21.63.0/24\",\n    \"104.21.64.0/24\",\n    \"104.21.65.0/24\",\n    \"104.21.66.0/24\",\n    \"104.21.67.0/24\",\n    \"104.21.68.0/24\",\n    \"104.21.69.0/24\",\n    \"104.21.70.0/24\",\n    \"104.21.71.0/24\",\n    \"104.21.72.0/24\",\n    \"104.21.73.0/24\",\n    \"104.21.74.0/24\",\n    \"104.21.75.0/24\",\n    \"104.21.76.0/24\",\n    \"104.21.77.0/24\",\n    \"104.21.78.0/24\",\n    \"104.21.79.0/24\",\n    \"104.21.80.0/24\",\n    \"104.21.81.0/24\",\n    \"104.21.82.0/24\",\n    \"104.21.83.0/24\",\n    \"104.21.84.0/24\",\n    \"104.21.85.0/24\",\n    \"104.21.86.0/24\",\n    \"104.21.87.0/24\",\n    \"104.21.88.0/24\",\n    \"104.21.89.0/24\",\n    \"104.21.90.0/24\",\n    \"104.21.91.0/24\",\n    \"104.21.92.0/24\",\n    \"104.21.93.0/24\",\n    \"104.21.94.0/24\",\n    \"104.21.95.0/24\",\n    \"104.21.96.0/24\",\n    \"104.21.97.0/24\",\n    \"104.21.98.0/24\",\n    \"104.21.99.0/24\",\n    \"104.21.100.0/24\",\n    \"104.21.101.0/24\",\n    \"104.21.102.0/24\",\n    \"104.21.103.0/24\",\n    \"104.21.104.0/24\",\n    \"104.21.105.0/24\",\n    \"104.21.106.0/24\",\n    \"104.21.107.0/24\",\n    \"104.21.108.0/24\",\n    \"104.21.109.0/24\",\n    \"104.21.110.0/24\",\n    \"104.21.111.0/24\",\n    \"104.21.112.0/24\",\n    \"104.21.113.0/24\",\n    \"104.21.114.0/24\",\n    \"104.21.115.0/24\",\n    \"104.21.116.0/24\",\n    \"104.21.117.0/24\",\n    \"104.21.118.0/24\",\n    \"104.21.119.0/24\",\n    \"104.21.120.0/24\",\n    \"104.21.121.0/24\",\n    \"104.21.122.0/24\",\n    \"104.21.123.0/24\",\n    \"104.21.124.0/24\",\n    \"104.21.125.0/24\",\n    \"104.21.126.0/24\",\n    \"104.21.127.0/24\",\n    \"104.21.128.0/24\",\n    \"104.21.129.0/24\",\n    \"104.21.130.0/24\",\n    \"104.21.131.0/24\",\n    \"104.21.132.0/24\",\n    \"104.21.133.0/24\",\n    \"104.21.134.0/24\",\n    \"104.21.135.0/24\",\n    \"104.21.136.0/24\",\n    \"104.21.137.0/24\",\n    \"104.21.138.0/24\",\n    \"104.21.139.0/24\",\n    \"104.21.140.0/24\",\n    \"104.21.141.0/24\",\n    \"104.21.142.0/24\",\n    \"104.21.143.0/24\",\n    \"104.21.144.0/24\",\n    \"104.21.145.0/24\",\n    \"104.21.146.0/24\",\n    \"104.21.147.0/24\",\n    \"104.21.148.0/24\",\n    \"104.21.149.0/24\",\n    \"104.21.150.0/24\",\n    \"104.21.151.0/24\",\n    \"104.21.152.0/24\",\n    \"104.21.153.0/24\",\n    \"104.21.154.0/24\",\n    \"104.21.155.0/24\",\n    \"104.21.156.0/24\",\n    \"104.21.157.0/24\",\n    \"104.21.158.0/24\",\n    \"104.21.159.0/24\",\n    \"104.21.160.0/24\",\n    \"104.21.161.0/24\",\n    \"104.21.162.0/24\",\n    \"104.21.163.0/24\",\n    \"104.21.164.0/24\",\n    \"104.21.165.0/24\",\n    \"104.21.166.0/24\",\n    \"104.21.167.0/24\",\n    \"104.21.168.0/24\",\n    \"104.21.169.0/24\",\n    \"104.21.170.0/24\",\n    \"104.21.171.0/24\",\n    \"104.21.172.0/24\",\n    \"104.21.173.0/24\",\n    \"104.21.174.0/24\",\n    \"104.21.175.0/24\",\n    \"104.21.176.0/24\",\n    \"104.21.177.0/24\",\n    \"104.21.178.0/24\",\n    \"104.21.179.0/24\",\n    \"104.21.180.0/24\",\n    \"104.21.181.0/24\",\n    \"104.21.182.0/24\",\n    \"104.21.183.0/24\",\n    \"104.21.184.0/24\",\n    \"104.21.185.0/24\",\n    \"104.21.186.0/24\",\n    \"104.21.187.0/24\",\n    \"104.21.188.0/24\",\n    \"104.21.189.0/24\",\n    \"104.21.190.0/24\",\n    \"104.21.191.0/24\",\n    \"104.21.192.0/24\",\n    \"104.21.193.0/24\",\n    \"104.21.194.0/24\",\n    \"104.21.195.0/24\",\n    \"104.21.196.0/24\",\n    \"104.21.197.0/24\",\n    \"104.21.198.0/24\",\n    \"104.21.199.0/24\",\n    \"104.21.200.0/24\",\n    \"104.21.201.0/24\",\n    \"104.21.202.0/24\",\n    \"104.21.203.0/24\",\n    \"104.21.204.0/24\",\n    \"104.21.205.0/24\",\n    \"104.21.206.0/24\",\n    \"104.21.207.0/24\",\n    \"104.21.208.0/24\",\n    \"104.21.209.0/24\",\n    \"104.21.210.0/24\",\n    \"104.21.211.0/24\",\n    \"104.21.212.0/24\",\n    \"104.21.213.0/24\",\n    \"104.21.214.0/24\",\n    \"104.21.215.0/24\",\n    \"104.21.216.0/24\",\n    \"104.21.217.0/24\",\n    \"104.21.218.0/24\",\n    \"104.21.219.0/24\",\n    \"104.21.220.0/24\",\n    \"104.21.221.0/24\",\n    \"104.21.222.0/24\",\n    \"104.21.223.0/24\",\n    \"104.21.224.0/24\",\n    \"104.21.225.0/24\",\n    \"104.21.226.0/24\",\n    \"104.21.227.0/24\",\n    \"104.21.228.0/24\",\n    \"104.21.229.0/24\",\n    \"104.21.230.0/24\",\n    \"104.21.231.0/24\",\n    \"104.21.232.0/24\",\n    \"104.21.233.0/24\",\n    \"104.21.234.0/24\",\n    \"104.21.235.0/24\",\n    \"104.21.236.0/24\",\n    \"104.21.237.0/24\",\n    \"104.21.238.0/24\",\n    \"104.21.239.0/24\",\n    \"104.21.240.0/24\",\n    \"104.21.241.0/24\",\n    \"104.21.242.0/24\",\n    \"104.21.243.0/24\",\n    \"104.21.244.0/24\",\n    \"104.21.245.0/24\",\n    \"104.21.246.0/24\",\n    \"104.21.247.0/24\",\n    \"104.21.248.0/24\",\n    \"104.21.249.0/24\",\n    \"104.21.250.0/24\",\n    \"104.21.251.0/24\",\n    \"104.21.252.0/24\",\n    \"104.21.253.0/24\",\n    \"104.21.254.0/24\",\n    \"104.21.255.0/24\",\n    \"104.22.0.0/24\",\n    \"104.22.1.0/24\",\n    \"104.22.2.0/24\",\n    \"104.22.3.0/24\",\n    \"104.22.4.0/24\",\n    \"104.22.5.0/24\",\n    \"104.22.6.0/24\",\n    \"104.22.7.0/24\",\n    \"104.22.8.0/24\",\n    \"104.22.9.0/24\",\n    \"104.22.10.0/24\",\n    \"104.22.11.0/24\",\n    \"104.22.12.0/24\",\n    \"104.22.13.0/24\",\n    \"104.22.14.0/24\",\n    \"104.22.15.0/24\",\n    \"104.22.16.0/24\",\n    \"104.22.17.0/24\",\n    \"104.22.18.0/24\",\n    \"104.22.19.0/24\",\n    \"104.22.20.0/24\",\n    \"104.22.21.0/24\",\n    \"104.22.22.0/24\",\n    \"104.22.23.0/24\",\n    \"104.22.24.0/24\",\n    \"104.22.25.0/24\",\n    \"104.22.26.0/24\",\n    \"104.22.27.0/24\",\n    \"104.22.28.0/24\",\n    \"104.22.29.0/24\",\n    \"104.22.30.0/24\",\n    \"104.22.31.0/24\",\n    \"104.22.32.0/24\",\n    \"104.22.33.0/24\",\n    \"104.22.34.0/24\",\n    \"104.22.35.0/24\",\n    \"104.22.36.0/24\",\n    \"104.22.37.0/24\",\n    \"104.22.38.0/24\",\n    \"104.22.39.0/24\",\n    \"104.22.40.0/24\",\n    \"104.22.41.0/24\",\n    \"104.22.42.0/24\",\n    \"104.22.43.0/24\",\n    \"104.22.44.0/24\",\n    \"104.22.45.0/24\",\n    \"104.22.46.0/24\",\n    \"104.22.47.0/24\",\n    \"104.22.48.0/24\",\n    \"104.22.49.0/24\",\n    \"104.22.50.0/24\",\n    \"104.22.51.0/24\",\n    \"104.22.52.0/24\",\n    \"104.22.53.0/24\",\n    \"104.22.54.0/24\",\n    \"104.22.55.0/24\",\n    \"104.22.56.0/24\",\n    \"104.22.57.0/24\",\n    \"104.22.58.0/24\",\n    \"104.22.59.0/24\",\n    \"104.22.60.0/24\",\n    \"104.22.61.0/24\",\n    \"104.22.62.0/24\",\n    \"104.22.63.0/24\",\n    \"104.22.64.0/24\",\n    \"104.22.65.0/24\",\n    \"104.22.66.0/24\",\n    \"104.22.67.0/24\",\n    \"104.22.68.0/24\",\n    \"104.22.69.0/24\",\n    \"104.22.70.0/24\",\n    \"104.22.71.0/24\",\n    \"104.22.72.0/24\",\n    \"104.22.73.0/24\",\n    \"104.22.74.0/24\",\n    \"104.22.75.0/24\",\n    \"104.22.76.0/24\",\n    \"104.22.77.0/24\",\n    \"104.22.78.0/24\",\n    \"104.22.79.0/24\",\n    \"104.22.80.0/24\",\n    \"104.22.81.0/24\",\n    \"104.22.82.0/24\",\n    \"104.22.83.0/24\",\n    \"104.22.84.0/24\",\n    \"104.22.85.0/24\",\n    \"104.22.86.0/24\",\n    \"104.22.87.0/24\",\n    \"104.22.88.0/24\",\n    \"104.22.89.0/24\",\n    \"104.22.90.0/24\",\n    \"104.22.91.0/24\",\n    \"104.22.92.0/24\",\n    \"104.22.93.0/24\",\n    \"104.22.94.0/24\",\n    \"104.22.95.0/24\",\n    \"104.22.96.0/24\",\n    \"104.22.97.0/24\",\n    \"104.22.98.0/24\",\n    \"104.22.99.0/24\",\n    \"104.22.100.0/24\",\n    \"104.22.101.0/24\",\n    \"104.22.102.0/24\",\n    \"104.22.103.0/24\",\n    \"104.22.104.0/24\",\n    \"104.22.105.0/24\",\n    \"104.22.106.0/24\",\n    \"104.22.107.0/24\",\n    \"104.22.108.0/24\",\n    \"104.22.109.0/24\",\n    \"104.22.110.0/24\",\n    \"104.22.111.0/24\",\n    \"104.22.112.0/24\",\n    \"104.22.113.0/24\",\n    \"104.22.114.0/24\",\n    \"104.22.115.0/24\",\n    \"104.22.116.0/24\",\n    \"104.22.117.0/24\",\n    \"104.22.118.0/24\",\n    \"104.22.119.0/24\",\n    \"104.22.120.0/24\",\n    \"104.22.121.0/24\",\n    \"104.22.122.0/24\",\n    \"104.22.123.0/24\",\n    \"104.22.124.0/24\",\n    \"104.22.125.0/24\",\n    \"104.22.126.0/24\",\n    \"104.22.127.0/24\",\n    \"104.22.128.0/24\",\n    \"104.22.129.0/24\",\n    \"104.22.130.0/24\",\n    \"104.22.131.0/24\",\n    \"104.22.132.0/24\",\n    \"104.22.133.0/24\",\n    \"104.22.134.0/24\",\n    \"104.22.135.0/24\",\n    \"104.22.136.0/24\",\n    \"104.22.137.0/24\",\n    \"104.22.138.0/24\",\n    \"104.22.139.0/24\",\n    \"104.22.140.0/24\",\n    \"104.22.141.0/24\",\n    \"104.22.142.0/24\",\n    \"104.22.143.0/24\",\n    \"104.22.144.0/24\",\n    \"104.22.145.0/24\",\n    \"104.22.146.0/24\",\n    \"104.22.147.0/24\",\n    \"104.22.148.0/24\",\n    \"104.22.149.0/24\",\n    \"104.22.150.0/24\",\n    \"104.22.151.0/24\",\n    \"104.22.152.0/24\",\n    \"104.22.153.0/24\",\n    \"104.22.154.0/24\",\n    \"104.22.155.0/24\",\n    \"104.22.156.0/24\",\n    \"104.22.157.0/24\",\n    \"104.22.158.0/24\",\n    \"104.22.159.0/24\",\n    \"104.22.160.0/24\",\n    \"104.22.161.0/24\",\n    \"104.22.162.0/24\",\n    \"104.22.163.0/24\",\n    \"104.22.164.0/24\",\n    \"104.22.165.0/24\",\n    \"104.22.166.0/24\",\n    \"104.22.167.0/24\",\n    \"104.22.168.0/24\",\n    \"104.22.169.0/24\",\n    \"104.22.170.0/24\",\n    \"104.22.171.0/24\",\n    \"104.22.172.0/24\",\n    \"104.22.173.0/24\",\n    \"104.22.174.0/24\",\n    \"104.22.175.0/24\",\n    \"104.22.176.0/24\",\n    \"104.22.177.0/24\",\n    \"104.22.178.0/24\",\n    \"104.22.179.0/24\",\n    \"104.22.180.0/24\",\n    \"104.22.181.0/24\",\n    \"104.22.182.0/24\",\n    \"104.22.183.0/24\",\n    \"104.22.184.0/24\",\n    \"104.22.185.0/24\",\n    \"104.22.186.0/24\",\n    \"104.22.187.0/24\",\n    \"104.22.188.0/24\",\n    \"104.22.189.0/24\",\n    \"104.22.190.0/24\",\n    \"104.22.191.0/24\",\n    \"104.22.192.0/24\",\n    \"104.22.193.0/24\",\n    \"104.22.194.0/24\",\n    \"104.22.195.0/24\",\n    \"104.22.196.0/24\",\n    \"104.22.197.0/24\",\n    \"104.22.198.0/24\",\n    \"104.22.199.0/24\",\n    \"104.22.200.0/24\",\n    \"104.22.201.0/24\",\n    \"104.22.202.0/24\",\n    \"104.22.203.0/24\",\n    \"104.22.204.0/24\",\n    \"104.22.205.0/24\",\n    \"104.22.206.0/24\",\n    \"104.22.207.0/24\",\n    \"104.22.208.0/24\",\n    \"104.22.209.0/24\",\n    \"104.22.210.0/24\",\n    \"104.22.211.0/24\",\n    \"104.22.212.0/24\",\n    \"104.22.213.0/24\",\n    \"104.22.214.0/24\",\n    \"104.22.215.0/24\",\n    \"104.22.216.0/24\",\n    \"104.22.217.0/24\",\n    \"104.22.218.0/24\",\n    \"104.22.219.0/24\",\n    \"104.22.220.0/24\",\n    \"104.22.221.0/24\",\n    \"104.22.222.0/24\",\n    \"104.22.223.0/24\",\n    \"104.22.224.0/24\",\n    \"104.22.225.0/24\",\n    \"104.22.226.0/24\",\n    \"104.22.227.0/24\",\n    \"104.22.228.0/24\",\n    \"104.22.229.0/24\",\n    \"104.22.230.0/24\",\n    \"104.22.231.0/24\",\n    \"104.22.232.0/24\",\n    \"104.22.233.0/24\",\n    \"104.22.234.0/24\",\n    \"104.22.235.0/24\",\n    \"104.22.236.0/24\",\n    \"104.22.237.0/24\",\n    \"104.22.238.0/24\",\n    \"104.22.239.0/24\",\n    \"104.22.240.0/24\",\n    \"104.22.241.0/24\",\n    \"104.22.242.0/24\",\n    \"104.22.243.0/24\",\n    \"104.22.244.0/24\",\n    \"104.22.245.0/24\",\n    \"104.22.246.0/24\",\n    \"104.22.247.0/24\",\n    \"104.22.248.0/24\",\n    \"104.22.249.0/24\",\n    \"104.22.250.0/24\",\n    \"104.22.251.0/24\",\n    \"104.22.252.0/24\",\n    \"104.22.253.0/24\",\n    \"104.22.254.0/24\",\n    \"104.22.255.0/24\",\n    \"104.23.0.0/24\",\n    \"104.23.1.0/24\",\n    \"104.23.2.0/24\",\n    \"104.23.3.0/24\",\n    \"104.23.4.0/24\",\n    \"104.23.5.0/24\",\n    \"104.23.6.0/24\",\n    \"104.23.7.0/24\",\n    \"104.23.8.0/24\",\n    \"104.23.9.0/24\",\n    \"104.23.10.0/24\",\n    \"104.23.11.0/24\",\n    \"104.23.12.0/24\",\n    \"104.23.13.0/24\",\n    \"104.23.14.0/24\",\n    \"104.23.15.0/24\",\n    \"104.23.16.0/24\",\n    \"104.23.17.0/24\",\n    \"104.23.18.0/24\",\n    \"104.23.19.0/24\",\n    \"104.23.20.0/24\",\n    \"104.23.21.0/24\",\n    \"104.23.22.0/24\",\n    \"104.23.23.0/24\",\n    \"104.23.24.0/24\",\n    \"104.23.25.0/24\",\n    \"104.23.26.0/24\",\n    \"104.23.27.0/24\",\n    \"104.23.28.0/24\",\n    \"104.23.29.0/24\",\n    \"104.23.30.0/24\",\n    \"104.23.31.0/24\",\n    \"104.23.32.0/24\",\n    \"104.23.33.0/24\",\n    \"104.23.34.0/24\",\n    \"104.23.35.0/24\",\n    \"104.23.36.0/24\",\n    \"104.23.37.0/24\",\n    \"104.23.38.0/24\",\n    \"104.23.39.0/24\",\n    \"104.23.40.0/24\",\n    \"104.23.41.0/24\",\n    \"104.23.42.0/24\",\n    \"104.23.43.0/24\",\n    \"104.23.44.0/24\",\n    \"104.23.45.0/24\",\n    \"104.23.46.0/24\",\n    \"104.23.47.0/24\",\n    \"104.23.48.0/24\",\n    \"104.23.49.0/24\",\n    \"104.23.50.0/24\",\n    \"104.23.51.0/24\",\n    \"104.23.52.0/24\",\n    \"104.23.53.0/24\",\n    \"104.23.54.0/24\",\n    \"104.23.55.0/24\",\n    \"104.23.56.0/24\",\n    \"104.23.57.0/24\",\n    \"104.23.58.0/24\",\n    \"104.23.59.0/24\",\n    \"104.23.60.0/24\",\n    \"104.23.61.0/24\",\n    \"104.23.62.0/24\",\n    \"104.23.63.0/24\",\n    \"104.23.64.0/24\",\n    \"104.23.65.0/24\",\n    \"104.23.66.0/24\",\n    \"104.23.67.0/24\",\n    \"104.23.68.0/24\",\n    \"104.23.69.0/24\",\n    \"104.23.70.0/24\",\n    \"104.23.71.0/24\",\n    \"104.23.72.0/24\",\n    \"104.23.73.0/24\",\n    \"104.23.74.0/24\",\n    \"104.23.75.0/24\",\n    \"104.23.76.0/24\",\n    \"104.23.77.0/24\",\n    \"104.23.78.0/24\",\n    \"104.23.79.0/24\",\n    \"104.23.80.0/24\",\n    \"104.23.81.0/24\",\n    \"104.23.82.0/24\",\n    \"104.23.83.0/24\",\n    \"104.23.84.0/24\",\n    \"104.23.85.0/24\",\n    \"104.23.86.0/24\",\n    \"104.23.87.0/24\",\n    \"104.23.88.0/24\",\n    \"104.23.89.0/24\",\n    \"104.23.90.0/24\",\n    \"104.23.91.0/24\",\n    \"104.23.92.0/24\",\n    \"104.23.93.0/24\",\n    \"104.23.94.0/24\",\n    \"104.23.95.0/24\",\n    \"104.23.96.0/24\",\n    \"104.23.97.0/24\",\n    \"104.23.98.0/24\",\n    \"104.23.99.0/24\",\n    \"104.23.100.0/24\",\n    \"104.23.101.0/24\",\n    \"104.23.102.0/24\",\n    \"104.23.103.0/24\",\n    \"104.23.104.0/24\",\n    \"104.23.105.0/24\",\n    \"104.23.106.0/24\",\n    \"104.23.107.0/24\",\n    \"104.23.108.0/24\",\n    \"104.23.109.0/24\",\n    \"104.23.110.0/24\",\n    \"104.23.111.0/24\",\n    \"104.23.112.0/24\",\n    \"104.23.113.0/24\",\n    \"104.23.114.0/24\",\n    \"104.23.115.0/24\",\n    \"104.23.116.0/24\",\n    \"104.23.117.0/24\",\n    \"104.23.118.0/24\",\n    \"104.23.119.0/24\",\n    \"104.23.120.0/24\",\n    \"104.23.121.0/24\",\n    \"104.23.122.0/24\",\n    \"104.23.123.0/24\",\n    \"104.23.124.0/24\",\n    \"104.23.125.0/24\",\n    \"104.23.126.0/24\",\n    \"104.23.127.0/24\",\n    \"104.23.128.0/24\",\n    \"104.23.129.0/24\",\n    \"104.23.130.0/24\",\n    \"104.23.131.0/24\",\n    \"104.23.132.0/24\",\n    \"104.23.133.0/24\",\n    \"104.23.134.0/24\",\n    \"104.23.135.0/24\",\n    \"104.23.136.0/24\",\n    \"104.23.137.0/24\",\n    \"104.23.138.0/24\",\n    \"104.23.139.0/24\",\n    \"104.23.140.0/24\",\n    \"104.23.141.0/24\",\n    \"104.23.142.0/24\",\n    \"104.23.143.0/24\",\n    \"104.23.144.0/24\",\n    \"104.23.145.0/24\",\n    \"104.23.146.0/24\",\n    \"104.23.147.0/24\",\n    \"104.23.148.0/24\",\n    \"104.23.149.0/24\",\n    \"104.23.150.0/24\",\n    \"104.23.151.0/24\",\n    \"104.23.152.0/24\",\n    \"104.23.153.0/24\",\n    \"104.23.154.0/24\",\n    \"104.23.155.0/24\",\n    \"104.23.156.0/24\",\n    \"104.23.157.0/24\",\n    \"104.23.158.0/24\",\n    \"104.23.159.0/24\",\n    \"104.23.160.0/24\",\n    \"104.23.161.0/24\",\n    \"104.23.162.0/24\",\n    \"104.23.163.0/24\",\n    \"104.23.164.0/24\",\n    \"104.23.165.0/24\",\n    \"104.23.166.0/24\",\n    \"104.23.167.0/24\",\n    \"104.23.168.0/24\",\n    \"104.23.169.0/24\",\n    \"104.23.170.0/24\",\n    \"104.23.171.0/24\",\n    \"104.23.172.0/24\",\n    \"104.23.173.0/24\",\n    \"104.23.174.0/24\",\n    \"104.23.175.0/24\",\n    \"104.23.176.0/24\",\n    \"104.23.177.0/24\",\n    \"104.23.178.0/24\",\n    \"104.23.179.0/24\",\n    \"104.23.180.0/24\",\n    \"104.23.181.0/24\",\n    \"104.23.182.0/24\",\n    \"104.23.183.0/24\",\n    \"104.23.184.0/24\",\n    \"104.23.185.0/24\",\n    \"104.23.186.0/24\",\n    \"104.23.187.0/24\",\n    \"104.23.188.0/24\",\n    \"104.23.189.0/24\",\n    \"104.23.190.0/24\",\n    \"104.23.191.0/24\",\n    \"104.23.192.0/24\",\n    \"104.23.193.0/24\",\n    \"104.23.194.0/24\",\n    \"104.23.195.0/24\",\n    \"104.23.196.0/24\",\n    \"104.23.197.0/24\",\n    \"104.23.198.0/24\",\n    \"104.23.199.0/24\",\n    \"104.23.200.0/24\",\n    \"104.23.201.0/24\",\n    \"104.23.202.0/24\",\n    \"104.23.203.0/24\",\n    \"104.23.204.0/24\",\n    \"104.23.205.0/24\",\n    \"104.23.206.0/24\",\n    \"104.23.207.0/24\",\n    \"104.23.208.0/24\",\n    \"104.23.209.0/24\",\n    \"104.23.210.0/24\",\n    \"104.23.211.0/24\",\n    \"104.23.212.0/24\",\n    \"104.23.213.0/24\",\n    \"104.23.214.0/24\",\n    \"104.23.215.0/24\",\n    \"104.23.216.0/24\",\n    \"104.23.217.0/24\",\n    \"104.23.218.0/24\",\n    \"104.23.219.0/24\",\n    \"104.23.220.0/24\",\n    \"104.23.221.0/24\",\n    \"104.23.222.0/24\",\n    \"104.23.223.0/24\",\n    \"104.23.224.0/24\",\n    \"104.23.225.0/24\",\n    \"104.23.226.0/24\",\n    \"104.23.227.0/24\",\n    \"104.23.228.0/24\",\n    \"104.23.229.0/24\",\n    \"104.23.230.0/24\",\n    \"104.23.231.0/24\",\n    \"104.23.232.0/24\",\n    \"104.23.233.0/24\",\n    \"104.23.234.0/24\",\n    \"104.23.235.0/24\",\n    \"104.23.236.0/24\",\n    \"104.23.237.0/24\",\n    \"104.23.238.0/24\",\n    \"104.23.239.0/24\",\n    \"104.23.240.0/24\",\n    \"104.23.241.0/24\",\n    \"104.23.242.0/24\",\n    \"104.23.243.0/24\",\n    \"104.23.244.0/24\",\n    \"104.23.245.0/24\",\n    \"104.23.246.0/24\",\n    \"104.23.247.0/24\",\n    \"104.23.248.0/24\",\n    \"104.23.249.0/24\",\n    \"104.23.250.0/24\",\n    \"104.23.251.0/24\",\n    \"104.23.252.0/24\",\n    \"104.23.253.0/24\",\n    \"104.23.254.0/24\",\n    \"104.23.255.0/24\",\n    \"104.24.0.0/24\",\n    \"104.24.1.0/24\",\n    \"104.24.2.0/24\",\n    \"104.24.3.0/24\",\n    \"104.24.4.0/24\",\n    \"104.24.5.0/24\",\n    \"104.24.6.0/24\",\n    \"104.24.7.0/24\",\n    \"104.24.8.0/24\",\n    \"104.24.9.0/24\",\n    \"104.24.10.0/24\",\n    \"104.24.11.0/24\",\n    \"104.24.12.0/24\",\n    \"104.24.13.0/24\",\n    \"104.24.14.0/24\",\n    \"104.24.15.0/24\",\n    \"104.24.16.0/24\",\n    \"104.24.17.0/24\",\n    \"104.24.18.0/24\",\n    \"104.24.19.0/24\",\n    \"104.24.20.0/24\",\n    \"104.24.21.0/24\",\n    \"104.24.22.0/24\",\n    \"104.24.23.0/24\",\n    \"104.24.24.0/24\",\n    \"104.24.25.0/24\",\n    \"104.24.26.0/24\",\n    \"104.24.27.0/24\",\n    \"104.24.28.0/24\",\n    \"104.24.29.0/24\",\n    \"104.24.30.0/24\",\n    \"104.24.31.0/24\",\n    \"104.24.32.0/24\",\n    \"104.24.33.0/24\",\n    \"104.24.34.0/24\",\n    \"104.24.35.0/24\",\n    \"104.24.36.0/24\",\n    \"104.24.37.0/24\",\n    \"104.24.38.0/24\",\n    \"104.24.39.0/24\",\n    \"104.24.40.0/24\",\n    \"104.24.41.0/24\",\n    \"104.24.42.0/24\",\n    \"104.24.43.0/24\",\n    \"104.24.44.0/24\",\n    \"104.24.45.0/24\",\n    \"104.24.46.0/24\",\n    \"104.24.47.0/24\",\n    \"104.24.48.0/24\",\n    \"104.24.49.0/24\",\n    \"104.24.50.0/24\",\n    \"104.24.51.0/24\",\n    \"104.24.52.0/24\",\n    \"104.24.53.0/24\",\n    \"104.24.54.0/24\",\n    \"104.24.55.0/24\",\n    \"104.24.56.0/24\",\n    \"104.24.57.0/24\",\n    \"104.24.58.0/24\",\n    \"104.24.59.0/24\",\n    \"104.24.60.0/24\",\n    \"104.24.61.0/24\",\n    \"104.24.62.0/24\",\n    \"104.24.63.0/24\",\n    \"104.24.64.0/24\",\n    \"104.24.65.0/24\",\n    \"104.24.66.0/24\",\n    \"104.24.67.0/24\",\n    \"104.24.68.0/24\",\n    \"104.24.69.0/24\",\n    \"104.24.70.0/24\",\n    \"104.24.71.0/24\",\n    \"104.24.72.0/24\",\n    \"104.24.73.0/24\",\n    \"104.24.74.0/24\",\n    \"104.24.75.0/24\",\n    \"104.24.76.0/24\",\n    \"104.24.77.0/24\",\n    \"104.24.78.0/24\",\n    \"104.24.79.0/24\",\n    \"104.24.80.0/24\",\n    \"104.24.81.0/24\",\n    \"104.24.82.0/24\",\n    \"104.24.83.0/24\",\n    \"104.24.84.0/24\",\n    \"104.24.85.0/24\",\n    \"104.24.86.0/24\",\n    \"104.24.87.0/24\",\n    \"104.24.88.0/24\",\n    \"104.24.89.0/24\",\n    \"104.24.90.0/24\",\n    \"104.24.91.0/24\",\n    \"104.24.92.0/24\",\n    \"104.24.93.0/24\",\n    \"104.24.94.0/24\",\n    \"104.24.95.0/24\",\n    \"104.24.96.0/24\",\n    \"104.24.97.0/24\",\n    \"104.24.98.0/24\",\n    \"104.24.99.0/24\",\n    \"104.24.100.0/24\",\n    \"104.24.101.0/24\",\n    \"104.24.102.0/24\",\n    \"104.24.103.0/24\",\n    \"104.24.104.0/24\",\n    \"104.24.105.0/24\",\n    \"104.24.106.0/24\",\n    \"104.24.107.0/24\",\n    \"104.24.108.0/24\",\n    \"104.24.109.0/24\",\n    \"104.24.110.0/24\",\n    \"104.24.111.0/24\",\n    \"104.24.112.0/24\",\n    \"104.24.113.0/24\",\n    \"104.24.114.0/24\",\n    \"104.24.115.0/24\",\n    \"104.24.116.0/24\",\n    \"104.24.117.0/24\",\n    \"104.24.118.0/24\",\n    \"104.24.119.0/24\",\n    \"104.24.120.0/24\",\n    \"104.24.121.0/24\",\n    \"104.24.122.0/24\",\n    \"104.24.123.0/24\",\n    \"104.24.124.0/24\",\n    \"104.24.125.0/24\",\n    \"104.24.126.0/24\",\n    \"104.24.127.0/24\",\n    \"104.24.128.0/24\",\n    \"104.24.129.0/24\",\n    \"104.24.130.0/24\",\n    \"104.24.131.0/24\",\n    \"104.24.132.0/24\",\n    \"104.24.133.0/24\",\n    \"104.24.134.0/24\",\n    \"104.24.135.0/24\",\n    \"104.24.136.0/24\",\n    \"104.24.137.0/24\",\n    \"104.24.138.0/24\",\n    \"104.24.139.0/24\",\n    \"104.24.140.0/24\",\n    \"104.24.141.0/24\",\n    \"104.24.142.0/24\",\n    \"104.24.143.0/24\",\n    \"104.24.144.0/24\",\n    \"104.24.145.0/24\",\n    \"104.24.146.0/24\",\n    \"104.24.147.0/24\",\n    \"104.24.148.0/24\",\n    \"104.24.149.0/24\",\n    \"104.24.150.0/24\",\n    \"104.24.151.0/24\",\n    \"104.24.152.0/24\",\n    \"104.24.153.0/24\",\n    \"104.24.154.0/24\",\n    \"104.24.155.0/24\",\n    \"104.24.156.0/24\",\n    \"104.24.157.0/24\",\n    \"104.24.158.0/24\",\n    \"104.24.159.0/24\",\n    \"104.24.160.0/24\",\n    \"104.24.161.0/24\",\n    \"104.24.162.0/24\",\n    \"104.24.163.0/24\",\n    \"104.24.164.0/24\",\n    \"104.24.165.0/24\",\n    \"104.24.166.0/24\",\n    \"104.24.167.0/24\",\n    \"104.24.168.0/24\",\n    \"104.24.169.0/24\",\n    \"104.24.170.0/24\",\n    \"104.24.171.0/24\",\n    \"104.24.172.0/24\",\n    \"104.24.173.0/24\",\n    \"104.24.174.0/24\",\n    \"104.24.175.0/24\",\n    \"104.24.176.0/24\",\n    \"104.24.177.0/24\",\n    \"104.24.178.0/24\",\n    \"104.24.179.0/24\",\n    \"104.24.180.0/24\",\n    \"104.24.181.0/24\",\n    \"104.24.182.0/24\",\n    \"104.24.183.0/24\",\n    \"104.24.184.0/24\",\n    \"104.24.185.0/24\",\n    \"104.24.186.0/24\",\n    \"104.24.187.0/24\",\n    \"104.24.188.0/24\",\n    \"104.24.189.0/24\",\n    \"104.24.190.0/24\",\n    \"104.24.191.0/24\",\n    \"104.24.192.0/24\",\n    \"104.24.193.0/24\",\n    \"104.24.194.0/24\",\n    \"104.24.195.0/24\",\n    \"104.24.196.0/24\",\n    \"104.24.197.0/24\",\n    \"104.24.198.0/24\",\n    \"104.24.199.0/24\",\n    \"104.24.200.0/24\",\n    \"104.24.201.0/24\",\n    \"104.24.202.0/24\",\n    \"104.24.203.0/24\",\n    \"104.24.204.0/24\",\n    \"104.24.205.0/24\",\n    \"104.24.206.0/24\",\n    \"104.24.207.0/24\",\n    \"104.24.208.0/24\",\n    \"104.24.209.0/24\",\n    \"104.24.210.0/24\",\n    \"104.24.211.0/24\",\n    \"104.24.212.0/24\",\n    \"104.24.213.0/24\",\n    \"104.24.214.0/24\",\n    \"104.24.215.0/24\",\n    \"104.24.216.0/24\",\n    \"104.24.217.0/24\",\n    \"104.24.218.0/24\",\n    \"104.24.219.0/24\",\n    \"104.24.220.0/24\",\n    \"104.24.221.0/24\",\n    \"104.24.222.0/24\",\n    \"104.24.223.0/24\",\n    \"104.24.224.0/24\",\n    \"104.24.225.0/24\",\n    \"104.24.226.0/24\",\n    \"104.24.227.0/24\",\n    \"104.24.228.0/24\",\n    \"104.24.229.0/24\",\n    \"104.24.230.0/24\",\n    \"104.24.231.0/24\",\n    \"104.24.232.0/24\",\n    \"104.24.233.0/24\",\n    \"104.24.234.0/24\",\n    \"104.24.235.0/24\",\n    \"104.24.236.0/24\",\n    \"104.24.237.0/24\",\n    \"104.24.238.0/24\",\n    \"104.24.239.0/24\",\n    \"104.24.240.0/24\",\n    \"104.24.241.0/24\",\n    \"104.24.242.0/24\",\n    \"104.24.243.0/24\",\n    \"104.24.244.0/24\",\n    \"104.24.245.0/24\",\n    \"104.24.246.0/24\",\n    \"104.24.247.0/24\",\n    \"104.24.248.0/24\",\n    \"104.24.249.0/24\",\n    \"104.24.250.0/24\",\n    \"104.24.251.0/24\",\n    \"104.24.252.0/24\",\n    \"104.24.253.0/24\",\n    \"104.24.254.0/24\",\n    \"104.24.255.0/24\",\n    \"104.25.0.0/24\",\n    \"104.25.1.0/24\",\n    \"104.25.2.0/24\",\n    \"104.25.3.0/24\",\n    \"104.25.4.0/24\",\n    \"104.25.5.0/24\",\n    \"104.25.6.0/24\",\n    \"104.25.7.0/24\",\n    \"104.25.8.0/24\",\n    \"104.25.9.0/24\",\n    \"104.25.10.0/24\",\n    \"104.25.11.0/24\",\n    \"104.25.12.0/24\",\n    \"104.25.13.0/24\",\n    \"104.25.14.0/24\",\n    \"104.25.15.0/24\",\n    \"104.25.16.0/24\",\n    \"104.25.17.0/24\",\n    \"104.25.18.0/24\",\n    \"104.25.19.0/24\",\n    \"104.25.20.0/24\",\n    \"104.25.21.0/24\",\n    \"104.25.22.0/24\",\n    \"104.25.23.0/24\",\n    \"104.25.24.0/24\",\n    \"104.25.25.0/24\",\n    \"104.25.26.0/24\",\n    \"104.25.27.0/24\",\n    \"104.25.28.0/24\",\n    \"104.25.29.0/24\",\n    \"104.25.30.0/24\",\n    \"104.25.31.0/24\",\n    \"104.25.32.0/24\",\n    \"104.25.33.0/24\",\n    \"104.25.34.0/24\",\n    \"104.25.35.0/24\",\n    \"104.25.36.0/24\",\n    \"104.25.37.0/24\",\n    \"104.25.38.0/24\",\n    \"104.25.39.0/24\",\n    \"104.25.40.0/24\",\n    \"104.25.41.0/24\",\n    \"104.25.42.0/24\",\n    \"104.25.43.0/24\",\n    \"104.25.44.0/24\",\n    \"104.25.45.0/24\",\n    \"104.25.46.0/24\",\n    \"104.25.47.0/24\",\n    \"104.25.48.0/24\",\n    \"104.25.49.0/24\",\n    \"104.25.50.0/24\",\n    \"104.25.51.0/24\",\n    \"104.25.52.0/24\",\n    \"104.25.53.0/24\",\n    \"104.25.54.0/24\",\n    \"104.25.55.0/24\",\n    \"104.25.56.0/24\",\n    \"104.25.57.0/24\",\n    \"104.25.58.0/24\",\n    \"104.25.59.0/24\",\n    \"104.25.60.0/24\",\n    \"104.25.61.0/24\",\n    \"104.25.62.0/24\",\n    \"104.25.63.0/24\",\n    \"104.25.64.0/24\",\n    \"104.25.65.0/24\",\n    \"104.25.66.0/24\",\n    \"104.25.67.0/24\",\n    \"104.25.68.0/24\",\n    \"104.25.69.0/24\",\n    \"104.25.70.0/24\",\n    \"104.25.71.0/24\",\n    \"104.25.72.0/24\",\n    \"104.25.73.0/24\",\n    \"104.25.74.0/24\",\n    \"104.25.75.0/24\",\n    \"104.25.76.0/24\",\n    \"104.25.77.0/24\",\n    \"104.25.78.0/24\",\n    \"104.25.79.0/24\",\n    \"104.25.80.0/24\",\n    \"104.25.81.0/24\",\n    \"104.25.82.0/24\",\n    \"104.25.83.0/24\",\n    \"104.25.84.0/24\",\n    \"104.25.85.0/24\",\n    \"104.25.86.0/24\",\n    \"104.25.87.0/24\",\n    \"104.25.88.0/24\",\n    \"104.25.89.0/24\",\n    \"104.25.90.0/24\",\n    \"104.25.91.0/24\",\n    \"104.25.92.0/24\",\n    \"104.25.93.0/24\",\n    \"104.25.94.0/24\",\n    \"104.25.95.0/24\",\n    \"104.25.96.0/24\",\n    \"104.25.97.0/24\",\n    \"104.25.98.0/24\",\n    \"104.25.99.0/24\",\n    \"104.25.100.0/24\",\n    \"104.25.101.0/24\",\n    \"104.25.102.0/24\",\n    \"104.25.103.0/24\",\n    \"104.25.104.0/24\",\n    \"104.25.105.0/24\",\n    \"104.25.106.0/24\",\n    \"104.25.107.0/24\",\n    \"104.25.108.0/24\",\n    \"104.25.109.0/24\",\n    \"104.25.110.0/24\",\n    \"104.25.111.0/24\",\n    \"104.25.112.0/24\",\n    \"104.25.113.0/24\",\n    \"104.25.114.0/24\",\n    \"104.25.115.0/24\",\n    \"104.25.116.0/24\",\n    \"104.25.117.0/24\",\n    \"104.25.118.0/24\",\n    \"104.25.119.0/24\",\n    \"104.25.120.0/24\",\n    \"104.25.121.0/24\",\n    \"104.25.122.0/24\",\n    \"104.25.123.0/24\",\n    \"104.25.124.0/24\",\n    \"104.25.125.0/24\",\n    \"104.25.126.0/24\",\n    \"104.25.127.0/24\",\n    \"104.25.128.0/24\",\n    \"104.25.129.0/24\",\n    \"104.25.130.0/24\",\n    \"104.25.131.0/24\",\n    \"104.25.132.0/24\",\n    \"104.25.133.0/24\",\n    \"104.25.134.0/24\",\n    \"104.25.135.0/24\",\n    \"104.25.136.0/24\",\n    \"104.25.137.0/24\",\n    \"104.25.138.0/24\",\n    \"104.25.139.0/24\",\n    \"104.25.140.0/24\",\n    \"104.25.141.0/24\",\n    \"104.25.142.0/24\",\n    \"104.25.143.0/24\",\n    \"104.25.144.0/24\",\n    \"104.25.145.0/24\",\n    \"104.25.146.0/24\",\n    \"104.25.147.0/24\",\n    \"104.25.148.0/24\",\n    \"104.25.149.0/24\",\n    \"104.25.150.0/24\",\n    \"104.25.151.0/24\",\n    \"104.25.152.0/24\",\n    \"104.25.153.0/24\",\n    \"104.25.154.0/24\",\n    \"104.25.155.0/24\",\n    \"104.25.156.0/24\",\n    \"104.25.157.0/24\",\n    \"104.25.158.0/24\",\n    \"104.25.159.0/24\",\n    \"104.25.160.0/24\",\n    \"104.25.161.0/24\",\n    \"104.25.162.0/24\",\n    \"104.25.163.0/24\",\n    \"104.25.164.0/24\",\n    \"104.25.165.0/24\",\n    \"104.25.166.0/24\",\n    \"104.25.167.0/24\",\n    \"104.25.168.0/24\",\n    \"104.25.169.0/24\",\n    \"104.25.170.0/24\",\n    \"104.25.171.0/24\",\n    \"104.25.172.0/24\",\n    \"104.25.173.0/24\",\n    \"104.25.174.0/24\",\n    \"104.25.175.0/24\",\n    \"104.25.176.0/24\",\n    \"104.25.177.0/24\",\n    \"104.25.178.0/24\",\n    \"104.25.179.0/24\",\n    \"104.25.180.0/24\",\n    \"104.25.181.0/24\",\n    \"104.25.182.0/24\",\n    \"104.25.183.0/24\",\n    \"104.25.184.0/24\",\n    \"104.25.185.0/24\",\n    \"104.25.186.0/24\",\n    \"104.25.187.0/24\",\n    \"104.25.188.0/24\",\n    \"104.25.189.0/24\",\n    \"104.25.190.0/24\",\n    \"104.25.191.0/24\",\n    \"104.25.192.0/24\",\n    \"104.25.193.0/24\",\n    \"104.25.194.0/24\",\n    \"104.25.195.0/24\",\n    \"104.25.196.0/24\",\n    \"104.25.197.0/24\",\n    \"104.25.198.0/24\",\n    \"104.25.199.0/24\",\n    \"104.25.200.0/24\",\n    \"104.25.201.0/24\",\n    \"104.25.202.0/24\",\n    \"104.25.203.0/24\",\n    \"104.25.204.0/24\",\n    \"104.25.205.0/24\",\n    \"104.25.206.0/24\",\n    \"104.25.207.0/24\",\n    \"104.25.208.0/24\",\n    \"104.25.209.0/24\",\n    \"104.25.210.0/24\",\n    \"104.25.211.0/24\",\n    \"104.25.212.0/24\",\n    \"104.25.213.0/24\",\n    \"104.25.214.0/24\",\n    \"104.25.215.0/24\",\n    \"104.25.216.0/24\",\n    \"104.25.217.0/24\",\n    \"104.25.218.0/24\",\n    \"104.25.219.0/24\",\n    \"104.25.220.0/24\",\n    \"104.25.221.0/24\",\n    \"104.25.222.0/24\",\n    \"104.25.223.0/24\",\n    \"104.25.224.0/24\",\n    \"104.25.225.0/24\",\n    \"104.25.226.0/24\",\n    \"104.25.227.0/24\",\n    \"104.25.228.0/24\",\n    \"104.25.229.0/24\",\n    \"104.25.230.0/24\",\n    \"104.25.231.0/24\",\n    \"104.25.232.0/24\",\n    \"104.25.233.0/24\",\n    \"104.25.234.0/24\",\n    \"104.25.235.0/24\",\n    \"104.25.236.0/24\",\n    \"104.25.237.0/24\",\n    \"104.25.238.0/24\",\n    \"104.25.239.0/24\",\n    \"104.25.240.0/24\",\n    \"104.25.241.0/24\",\n    \"104.25.242.0/24\",\n    \"104.25.243.0/24\",\n    \"104.25.244.0/24\",\n    \"104.25.245.0/24\",\n    \"104.25.246.0/24\",\n    \"104.25.247.0/24\",\n    \"104.25.248.0/24\",\n    \"104.25.249.0/24\",\n    \"104.25.250.0/24\",\n    \"104.25.251.0/24\",\n    \"104.25.252.0/24\",\n    \"104.25.253.0/24\",\n    \"104.25.254.0/24\",\n    \"104.25.255.0/24\",\n    \"104.26.0.0/24\",\n    \"104.26.1.0/24\",\n    \"104.26.2.0/24\",\n    \"104.26.3.0/24\",\n    \"104.26.4.0/24\",\n    \"104.26.5.0/24\",\n    \"104.26.6.0/24\",\n    \"104.26.7.0/24\",\n    \"104.26.8.0/24\",\n    \"104.26.9.0/24\",\n    \"104.26.10.0/24\",\n    \"104.26.11.0/24\",\n    \"104.26.12.0/24\",\n    \"104.26.13.0/24\",\n    \"104.26.14.0/24\",\n    \"104.26.15.0/24\",\n    \"104.26.16.0/24\",\n    \"104.26.17.0/24\",\n    \"104.26.18.0/24\",\n    \"104.26.19.0/24\",\n    \"104.26.20.0/24\",\n    \"104.26.21.0/24\",\n    \"104.26.22.0/24\",\n    \"104.26.23.0/24\",\n    \"104.26.24.0/24\",\n    \"104.26.25.0/24\",\n    \"104.26.26.0/24\",\n    \"104.26.27.0/24\",\n    \"104.26.28.0/24\",\n    \"104.26.29.0/24\",\n    \"104.26.30.0/24\",\n    \"104.26.31.0/24\",\n    \"104.26.32.0/24\",\n    \"104.26.33.0/24\",\n    \"104.26.34.0/24\",\n    \"104.26.35.0/24\",\n    \"104.26.36.0/24\",\n    \"104.26.37.0/24\",\n    \"104.26.38.0/24\",\n    \"104.26.39.0/24\",\n    \"104.26.40.0/24\",\n    \"104.26.41.0/24\",\n    \"104.26.42.0/24\",\n    \"104.26.43.0/24\",\n    \"104.26.44.0/24\",\n    \"104.26.45.0/24\",\n    \"104.26.46.0/24\",\n    \"104.26.47.0/24\",\n    \"104.26.48.0/24\",\n    \"104.26.49.0/24\",\n    \"104.26.50.0/24\",\n    \"104.26.51.0/24\",\n    \"104.26.52.0/24\",\n    \"104.26.53.0/24\",\n    \"104.26.54.0/24\",\n    \"104.26.55.0/24\",\n    \"104.26.56.0/24\",\n    \"104.26.57.0/24\",\n    \"104.26.58.0/24\",\n    \"104.26.59.0/24\",\n    \"104.26.60.0/24\",\n    \"104.26.61.0/24\",\n    \"104.26.62.0/24\",\n    \"104.26.63.0/24\",\n    \"104.26.64.0/24\",\n    \"104.26.65.0/24\",\n    \"104.26.66.0/24\",\n    \"104.26.67.0/24\",\n    \"104.26.68.0/24\",\n    \"104.26.69.0/24\",\n    \"104.26.70.0/24\",\n    \"104.26.71.0/24\",\n    \"104.26.72.0/24\",\n    \"104.26.73.0/24\",\n    \"104.26.74.0/24\",\n    \"104.26.75.0/24\",\n    \"104.26.76.0/24\",\n    \"104.26.77.0/24\",\n    \"104.26.78.0/24\",\n    \"104.26.79.0/24\",\n    \"104.26.80.0/24\",\n    \"104.26.81.0/24\",\n    \"104.26.82.0/24\",\n    \"104.26.83.0/24\",\n    \"104.26.84.0/24\",\n    \"104.26.85.0/24\",\n    \"104.26.86.0/24\",\n    \"104.26.87.0/24\",\n    \"104.26.88.0/24\",\n    \"104.26.89.0/24\",\n    \"104.26.90.0/24\",\n    \"104.26.91.0/24\",\n    \"104.26.92.0/24\",\n    \"104.26.93.0/24\",\n    \"104.26.94.0/24\",\n    \"104.26.95.0/24\",\n    \"104.26.96.0/24\",\n    \"104.26.97.0/24\",\n    \"104.26.98.0/24\",\n    \"104.26.99.0/24\",\n    \"104.26.100.0/24\",\n    \"104.26.101.0/24\",\n    \"104.26.102.0/24\",\n    \"104.26.103.0/24\",\n    \"104.26.104.0/24\",\n    \"104.26.105.0/24\",\n    \"104.26.106.0/24\",\n    \"104.26.107.0/24\",\n    \"104.26.108.0/24\",\n    \"104.26.109.0/24\",\n    \"104.26.110.0/24\",\n    \"104.26.111.0/24\",\n    \"104.26.112.0/24\",\n    \"104.26.113.0/24\",\n    \"104.26.114.0/24\",\n    \"104.26.115.0/24\",\n    \"104.26.116.0/24\",\n    \"104.26.117.0/24\",\n    \"104.26.118.0/24\",\n    \"104.26.119.0/24\",\n    \"104.26.120.0/24\",\n    \"104.26.121.0/24\",\n    \"104.26.122.0/24\",\n    \"104.26.123.0/24\",\n    \"104.26.124.0/24\",\n    \"104.26.125.0/24\",\n    \"104.26.126.0/24\",\n    \"104.26.127.0/24\",\n    \"104.26.128.0/24\",\n    \"104.26.129.0/24\",\n    \"104.26.130.0/24\",\n    \"104.26.131.0/24\",\n    \"104.26.132.0/24\",\n    \"104.26.133.0/24\",\n    \"104.26.134.0/24\",\n    \"104.26.135.0/24\",\n    \"104.26.136.0/24\",\n    \"104.26.137.0/24\",\n    \"104.26.138.0/24\",\n    \"104.26.139.0/24\",\n    \"104.26.140.0/24\",\n    \"104.26.141.0/24\",\n    \"104.26.142.0/24\",\n    \"104.26.143.0/24\",\n    \"104.26.144.0/24\",\n    \"104.26.145.0/24\",\n    \"104.26.146.0/24\",\n    \"104.26.147.0/24\",\n    \"104.26.148.0/24\",\n    \"104.26.149.0/24\",\n    \"104.26.150.0/24\",\n    \"104.26.151.0/24\",\n    \"104.26.152.0/24\",\n    \"104.26.153.0/24\",\n    \"104.26.154.0/24\",\n    \"104.26.155.0/24\",\n    \"104.26.156.0/24\",\n    \"104.26.157.0/24\",\n    \"104.26.158.0/24\",\n    \"104.26.159.0/24\",\n    \"104.26.160.0/24\",\n    \"104.26.161.0/24\",\n    \"104.26.162.0/24\",\n    \"104.26.163.0/24\",\n    \"104.26.164.0/24\",\n    \"104.26.165.0/24\",\n    \"104.26.166.0/24\",\n    \"104.26.167.0/24\",\n    \"104.26.168.0/24\",\n    \"104.26.169.0/24\",\n    \"104.26.170.0/24\",\n    \"104.26.171.0/24\",\n    \"104.26.172.0/24\",\n    \"104.26.173.0/24\",\n    \"104.26.174.0/24\",\n    \"104.26.175.0/24\",\n    \"104.26.176.0/24\",\n    \"104.26.177.0/24\",\n    \"104.26.178.0/24\",\n    \"104.26.179.0/24\",\n    \"104.26.180.0/24\",\n    \"104.26.181.0/24\",\n    \"104.26.182.0/24\",\n    \"104.26.183.0/24\",\n    \"104.26.184.0/24\",\n    \"104.26.185.0/24\",\n    \"104.26.186.0/24\",\n    \"104.26.187.0/24\",\n    \"104.26.188.0/24\",\n    \"104.26.189.0/24\",\n    \"104.26.190.0/24\",\n    \"104.26.191.0/24\",\n    \"104.26.192.0/24\",\n    \"104.26.193.0/24\",\n    \"104.26.194.0/24\",\n    \"104.26.195.0/24\",\n    \"104.26.196.0/24\",\n    \"104.26.197.0/24\",\n    \"104.26.198.0/24\",\n    \"104.26.199.0/24\",\n    \"104.26.200.0/24\",\n    \"104.26.201.0/24\",\n    \"104.26.202.0/24\",\n    \"104.26.203.0/24\",\n    \"104.26.204.0/24\",\n    \"104.26.205.0/24\",\n    \"104.26.206.0/24\",\n    \"104.26.207.0/24\",\n    \"104.26.208.0/24\",\n    \"104.26.209.0/24\",\n    \"104.26.210.0/24\",\n    \"104.26.211.0/24\",\n    \"104.26.212.0/24\",\n    \"104.26.213.0/24\",\n    \"104.26.214.0/24\",\n    \"104.26.215.0/24\",\n    \"104.26.216.0/24\",\n    \"104.26.217.0/24\",\n    \"104.26.218.0/24\",\n    \"104.26.219.0/24\",\n    \"104.26.220.0/24\",\n    \"104.26.221.0/24\",\n    \"104.26.222.0/24\",\n    \"104.26.223.0/24\",\n    \"104.26.224.0/24\",\n    \"104.26.225.0/24\",\n    \"104.26.226.0/24\",\n    \"104.26.227.0/24\",\n    \"104.26.228.0/24\",\n    \"104.26.229.0/24\",\n    \"104.26.230.0/24\",\n    \"104.26.231.0/24\",\n    \"104.26.232.0/24\",\n    \"104.26.233.0/24\",\n    \"104.26.234.0/24\",\n    \"104.26.235.0/24\",\n    \"104.26.236.0/24\",\n    \"104.26.237.0/24\",\n    \"104.26.238.0/24\",\n    \"104.26.239.0/24\",\n    \"104.26.240.0/24\",\n    \"104.26.241.0/24\",\n    \"104.26.242.0/24\",\n    \"104.26.243.0/24\",\n    \"104.26.244.0/24\",\n    \"104.26.245.0/24\",\n    \"104.26.246.0/24\",\n    \"104.26.247.0/24\",\n    \"104.26.248.0/24\",\n    \"104.26.249.0/24\",\n    \"104.26.250.0/24\",\n    \"104.26.251.0/24\",\n    \"104.26.252.0/24\",\n    \"104.26.253.0/24\",\n    \"104.26.254.0/24\",\n    \"104.26.255.0/24\",\n    \"104.27.0.0/24\",\n    \"104.27.1.0/24\",\n    \"104.27.2.0/24\",\n    \"104.27.3.0/24\",\n    \"104.27.4.0/24\",\n    \"104.27.5.0/24\",\n    \"104.27.6.0/24\",\n    \"104.27.7.0/24\",\n    \"104.27.8.0/24\",\n    \"104.27.9.0/24\",\n    \"104.27.10.0/24\",\n    \"104.27.11.0/24\",\n    \"104.27.12.0/24\",\n    \"104.27.13.0/24\",\n    \"104.27.14.0/24\",\n    \"104.27.15.0/24\",\n    \"104.27.16.0/24\",\n    \"104.27.17.0/24\",\n    \"104.27.18.0/24\",\n    \"104.27.19.0/24\",\n    \"104.27.20.0/24\",\n    \"104.27.21.0/24\",\n    \"104.27.22.0/24\",\n    \"104.27.23.0/24\",\n    \"104.27.24.0/24\",\n    \"104.27.25.0/24\",\n    \"104.27.26.0/24\",\n    \"104.27.27.0/24\",\n    \"104.27.28.0/24\",\n    \"104.27.29.0/24\",\n    \"104.27.30.0/24\",\n    \"104.27.31.0/24\",\n    \"104.27.32.0/24\",\n    \"104.27.33.0/24\",\n    \"104.27.34.0/24\",\n    \"104.27.35.0/24\",\n    \"104.27.36.0/24\",\n    \"104.27.37.0/24\",\n    \"104.27.38.0/24\",\n    \"104.27.39.0/24\",\n    \"104.27.40.0/24\",\n    \"104.27.41.0/24\",\n    \"104.27.42.0/24\",\n    \"104.27.43.0/24\",\n    \"104.27.44.0/24\",\n    \"104.27.45.0/24\",\n    \"104.27.46.0/24\",\n    \"104.27.47.0/24\",\n    \"104.27.48.0/24\",\n    \"104.27.49.0/24\",\n    \"104.27.50.0/24\",\n    \"104.27.51.0/24\",\n    \"104.27.52.0/24\",\n    \"104.27.53.0/24\",\n    \"104.27.54.0/24\",\n    \"104.27.55.0/24\",\n    \"104.27.56.0/24\",\n    \"104.27.57.0/24\",\n    \"104.27.58.0/24\",\n    \"104.27.59.0/24\",\n    \"104.27.60.0/24\",\n    \"104.27.61.0/24\",\n    \"104.27.62.0/24\",\n    \"104.27.63.0/24\",\n    \"104.27.64.0/24\",\n    \"104.27.65.0/24\",\n    \"104.27.66.0/24\",\n    \"104.27.67.0/24\",\n    \"104.27.68.0/24\",\n    \"104.27.69.0/24\",\n    \"104.27.70.0/24\",\n    \"104.27.71.0/24\",\n    \"104.27.72.0/24\",\n    \"104.27.73.0/24\",\n    \"104.27.74.0/24\",\n    \"104.27.75.0/24\",\n    \"104.27.76.0/24\",\n    \"104.27.77.0/24\",\n    \"104.27.78.0/24\",\n    \"104.27.79.0/24\",\n    \"104.27.80.0/24\",\n    \"104.27.81.0/24\",\n    \"104.27.82.0/24\",\n    \"104.27.83.0/24\",\n    \"104.27.84.0/24\",\n    \"104.27.85.0/24\",\n    \"104.27.86.0/24\",\n    \"104.27.87.0/24\",\n    \"104.27.88.0/24\",\n    \"104.27.89.0/24\",\n    \"104.27.90.0/24\",\n    \"104.27.91.0/24\",\n    \"104.27.92.0/24\",\n    \"104.27.93.0/24\",\n    \"104.27.94.0/24\",\n    \"104.27.95.0/24\",\n    \"104.27.96.0/24\",\n    \"104.27.97.0/24\",\n    \"104.27.98.0/24\",\n    \"104.27.99.0/24\",\n    \"104.27.100.0/24\",\n    \"104.27.101.0/24\",\n    \"104.27.102.0/24\",\n    \"104.27.103.0/24\",\n    \"104.27.104.0/24\",\n    \"104.27.105.0/24\",\n    \"104.27.106.0/24\",\n    \"104.27.107.0/24\",\n    \"104.27.108.0/24\",\n    \"104.27.109.0/24\",\n    \"104.27.110.0/24\",\n    \"104.27.111.0/24\",\n    \"104.27.112.0/24\",\n    \"104.27.113.0/24\",\n    \"104.27.114.0/24\",\n    \"104.27.115.0/24\",\n    \"104.27.116.0/24\",\n    \"104.27.117.0/24\",\n    \"104.27.118.0/24\",\n    \"104.27.119.0/24\",\n    \"104.27.120.0/24\",\n    \"104.27.121.0/24\",\n    \"104.27.122.0/24\",\n    \"104.27.123.0/24\",\n    \"104.27.124.0/24\",\n    \"104.27.125.0/24\",\n    \"104.27.126.0/24\",\n    \"104.27.127.0/24\",\n    \"104.27.128.0/24\",\n    \"104.27.129.0/24\",\n    \"104.27.130.0/24\",\n    \"104.27.131.0/24\",\n    \"104.27.132.0/24\",\n    \"104.27.133.0/24\",\n    \"104.27.134.0/24\",\n    \"104.27.135.0/24\",\n    \"104.27.136.0/24\",\n    \"104.27.137.0/24\",\n    \"104.27.138.0/24\",\n    \"104.27.139.0/24\",\n    \"104.27.140.0/24\",\n    \"104.27.141.0/24\",\n    \"104.27.142.0/24\",\n    \"104.27.143.0/24\",\n    \"104.27.144.0/24\",\n    \"104.27.145.0/24\",\n    \"104.27.146.0/24\",\n    \"104.27.147.0/24\",\n    \"104.27.148.0/24\",\n    \"104.27.149.0/24\",\n    \"104.27.150.0/24\",\n    \"104.27.151.0/24\",\n    \"104.27.152.0/24\",\n    \"104.27.153.0/24\",\n    \"104.27.154.0/24\",\n    \"104.27.155.0/24\",\n    \"104.27.156.0/24\",\n    \"104.27.157.0/24\",\n    \"104.27.158.0/24\",\n    \"104.27.159.0/24\",\n    \"104.27.160.0/24\",\n    \"104.27.161.0/24\",\n    \"104.27.162.0/24\",\n    \"104.27.163.0/24\",\n    \"104.27.164.0/24\",\n    \"104.27.165.0/24\",\n    \"104.27.166.0/24\",\n    \"104.27.167.0/24\",\n    \"104.27.168.0/24\",\n    \"104.27.169.0/24\",\n    \"104.27.170.0/24\",\n    \"104.27.171.0/24\",\n    \"104.27.172.0/24\",\n    \"104.27.173.0/24\",\n    \"104.27.174.0/24\",\n    \"104.27.175.0/24\",\n    \"104.27.176.0/24\",\n    \"104.27.177.0/24\",\n    \"104.27.178.0/24\",\n    \"104.27.179.0/24\",\n    \"104.27.180.0/24\",\n    \"104.27.181.0/24\",\n    \"104.27.182.0/24\",\n    \"104.27.183.0/24\",\n    \"104.27.184.0/24\",\n    \"104.27.185.0/24\",\n    \"104.27.186.0/24\",\n    \"104.27.187.0/24\",\n    \"104.27.188.0/24\",\n    \"104.27.189.0/24\",\n    \"104.27.190.0/24\",\n    \"104.27.191.0/24\",\n    \"104.27.192.0/24\",\n    \"104.27.193.0/24\",\n    \"104.27.194.0/24\",\n    \"104.27.195.0/24\",\n    \"104.27.196.0/24\",\n    \"104.27.197.0/24\",\n    \"104.27.198.0/24\",\n    \"104.27.199.0/24\",\n    \"104.27.200.0/24\",\n    \"104.27.201.0/24\",\n    \"104.27.202.0/24\",\n    \"104.27.203.0/24\",\n    \"104.27.204.0/24\",\n    \"104.27.205.0/24\",\n    \"104.27.206.0/24\",\n    \"104.27.207.0/24\",\n    \"104.27.208.0/24\",\n    \"104.27.209.0/24\",\n    \"104.27.210.0/24\",\n    \"104.27.211.0/24\",\n    \"104.27.212.0/24\",\n    \"104.27.213.0/24\",\n    \"104.27.214.0/24\",\n    \"104.27.215.0/24\",\n    \"104.27.216.0/24\",\n    \"104.27.217.0/24\",\n    \"104.27.218.0/24\",\n    \"104.27.219.0/24\",\n    \"104.27.220.0/24\",\n    \"104.27.221.0/24\",\n    \"104.27.222.0/24\",\n    \"104.27.223.0/24\",\n    \"104.27.224.0/24\",\n    \"104.27.225.0/24\",\n    \"104.27.226.0/24\",\n    \"104.27.227.0/24\",\n    \"104.27.228.0/24\",\n    \"104.27.229.0/24\",\n    \"104.27.230.0/24\",\n    \"104.27.231.0/24\",\n    \"104.27.232.0/24\",\n    \"104.27.233.0/24\",\n    \"104.27.234.0/24\",\n    \"104.27.235.0/24\",\n    \"104.27.236.0/24\",\n    \"104.27.237.0/24\",\n    \"104.27.238.0/24\",\n    \"104.27.239.0/24\",\n    \"104.27.240.0/24\",\n    \"104.27.241.0/24\",\n    \"104.27.242.0/24\",\n    \"104.27.243.0/24\",\n    \"104.27.244.0/24\",\n    \"104.27.245.0/24\",\n    \"104.27.246.0/24\",\n    \"104.27.247.0/24\",\n    \"104.27.248.0/24\",\n    \"104.27.249.0/24\",\n    \"104.27.250.0/24\",\n    \"104.27.251.0/24\",\n    \"104.27.252.0/24\",\n    \"104.27.253.0/24\",\n    \"104.27.254.0/24\",\n    \"104.27.255.0/24\",\n    \"104.28.0.0/24\",\n    \"104.28.1.0/24\",\n    \"104.28.2.0/24\",\n    \"104.28.3.0/24\",\n    \"104.28.4.0/24\",\n    \"104.28.5.0/24\",\n    \"104.28.6.0/24\",\n    \"104.28.7.0/24\",\n    \"104.28.8.0/24\",\n    \"104.28.9.0/24\",\n    \"104.28.10.0/24\",\n    \"104.28.11.0/24\",\n    \"104.28.12.0/24\",\n    \"104.28.13.0/24\",\n    \"104.28.14.0/24\",\n    \"104.28.15.0/24\",\n    \"104.28.16.0/24\",\n    \"104.28.17.0/24\",\n    \"104.28.18.0/24\",\n    \"104.28.19.0/24\",\n    \"104.28.20.0/24\",\n    \"104.28.21.0/24\",\n    \"104.28.22.0/24\",\n    \"104.28.23.0/24\",\n    \"104.28.24.0/24\",\n    \"104.28.25.0/24\",\n    \"104.28.26.0/24\",\n    \"104.28.27.0/24\",\n    \"104.28.28.0/24\",\n    \"104.28.29.0/24\",\n    \"104.28.30.0/24\",\n    \"104.28.31.0/24\",\n    \"104.28.32.0/24\",\n    \"104.28.33.0/24\",\n    \"104.28.34.0/24\",\n    \"104.28.35.0/24\",\n    \"104.28.36.0/24\",\n    \"104.28.37.0/24\",\n    \"104.28.38.0/24\",\n    \"104.28.39.0/24\",\n    \"104.28.40.0/24\",\n    \"104.28.41.0/24\",\n    \"104.28.42.0/24\",\n    \"104.28.43.0/24\",\n    \"104.28.44.0/24\",\n    \"104.28.45.0/24\",\n    \"104.28.46.0/24\",\n    \"104.28.47.0/24\",\n    \"104.28.48.0/24\",\n    \"104.28.49.0/24\",\n    \"104.28.50.0/24\",\n    \"104.28.51.0/24\",\n    \"104.28.52.0/24\",\n    \"104.28.53.0/24\",\n    \"104.28.54.0/24\",\n    \"104.28.55.0/24\",\n    \"104.28.56.0/24\",\n    \"104.28.57.0/24\",\n    \"104.28.58.0/24\",\n    \"104.28.59.0/24\",\n    \"104.28.60.0/24\",\n    \"104.28.61.0/24\",\n    \"104.28.62.0/24\",\n    \"104.28.63.0/24\",\n    \"104.28.64.0/24\",\n    \"104.28.65.0/24\",\n    \"104.28.66.0/24\",\n    \"104.28.67.0/24\",\n    \"104.28.68.0/24\",\n    \"104.28.69.0/24\",\n    \"104.28.70.0/24\",\n    \"104.28.71.0/24\",\n    \"104.28.72.0/24\",\n    \"104.28.73.0/24\",\n    \"104.28.74.0/24\",\n    \"104.28.75.0/24\",\n    \"104.28.76.0/24\",\n    \"104.28.77.0/24\",\n    \"104.28.78.0/24\",\n    \"104.28.79.0/24\",\n    \"104.28.80.0/24\",\n    \"104.28.81.0/24\",\n    \"104.28.82.0/24\",\n    \"104.28.83.0/24\",\n    \"104.28.84.0/24\",\n    \"104.28.85.0/24\",\n    \"104.28.86.0/24\",\n    \"104.28.87.0/24\",\n    \"104.28.88.0/24\",\n    \"104.28.89.0/24\",\n    \"104.28.90.0/24\",\n    \"104.28.91.0/24\",\n    \"104.28.92.0/24\",\n    \"104.28.93.0/24\",\n    \"104.28.94.0/24\",\n    \"104.28.95.0/24\",\n    \"104.28.96.0/24\",\n    \"104.28.97.0/24\",\n    \"104.28.98.0/24\",\n    \"104.28.99.0/24\",\n    \"104.28.100.0/24\",\n    \"104.28.101.0/24\",\n    \"104.28.102.0/24\",\n    \"104.28.103.0/24\",\n    \"104.28.104.0/24\",\n    \"104.28.105.0/24\",\n    \"104.28.106.0/24\",\n    \"104.28.107.0/24\",\n    \"104.28.108.0/24\",\n    \"104.28.109.0/24\",\n    \"104.28.110.0/24\",\n    \"104.28.111.0/24\",\n    \"104.28.112.0/24\",\n    \"104.28.113.0/24\",\n    \"104.28.114.0/24\",\n    \"104.28.115.0/24\",\n    \"104.28.116.0/24\",\n    \"104.28.117.0/24\",\n    \"104.28.118.0/24\",\n    \"104.28.119.0/24\",\n    \"104.28.120.0/24\",\n    \"104.28.121.0/24\",\n    \"104.28.122.0/24\",\n    \"104.28.123.0/24\",\n    \"104.28.124.0/24\",\n    \"104.28.125.0/24\",\n    \"104.28.126.0/24\",\n    \"104.28.127.0/24\",\n    \"104.28.128.0/24\",\n    \"104.28.129.0/24\",\n    \"104.28.130.0/24\",\n    \"104.28.131.0/24\",\n    \"104.28.132.0/24\",\n    \"104.28.133.0/24\",\n    \"104.28.134.0/24\",\n    \"104.28.135.0/24\",\n    \"104.28.136.0/24\",\n    \"104.28.137.0/24\",\n    \"104.28.138.0/24\",\n    \"104.28.139.0/24\",\n    \"104.28.140.0/24\",\n    \"104.28.141.0/24\",\n    \"104.28.142.0/24\",\n    \"104.28.143.0/24\",\n    \"104.28.144.0/24\",\n    \"104.28.145.0/24\",\n    \"104.28.146.0/24\",\n    \"104.28.147.0/24\",\n    \"104.28.148.0/24\",\n    \"104.28.149.0/24\",\n    \"104.28.150.0/24\",\n    \"104.28.151.0/24\",\n    \"104.28.152.0/24\",\n    \"104.28.153.0/24\",\n    \"104.28.154.0/24\",\n    \"104.28.155.0/24\",\n    \"104.28.156.0/24\",\n    \"104.28.157.0/24\",\n    \"104.28.158.0/24\",\n    \"104.28.159.0/24\",\n    \"104.28.160.0/24\",\n    \"104.28.161.0/24\",\n    \"104.28.162.0/24\",\n    \"104.28.163.0/24\",\n    \"104.28.164.0/24\",\n    \"104.28.165.0/24\",\n    \"104.28.166.0/24\",\n    \"104.28.167.0/24\",\n    \"104.28.168.0/24\",\n    \"104.28.169.0/24\",\n    \"104.28.170.0/24\",\n    \"104.28.171.0/24\",\n    \"104.28.172.0/24\",\n    \"104.28.173.0/24\",\n    \"104.28.174.0/24\",\n    \"104.28.175.0/24\",\n    \"104.28.176.0/24\",\n    \"104.28.177.0/24\",\n    \"104.28.178.0/24\",\n    \"104.28.179.0/24\",\n    \"104.28.180.0/24\",\n    \"104.28.181.0/24\",\n    \"104.28.182.0/24\",\n    \"104.28.183.0/24\",\n    \"104.28.184.0/24\",\n    \"104.28.185.0/24\",\n    \"104.28.186.0/24\",\n    \"104.28.187.0/24\",\n    \"104.28.188.0/24\",\n    \"104.28.189.0/24\",\n    \"104.28.190.0/24\",\n    \"104.28.191.0/24\",\n    \"104.28.192.0/24\",\n    \"104.28.193.0/24\",\n    \"104.28.194.0/24\",\n    \"104.28.195.0/24\",\n    \"104.28.196.0/24\",\n    \"104.28.197.0/24\",\n    \"104.28.198.0/24\",\n    \"104.28.199.0/24\",\n    \"104.28.200.0/24\",\n    \"104.28.201.0/24\",\n    \"104.28.202.0/24\",\n    \"104.28.203.0/24\",\n    \"104.28.204.0/24\",\n    \"104.28.205.0/24\",\n    \"104.28.206.0/24\",\n    \"104.28.207.0/24\",\n    \"104.28.208.0/24\",\n    \"104.28.209.0/24\",\n    \"104.28.210.0/24\",\n    \"104.28.211.0/24\",\n    \"104.28.212.0/24\",\n    \"104.28.213.0/24\",\n    \"104.28.214.0/24\",\n    \"104.28.215.0/24\",\n    \"104.28.216.0/24\",\n    \"104.28.217.0/24\",\n    \"104.28.218.0/24\",\n    \"104.28.219.0/24\",\n    \"104.28.220.0/24\",\n    \"104.28.221.0/24\",\n    \"104.28.222.0/24\",\n    \"104.28.223.0/24\",\n    \"104.28.224.0/24\",\n    \"104.28.225.0/24\",\n    \"104.28.226.0/24\",\n    \"104.28.227.0/24\",\n    \"104.28.228.0/24\",\n    \"104.28.229.0/24\",\n    \"104.28.230.0/24\",\n    \"104.28.231.0/24\",\n    \"104.28.232.0/24\",\n    \"104.28.233.0/24\",\n    \"104.28.234.0/24\",\n    \"104.28.235.0/24\",\n    \"104.28.236.0/24\",\n    \"104.28.237.0/24\",\n    \"104.28.238.0/24\",\n    \"104.28.239.0/24\",\n    \"104.28.240.0/24\",\n    \"104.28.241.0/24\",\n    \"104.28.242.0/24\",\n    \"104.28.243.0/24\",\n    \"104.28.244.0/24\",\n    \"104.28.245.0/24\",\n    \"104.28.246.0/24\",\n    \"104.28.247.0/24\",\n    \"104.28.248.0/24\",\n    \"104.28.249.0/24\",\n    \"104.28.250.0/24\",\n    \"104.28.251.0/24\",\n    \"104.28.252.0/24\",\n    \"104.28.253.0/24\",\n    \"104.28.254.0/24\",\n    \"104.28.255.0/24\",\n    \"104.29.0.0/24\",\n    \"104.29.1.0/24\",\n    \"104.29.2.0/24\",\n    \"104.29.3.0/24\",\n    \"104.29.4.0/24\",\n    \"104.29.5.0/24\",\n    \"104.29.6.0/24\",\n    \"104.29.7.0/24\",\n    \"104.29.8.0/24\",\n    \"104.29.9.0/24\",\n    \"104.29.10.0/24\",\n    \"104.29.11.0/24\",\n    \"104.29.12.0/24\",\n    \"104.29.13.0/24\",\n    \"104.29.14.0/24\",\n    \"104.29.15.0/24\",\n    \"104.29.16.0/24\",\n    \"104.29.17.0/24\",\n    \"104.29.18.0/24\",\n    \"104.29.19.0/24\",\n    \"104.29.20.0/24\",\n    \"104.29.21.0/24\",\n    \"104.29.22.0/24\",\n    \"104.29.23.0/24\",\n    \"104.29.24.0/24\",\n    \"104.29.25.0/24\",\n    \"104.29.26.0/24\",\n    \"104.29.27.0/24\",\n    \"104.29.28.0/24\",\n    \"104.29.29.0/24\",\n    \"104.29.30.0/24\",\n    \"104.29.31.0/24\",\n    \"104.29.32.0/24\",\n    \"104.29.33.0/24\",\n    \"104.29.34.0/24\",\n    \"104.29.35.0/24\",\n    \"104.29.36.0/24\",\n    \"104.29.37.0/24\",\n    \"104.29.38.0/24\",\n    \"104.29.39.0/24\",\n    \"104.29.40.0/24\",\n    \"104.29.41.0/24\",\n    \"104.29.42.0/24\",\n    \"104.29.43.0/24\",\n    \"104.29.44.0/24\",\n    \"104.29.45.0/24\",\n    \"104.29.46.0/24\",\n    \"104.29.47.0/24\",\n    \"104.29.48.0/24\",\n    \"104.29.49.0/24\",\n    \"104.29.50.0/24\",\n    \"104.29.51.0/24\",\n    \"104.29.52.0/24\",\n    \"104.29.53.0/24\",\n    \"104.29.54.0/24\",\n    \"104.29.55.0/24\",\n    \"104.29.56.0/24\",\n    \"104.29.57.0/24\",\n    \"104.29.58.0/24\",\n    \"104.29.59.0/24\",\n    \"104.29.60.0/24\",\n    \"104.29.61.0/24\",\n    \"104.29.62.0/24\",\n    \"104.29.63.0/24\",\n    \"104.29.64.0/24\",\n    \"104.29.65.0/24\",\n    \"104.29.66.0/24\",\n    \"104.29.67.0/24\",\n    \"104.29.68.0/24\",\n    \"104.29.69.0/24\",\n    \"104.29.70.0/24\",\n    \"104.29.71.0/24\",\n    \"104.29.72.0/24\",\n    \"104.29.73.0/24\",\n    \"104.29.74.0/24\",\n    \"104.29.75.0/24\",\n    \"104.29.76.0/24\",\n    \"104.29.77.0/24\",\n    \"104.29.78.0/24\",\n    \"104.29.79.0/24\",\n    \"104.29.80.0/24\",\n    \"104.29.81.0/24\",\n    \"104.29.82.0/24\",\n    \"104.29.83.0/24\",\n    \"104.29.84.0/24\",\n    \"104.29.85.0/24\",\n    \"104.29.86.0/24\",\n    \"104.29.87.0/24\",\n    \"104.29.88.0/24\",\n    \"104.29.89.0/24\",\n    \"104.29.90.0/24\",\n    \"104.29.91.0/24\",\n    \"104.29.92.0/24\",\n    \"104.29.93.0/24\",\n    \"104.29.94.0/24\",\n    \"104.29.95.0/24\",\n    \"104.29.96.0/24\",\n    \"104.29.97.0/24\",\n    \"104.29.98.0/24\",\n    \"104.29.99.0/24\",\n    \"104.29.100.0/24\",\n    \"104.29.101.0/24\",\n    \"104.29.102.0/24\",\n    \"104.29.103.0/24\",\n    \"104.29.104.0/24\",\n    \"104.29.105.0/24\",\n    \"104.29.106.0/24\",\n    \"104.29.107.0/24\",\n    \"104.29.108.0/24\",\n    \"104.29.109.0/24\",\n    \"104.29.110.0/24\",\n    \"104.29.111.0/24\",\n    \"104.29.112.0/24\",\n    \"104.29.113.0/24\",\n    \"104.29.114.0/24\",\n    \"104.29.115.0/24\",\n    \"104.29.116.0/24\",\n    \"104.29.117.0/24\",\n    \"104.29.118.0/24\",\n    \"104.29.119.0/24\",\n    \"104.29.120.0/24\",\n    \"104.29.121.0/24\",\n    \"104.29.122.0/24\",\n    \"104.29.123.0/24\",\n    \"104.29.124.0/24\",\n    \"104.29.125.0/24\",\n    \"104.29.126.0/24\",\n    \"104.29.127.0/24\",\n    \"104.29.128.0/24\",\n    \"104.29.129.0/24\",\n    \"104.29.130.0/24\",\n    \"104.29.131.0/24\",\n    \"104.29.132.0/24\",\n    \"104.29.133.0/24\",\n    \"104.29.134.0/24\",\n    \"104.29.135.0/24\",\n    \"104.29.136.0/24\",\n    \"104.29.137.0/24\",\n    \"104.29.138.0/24\",\n    \"104.29.139.0/24\",\n    \"104.29.140.0/24\",\n    \"104.29.141.0/24\",\n    \"104.29.142.0/24\",\n    \"104.29.143.0/24\",\n    \"104.29.144.0/24\",\n    \"104.29.145.0/24\",\n    \"104.29.146.0/24\",\n    \"104.29.147.0/24\",\n    \"104.29.148.0/24\",\n    \"104.29.149.0/24\",\n    \"104.29.150.0/24\",\n    \"104.29.151.0/24\",\n    \"104.29.152.0/24\",\n    \"104.29.153.0/24\",\n    \"104.29.154.0/24\",\n    \"104.29.155.0/24\",\n    \"104.29.156.0/24\",\n    \"104.29.157.0/24\",\n    \"104.29.158.0/24\",\n    \"104.29.159.0/24\",\n    \"104.29.160.0/24\",\n    \"104.29.161.0/24\",\n    \"104.29.162.0/24\",\n    \"104.29.163.0/24\",\n    \"104.29.164.0/24\",\n    \"104.29.165.0/24\",\n    \"104.29.166.0/24\",\n    \"104.29.167.0/24\",\n    \"104.29.168.0/24\",\n    \"104.29.169.0/24\",\n    \"104.29.170.0/24\",\n    \"104.29.171.0/24\",\n    \"104.29.172.0/24\",\n    \"104.29.173.0/24\",\n    \"104.29.174.0/24\",\n    \"104.29.175.0/24\",\n    \"104.29.176.0/24\",\n    \"104.29.177.0/24\",\n    \"104.29.178.0/24\",\n    \"104.29.179.0/24\",\n    \"104.29.180.0/24\",\n    \"104.29.181.0/24\",\n    \"104.29.182.0/24\",\n    \"104.29.183.0/24\",\n    \"104.29.184.0/24\",\n    \"104.29.185.0/24\",\n    \"104.29.186.0/24\",\n    \"104.29.187.0/24\",\n    \"104.29.188.0/24\",\n    \"104.29.189.0/24\",\n    \"104.29.190.0/24\",\n    \"104.29.191.0/24\",\n    \"104.29.192.0/24\",\n    \"104.29.193.0/24\",\n    \"104.29.194.0/24\",\n    \"104.29.195.0/24\",\n    \"104.29.196.0/24\",\n    \"104.29.197.0/24\",\n    \"104.29.198.0/24\",\n    \"104.29.199.0/24\",\n    \"104.29.200.0/24\",\n    \"104.29.201.0/24\",\n    \"104.29.202.0/24\",\n    \"104.29.203.0/24\",\n    \"104.29.204.0/24\",\n    \"104.29.205.0/24\",\n    \"104.29.206.0/24\",\n    \"104.29.207.0/24\",\n    \"104.29.208.0/24\",\n    \"104.29.209.0/24\",\n    \"104.29.210.0/24\",\n    \"104.29.211.0/24\",\n    \"104.29.212.0/24\",\n    \"104.29.213.0/24\",\n    \"104.29.214.0/24\",\n    \"104.29.215.0/24\",\n    \"104.29.216.0/24\",\n    \"104.29.217.0/24\",\n    \"104.29.218.0/24\",\n    \"104.29.219.0/24\",\n    \"104.29.220.0/24\",\n    \"104.29.221.0/24\",\n    \"104.29.222.0/24\",\n    \"104.29.223.0/24\",\n    \"104.29.224.0/24\",\n    \"104.29.225.0/24\",\n    \"104.29.226.0/24\",\n    \"104.29.227.0/24\",\n    \"104.29.228.0/24\",\n    \"104.29.229.0/24\",\n    \"104.29.230.0/24\",\n    \"104.29.231.0/24\",\n    \"104.29.232.0/24\",\n    \"104.29.233.0/24\",\n    \"104.29.234.0/24\",\n    \"104.29.235.0/24\",\n    \"104.29.236.0/24\",\n    \"104.29.237.0/24\",\n    \"104.29.238.0/24\",\n    \"104.29.239.0/24\",\n    \"104.29.240.0/24\",\n    \"104.29.241.0/24\",\n    \"104.29.242.0/24\",\n    \"104.29.243.0/24\",\n    \"104.29.244.0/24\",\n    \"104.29.245.0/24\",\n    \"104.29.246.0/24\",\n    \"104.29.247.0/24\",\n    \"104.29.248.0/24\",\n    \"104.29.249.0/24\",\n    \"104.29.250.0/24\",\n    \"104.29.251.0/24\",\n    \"104.29.252.0/24\",\n    \"104.29.253.0/24\",\n    \"104.29.254.0/24\",\n    \"104.29.255.0/24\",\n    \"104.30.0.0/24\",\n    \"104.30.1.0/24\",\n    \"104.30.2.0/24\",\n    \"104.30.3.0/24\",\n    \"104.30.4.0/24\",\n    \"104.30.5.0/24\",\n    \"104.30.6.0/24\",\n    \"104.30.7.0/24\",\n    \"104.30.8.0/24\",\n    \"104.30.9.0/24\",\n    \"104.30.10.0/24\",\n    \"104.30.11.0/24\",\n    \"104.30.12.0/24\",\n    \"104.30.13.0/24\",\n    \"104.30.14.0/24\",\n    \"104.30.15.0/24\",\n    \"104.30.16.0/24\",\n    \"104.30.17.0/24\",\n    \"104.30.18.0/24\",\n    \"104.30.19.0/24\",\n    \"104.30.20.0/24\",\n    \"104.30.21.0/24\",\n    \"104.30.22.0/24\",\n    \"104.30.23.0/24\",\n    \"104.30.24.0/24\",\n    \"104.30.25.0/24\",\n    \"104.30.26.0/24\",\n    \"104.30.27.0/24\",\n    \"104.30.28.0/24\",\n    \"104.30.29.0/24\",\n    \"104.30.30.0/24\",\n    \"104.30.31.0/24\",\n    \"104.30.32.0/24\",\n    \"104.30.33.0/24\",\n    \"104.30.34.0/24\",\n    \"104.30.35.0/24\",\n    \"104.30.36.0/24\",\n    \"104.30.37.0/24\",\n    \"104.30.38.0/24\",\n    \"104.30.39.0/24\",\n    \"104.30.40.0/24\",\n    \"104.30.41.0/24\",\n    \"104.30.42.0/24\",\n    \"104.30.43.0/24\",\n    \"104.30.44.0/24\",\n    \"104.30.45.0/24\",\n    \"104.30.46.0/24\",\n    \"104.30.47.0/24\",\n    \"104.30.48.0/24\",\n    \"104.30.49.0/24\",\n    \"104.30.50.0/24\",\n    \"104.30.51.0/24\",\n    \"104.30.52.0/24\",\n    \"104.30.53.0/24\",\n    \"104.30.54.0/24\",\n    \"104.30.55.0/24\",\n    \"104.30.56.0/24\",\n    \"104.30.57.0/24\",\n    \"104.30.58.0/24\",\n    \"104.30.59.0/24\",\n    \"104.30.60.0/24\",\n    \"104.30.61.0/24\",\n    \"104.30.62.0/24\",\n    \"104.30.63.0/24\",\n    \"104.30.64.0/24\",\n    \"104.30.65.0/24\",\n    \"104.30.66.0/24\",\n    \"104.30.67.0/24\",\n    \"104.30.68.0/24\",\n    \"104.30.69.0/24\",\n    \"104.30.70.0/24\",\n    \"104.30.71.0/24\",\n    \"104.30.72.0/24\",\n    \"104.30.73.0/24\",\n    \"104.30.74.0/24\",\n    \"104.30.75.0/24\",\n    \"104.30.76.0/24\",\n    \"104.30.77.0/24\",\n    \"104.30.78.0/24\",\n    \"104.30.79.0/24\",\n    \"104.30.80.0/24\",\n    \"104.30.81.0/24\",\n    \"104.30.82.0/24\",\n    \"104.30.83.0/24\",\n    \"104.30.84.0/24\",\n    \"104.30.85.0/24\",\n    \"104.30.86.0/24\",\n    \"104.30.87.0/24\",\n    \"104.30.88.0/24\",\n    \"104.30.89.0/24\",\n    \"104.30.90.0/24\",\n    \"104.30.91.0/24\",\n    \"104.30.92.0/24\",\n    \"104.30.93.0/24\",\n    \"104.30.94.0/24\",\n    \"104.30.95.0/24\",\n    \"104.30.96.0/24\",\n    \"104.30.97.0/24\",\n    \"104.30.98.0/24\",\n    \"104.30.99.0/24\",\n    \"104.30.100.0/24\",\n    \"104.30.101.0/24\",\n    \"104.30.102.0/24\",\n    \"104.30.103.0/24\",\n    \"104.30.104.0/24\",\n    \"104.30.105.0/24\",\n    \"104.30.106.0/24\",\n    \"104.30.107.0/24\",\n    \"104.30.108.0/24\",\n    \"104.30.109.0/24\",\n    \"104.30.110.0/24\",\n    \"104.30.111.0/24\",\n    \"104.30.112.0/24\",\n    \"104.30.113.0/24\",\n    \"104.30.114.0/24\",\n    \"104.30.115.0/24\",\n    \"104.30.116.0/24\",\n    \"104.30.117.0/24\",\n    \"104.30.118.0/24\",\n    \"104.30.119.0/24\",\n    \"104.30.120.0/24\",\n    \"104.30.121.0/24\",\n    \"104.30.122.0/24\",\n    \"104.30.123.0/24\",\n    \"104.30.124.0/24\",\n    \"104.30.125.0/24\",\n    \"104.30.126.0/24\",\n    \"104.30.127.0/24\",\n    \"104.30.128.0/24\",\n    \"104.30.129.0/24\",\n    \"104.30.130.0/24\",\n    \"104.30.131.0/24\",\n    \"104.30.132.0/24\",\n    \"104.30.133.0/24\",\n    \"104.30.134.0/24\",\n    \"104.30.135.0/24\",\n    \"104.30.136.0/24\",\n    \"104.30.137.0/24\",\n    \"104.30.138.0/24\",\n    \"104.30.139.0/24\",\n    \"104.30.140.0/24\",\n    \"104.30.141.0/24\",\n    \"104.30.142.0/24\",\n    \"104.30.143.0/24\",\n    \"104.30.144.0/24\",\n    \"104.30.145.0/24\",\n    \"104.30.146.0/24\",\n    \"104.30.147.0/24\",\n    \"104.30.148.0/24\",\n    \"104.30.149.0/24\",\n    \"104.30.150.0/24\",\n    \"104.30.151.0/24\",\n    \"104.30.152.0/24\",\n    \"104.30.153.0/24\",\n    \"104.30.154.0/24\",\n    \"104.30.155.0/24\",\n    \"104.30.156.0/24\",\n    \"104.30.157.0/24\",\n    \"104.30.158.0/24\",\n    \"104.30.159.0/24\",\n    \"104.30.160.0/24\",\n    \"104.30.161.0/24\",\n    \"104.30.162.0/24\",\n    \"104.30.163.0/24\",\n    \"104.30.164.0/24\",\n    \"104.30.165.0/24\",\n    \"104.30.166.0/24\",\n    \"104.30.167.0/24\",\n    \"104.30.168.0/24\",\n    \"104.30.169.0/24\",\n    \"104.30.170.0/24\",\n    \"104.30.171.0/24\",\n    \"104.30.172.0/24\",\n    \"104.30.173.0/24\",\n    \"104.30.174.0/24\",\n    \"104.30.175.0/24\",\n    \"104.30.176.0/24\",\n    \"104.30.177.0/24\",\n    \"104.30.178.0/24\",\n    \"104.30.179.0/24\",\n    \"104.30.180.0/24\",\n    \"104.30.181.0/24\",\n    \"104.30.182.0/24\",\n    \"104.30.183.0/24\",\n    \"104.30.184.0/24\",\n    \"104.30.185.0/24\",\n    \"104.30.186.0/24\",\n    \"104.30.187.0/24\",\n    \"104.30.188.0/24\",\n    \"104.30.189.0/24\",\n    \"104.30.190.0/24\",\n    \"104.30.191.0/24\",\n    \"104.30.192.0/24\",\n    \"104.30.193.0/24\",\n    \"104.30.194.0/24\",\n    \"104.30.195.0/24\",\n    \"104.30.196.0/24\",\n    \"104.30.197.0/24\",\n    \"104.30.198.0/24\",\n    \"104.30.199.0/24\",\n    \"104.30.200.0/24\",\n    \"104.30.201.0/24\",\n    \"104.30.202.0/24\",\n    \"104.30.203.0/24\",\n    \"104.30.204.0/24\",\n    \"104.30.205.0/24\",\n    \"104.30.206.0/24\",\n    \"104.30.207.0/24\",\n    \"104.30.208.0/24\",\n    \"104.30.209.0/24\",\n    \"104.30.210.0/24\",\n    \"104.30.211.0/24\",\n    \"104.30.212.0/24\",\n    \"104.30.213.0/24\",\n    \"104.30.214.0/24\",\n    \"104.30.215.0/24\",\n    \"104.30.216.0/24\",\n    \"104.30.217.0/24\",\n    \"104.30.218.0/24\",\n    \"104.30.219.0/24\",\n    \"104.30.220.0/24\",\n    \"104.30.221.0/24\",\n    \"104.30.222.0/24\",\n    \"104.30.223.0/24\",\n    \"104.30.224.0/24\",\n    \"104.30.225.0/24\",\n    \"104.30.226.0/24\",\n    \"104.30.227.0/24\",\n    \"104.30.228.0/24\",\n    \"104.30.229.0/24\",\n    \"104.30.230.0/24\",\n    \"104.30.231.0/24\",\n    \"104.30.232.0/24\",\n    \"104.30.233.0/24\",\n    \"104.30.234.0/24\",\n    \"104.30.235.0/24\",\n    \"104.30.236.0/24\",\n    \"104.30.237.0/24\",\n    \"104.30.238.0/24\",\n    \"104.30.239.0/24\",\n    \"104.30.240.0/24\",\n    \"104.30.241.0/24\",\n    \"104.30.242.0/24\",\n    \"104.30.243.0/24\",\n    \"104.30.244.0/24\",\n    \"104.30.245.0/24\",\n    \"104.30.246.0/24\",\n    \"104.30.247.0/24\",\n    \"104.30.248.0/24\",\n    \"104.30.249.0/24\",\n    \"104.30.250.0/24\",\n    \"104.30.251.0/24\",\n    \"104.30.252.0/24\",\n    \"104.30.253.0/24\",\n    \"104.30.254.0/24\",\n    \"104.30.255.0/24\",\n    \"104.31.0.0/24\",\n    \"104.31.1.0/24\",\n    \"104.31.2.0/24\",\n    \"104.31.3.0/24\",\n    \"104.31.4.0/24\",\n    \"104.31.5.0/24\",\n    \"104.31.6.0/24\",\n    \"104.31.7.0/24\",\n    \"104.31.8.0/24\",\n    \"104.31.9.0/24\",\n    \"104.31.10.0/24\",\n    \"104.31.11.0/24\",\n    \"104.31.12.0/24\",\n    \"104.31.13.0/24\",\n    \"104.31.14.0/24\",\n    \"104.31.15.0/24\",\n    \"104.31.16.0/24\",\n    \"104.31.17.0/24\",\n    \"104.31.18.0/24\",\n    \"104.31.19.0/24\",\n    \"104.31.20.0/24\",\n    \"104.31.21.0/24\",\n    \"104.31.22.0/24\",\n    \"104.31.23.0/24\",\n    \"104.31.24.0/24\",\n    \"104.31.25.0/24\",\n    \"104.31.26.0/24\",\n    \"104.31.27.0/24\",\n    \"104.31.28.0/24\",\n    \"104.31.29.0/24\",\n    \"104.31.30.0/24\",\n    \"104.31.31.0/24\",\n    \"104.31.32.0/24\",\n    \"104.31.33.0/24\",\n    \"104.31.34.0/24\",\n    \"104.31.35.0/24\",\n    \"104.31.36.0/24\",\n    \"104.31.37.0/24\",\n    \"104.31.38.0/24\",\n    \"104.31.39.0/24\",\n    \"104.31.40.0/24\",\n    \"104.31.41.0/24\",\n    \"104.31.42.0/24\",\n    \"104.31.43.0/24\",\n    \"104.31.44.0/24\",\n    \"104.31.45.0/24\",\n    \"104.31.46.0/24\",\n    \"104.31.47.0/24\",\n    \"104.31.48.0/24\",\n    \"104.31.49.0/24\",\n    \"104.31.50.0/24\",\n    \"104.31.51.0/24\",\n    \"104.31.52.0/24\",\n    \"104.31.53.0/24\",\n    \"104.31.54.0/24\",\n    \"104.31.55.0/24\",\n    \"104.31.56.0/24\",\n    \"104.31.57.0/24\",\n    \"104.31.58.0/24\",\n    \"104.31.59.0/24\",\n    \"104.31.60.0/24\",\n    \"104.31.61.0/24\",\n    \"104.31.62.0/24\",\n    \"104.31.63.0/24\",\n    \"104.31.64.0/24\",\n    \"104.31.65.0/24\",\n    \"104.31.66.0/24\",\n    \"104.31.67.0/24\",\n    \"104.31.68.0/24\",\n    \"104.31.69.0/24\",\n    \"104.31.70.0/24\",\n    \"104.31.71.0/24\",\n    \"104.31.72.0/24\",\n    \"104.31.73.0/24\",\n    \"104.31.74.0/24\",\n    \"104.31.75.0/24\",\n    \"104.31.76.0/24\",\n    \"104.31.77.0/24\",\n    \"104.31.78.0/24\",\n    \"104.31.79.0/24\",\n    \"104.31.80.0/24\",\n    \"104.31.81.0/24\",\n    \"104.31.82.0/24\",\n    \"104.31.83.0/24\",\n    \"104.31.84.0/24\",\n    \"104.31.85.0/24\",\n    \"104.31.86.0/24\",\n    \"104.31.87.0/24\",\n    \"104.31.88.0/24\",\n    \"104.31.89.0/24\",\n    \"104.31.90.0/24\",\n    \"104.31.91.0/24\",\n    \"104.31.92.0/24\",\n    \"104.31.93.0/24\",\n    \"104.31.94.0/24\",\n    \"104.31.95.0/24\",\n    \"104.31.96.0/24\",\n    \"104.31.97.0/24\",\n    \"104.31.98.0/24\",\n    \"104.31.99.0/24\",\n    \"104.31.100.0/24\",\n    \"104.31.101.0/24\",\n    \"104.31.102.0/24\",\n    \"104.31.103.0/24\",\n    \"104.31.104.0/24\",\n    \"104.31.105.0/24\",\n    \"104.31.106.0/24\",\n    \"104.31.107.0/24\",\n    \"104.31.108.0/24\",\n    \"104.31.109.0/24\",\n    \"104.31.110.0/24\",\n    \"104.31.111.0/24\",\n    \"104.31.112.0/24\",\n    \"104.31.113.0/24\",\n    \"104.31.114.0/24\",\n    \"104.31.115.0/24\",\n    \"104.31.116.0/24\",\n    \"104.31.117.0/24\",\n    \"104.31.118.0/24\",\n    \"104.31.119.0/24\",\n    \"104.31.120.0/24\",\n    \"104.31.121.0/24\",\n    \"104.31.122.0/24\",\n    \"104.31.123.0/24\",\n    \"104.31.124.0/24\",\n    \"104.31.125.0/24\",\n    \"104.31.126.0/24\",\n    \"104.31.127.0/24\",\n    \"104.31.128.0/24\",\n    \"104.31.129.0/24\",\n    \"104.31.130.0/24\",\n    \"104.31.131.0/24\",\n    \"104.31.132.0/24\",\n    \"104.31.133.0/24\",\n    \"104.31.134.0/24\",\n    \"104.31.135.0/24\",\n    \"104.31.136.0/24\",\n    \"104.31.137.0/24\",\n    \"104.31.138.0/24\",\n    \"104.31.139.0/24\",\n    \"104.31.140.0/24\",\n    \"104.31.141.0/24\",\n    \"104.31.142.0/24\",\n    \"104.31.143.0/24\",\n    \"104.31.144.0/24\",\n    \"104.31.145.0/24\",\n    \"104.31.146.0/24\",\n    \"104.31.147.0/24\",\n    \"104.31.148.0/24\",\n    \"104.31.149.0/24\",\n    \"104.31.150.0/24\",\n    \"104.31.151.0/24\",\n    \"104.31.152.0/24\",\n    \"104.31.153.0/24\",\n    \"104.31.154.0/24\",\n    \"104.31.155.0/24\",\n    \"104.31.156.0/24\",\n    \"104.31.157.0/24\",\n    \"104.31.158.0/24\",\n    \"104.31.159.0/24\",\n    \"104.31.160.0/24\",\n    \"104.31.161.0/24\",\n    \"104.31.162.0/24\",\n    \"104.31.163.0/24\",\n    \"104.31.164.0/24\",\n    \"104.31.165.0/24\",\n    \"104.31.166.0/24\",\n    \"104.31.167.0/24\",\n    \"104.31.168.0/24\",\n    \"104.31.169.0/24\",\n    \"104.31.170.0/24\",\n    \"104.31.171.0/24\",\n    \"104.31.172.0/24\",\n    \"104.31.173.0/24\",\n    \"104.31.174.0/24\",\n    \"104.31.175.0/24\",\n    \"104.31.176.0/24\",\n    \"104.31.177.0/24\",\n    \"104.31.178.0/24\",\n    \"104.31.179.0/24\",\n    \"104.31.180.0/24\",\n    \"104.31.181.0/24\",\n    \"104.31.182.0/24\",\n    \"104.31.183.0/24\",\n    \"104.31.184.0/24\",\n    \"104.31.185.0/24\",\n    \"104.31.186.0/24\",\n    \"104.31.187.0/24\",\n    \"104.31.188.0/24\",\n    \"104.31.189.0/24\",\n    \"104.31.190.0/24\",\n    \"104.31.191.0/24\",\n    \"104.31.192.0/24\",\n    \"104.31.193.0/24\",\n    \"104.31.194.0/24\",\n    \"104.31.195.0/24\",\n    \"104.31.196.0/24\",\n    \"104.31.197.0/24\",\n    \"104.31.198.0/24\",\n    \"104.31.199.0/24\",\n    \"104.31.200.0/24\",\n    \"104.31.201.0/24\",\n    \"104.31.202.0/24\",\n    \"104.31.203.0/24\",\n    \"104.31.204.0/24\",\n    \"104.31.205.0/24\",\n    \"104.31.206.0/24\",\n    \"104.31.207.0/24\",\n    \"104.31.208.0/24\",\n    \"104.31.209.0/24\",\n    \"104.31.210.0/24\",\n    \"104.31.211.0/24\",\n    \"104.31.212.0/24\",\n    \"104.31.213.0/24\",\n    \"104.31.214.0/24\",\n    \"104.31.215.0/24\",\n    \"104.31.216.0/24\",\n    \"104.31.217.0/24\",\n    \"104.31.218.0/24\",\n    \"104.31.219.0/24\",\n    \"104.31.220.0/24\",\n    \"104.31.221.0/24\",\n    \"104.31.222.0/24\",\n    \"104.31.223.0/24\",\n    \"104.31.224.0/24\",\n    \"104.31.225.0/24\",\n    \"104.31.226.0/24\",\n    \"104.31.227.0/24\",\n    \"104.31.228.0/24\",\n    \"104.31.229.0/24\",\n    \"104.31.230.0/24\",\n    \"104.31.231.0/24\",\n    \"104.31.232.0/24\",\n    \"104.31.233.0/24\",\n    \"104.31.234.0/24\",\n    \"104.31.235.0/24\",\n    \"104.31.236.0/24\",\n    \"104.31.237.0/24\",\n    \"104.31.238.0/24\",\n    \"104.31.239.0/24\",\n    \"104.31.240.0/24\",\n    \"104.31.241.0/24\",\n    \"104.31.242.0/24\",\n    \"104.31.243.0/24\",\n    \"104.31.244.0/24\",\n    \"104.31.245.0/24\",\n    \"104.31.246.0/24\",\n    \"104.31.247.0/24\",\n    \"104.31.248.0/24\",\n    \"104.31.249.0/24\",\n    \"104.31.250.0/24\",\n    \"104.31.251.0/24\",\n    \"104.31.252.0/24\",\n    \"104.31.253.0/24\",\n    \"104.31.254.0/24\",\n    \"104.31.255.0/24\",\n    \"104.18.10.128/24\",\n    \"108.162.192.0/24\",\n    \"108.162.193.0/24\",\n    \"108.162.194.0/24\",\n    \"108.162.195.0/24\",\n    \"108.162.196.0/24\",\n    \"108.162.197.0/24\",\n    \"108.162.198.0/24\",\n    \"108.162.199.0/24\",\n    \"108.162.200.0/24\",\n    \"108.162.201.0/24\",\n    \"108.162.202.0/24\",\n    \"108.162.203.0/24\",\n    \"108.162.204.0/24\",\n    \"108.162.205.0/24\",\n    \"108.162.206.0/24\",\n    \"108.162.207.0/24\",\n    \"108.162.210.0/24\",\n    \"108.162.211.0/24\",\n    \"108.162.212.0/24\",\n    \"108.162.213.0/24\",\n    \"108.162.216.0/24\",\n    \"108.162.217.0/24\",\n    \"108.162.218.0/24\",\n    \"108.162.226.0/24\",\n    \"108.162.227.0/24\",\n    \"108.162.235.0/24\",\n    \"108.162.236.0/24\",\n    \"108.162.237.0/24\",\n    \"108.162.238.0/24\",\n    \"108.162.239.0/24\",\n    \"108.162.240.0/24\",\n    \"108.162.241.0/24\",\n    \"108.162.242.0/24\",\n    \"108.162.243.0/24\",\n    \"108.162.244.0/24\",\n    \"108.162.245.0/24\",\n    \"108.162.246.0/24\",\n    \"108.162.247.0/24\",\n    \"108.162.248.0/24\",\n    \"108.162.249.0/24\",\n    \"108.162.250.0/24\",\n    \"108.162.252.0/24\",\n    \"108.162.253.0/24\",\n    \"141.101.65.0/24\",\n    \"141.101.66.0/24\",\n    \"141.101.67.0/24\",\n    \"141.101.68.0/24\",\n    \"141.101.69.0/24\",\n    \"141.101.70.0/24\",\n    \"141.101.71.0/24\",\n    \"141.101.72.0/24\",\n    \"141.101.73.0/24\",\n    \"141.101.74.0/24\",\n    \"141.101.75.0/24\",\n    \"141.101.76.0/24\",\n    \"141.101.77.0/24\",\n    \"141.101.82.0/24\",\n    \"141.101.83.0/24\",\n    \"141.101.84.0/24\",\n    \"141.101.85.0/24\",\n    \"141.101.86.0/24\",\n    \"141.101.87.0/24\",\n    \"141.101.90.0/24\",\n    \"141.101.92.0/24\",\n    \"141.101.93.0/24\",\n    \"141.101.94.0/24\",\n    \"141.101.95.0/24\",\n    \"141.101.96.0/24\",\n    \"141.101.97.0/24\",\n    \"141.101.98.0/24\",\n    \"141.101.99.0/24\",\n    \"141.101.100.0/24\",\n    \"141.101.108.0/24\",\n    \"141.101.109.0/24\",\n    \"141.101.110.0/24\",\n    \"141.101.112.0/24\",\n    \"141.101.113.0/24\",\n    \"141.101.114.0/24\",\n    \"141.101.115.0/24\",\n    \"141.101.116.0/24\",\n    \"141.101.117.0/24\",\n    \"141.101.118.0/24\",\n    \"141.101.119.0/24\",\n    \"141.101.120.0/24\",\n    \"141.101.121.0/24\",\n    \"141.101.122.0/24\",\n    \"141.101.123.0/24\",\n    \"141.101.124.0/24\",\n    \"141.101.125.0/24\",\n    \"141.101.126.0/24\",\n    \"141.101.127.0/24\",\n    \"162.158.0.0/24\",\n    \"162.158.1.0/24\",\n    \"162.158.2.0/24\",\n    \"162.158.3.0/24\",\n    \"162.158.4.0/24\",\n    \"162.158.5.0/24\",\n    \"162.158.8.0/24\",\n    \"162.158.9.0/24\",\n    \"162.158.10.0/24\",\n    \"162.158.11.0/24\",\n    \"162.158.12.0/24\",\n    \"162.158.13.0/24\",\n    \"162.158.14.0/24\",\n    \"162.158.15.0/24\",\n    \"162.158.16.0/24\",\n    \"162.158.17.0/24\",\n    \"162.158.18.0/24\",\n    \"162.158.19.0/24\",\n    \"162.158.20.0/24\",\n    \"162.158.21.0/24\",\n    \"162.158.22.0/24\",\n    \"162.158.23.0/24\",\n    \"162.158.24.0/24\",\n    \"162.158.25.0/24\",\n    \"162.158.26.0/24\",\n    \"162.158.27.0/24\",\n    \"162.158.28.0/24\",\n    \"162.158.29.0/24\",\n    \"162.158.30.0/24\",\n    \"162.158.31.0/24\",\n    \"162.158.32.0/24\",\n    \"162.158.33.0/24\",\n    \"162.158.34.0/24\",\n    \"162.158.35.0/24\",\n    \"162.158.36.0/24\",\n    \"162.158.37.0/24\",\n    \"162.158.38.0/24\",\n    \"162.158.39.0/24\",\n    \"162.158.40.0/24\",\n    \"162.158.41.0/24\",\n    \"162.158.42.0/24\",\n    \"162.158.43.0/24\",\n    \"162.158.44.0/24\",\n    \"162.158.45.0/24\",\n    \"162.158.46.0/24\",\n    \"162.158.47.0/24\",\n    \"162.158.48.0/24\",\n    \"162.158.51.0/24\",\n    \"162.158.52.0/24\",\n    \"162.158.53.0/24\",\n    \"162.158.54.0/24\",\n    \"162.158.55.0/24\",\n    \"162.158.56.0/24\",\n    \"162.158.57.0/24\",\n    \"162.158.58.0/24\",\n    \"162.158.59.0/24\",\n    \"162.158.60.0/24\",\n    \"162.158.61.0/24\",\n    \"162.158.62.0/24\",\n    \"162.158.63.0/24\",\n    \"162.158.72.0/24\",\n    \"162.158.73.0/24\",\n    \"162.158.74.0/24\",\n    \"162.158.75.0/24\",\n    \"162.158.76.0/24\",\n    \"162.158.77.0/24\",\n    \"162.158.78.0/24\",\n    \"162.158.79.0/24\",\n    \"162.158.80.0/24\",\n    \"162.158.81.0/24\",\n    \"162.158.82.0/24\",\n    \"162.158.84.0/24\",\n    \"162.158.85.0/24\",\n    \"162.158.86.0/24\",\n    \"162.158.87.0/24\",\n    \"162.158.88.0/24\",\n    \"162.158.89.0/24\",\n    \"162.158.90.0/24\",\n    \"162.158.91.0/24\",\n    \"162.158.92.0/24\",\n    \"162.158.93.0/24\",\n    \"162.158.94.0/24\",\n    \"162.158.95.0/24\",\n    \"162.158.96.0/24\",\n    \"162.158.97.0/24\",\n    \"162.158.98.0/24\",\n    \"162.158.99.0/24\",\n    \"162.158.100.0/24\",\n    \"162.158.101.0/24\",\n    \"162.158.102.0/24\",\n    \"162.158.103.0/24\",\n    \"162.158.104.0/24\",\n    \"162.158.105.0/24\",\n    \"162.158.106.0/24\",\n    \"162.158.107.0/24\",\n    \"162.158.108.0/24\",\n    \"162.158.109.0/24\",\n    \"162.158.110.0/24\",\n    \"162.158.111.0/24\",\n    \"162.158.112.0/24\",\n    \"162.158.113.0/24\",\n    \"162.158.114.0/24\",\n    \"162.158.116.0/24\",\n    \"162.158.117.0/24\",\n    \"162.158.118.0/24\",\n    \"162.158.119.0/24\",\n    \"162.158.124.0/24\",\n    \"162.158.125.0/24\",\n    \"162.158.126.0/24\",\n    \"162.158.127.0/24\",\n    \"162.158.128.0/24\",\n    \"162.158.129.0/24\",\n    \"162.158.130.0/24\",\n    \"162.158.131.0/24\",\n    \"162.158.132.0/24\",\n    \"162.158.133.0/24\",\n    \"162.158.134.0/24\",\n    \"162.158.135.0/24\",\n    \"162.158.136.0/24\",\n    \"162.158.137.0/24\",\n    \"162.158.138.0/24\",\n    \"162.158.139.0/24\",\n    \"162.158.140.0/24\",\n    \"162.158.141.0/24\",\n    \"162.158.142.0/24\",\n    \"162.158.143.0/24\",\n    \"162.158.144.0/24\",\n    \"162.158.145.0/24\",\n    \"162.158.146.0/24\",\n    \"162.158.147.0/24\",\n    \"162.158.148.0/24\",\n    \"162.158.149.0/24\",\n    \"162.158.150.0/24\",\n    \"162.158.151.0/24\",\n    \"162.158.152.0/24\",\n    \"162.158.153.0/24\",\n    \"162.158.154.0/24\",\n    \"162.158.155.0/24\",\n    \"162.158.156.0/24\",\n    \"162.158.157.0/24\",\n    \"162.158.158.0/24\",\n    \"162.158.159.0/24\",\n    \"162.158.160.0/24\",\n    \"162.158.161.0/24\",\n    \"162.158.162.0/24\",\n    \"162.158.163.0/24\",\n    \"162.158.164.0/24\",\n    \"162.158.165.0/24\",\n    \"162.158.166.0/24\",\n    \"162.158.167.0/24\",\n    \"162.158.168.0/24\",\n    \"162.158.169.0/24\",\n    \"162.158.170.0/24\",\n    \"162.158.171.0/24\",\n    \"162.158.172.0/24\",\n    \"162.158.173.0/24\",\n    \"162.158.174.0/24\",\n    \"162.158.175.0/24\",\n    \"162.158.176.0/24\",\n    \"162.158.178.0/24\",\n    \"162.158.179.0/24\",\n    \"162.158.180.0/24\",\n    \"162.158.181.0/24\",\n    \"162.158.182.0/24\",\n    \"162.158.183.0/24\",\n    \"162.158.184.0/24\",\n    \"162.158.185.0/24\",\n    \"162.158.186.0/24\",\n    \"162.158.187.0/24\",\n    \"162.158.188.0/24\",\n    \"162.158.189.0/24\",\n    \"162.158.190.0/24\",\n    \"162.158.191.0/24\",\n    \"162.158.192.0/24\",\n    \"162.158.193.0/24\",\n    \"162.158.194.0/24\",\n    \"162.158.195.0/24\",\n    \"162.158.196.0/24\",\n    \"162.158.198.0/24\",\n    \"162.158.199.0/24\",\n    \"162.158.200.0/24\",\n    \"162.158.201.0/24\",\n    \"162.158.202.0/24\",\n    \"162.158.203.0/24\",\n    \"162.158.204.0/24\",\n    \"162.158.205.0/24\",\n    \"162.158.206.0/24\",\n    \"162.158.207.0/24\",\n    \"162.158.208.0/24\",\n    \"162.158.209.0/24\",\n    \"162.158.210.0/24\",\n    \"162.158.211.0/24\",\n    \"162.158.212.0/24\",\n    \"162.158.214.0/24\",\n    \"162.158.215.0/24\",\n    \"162.158.216.0/24\",\n    \"162.158.217.0/24\",\n    \"162.158.218.0/24\",\n    \"162.158.219.0/24\",\n    \"162.158.220.0/24\",\n    \"162.158.221.0/24\",\n    \"162.158.222.0/24\",\n    \"162.158.223.0/24\",\n    \"162.158.224.0/24\",\n    \"162.158.225.0/24\",\n    \"162.158.226.0/24\",\n    \"162.158.227.0/24\",\n    \"162.158.228.0/24\",\n    \"162.158.232.0/24\",\n    \"162.158.233.0/24\",\n    \"162.158.234.0/24\",\n    \"162.158.235.0/24\",\n    \"162.158.236.0/24\",\n    \"162.158.237.0/24\",\n    \"162.158.238.0/24\",\n    \"162.158.239.0/24\",\n    \"162.158.240.0/24\",\n    \"162.158.241.0/24\",\n    \"162.158.242.0/24\",\n    \"162.158.243.0/24\",\n    \"162.158.244.0/24\",\n    \"162.158.245.0/24\",\n    \"162.158.248.0/24\",\n    \"162.158.249.0/24\",\n    \"162.158.250.0/24\",\n    \"162.158.251.0/24\",\n    \"162.158.253.0/24\",\n    \"162.158.254.0/24\",\n    \"162.158.255.0/24\",\n    \"162.159.0.0/24\",\n    \"162.159.1.0/24\",\n    \"162.159.2.0/24\",\n    \"162.159.3.0/24\",\n    \"162.159.4.0/24\",\n    \"162.159.5.0/24\",\n    \"162.159.6.0/24\",\n    \"162.159.7.0/24\",\n    \"162.159.8.0/24\",\n    \"162.159.9.0/24\",\n    \"162.159.10.0/24\",\n    \"162.159.11.0/24\",\n    \"162.159.12.0/24\",\n    \"162.159.13.0/24\",\n    \"162.159.14.0/24\",\n    \"162.159.15.0/24\",\n    \"162.159.16.0/24\",\n    \"162.159.17.0/24\",\n    \"162.159.18.0/24\",\n    \"162.159.19.0/24\",\n    \"162.159.20.0/24\",\n    \"162.159.21.0/24\",\n    \"162.159.22.0/24\",\n    \"162.159.23.0/24\",\n    \"162.159.24.0/24\",\n    \"162.159.25.0/24\",\n    \"162.159.26.0/24\",\n    \"162.159.27.0/24\",\n    \"162.159.28.0/24\",\n    \"162.159.29.0/24\",\n    \"162.159.30.0/24\",\n    \"162.159.31.0/24\",\n    \"162.159.32.0/24\",\n    \"162.159.33.0/24\",\n    \"162.159.34.0/24\",\n    \"162.159.35.0/24\",\n    \"162.159.36.0/24\",\n    \"162.159.37.0/24\",\n    \"162.159.38.0/24\",\n    \"162.159.39.0/24\",\n    \"162.159.40.0/24\",\n    \"162.159.41.0/24\",\n    \"162.159.42.0/24\",\n    \"162.159.43.0/24\",\n    \"162.159.44.0/24\",\n    \"162.159.45.0/24\",\n    \"162.159.46.0/24\",\n    \"162.159.47.0/24\",\n    \"162.159.48.0/24\",\n    \"162.159.49.0/24\",\n    \"162.159.50.0/24\",\n    \"162.159.51.0/24\",\n    \"162.159.52.0/24\",\n    \"162.159.53.0/24\",\n    \"162.159.54.0/24\",\n    \"162.159.55.0/24\",\n    \"162.159.56.0/24\",\n    \"162.159.57.0/24\",\n    \"162.159.58.0/24\",\n    \"162.159.59.0/24\",\n    \"162.159.60.0/24\",\n    \"162.159.61.0/24\",\n    \"162.159.62.0/24\",\n    \"162.159.63.0/24\",\n    \"162.159.64.0/24\",\n    \"162.159.65.0/24\",\n    \"162.159.66.0/24\",\n    \"162.159.67.0/24\",\n    \"162.159.68.0/24\",\n    \"162.159.69.0/24\",\n    \"162.159.70.0/24\",\n    \"162.159.71.0/24\",\n    \"162.159.72.0/24\",\n    \"162.159.73.0/24\",\n    \"162.159.74.0/24\",\n    \"162.159.75.0/24\",\n    \"162.159.76.0/24\",\n    \"162.159.77.0/24\",\n    \"162.159.78.0/24\",\n    \"162.159.79.0/24\",\n    \"162.159.128.0/24\",\n    \"162.159.129.0/24\",\n    \"162.159.130.0/24\",\n    \"162.159.131.0/24\",\n    \"162.159.132.0/24\",\n    \"162.159.133.0/24\",\n    \"162.159.134.0/24\",\n    \"162.159.135.0/24\",\n    \"162.159.136.0/24\",\n    \"162.159.137.0/24\",\n    \"162.159.138.0/24\",\n    \"162.159.139.0/24\",\n    \"162.159.140.0/24\",\n    \"162.159.141.0/24\",\n    \"162.159.142.0/24\",\n    \"162.159.143.0/24\",\n    \"162.159.144.0/24\",\n    \"162.159.145.0/24\",\n    \"162.159.146.0/24\",\n    \"162.159.147.0/24\",\n    \"162.159.148.0/24\",\n    \"162.159.149.0/24\",\n    \"162.159.150.0/24\",\n    \"162.159.151.0/24\",\n    \"162.159.152.0/24\",\n    \"162.159.153.0/24\",\n    \"162.159.154.0/24\",\n    \"162.159.155.0/24\",\n    \"162.159.156.0/24\",\n    \"162.159.157.0/24\",\n    \"162.159.158.0/24\",\n    \"162.159.159.0/24\",\n    \"162.159.160.0/24\",\n    \"162.159.161.0/24\",\n    \"162.159.162.0/24\",\n    \"162.159.163.0/24\",\n    \"162.159.164.0/24\",\n    \"162.159.165.0/24\",\n    \"162.159.166.0/24\",\n    \"162.159.167.0/24\",\n    \"162.159.168.0/24\",\n    \"162.159.169.0/24\",\n    \"162.159.170.0/24\",\n    \"162.159.171.0/24\",\n    \"162.159.172.0/24\",\n    \"162.159.173.0/24\",\n    \"162.159.174.0/24\",\n    \"162.159.175.0/24\",\n    \"162.159.176.0/24\",\n    \"162.159.177.0/24\",\n    \"162.159.178.0/24\",\n    \"162.159.179.0/24\",\n    \"162.159.180.0/24\",\n    \"162.159.181.0/24\",\n    \"162.159.182.0/24\",\n    \"162.159.183.0/24\",\n    \"162.159.184.0/24\",\n    \"162.159.185.0/24\",\n    \"162.159.186.0/24\",\n    \"162.159.187.0/24\",\n    \"162.159.188.0/24\",\n    \"162.159.189.0/24\",\n    \"162.159.190.0/24\",\n    \"162.159.191.0/24\",\n    \"162.159.192.0/24\",\n    \"162.159.193.0/24\",\n    \"162.159.194.0/24\",\n    \"162.159.195.0/24\",\n    \"162.159.196.0/24\",\n    \"162.159.197.0/24\",\n    \"162.159.198.0/24\",\n    \"162.159.199.0/24\",\n    \"162.159.200.0/24\",\n    \"162.159.201.0/24\",\n    \"162.159.202.0/24\",\n    \"162.159.203.0/24\",\n    \"162.159.204.0/24\",\n    \"162.159.205.0/24\",\n    \"162.159.206.0/24\",\n    \"162.159.207.0/24\",\n    \"162.159.208.0/24\",\n    \"162.159.209.0/24\",\n    \"162.159.210.0/24\",\n    \"162.159.211.0/24\",\n    \"162.159.212.0/24\",\n    \"162.159.213.0/24\",\n    \"162.159.214.0/24\",\n    \"162.159.215.0/24\",\n    \"162.159.216.0/24\",\n    \"162.159.217.0/24\",\n    \"162.159.218.0/24\",\n    \"162.159.219.0/24\",\n    \"162.159.220.0/24\",\n    \"162.159.221.0/24\",\n    \"162.159.222.0/24\",\n    \"162.159.223.0/24\",\n    \"162.159.224.0/24\",\n    \"162.159.225.0/24\",\n    \"162.159.226.0/24\",\n    \"162.159.227.0/24\",\n    \"162.159.228.0/24\",\n    \"162.159.229.0/24\",\n    \"162.159.230.0/24\",\n    \"162.159.231.0/24\",\n    \"162.159.232.0/24\",\n    \"162.159.233.0/24\",\n    \"162.159.234.0/24\",\n    \"162.159.235.0/24\",\n    \"162.159.236.0/24\",\n    \"162.159.237.0/24\",\n    \"162.159.238.0/24\",\n    \"162.159.239.0/24\",\n    \"162.159.240.0/24\",\n    \"162.159.241.0/24\",\n    \"162.159.242.0/24\",\n    \"162.159.243.0/24\",\n    \"162.159.244.0/24\",\n    \"162.159.245.0/24\",\n    \"162.159.246.0/24\",\n    \"162.159.247.0/24\",\n    \"162.159.248.0/24\",\n    \"162.159.249.0/24\",\n    \"162.159.250.0/24\",\n    \"162.159.251.0/24\",\n    \"162.159.252.0/24\",\n    \"162.159.253.0/24\",\n    \"162.159.254.0/24\",\n    \"162.159.255.0/24\",\n    \"162.251.82.0/24\",\n    \"172.64.0.0/24\",\n    \"172.64.1.0/24\",\n    \"172.64.2.0/24\",\n    \"172.64.3.0/24\",\n    \"172.64.4.0/24\",\n    \"172.64.5.0/24\",\n    \"172.64.6.0/24\",\n    \"172.64.7.0/24\",\n    \"172.64.8.0/24\",\n    \"172.64.9.0/24\",\n    \"172.64.10.0/24\",\n    \"172.64.11.0/24\",\n    \"172.64.12.0/24\",\n    \"172.64.13.0/24\",\n    \"172.64.14.0/24\",\n    \"172.64.15.0/24\",\n    \"172.64.16.0/24\",\n    \"172.64.17.0/24\",\n    \"172.64.18.0/24\",\n    \"172.64.19.0/24\",\n    \"172.64.20.0/24\",\n    \"172.64.21.0/24\",\n    \"172.64.22.0/24\",\n    \"172.64.23.0/24\",\n    \"172.64.24.0/24\",\n    \"172.64.25.0/24\",\n    \"172.64.26.0/24\",\n    \"172.64.27.0/24\",\n    \"172.64.28.0/24\",\n    \"172.64.29.0/24\",\n    \"172.64.30.0/24\",\n    \"172.64.31.0/24\",\n    \"172.64.32.0/24\",\n    \"172.64.33.0/24\",\n    \"172.64.34.0/24\",\n    \"172.64.35.0/24\",\n    \"172.64.36.0/24\",\n    \"172.64.37.0/24\",\n    \"172.64.38.0/24\",\n    \"172.64.39.0/24\",\n    \"172.64.40.0/24\",\n    \"172.64.41.0/24\",\n    \"172.64.42.0/24\",\n    \"172.64.43.0/24\",\n    \"172.64.44.0/24\",\n    \"172.64.45.0/24\",\n    \"172.64.46.0/24\",\n    \"172.64.47.0/24\",\n    \"172.64.48.0/24\",\n    \"172.64.49.0/24\",\n    \"172.64.50.0/24\",\n    \"172.64.51.0/24\",\n    \"172.64.52.0/24\",\n    \"172.64.53.0/24\",\n    \"172.64.54.0/24\",\n    \"172.64.55.0/24\",\n    \"172.64.56.0/24\",\n    \"172.64.57.0/24\",\n    \"172.64.58.0/24\",\n    \"172.64.59.0/24\",\n    \"172.64.60.0/24\",\n    \"172.64.61.0/24\",\n    \"172.64.62.0/24\",\n    \"172.64.63.0/24\",\n    \"172.64.64.0/24\",\n    \"172.64.65.0/24\",\n    \"172.64.66.0/24\",\n    \"172.64.67.0/24\",\n    \"172.64.68.0/24\",\n    \"172.64.69.0/24\",\n    \"172.64.70.0/24\",\n    \"172.64.71.0/24\",\n    \"172.64.72.0/24\",\n    \"172.64.73.0/24\",\n    \"172.64.74.0/24\",\n    \"172.64.75.0/24\",\n    \"172.64.76.0/24\",\n    \"172.64.77.0/24\",\n    \"172.64.78.0/24\",\n    \"172.64.79.0/24\",\n    \"172.64.80.0/24\",\n    \"172.64.81.0/24\",\n    \"172.64.82.0/24\",\n    \"172.64.83.0/24\",\n    \"172.64.84.0/24\",\n    \"172.64.85.0/24\",\n    \"172.64.86.0/24\",\n    \"172.64.87.0/24\",\n    \"172.64.88.0/24\",\n    \"172.64.89.0/24\",\n    \"172.64.90.0/24\",\n    \"172.64.91.0/24\",\n    \"172.64.92.0/24\",\n    \"172.64.93.0/24\",\n    \"172.64.94.0/24\",\n    \"172.64.95.0/24\",\n    \"172.64.96.0/24\",\n    \"172.64.97.0/24\",\n    \"172.64.98.0/24\",\n    \"172.64.99.0/24\",\n    \"172.64.100.0/24\",\n    \"172.64.101.0/24\",\n    \"172.64.102.0/24\",\n    \"172.64.103.0/24\",\n    \"172.64.104.0/24\",\n    \"172.64.105.0/24\",\n    \"172.64.106.0/24\",\n    \"172.64.107.0/24\",\n    \"172.64.108.0/24\",\n    \"172.64.109.0/24\",\n    \"172.64.110.0/24\",\n    \"172.64.111.0/24\",\n    \"172.64.112.0/24\",\n    \"172.64.113.0/24\",\n    \"172.64.114.0/24\",\n    \"172.64.115.0/24\",\n    \"172.64.116.0/24\",\n    \"172.64.117.0/24\",\n    \"172.64.118.0/24\",\n    \"172.64.119.0/24\",\n    \"172.64.120.0/24\",\n    \"172.64.121.0/24\",\n    \"172.64.122.0/24\",\n    \"172.64.123.0/24\",\n    \"172.64.124.0/24\",\n    \"172.64.125.0/24\",\n    \"172.64.126.0/24\",\n    \"172.64.127.0/24\",\n    \"172.64.128.0/24\",\n    \"172.64.129.0/24\",\n    \"172.64.130.0/24\",\n    \"172.64.131.0/24\",\n    \"172.64.132.0/24\",\n    \"172.64.133.0/24\",\n    \"172.64.134.0/24\",\n    \"172.64.135.0/24\",\n    \"172.64.136.0/24\",\n    \"172.64.137.0/24\",\n    \"172.64.138.0/24\",\n    \"172.64.139.0/24\",\n    \"172.64.140.0/24\",\n    \"172.64.141.0/24\",\n    \"172.64.142.0/24\",\n    \"172.64.143.0/24\",\n    \"172.64.144.0/24\",\n    \"172.64.145.0/24\",\n    \"172.64.146.0/24\",\n    \"172.64.147.0/24\",\n    \"172.64.148.0/24\",\n    \"172.64.149.0/24\",\n    \"172.64.150.0/24\",\n    \"172.64.151.0/24\",\n    \"172.64.152.0/24\",\n    \"172.64.153.0/24\",\n    \"172.64.154.0/24\",\n    \"172.64.155.0/24\",\n    \"172.64.156.0/24\",\n    \"172.64.157.0/24\",\n    \"172.64.158.0/24\",\n    \"172.64.159.0/24\",\n    \"172.64.160.0/24\",\n    \"172.64.161.0/24\",\n    \"172.64.162.0/24\",\n    \"172.64.163.0/24\",\n    \"172.64.164.0/24\",\n    \"172.64.165.0/24\",\n    \"172.64.166.0/24\",\n    \"172.64.167.0/24\",\n    \"172.64.168.0/24\",\n    \"172.64.169.0/24\",\n    \"172.64.170.0/24\",\n    \"172.64.171.0/24\",\n    \"172.64.172.0/24\",\n    \"172.64.173.0/24\",\n    \"172.64.174.0/24\",\n    \"172.64.175.0/24\",\n    \"172.64.176.0/24\",\n    \"172.64.177.0/24\",\n    \"172.64.178.0/24\",\n    \"172.64.179.0/24\",\n    \"172.64.180.0/24\",\n    \"172.64.181.0/24\",\n    \"172.64.182.0/24\",\n    \"172.64.183.0/24\",\n    \"172.64.184.0/24\",\n    \"172.64.185.0/24\",\n    \"172.64.186.0/24\",\n    \"172.64.187.0/24\",\n    \"172.64.188.0/24\",\n    \"172.64.189.0/24\",\n    \"172.64.190.0/24\",\n    \"172.64.191.0/24\",\n    \"172.64.192.0/24\",\n    \"172.64.193.0/24\",\n    \"172.64.194.0/24\",\n    \"172.64.195.0/24\",\n    \"172.64.196.0/24\",\n    \"172.64.197.0/24\",\n    \"172.64.198.0/24\",\n    \"172.64.199.0/24\",\n    \"172.64.200.0/24\",\n    \"172.64.201.0/24\",\n    \"172.64.202.0/24\",\n    \"172.64.203.0/24\",\n    \"172.64.204.0/24\",\n    \"172.64.205.0/24\",\n    \"172.64.206.0/24\",\n    \"172.64.207.0/24\",\n    \"172.64.208.0/24\",\n    \"172.64.209.0/24\",\n    \"172.64.210.0/24\",\n    \"172.64.211.0/24\",\n    \"172.64.212.0/24\",\n    \"172.64.213.0/24\",\n    \"172.64.214.0/24\",\n    \"172.64.215.0/24\",\n    \"172.64.216.0/24\",\n    \"172.64.217.0/24\",\n    \"172.64.218.0/24\",\n    \"172.64.219.0/24\",\n    \"172.64.220.0/24\",\n    \"172.64.221.0/24\",\n    \"172.64.222.0/24\",\n    \"172.64.223.0/24\",\n    \"172.64.224.0/24\",\n    \"172.64.225.0/24\",\n    \"172.64.226.0/24\",\n    \"172.64.227.0/24\",\n    \"172.64.228.0/24\",\n    \"172.64.229.0/24\",\n    \"172.64.230.0/24\",\n    \"172.64.231.0/24\",\n    \"172.64.232.0/24\",\n    \"172.64.233.0/24\",\n    \"172.64.234.0/24\",\n    \"172.64.235.0/24\",\n    \"172.64.236.0/24\",\n    \"172.64.237.0/24\",\n    \"172.64.238.0/24\",\n    \"172.64.239.0/24\",\n    \"172.64.240.0/24\",\n    \"172.64.241.0/24\",\n    \"172.64.242.0/24\",\n    \"172.64.243.0/24\",\n    \"172.64.244.0/24\",\n    \"172.64.245.0/24\",\n    \"172.64.246.0/24\",\n    \"172.64.247.0/24\",\n    \"172.64.248.0/24\",\n    \"172.64.249.0/24\",\n    \"172.64.250.0/24\",\n    \"172.64.251.0/24\",\n    \"172.64.252.0/24\",\n    \"172.64.253.0/24\",\n    \"172.64.254.0/24\",\n    \"172.64.255.0/24\",\n    \"172.65.0.0/24\",\n    \"172.65.1.0/24\",\n    \"172.65.2.0/24\",\n    \"172.65.3.0/24\",\n    \"172.65.4.0/24\",\n    \"172.65.5.0/24\",\n    \"172.65.6.0/24\",\n    \"172.65.7.0/24\",\n    \"172.65.8.0/24\",\n    \"172.65.9.0/24\",\n    \"172.65.10.0/24\",\n    \"172.65.11.0/24\",\n    \"172.65.12.0/24\",\n    \"172.65.13.0/24\",\n    \"172.65.14.0/24\",\n    \"172.65.15.0/24\",\n    \"172.65.16.0/24\",\n    \"172.65.17.0/24\",\n    \"172.65.18.0/24\",\n    \"172.65.19.0/24\",\n    \"172.65.20.0/24\",\n    \"172.65.21.0/24\",\n    \"172.65.22.0/24\",\n    \"172.65.23.0/24\",\n    \"172.65.24.0/24\",\n    \"172.65.25.0/24\",\n    \"172.65.26.0/24\",\n    \"172.65.27.0/24\",\n    \"172.65.28.0/24\",\n    \"172.65.29.0/24\",\n    \"172.65.30.0/24\",\n    \"172.65.31.0/24\",\n    \"172.65.32.0/24\",\n    \"172.65.33.0/24\",\n    \"172.65.34.0/24\",\n    \"172.65.35.0/24\",\n    \"172.65.36.0/24\",\n    \"172.65.37.0/24\",\n    \"172.65.38.0/24\",\n    \"172.65.39.0/24\",\n    \"172.65.40.0/24\",\n    \"172.65.41.0/24\",\n    \"172.65.42.0/24\",\n    \"172.65.43.0/24\",\n    \"172.65.44.0/24\",\n    \"172.65.45.0/24\",\n    \"172.65.46.0/24\",\n    \"172.65.47.0/24\",\n    \"172.65.48.0/24\",\n    \"172.65.49.0/24\",\n    \"172.65.50.0/24\",\n    \"172.65.51.0/24\",\n    \"172.65.52.0/24\",\n    \"172.65.53.0/24\",\n    \"172.65.54.0/24\",\n    \"172.65.55.0/24\",\n    \"172.65.56.0/24\",\n    \"172.65.57.0/24\",\n    \"172.65.58.0/24\",\n    \"172.65.59.0/24\",\n    \"172.65.60.0/24\",\n    \"172.65.61.0/24\",\n    \"172.65.62.0/24\",\n    \"172.65.63.0/24\",\n    \"172.65.64.0/24\",\n    \"172.65.65.0/24\",\n    \"172.65.66.0/24\",\n    \"172.65.67.0/24\",\n    \"172.65.68.0/24\",\n    \"172.65.69.0/24\",\n    \"172.65.70.0/24\",\n    \"172.65.71.0/24\",\n    \"172.65.72.0/24\",\n    \"172.65.73.0/24\",\n    \"172.65.74.0/24\",\n    \"172.65.75.0/24\",\n    \"172.65.76.0/24\",\n    \"172.65.77.0/24\",\n    \"172.65.78.0/24\",\n    \"172.65.79.0/24\",\n    \"172.65.80.0/24\",\n    \"172.65.81.0/24\",\n    \"172.65.82.0/24\",\n    \"172.65.83.0/24\",\n    \"172.65.84.0/24\",\n    \"172.65.85.0/24\",\n    \"172.65.86.0/24\",\n    \"172.65.87.0/24\",\n    \"172.65.88.0/24\",\n    \"172.65.89.0/24\",\n    \"172.65.90.0/24\",\n    \"172.65.91.0/24\",\n    \"172.65.92.0/24\",\n    \"172.65.93.0/24\",\n    \"172.65.94.0/24\",\n    \"172.65.95.0/24\",\n    \"172.65.96.0/24\",\n    \"172.65.97.0/24\",\n    \"172.65.98.0/24\",\n    \"172.65.99.0/24\",\n    \"172.65.100.0/24\",\n    \"172.65.101.0/24\",\n    \"172.65.102.0/24\",\n    \"172.65.103.0/24\",\n    \"172.65.104.0/24\",\n    \"172.65.105.0/24\",\n    \"172.65.106.0/24\",\n    \"172.65.107.0/24\",\n    \"172.65.108.0/24\",\n    \"172.65.109.0/24\",\n    \"172.65.110.0/24\",\n    \"172.65.111.0/24\",\n    \"172.65.112.0/24\",\n    \"172.65.113.0/24\",\n    \"172.65.114.0/24\",\n    \"172.65.115.0/24\",\n    \"172.65.116.0/24\",\n    \"172.65.117.0/24\",\n    \"172.65.118.0/24\",\n    \"172.65.119.0/24\",\n    \"172.65.120.0/24\",\n    \"172.65.121.0/24\",\n    \"172.65.122.0/24\",\n    \"172.65.123.0/24\",\n    \"172.65.124.0/24\",\n    \"172.65.125.0/24\",\n    \"172.65.126.0/24\",\n    \"172.65.127.0/24\",\n    \"172.65.128.0/24\",\n    \"172.65.129.0/24\",\n    \"172.65.130.0/24\",\n    \"172.65.131.0/24\",\n    \"172.65.132.0/24\",\n    \"172.65.133.0/24\",\n    \"172.65.134.0/24\",\n    \"172.65.135.0/24\",\n    \"172.65.136.0/24\",\n    \"172.65.137.0/24\",\n    \"172.65.138.0/24\",\n    \"172.65.139.0/24\",\n    \"172.65.140.0/24\",\n    \"172.65.141.0/24\",\n    \"172.65.142.0/24\",\n    \"172.65.143.0/24\",\n    \"172.65.144.0/24\",\n    \"172.65.145.0/24\",\n    \"172.65.146.0/24\",\n    \"172.65.147.0/24\",\n    \"172.65.148.0/24\",\n    \"172.65.149.0/24\",\n    \"172.65.150.0/24\",\n    \"172.65.151.0/24\",\n    \"172.65.152.0/24\",\n    \"172.65.153.0/24\",\n    \"172.65.154.0/24\",\n    \"172.65.155.0/24\",\n    \"172.65.156.0/24\",\n    \"172.65.157.0/24\",\n    \"172.65.158.0/24\",\n    \"172.65.159.0/24\",\n    \"172.65.160.0/24\",\n    \"172.65.161.0/24\",\n    \"172.65.162.0/24\",\n    \"172.65.163.0/24\",\n    \"172.65.164.0/24\",\n    \"172.65.165.0/24\",\n    \"172.65.166.0/24\",\n    \"172.65.167.0/24\",\n    \"172.65.168.0/24\",\n    \"172.65.169.0/24\",\n    \"172.65.170.0/24\",\n    \"172.65.171.0/24\",\n    \"172.65.172.0/24\",\n    \"172.65.173.0/24\",\n    \"172.65.174.0/24\",\n    \"172.65.175.0/24\",\n    \"172.65.176.0/24\",\n    \"172.65.177.0/24\",\n    \"172.65.178.0/24\",\n    \"172.65.179.0/24\",\n    \"172.65.180.0/24\",\n    \"172.65.181.0/24\",\n    \"172.65.182.0/24\",\n    \"172.65.183.0/24\",\n    \"172.65.184.0/24\",\n    \"172.65.185.0/24\",\n    \"172.65.186.0/24\",\n    \"172.65.187.0/24\",\n    \"172.65.188.0/24\",\n    \"172.65.189.0/24\",\n    \"172.65.190.0/24\",\n    \"172.65.191.0/24\",\n    \"172.65.192.0/24\",\n    \"172.65.193.0/24\",\n    \"172.65.194.0/24\",\n    \"172.65.195.0/24\",\n    \"172.65.196.0/24\",\n    \"172.65.197.0/24\",\n    \"172.65.198.0/24\",\n    \"172.65.199.0/24\",\n    \"172.65.200.0/24\",\n    \"172.65.201.0/24\",\n    \"172.65.202.0/24\",\n    \"172.65.203.0/24\",\n    \"172.65.204.0/24\",\n    \"172.65.205.0/24\",\n    \"172.65.206.0/24\",\n    \"172.65.207.0/24\",\n    \"172.65.208.0/24\",\n    \"172.65.209.0/24\",\n    \"172.65.210.0/24\",\n    \"172.65.211.0/24\",\n    \"172.65.212.0/24\",\n    \"172.65.213.0/24\",\n    \"172.65.214.0/24\",\n    \"172.65.215.0/24\",\n    \"172.65.216.0/24\",\n    \"172.65.217.0/24\",\n    \"172.65.218.0/24\",\n    \"172.65.219.0/24\",\n    \"172.65.220.0/24\",\n    \"172.65.221.0/24\",\n    \"172.65.222.0/24\",\n    \"172.65.223.0/24\",\n    \"172.65.224.0/24\",\n    \"172.65.225.0/24\",\n    \"172.65.226.0/24\",\n    \"172.65.227.0/24\",\n    \"172.65.228.0/24\",\n    \"172.65.229.0/24\",\n    \"172.65.230.0/24\",\n    \"172.65.231.0/24\",\n    \"172.65.232.0/24\",\n    \"172.65.233.0/24\",\n    \"172.65.234.0/24\",\n    \"172.65.235.0/24\",\n    \"172.65.236.0/24\",\n    \"172.65.237.0/24\",\n    \"172.65.238.0/24\",\n    \"172.65.239.0/24\",\n    \"172.65.240.0/24\",\n    \"172.65.241.0/24\",\n    \"172.65.242.0/24\",\n    \"172.65.243.0/24\",\n    \"172.65.244.0/24\",\n    \"172.65.245.0/24\",\n    \"172.65.246.0/24\",\n    \"172.65.247.0/24\",\n    \"172.65.248.0/24\",\n    \"172.65.249.0/24\",\n    \"172.65.250.0/24\",\n    \"172.65.251.0/24\",\n    \"172.65.252.0/24\",\n    \"172.65.253.0/24\",\n    \"172.65.254.0/24\",\n    \"172.65.255.0/24\",\n    \"172.66.0.0/24\",\n    \"172.66.1.0/24\",\n    \"172.66.2.0/24\",\n    \"172.66.3.0/24\",\n    \"172.66.40.0/24\",\n    \"172.66.41.0/24\",\n    \"172.66.42.0/24\",\n    \"172.66.43.0/24\",\n    \"172.66.44.0/24\",\n    \"172.66.45.0/24\",\n    \"172.66.46.0/24\",\n    \"172.66.47.0/24\",\n    \"172.67.0.0/24\",\n    \"172.67.1.0/24\",\n    \"172.67.2.0/24\",\n    \"172.67.3.0/24\",\n    \"172.67.4.0/24\",\n    \"172.67.5.0/24\",\n    \"172.67.6.0/24\",\n    \"172.67.7.0/24\",\n    \"172.67.8.0/24\",\n    \"172.67.9.0/24\",\n    \"172.67.10.0/24\",\n    \"172.67.11.0/24\",\n    \"172.67.12.0/24\",\n    \"172.67.13.0/24\",\n    \"172.67.14.0/24\",\n    \"172.67.15.0/24\",\n    \"172.67.16.0/24\",\n    \"172.67.17.0/24\",\n    \"172.67.18.0/24\",\n    \"172.67.19.0/24\",\n    \"172.67.20.0/24\",\n    \"172.67.21.0/24\",\n    \"172.67.22.0/24\",\n    \"172.67.23.0/24\",\n    \"172.67.24.0/24\",\n    \"172.67.25.0/24\",\n    \"172.67.26.0/24\",\n    \"172.67.27.0/24\",\n    \"172.67.28.0/24\",\n    \"172.67.29.0/24\",\n    \"172.67.30.0/24\",\n    \"172.67.31.0/24\",\n    \"172.67.32.0/24\",\n    \"172.67.33.0/24\",\n    \"172.67.34.0/24\",\n    \"172.67.35.0/24\",\n    \"172.67.36.0/24\",\n    \"172.67.37.0/24\",\n    \"172.67.38.0/24\",\n    \"172.67.39.0/24\",\n    \"172.67.40.0/24\",\n    \"172.67.41.0/24\",\n    \"172.67.42.0/24\",\n    \"172.67.43.0/24\",\n    \"172.67.44.0/24\",\n    \"172.67.45.0/24\",\n    \"172.67.46.0/24\",\n    \"172.67.47.0/24\",\n    \"172.67.48.0/24\",\n    \"172.67.49.0/24\",\n    \"172.67.50.0/24\",\n    \"172.67.51.0/24\",\n    \"172.67.52.0/24\",\n    \"172.67.53.0/24\",\n    \"172.67.54.0/24\",\n    \"172.67.55.0/24\",\n    \"172.67.56.0/24\",\n    \"172.67.57.0/24\",\n    \"172.67.58.0/24\",\n    \"172.67.59.0/24\",\n    \"172.67.60.0/24\",\n    \"172.67.61.0/24\",\n    \"172.67.62.0/24\",\n    \"172.67.63.0/24\",\n    \"172.67.64.0/24\",\n    \"172.67.65.0/24\",\n    \"172.67.66.0/24\",\n    \"172.67.67.0/24\",\n    \"172.67.68.0/24\",\n    \"172.67.69.0/24\",\n    \"172.67.70.0/24\",\n    \"172.67.71.0/24\",\n    \"172.67.72.0/24\",\n    \"172.67.73.0/24\",\n    \"172.67.74.0/24\",\n    \"172.67.75.0/24\",\n    \"172.67.76.0/24\",\n    \"172.67.77.0/24\",\n    \"172.67.78.0/24\",\n    \"172.67.79.0/24\",\n    \"172.67.80.0/24\",\n    \"172.67.81.0/24\",\n    \"172.67.82.0/24\",\n    \"172.67.83.0/24\",\n    \"172.67.84.0/24\",\n    \"172.67.85.0/24\",\n    \"172.67.86.0/24\",\n    \"172.67.87.0/24\",\n    \"172.67.88.0/24\",\n    \"172.67.89.0/24\",\n    \"172.67.90.0/24\",\n    \"172.67.91.0/24\",\n    \"172.67.92.0/24\",\n    \"172.67.93.0/24\",\n    \"172.67.94.0/24\",\n    \"172.67.95.0/24\",\n    \"172.67.96.0/24\",\n    \"172.67.97.0/24\",\n    \"172.67.98.0/24\",\n    \"172.67.99.0/24\",\n    \"172.67.100.0/24\",\n    \"172.67.101.0/24\",\n    \"172.67.102.0/24\",\n    \"172.67.103.0/24\",\n    \"172.67.104.0/24\",\n    \"172.67.105.0/24\",\n    \"172.67.106.0/24\",\n    \"172.67.107.0/24\",\n    \"172.67.108.0/24\",\n    \"172.67.109.0/24\",\n    \"172.67.110.0/24\",\n    \"172.67.111.0/24\",\n    \"172.67.112.0/24\",\n    \"172.67.113.0/24\",\n    \"172.67.114.0/24\",\n    \"172.67.115.0/24\",\n    \"172.67.116.0/24\",\n    \"172.67.117.0/24\",\n    \"172.67.118.0/24\",\n    \"172.67.119.0/24\",\n    \"172.67.120.0/24\",\n    \"172.67.121.0/24\",\n    \"172.67.122.0/24\",\n    \"172.67.123.0/24\",\n    \"172.67.124.0/24\",\n    \"172.67.125.0/24\",\n    \"172.67.126.0/24\",\n    \"172.67.127.0/24\",\n    \"172.67.128.0/24\",\n    \"172.67.129.0/24\",\n    \"172.67.130.0/24\",\n    \"172.67.131.0/24\",\n    \"172.67.132.0/24\",\n    \"172.67.133.0/24\",\n    \"172.67.134.0/24\",\n    \"172.67.135.0/24\",\n    \"172.67.136.0/24\",\n    \"172.67.137.0/24\",\n    \"172.67.138.0/24\",\n    \"172.67.139.0/24\",\n    \"172.67.140.0/24\",\n    \"172.67.141.0/24\",\n    \"172.67.142.0/24\",\n    \"172.67.143.0/24\",\n    \"172.67.144.0/24\",\n    \"172.67.145.0/24\",\n    \"172.67.146.0/24\",\n    \"172.67.147.0/24\",\n    \"172.67.148.0/24\",\n    \"172.67.149.0/24\",\n    \"172.67.150.0/24\",\n    \"172.67.151.0/24\",\n    \"172.67.152.0/24\",\n    \"172.67.153.0/24\",\n    \"172.67.154.0/24\",\n    \"172.67.155.0/24\",\n    \"172.67.156.0/24\",\n    \"172.67.157.0/24\",\n    \"172.67.158.0/24\",\n    \"172.67.159.0/24\",\n    \"172.67.160.0/24\",\n    \"172.67.161.0/24\",\n    \"172.67.162.0/24\",\n    \"172.67.163.0/24\",\n    \"172.67.164.0/24\",\n    \"172.67.165.0/24\",\n    \"172.67.166.0/24\",\n    \"172.67.167.0/24\",\n    \"172.67.168.0/24\",\n    \"172.67.169.0/24\",\n    \"172.67.170.0/24\",\n    \"172.67.171.0/24\",\n    \"172.67.172.0/24\",\n    \"172.67.173.0/24\",\n    \"172.67.174.0/24\",\n    \"172.67.175.0/24\",\n    \"172.67.176.0/24\",\n    \"172.67.177.0/24\",\n    \"172.67.178.0/24\",\n    \"172.67.179.0/24\",\n    \"172.67.180.0/24\",\n    \"172.67.181.0/24\",\n    \"172.67.182.0/24\",\n    \"172.67.183.0/24\",\n    \"172.67.184.0/24\",\n    \"172.67.185.0/24\",\n    \"172.67.186.0/24\",\n    \"172.67.187.0/24\",\n    \"172.67.188.0/24\",\n    \"172.67.189.0/24\",\n    \"172.67.190.0/24\",\n    \"172.67.191.0/24\",\n    \"172.67.192.0/24\",\n    \"172.67.193.0/24\",\n    \"172.67.194.0/24\",\n    \"172.67.195.0/24\",\n    \"172.67.196.0/24\",\n    \"172.67.197.0/24\",\n    \"172.67.198.0/24\",\n    \"172.67.199.0/24\",\n    \"172.67.200.0/24\",\n    \"172.67.201.0/24\",\n    \"172.67.202.0/24\",\n    \"172.67.203.0/24\",\n    \"172.67.204.0/24\",\n    \"172.67.205.0/24\",\n    \"172.67.206.0/24\",\n    \"172.67.207.0/24\",\n    \"172.67.208.0/24\",\n    \"172.67.209.0/24\",\n    \"172.67.210.0/24\",\n    \"172.67.211.0/24\",\n    \"172.67.212.0/24\",\n    \"172.67.213.0/24\",\n    \"172.67.214.0/24\",\n    \"172.67.215.0/24\",\n    \"172.67.216.0/24\",\n    \"172.67.217.0/24\",\n    \"172.67.218.0/24\",\n    \"172.67.219.0/24\",\n    \"172.67.220.0/24\",\n    \"172.67.221.0/24\",\n    \"172.67.222.0/24\",\n    \"172.67.223.0/24\",\n    \"172.67.224.0/24\",\n    \"172.67.225.0/24\",\n    \"172.67.226.0/24\",\n    \"172.67.227.0/24\",\n    \"172.67.228.0/24\",\n    \"172.67.229.0/24\",\n    \"172.67.230.0/24\",\n    \"172.67.231.0/24\",\n    \"172.67.232.0/24\",\n    \"172.67.233.0/24\",\n    \"172.67.234.0/24\",\n    \"172.67.235.0/24\",\n    \"172.67.236.0/24\",\n    \"172.67.237.0/24\",\n    \"172.67.238.0/24\",\n    \"172.67.239.0/24\",\n    \"172.67.240.0/24\",\n    \"172.67.241.0/24\",\n    \"172.67.242.0/24\",\n    \"172.67.243.0/24\",\n    \"172.67.244.0/24\",\n    \"172.67.245.0/24\",\n    \"172.67.246.0/24\",\n    \"172.67.247.0/24\",\n    \"172.67.248.0/24\",\n    \"172.67.249.0/24\",\n    \"172.67.250.0/24\",\n    \"172.67.251.0/24\",\n    \"172.67.252.0/24\",\n    \"172.67.253.0/24\",\n    \"172.67.254.0/24\",\n    \"172.67.255.0/24\",\n    \"172.68.0.0/24\",\n    \"172.68.1.0/24\",\n    \"172.68.2.0/24\",\n    \"172.68.3.0/24\",\n    \"172.68.4.0/24\",\n    \"172.68.5.0/24\",\n    \"172.68.6.0/24\",\n    \"172.68.7.0/24\",\n    \"172.68.8.0/24\",\n    \"172.68.9.0/24\",\n    \"172.68.10.0/24\",\n    \"172.68.11.0/24\",\n    \"172.68.12.0/24\",\n    \"172.68.13.0/24\",\n    \"172.68.14.0/24\",\n    \"172.68.15.0/24\",\n    \"172.68.16.0/24\",\n    \"172.68.17.0/24\",\n    \"172.68.18.0/24\",\n    \"172.68.19.0/24\",\n    \"172.68.20.0/24\",\n    \"172.68.21.0/24\",\n    \"172.68.22.0/24\",\n    \"172.68.23.0/24\",\n    \"172.68.24.0/24\",\n    \"172.68.25.0/24\",\n    \"172.68.26.0/24\",\n    \"172.68.27.0/24\",\n    \"172.68.28.0/24\",\n    \"172.68.29.0/24\",\n    \"172.68.30.0/24\",\n    \"172.68.31.0/24\",\n    \"172.68.32.0/24\",\n    \"172.68.33.0/24\",\n    \"172.68.34.0/24\",\n    \"172.68.35.0/24\",\n    \"172.68.36.0/24\",\n    \"172.68.37.0/24\",\n    \"172.68.38.0/24\",\n    \"172.68.39.0/24\",\n    \"172.68.40.0/24\",\n    \"172.68.41.0/24\",\n    \"172.68.42.0/24\",\n    \"172.68.43.0/24\",\n    \"172.68.45.0/24\",\n    \"172.68.46.0/24\",\n    \"172.68.47.0/24\",\n    \"172.68.48.0/24\",\n    \"172.68.49.0/24\",\n    \"172.68.50.0/24\",\n    \"172.68.51.0/24\",\n    \"172.68.52.0/24\",\n    \"172.68.53.0/24\",\n    \"172.68.54.0/24\",\n    \"172.68.55.0/24\",\n    \"172.68.56.0/24\",\n    \"172.68.57.0/24\",\n    \"172.68.58.0/24\",\n    \"172.68.59.0/24\",\n    \"172.68.60.0/24\",\n    \"172.68.61.0/24\",\n    \"172.68.62.0/24\",\n    \"172.68.63.0/24\",\n    \"172.68.64.0/24\",\n    \"172.68.65.0/24\",\n    \"172.68.66.0/24\",\n    \"172.68.67.0/24\",\n    \"172.68.68.0/24\",\n    \"172.68.69.0/24\",\n    \"172.68.70.0/24\",\n    \"172.68.71.0/24\",\n    \"172.68.72.0/24\",\n    \"172.68.73.0/24\",\n    \"172.68.74.0/24\",\n    \"172.68.75.0/24\",\n    \"172.68.76.0/24\",\n    \"172.68.77.0/24\",\n    \"172.68.78.0/24\",\n    \"172.68.79.0/24\",\n    \"172.68.80.0/24\",\n    \"172.68.81.0/24\",\n    \"172.68.83.0/24\",\n    \"172.68.84.0/24\",\n    \"172.68.85.0/24\",\n    \"172.68.86.0/24\",\n    \"172.68.87.0/24\",\n    \"172.68.88.0/24\",\n    \"172.68.89.0/24\",\n    \"172.68.90.0/24\",\n    \"172.68.91.0/24\",\n    \"172.68.92.0/24\",\n    \"172.68.93.0/24\",\n    \"172.68.94.0/24\",\n    \"172.68.95.0/24\",\n    \"172.68.96.0/24\",\n    \"172.68.97.0/24\",\n    \"172.68.98.0/24\",\n    \"172.68.99.0/24\",\n    \"172.68.100.0/24\",\n    \"172.68.101.0/24\",\n    \"172.68.102.0/24\",\n    \"172.68.103.0/24\",\n    \"172.68.104.0/24\",\n    \"172.68.105.0/24\",\n    \"172.68.106.0/24\",\n    \"172.68.107.0/24\",\n    \"172.68.108.0/24\",\n    \"172.68.109.0/24\",\n    \"172.68.110.0/24\",\n    \"172.68.111.0/24\",\n    \"172.68.112.0/24\",\n    \"172.68.113.0/24\",\n    \"172.68.114.0/24\",\n    \"172.68.115.0/24\",\n    \"172.68.116.0/24\",\n    \"172.68.117.0/24\",\n    \"172.68.118.0/24\",\n    \"172.68.119.0/24\",\n    \"172.68.120.0/24\",\n    \"172.68.121.0/24\",\n    \"172.68.123.0/24\",\n    \"172.68.124.0/24\",\n    \"172.68.125.0/24\",\n    \"172.68.126.0/24\",\n    \"172.68.127.0/24\",\n    \"172.68.128.0/24\",\n    \"172.68.129.0/24\",\n    \"172.68.130.0/24\",\n    \"172.68.131.0/24\",\n    \"172.68.132.0/24\",\n    \"172.68.133.0/24\",\n    \"172.68.134.0/24\",\n    \"172.68.135.0/24\",\n    \"172.68.136.0/24\",\n    \"172.68.137.0/24\",\n    \"172.68.138.0/24\",\n    \"172.68.139.0/24\",\n    \"172.68.140.0/24\",\n    \"172.68.141.0/24\",\n    \"172.68.142.0/24\",\n    \"172.68.143.0/24\",\n    \"172.68.144.0/24\",\n    \"172.68.145.0/24\",\n    \"172.68.146.0/24\",\n    \"172.68.147.0/24\",\n    \"172.68.148.0/24\",\n    \"172.68.149.0/24\",\n    \"172.68.150.0/24\",\n    \"172.68.151.0/24\",\n    \"172.68.152.0/24\",\n    \"172.68.153.0/24\",\n    \"172.68.154.0/24\",\n    \"172.68.155.0/24\",\n    \"172.68.161.0/24\",\n    \"172.68.162.0/24\",\n    \"172.68.163.0/24\",\n    \"172.68.164.0/24\",\n    \"172.68.165.0/24\",\n    \"172.68.166.0/24\",\n    \"172.68.167.0/24\",\n    \"172.68.168.0/24\",\n    \"172.68.169.0/24\",\n    \"172.68.170.0/24\",\n    \"172.68.171.0/24\",\n    \"172.68.172.0/24\",\n    \"172.68.173.0/24\",\n    \"172.68.174.0/24\",\n    \"172.68.175.0/24\",\n    \"172.68.176.0/24\",\n    \"172.68.177.0/24\",\n    \"172.68.179.0/24\",\n    \"172.68.180.0/24\",\n    \"172.68.181.0/24\",\n    \"172.68.182.0/24\",\n    \"172.68.183.0/24\",\n    \"172.68.184.0/24\",\n    \"172.68.185.0/24\",\n    \"172.68.186.0/24\",\n    \"172.68.187.0/24\",\n    \"172.68.188.0/24\",\n    \"172.68.189.0/24\",\n    \"172.68.190.0/24\",\n    \"172.68.191.0/24\",\n    \"172.68.196.0/24\",\n    \"172.68.197.0/24\",\n    \"172.68.198.0/24\",\n    \"172.68.199.0/24\",\n    \"172.68.200.0/24\",\n    \"172.68.201.0/24\",\n    \"172.68.202.0/24\",\n    \"172.68.203.0/24\",\n    \"172.68.204.0/24\",\n    \"172.68.205.0/24\",\n    \"172.68.206.0/24\",\n    \"172.68.207.0/24\",\n    \"172.68.208.0/24\",\n    \"172.68.209.0/24\",\n    \"172.68.210.0/24\",\n    \"172.68.211.0/24\",\n    \"172.68.212.0/24\",\n    \"172.68.213.0/24\",\n    \"172.68.214.0/24\",\n    \"172.68.215.0/24\",\n    \"172.68.217.0/24\",\n    \"172.68.218.0/24\",\n    \"172.68.219.0/24\",\n    \"172.68.220.0/24\",\n    \"172.68.221.0/24\",\n    \"172.68.222.0/24\",\n    \"172.68.223.0/24\",\n    \"172.68.224.0/24\",\n    \"172.68.225.0/24\",\n    \"172.68.226.0/24\",\n    \"172.68.227.0/24\",\n    \"172.68.228.0/24\",\n    \"172.68.229.0/24\",\n    \"172.68.230.0/24\",\n    \"172.68.231.0/24\",\n    \"172.68.232.0/24\",\n    \"172.68.233.0/24\",\n    \"172.68.234.0/24\",\n    \"172.68.235.0/24\",\n    \"172.68.236.0/24\",\n    \"172.68.237.0/24\",\n    \"172.68.238.0/24\",\n    \"172.68.239.0/24\",\n    \"172.68.240.0/24\",\n    \"172.68.241.0/24\",\n    \"172.68.242.0/24\",\n    \"172.68.243.0/24\",\n    \"172.68.244.0/24\",\n    \"172.68.245.0/24\",\n    \"172.68.246.0/24\",\n    \"172.68.247.0/24\",\n    \"172.68.248.0/24\",\n    \"172.68.249.0/24\",\n    \"172.68.250.0/24\",\n    \"172.68.251.0/24\",\n    \"172.68.252.0/24\",\n    \"172.68.253.0/24\",\n    \"172.68.255.0/24\",\n    \"172.69.0.0/24\",\n    \"172.69.1.0/24\",\n    \"172.69.2.0/24\",\n    \"172.69.3.0/24\",\n    \"172.69.4.0/24\",\n    \"172.69.5.0/24\",\n    \"172.69.6.0/24\",\n    \"172.69.7.0/24\",\n    \"172.69.8.0/24\",\n    \"172.69.9.0/24\",\n    \"172.69.10.0/24\",\n    \"172.69.11.0/24\",\n    \"172.69.12.0/24\",\n    \"172.69.13.0/24\",\n    \"172.69.14.0/24\",\n    \"172.69.15.0/24\",\n    \"172.69.16.0/24\",\n    \"172.69.18.0/24\",\n    \"172.69.19.0/24\",\n    \"172.69.20.0/24\",\n    \"172.69.21.0/24\",\n    \"172.69.22.0/24\",\n    \"172.69.23.0/24\",\n    \"172.69.32.0/24\",\n    \"172.69.33.0/24\",\n    \"172.69.34.0/24\",\n    \"172.69.35.0/24\",\n    \"172.69.36.0/24\",\n    \"172.69.37.0/24\",\n    \"172.69.38.0/24\",\n    \"172.69.39.0/24\",\n    \"172.69.40.0/24\",\n    \"172.69.41.0/24\",\n    \"172.69.42.0/24\",\n    \"172.69.43.0/24\",\n    \"172.69.44.0/24\",\n    \"172.69.45.0/24\",\n    \"172.69.46.0/24\",\n    \"172.69.47.0/24\",\n    \"172.69.48.0/24\",\n    \"172.69.52.0/24\",\n    \"172.69.53.0/24\",\n    \"172.69.54.0/24\",\n    \"172.69.55.0/24\",\n    \"172.69.60.0/24\",\n    \"172.69.61.0/24\",\n    \"172.69.62.0/24\",\n    \"172.69.63.0/24\",\n    \"172.69.64.0/24\",\n    \"172.69.65.0/24\",\n    \"172.69.66.0/24\",\n    \"172.69.67.0/24\",\n    \"172.69.68.0/24\",\n    \"172.69.69.0/24\",\n    \"172.69.70.0/24\",\n    \"172.69.71.0/24\",\n    \"172.69.72.0/24\",\n    \"172.69.73.0/24\",\n    \"172.69.74.0/24\",\n    \"172.69.75.0/24\",\n    \"172.69.76.0/24\",\n    \"172.69.77.0/24\",\n    \"172.69.78.0/24\",\n    \"172.69.79.0/24\",\n    \"172.69.80.0/24\",\n    \"172.69.81.0/24\",\n    \"172.69.82.0/24\",\n    \"172.69.83.0/24\",\n    \"172.69.84.0/24\",\n    \"172.69.85.0/24\",\n    \"172.69.86.0/24\",\n    \"172.69.87.0/24\",\n    \"172.69.88.0/24\",\n    \"172.69.89.0/24\",\n    \"172.69.90.0/24\",\n    \"172.69.91.0/24\",\n    \"172.69.92.0/24\",\n    \"172.69.93.0/24\",\n    \"172.69.94.0/24\",\n    \"172.69.95.0/24\",\n    \"172.69.96.0/24\",\n    \"172.69.97.0/24\",\n    \"172.69.100.0/24\",\n    \"172.69.101.0/24\",\n    \"172.69.102.0/24\",\n    \"172.69.103.0/24\",\n    \"172.69.105.0/24\",\n    \"172.69.106.0/24\",\n    \"172.69.107.0/24\",\n    \"172.69.108.0/24\",\n    \"172.69.109.0/24\",\n    \"172.69.110.0/24\",\n    \"172.69.111.0/24\",\n    \"172.69.112.0/24\",\n    \"172.69.113.0/24\",\n    \"172.69.114.0/24\",\n    \"172.69.115.0/24\",\n    \"172.69.116.0/24\",\n    \"172.69.117.0/24\",\n    \"172.69.118.0/24\",\n    \"172.69.119.0/24\",\n    \"172.69.124.0/24\",\n    \"172.69.125.0/24\",\n    \"172.69.126.0/24\",\n    \"172.69.127.0/24\",\n    \"172.69.128.0/24\",\n    \"172.69.129.0/24\",\n    \"172.69.130.0/24\",\n    \"172.69.131.0/24\",\n    \"172.69.132.0/24\",\n    \"172.69.133.0/24\",\n    \"172.69.134.0/24\",\n    \"172.69.135.0/24\",\n    \"172.69.136.0/24\",\n    \"172.69.137.0/24\",\n    \"172.69.138.0/24\",\n    \"172.69.139.0/24\",\n    \"172.69.140.0/24\",\n    \"172.69.141.0/24\",\n    \"172.69.142.0/24\",\n    \"172.69.143.0/24\",\n    \"172.69.144.0/24\",\n    \"172.69.145.0/24\",\n    \"172.69.146.0/24\",\n    \"172.69.147.0/24\",\n    \"172.69.148.0/24\",\n    \"172.69.149.0/24\",\n    \"172.69.150.0/24\",\n    \"172.69.151.0/24\",\n    \"172.69.156.0/24\",\n    \"172.69.157.0/24\",\n    \"172.69.158.0/24\",\n    \"172.69.159.0/24\",\n    \"172.69.160.0/24\",\n    \"172.69.161.0/24\",\n    \"172.69.162.0/24\",\n    \"172.69.163.0/24\",\n    \"172.69.164.0/24\",\n    \"172.69.165.0/24\",\n    \"172.69.166.0/24\",\n    \"172.69.167.0/24\",\n    \"172.69.168.0/24\",\n    \"172.69.169.0/24\",\n    \"172.69.170.0/24\",\n    \"172.69.171.0/24\",\n    \"172.69.172.0/24\",\n    \"172.69.173.0/24\",\n    \"172.69.174.0/24\",\n    \"172.69.175.0/24\",\n    \"172.69.180.0/24\",\n    \"172.69.181.0/24\",\n    \"172.69.182.0/24\",\n    \"172.69.183.0/24\",\n    \"172.69.184.0/24\",\n    \"172.69.185.0/24\",\n    \"172.69.186.0/24\",\n    \"172.69.187.0/24\",\n    \"172.69.188.0/24\",\n    \"172.69.189.0/24\",\n    \"172.69.190.0/24\",\n    \"172.69.191.0/24\",\n    \"172.69.192.0/24\",\n    \"172.69.193.0/24\",\n    \"172.69.194.0/24\",\n    \"172.69.195.0/24\",\n    \"172.69.196.0/24\",\n    \"172.69.197.0/24\",\n    \"172.69.198.0/24\",\n    \"172.69.199.0/24\",\n    \"172.69.200.0/24\",\n    \"172.69.201.0/24\",\n    \"172.69.202.0/24\",\n    \"172.69.203.0/24\",\n    \"172.69.204.0/24\",\n    \"172.69.205.0/24\",\n    \"172.69.206.0/24\",\n    \"172.69.207.0/24\",\n    \"172.69.208.0/24\",\n    \"172.69.210.0/24\",\n    \"172.69.211.0/24\",\n    \"172.69.212.0/24\",\n    \"172.69.216.0/24\",\n    \"172.69.217.0/24\",\n    \"172.69.218.0/24\",\n    \"172.69.219.0/24\",\n    \"172.69.220.0/24\",\n    \"172.69.221.0/24\",\n    \"172.69.224.0/24\",\n    \"172.69.225.0/24\",\n    \"172.69.226.0/24\",\n    \"172.69.227.0/24\",\n    \"172.69.228.0/24\",\n    \"172.69.229.0/24\",\n    \"172.69.230.0/24\",\n    \"172.69.231.0/24\",\n    \"172.69.232.0/24\",\n    \"172.69.233.0/24\",\n    \"172.69.234.0/24\",\n    \"172.69.235.0/24\",\n    \"172.69.236.0/24\",\n    \"172.69.237.0/24\",\n    \"172.69.238.0/24\",\n    \"172.69.239.0/24\",\n    \"172.69.241.0/24\",\n    \"172.69.242.0/24\",\n    \"172.69.244.0/24\",\n    \"172.69.245.0/24\",\n    \"172.69.246.0/24\",\n    \"172.69.247.0/24\",\n    \"172.69.248.0/24\",\n    \"172.69.250.0/24\",\n    \"172.69.251.0/24\",\n    \"172.69.252.0/24\",\n    \"172.69.253.0/24\",\n    \"172.69.254.0/24\",\n    \"172.69.255.0/24\",\n    \"172.70.32.0/24\",\n    \"172.70.33.0/24\",\n    \"172.70.34.0/24\",\n    \"172.70.35.0/24\",\n    \"172.70.36.0/24\",\n    \"172.70.37.0/24\",\n    \"172.70.38.0/24\",\n    \"172.70.39.0/24\",\n    \"172.70.40.0/24\",\n    \"172.70.41.0/24\",\n    \"172.70.42.0/24\",\n    \"172.70.43.0/24\",\n    \"172.70.44.0/24\",\n    \"172.70.45.0/24\",\n    \"172.70.46.0/24\",\n    \"172.70.47.0/24\",\n    \"172.70.48.0/24\",\n    \"172.70.49.0/24\",\n    \"172.70.51.0/24\",\n    \"172.70.52.0/24\",\n    \"172.70.53.0/24\",\n    \"172.70.54.0/24\",\n    \"172.70.55.0/24\",\n    \"172.70.56.0/24\",\n    \"172.70.57.0/24\",\n    \"172.70.58.0/24\",\n    \"172.70.59.0/24\",\n    \"172.70.60.0/24\",\n    \"172.70.61.0/24\",\n    \"172.70.62.0/24\",\n    \"172.70.63.0/24\",\n    \"172.70.80.0/24\",\n    \"172.70.81.0/24\",\n    \"172.70.82.0/24\",\n    \"172.70.83.0/24\",\n    \"172.70.84.0/24\",\n    \"172.70.85.0/24\",\n    \"172.70.86.0/24\",\n    \"172.70.87.0/24\",\n    \"172.70.88.0/24\",\n    \"172.70.89.0/24\",\n    \"172.70.90.0/24\",\n    \"172.70.91.0/24\",\n    \"172.70.92.0/24\",\n    \"172.70.93.0/24\",\n    \"172.70.94.0/24\",\n    \"172.70.95.0/24\",\n    \"172.70.96.0/24\",\n    \"172.70.97.0/24\",\n    \"172.70.98.0/24\",\n    \"172.70.99.0/24\",\n    \"172.70.100.0/24\",\n    \"172.70.101.0/24\",\n    \"172.70.102.0/24\",\n    \"172.70.103.0/24\",\n    \"172.70.104.0/24\",\n    \"172.70.105.0/24\",\n    \"172.70.106.0/24\",\n    \"172.70.107.0/24\",\n    \"172.70.108.0/24\",\n    \"172.70.109.0/24\",\n    \"172.70.110.0/24\",\n    \"172.70.111.0/24\",\n    \"172.70.112.0/24\",\n    \"172.70.113.0/24\",\n    \"172.70.114.0/24\",\n    \"172.70.115.0/24\",\n    \"172.70.116.0/24\",\n    \"172.70.117.0/24\",\n    \"172.70.120.0/24\",\n    \"172.70.121.0/24\",\n    \"172.70.122.0/24\",\n    \"172.70.123.0/24\",\n    \"172.70.124.0/24\",\n    \"172.70.125.0/24\",\n    \"172.70.126.0/24\",\n    \"172.70.127.0/24\",\n    \"172.70.128.0/24\",\n    \"172.70.129.0/24\",\n    \"172.70.130.0/24\",\n    \"172.70.131.0/24\",\n    \"172.70.132.0/24\",\n    \"172.70.133.0/24\",\n    \"172.70.134.0/24\",\n    \"172.70.135.0/24\",\n    \"172.70.136.0/24\",\n    \"172.70.138.0/24\",\n    \"172.70.139.0/24\",\n    \"172.70.140.0/24\",\n    \"172.70.141.0/24\",\n    \"172.70.142.0/24\",\n    \"172.70.143.0/24\",\n    \"172.70.144.0/24\",\n    \"172.70.145.0/24\",\n    \"172.70.146.0/24\",\n    \"172.70.147.0/24\",\n    \"172.70.148.0/24\",\n    \"172.70.149.0/24\",\n    \"172.70.150.0/24\",\n    \"172.70.152.0/24\",\n    \"172.70.153.0/24\",\n    \"172.70.154.0/24\",\n    \"172.70.155.0/24\",\n    \"172.70.156.0/24\",\n    \"172.70.157.0/24\",\n    \"172.70.158.0/24\",\n    \"172.70.160.0/24\",\n    \"172.70.161.0/24\",\n    \"172.70.162.0/24\",\n    \"172.70.163.0/24\",\n    \"172.70.172.0/24\",\n    \"172.70.173.0/24\",\n    \"172.70.174.0/24\",\n    \"172.70.175.0/24\",\n    \"172.70.176.0/24\",\n    \"172.70.177.0/24\",\n    \"172.70.178.0/24\",\n    \"172.70.179.0/24\",\n    \"172.70.180.0/24\",\n    \"172.70.181.0/24\",\n    \"172.70.182.0/24\",\n    \"172.70.183.0/24\",\n    \"172.70.186.0/24\",\n    \"172.70.187.0/24\",\n    \"172.70.188.0/24\",\n    \"172.70.189.0/24\",\n    \"172.70.190.0/24\",\n    \"172.70.191.0/24\",\n    \"172.70.192.0/24\",\n    \"172.70.193.0/24\",\n    \"172.70.194.0/24\",\n    \"172.70.195.0/24\",\n    \"172.70.196.0/24\",\n    \"172.70.197.0/24\",\n    \"172.70.198.0/24\",\n    \"172.70.199.0/24\",\n    \"172.70.200.0/24\",\n    \"172.70.202.0/24\",\n    \"172.70.203.0/24\",\n    \"172.70.204.0/24\",\n    \"172.70.205.0/24\",\n    \"172.70.206.0/24\",\n    \"172.70.207.0/24\",\n    \"172.70.208.0/24\",\n    \"172.70.209.0/24\",\n    \"172.70.210.0/24\",\n    \"172.70.211.0/24\",\n    \"172.70.212.0/24\",\n    \"172.70.213.0/24\",\n    \"172.70.214.0/24\",\n    \"172.70.215.0/24\",\n    \"172.70.216.0/24\",\n    \"172.70.217.0/24\",\n    \"172.70.218.0/24\",\n    \"172.70.219.0/24\",\n    \"172.70.220.0/24\",\n    \"172.70.221.0/24\",\n    \"172.70.222.0/24\",\n    \"172.70.223.0/24\",\n    \"172.70.224.0/24\",\n    \"172.70.225.0/24\",\n    \"172.70.226.0/24\",\n    \"172.70.227.0/24\",\n    \"172.70.228.0/24\",\n    \"172.70.229.0/24\",\n    \"172.70.230.0/24\",\n    \"172.70.231.0/24\",\n    \"172.70.232.0/24\",\n    \"172.70.233.0/24\",\n    \"172.70.234.0/24\",\n    \"172.70.235.0/24\",\n    \"172.70.236.0/24\",\n    \"172.70.237.0/24\",\n    \"172.70.238.0/24\",\n    \"172.70.239.0/24\",\n    \"172.70.240.0/24\",\n    \"172.70.241.0/24\",\n    \"172.70.242.0/24\",\n    \"172.70.243.0/24\",\n    \"172.70.244.0/24\",\n    \"172.70.245.0/24\",\n    \"172.70.246.0/24\",\n    \"172.70.247.0/24\",\n    \"172.70.248.0/24\",\n    \"172.70.249.0/24\",\n    \"172.70.250.0/24\",\n    \"172.70.251.0/24\",\n    \"172.70.252.0/24\",\n    \"172.70.253.0/24\",\n    \"172.70.254.0/24\",\n    \"172.70.255.0/24\",\n    \"172.71.0.0/24\",\n    \"172.71.2.0/24\",\n    \"172.71.3.0/24\",\n    \"172.71.4.0/24\",\n    \"172.71.5.0/24\",\n    \"172.71.6.0/24\",\n    \"172.71.7.0/24\",\n    \"172.71.8.0/24\",\n    \"172.71.9.0/24\",\n    \"172.71.10.0/24\",\n    \"172.71.11.0/24\",\n    \"172.71.12.0/24\",\n    \"172.71.13.0/24\",\n    \"172.71.14.0/24\",\n    \"172.71.15.0/24\",\n    \"172.71.16.0/24\",\n    \"172.71.17.0/24\",\n    \"172.71.20.0/24\",\n    \"172.71.21.0/24\",\n    \"172.71.22.0/24\",\n    \"172.71.23.0/24\",\n    \"172.71.24.0/24\",\n    \"172.71.25.0/24\",\n    \"172.71.26.0/24\",\n    \"172.71.27.0/24\",\n    \"172.71.28.0/24\",\n    \"172.71.29.0/24\",\n    \"172.71.30.0/24\",\n    \"172.71.31.0/24\",\n    \"172.71.80.0/24\",\n    \"172.71.81.0/24\",\n    \"172.71.82.0/24\",\n    \"172.71.83.0/24\",\n    \"172.71.84.0/24\",\n    \"172.71.85.0/24\",\n    \"172.71.86.0/24\",\n    \"172.71.87.0/24\",\n    \"172.71.88.0/24\",\n    \"172.71.89.0/24\",\n    \"172.71.90.0/24\",\n    \"172.71.92.0/24\",\n    \"172.71.93.0/24\",\n    \"172.71.94.0/24\",\n    \"172.71.95.0/24\",\n    \"172.71.96.0/24\",\n    \"172.71.97.0/24\",\n    \"172.71.98.0/24\",\n    \"172.71.99.0/24\",\n    \"172.71.100.0/24\",\n    \"172.71.101.0/24\",\n    \"172.71.102.0/24\",\n    \"172.71.103.0/24\",\n    \"172.71.108.0/24\",\n    \"172.71.109.0/24\",\n    \"172.71.110.0/24\",\n    \"172.71.111.0/24\",\n    \"172.71.112.0/24\",\n    \"172.71.113.0/24\",\n    \"172.71.114.0/24\",\n    \"172.71.115.0/24\",\n    \"172.71.116.0/24\",\n    \"172.71.117.0/24\",\n    \"172.71.118.0/24\",\n    \"172.71.119.0/24\",\n    \"172.71.120.0/24\",\n    \"172.71.121.0/24\",\n    \"172.71.122.0/24\",\n    \"172.71.123.0/24\",\n    \"172.71.124.0/24\",\n    \"172.71.125.0/24\",\n    \"172.71.126.0/24\",\n    \"172.71.127.0/24\",\n    \"172.71.128.0/24\",\n    \"172.71.129.0/24\",\n    \"172.71.130.0/24\",\n    \"172.71.131.0/24\",\n    \"172.71.132.0/24\",\n    \"172.71.133.0/24\",\n    \"172.71.134.0/24\",\n    \"172.71.135.0/24\",\n    \"172.71.137.0/24\",\n    \"172.71.138.0/24\",\n    \"172.71.139.0/24\",\n    \"172.71.140.0/24\",\n    \"172.71.141.0/24\",\n    \"172.71.142.0/24\",\n    \"172.71.143.0/24\",\n    \"172.71.144.0/24\",\n    \"172.71.145.0/24\",\n    \"172.71.146.0/24\",\n    \"172.71.147.0/24\",\n    \"172.71.148.0/24\",\n    \"172.71.149.0/24\",\n    \"172.71.150.0/24\",\n    \"172.71.151.0/24\",\n    \"172.71.152.0/24\",\n    \"172.71.153.0/24\",\n    \"172.71.154.0/24\",\n    \"172.71.155.0/24\",\n    \"172.71.156.0/24\",\n    \"172.71.157.0/24\",\n    \"172.71.158.0/24\",\n    \"172.71.159.0/24\",\n    \"172.71.160.0/24\",\n    \"172.71.161.0/24\",\n    \"172.71.162.0/24\",\n    \"172.71.163.0/24\",\n    \"172.71.164.0/24\",\n    \"172.71.165.0/24\",\n    \"172.71.166.0/24\",\n    \"172.71.167.0/24\",\n    \"172.71.168.0/24\",\n    \"172.71.169.0/24\",\n    \"172.71.170.0/24\",\n    \"172.71.171.0/24\",\n    \"172.71.172.0/24\",\n    \"172.71.173.0/24\",\n    \"172.71.174.0/24\",\n    \"172.71.175.0/24\",\n    \"172.71.176.0/24\",\n    \"172.71.177.0/24\",\n    \"172.71.178.0/24\",\n    \"172.71.179.0/24\",\n    \"172.71.180.0/24\",\n    \"172.71.181.0/24\",\n    \"172.71.182.0/24\",\n    \"172.71.183.0/24\",\n    \"172.71.184.0/24\",\n    \"172.71.185.0/24\",\n    \"172.71.186.0/24\",\n    \"172.71.187.0/24\",\n    \"172.71.188.0/24\",\n    \"172.71.189.0/24\",\n    \"172.71.190.0/24\",\n    \"172.71.191.0/24\",\n    \"172.71.192.0/24\",\n    \"172.71.193.0/24\",\n    \"172.71.194.0/24\",\n    \"172.71.195.0/24\",\n    \"172.71.196.0/24\",\n    \"172.71.197.0/24\",\n    \"172.71.198.0/24\",\n    \"172.71.199.0/24\",\n    \"172.71.200.0/24\",\n    \"172.71.201.0/24\",\n    \"172.71.202.0/24\",\n    \"172.71.203.0/24\",\n    \"172.71.204.0/24\",\n    \"172.71.205.0/24\",\n    \"172.71.206.0/24\",\n    \"172.71.207.0/24\",\n    \"172.71.208.0/24\",\n    \"172.71.209.0/24\",\n    \"172.71.210.0/24\",\n    \"172.71.211.0/24\",\n    \"172.71.212.0/24\",\n    \"172.71.213.0/24\",\n    \"172.71.214.0/24\",\n    \"172.71.215.0/24\",\n    \"172.71.216.0/24\",\n    \"172.71.217.0/24\",\n    \"172.71.218.0/24\",\n    \"172.71.219.0/24\",\n    \"172.71.220.0/24\",\n    \"172.71.221.0/24\",\n    \"172.71.222.0/24\",\n    \"172.71.223.0/24\",\n    \"172.71.224.0/24\",\n    \"172.71.225.0/24\",\n    \"172.71.226.0/24\",\n    \"172.71.227.0/24\",\n    \"172.71.228.0/24\",\n    \"172.71.229.0/24\",\n    \"172.71.230.0/24\",\n    \"172.71.231.0/24\",\n    \"172.71.232.0/24\",\n    \"172.71.233.0/24\",\n    \"172.71.234.0/24\",\n    \"172.71.235.0/24\",\n    \"172.71.236.0/24\",\n    \"172.71.237.0/24\",\n    \"172.71.238.0/24\",\n    \"172.71.239.0/24\",\n    \"172.71.240.0/24\",\n    \"172.71.241.0/24\",\n    \"172.71.242.0/24\",\n    \"172.71.243.0/24\",\n    \"172.71.244.0/24\",\n    \"172.71.245.0/24\",\n    \"172.71.246.0/24\",\n    \"172.71.247.0/24\",\n    \"172.71.248.0/24\",\n    \"172.71.249.0/24\",\n    \"172.71.250.0/24\",\n    \"172.71.251.0/24\",\n    \"172.71.252.0/24\",\n    \"172.71.253.0/24\",\n    \"172.71.254.0/24\",\n    \"172.71.255.0/24\",\n    \"173.245.49.0/24\",\n    \"173.245.54.0/24\",\n    \"173.245.58.0/24\",\n    \"173.245.59.0/24\",\n    \"173.245.63.0/24\",\n    \"185.146.172.0/24\",\n    \"185.146.173.0/24\",\n    \"188.114.96.0/24\",\n    \"188.114.97.0/24\",\n    \"188.114.98.0/24\",\n    \"188.114.99.0/24\",\n    \"188.114.100.0/24\",\n    \"188.114.102.0/24\",\n    \"188.114.103.0/24\",\n    \"188.114.106.0/24\",\n    \"188.114.107.0/24\",\n    \"188.114.108.0/24\",\n    \"188.114.111.0/24\",\n    \"190.93.240.0/24\",\n    \"190.93.241.0/24\",\n    \"190.93.242.0/24\",\n    \"190.93.243.0/24\",\n    \"190.93.244.0/24\",\n    \"190.93.245.0/24\",\n    \"190.93.246.0/24\",\n    \"190.93.247.0/24\",\n    \"190.93.248.0/24\",\n    \"190.93.249.0/24\",\n    \"190.93.250.0/24\",\n    \"190.93.251.0/24\",\n    \"190.93.252.0/24\",\n    \"190.93.253.0/24\",\n    \"190.93.254.0/24\",\n    \"190.93.255.0/24\",\n    \"195.242.122.0/24\",\n    \"195.242.123.0/24\",\n    \"197.234.240.0/24\",\n    \"197.234.241.0/24\",\n    \"197.234.242.0/24\",\n    \"197.234.243.0/24\",\n    \"198.41.129.0/24\",\n    \"198.41.192.0/24\",\n    \"198.41.193.0/24\",\n    \"198.41.194.0/24\",\n    \"198.41.195.0/24\",\n    \"198.41.196.0/24\",\n    \"198.41.197.0/24\",\n    \"198.41.198.0/24\",\n    \"198.41.199.0/24\",\n    \"198.41.200.0/24\",\n    \"198.41.201.0/24\",\n    \"198.41.202.0/24\",\n    \"198.41.203.0/24\",\n    \"198.41.204.0/24\",\n    \"198.41.205.0/24\",\n    \"198.41.206.0/24\",\n    \"198.41.207.0/24\",\n    \"198.41.208.0/24\",\n    \"198.41.209.0/24\",\n    \"198.41.211.0/24\",\n    \"198.41.212.0/24\",\n    \"198.41.214.0/24\",\n    \"198.41.215.0/24\",\n    \"198.41.216.0/24\",\n    \"198.41.217.0/24\",\n    \"198.41.218.0/24\",\n    \"198.41.219.0/24\",\n    \"198.41.220.0/24\",\n    \"198.41.221.0/24\",\n    \"198.41.222.0/24\",\n    \"198.41.223.0/24\",\n    \"198.41.224.0/24\",\n    \"198.41.225.0/24\",\n    \"198.41.226.0/24\",\n    \"198.41.227.0/24\",\n    \"198.41.228.0/24\",\n    \"198.41.229.0/24\",\n    \"198.41.230.0/24\",\n    \"198.41.231.0/24\",\n    \"198.41.232.0/24\",\n    \"198.41.233.0/24\",\n    \"198.41.236.0/24\",\n    \"198.41.237.0/24\",\n    \"198.41.238.0/24\",\n    \"198.41.239.0/24\",\n    \"198.41.240.0/24\",\n    \"198.41.241.0/24\",\n    \"198.41.242.0/24\",\n    \"198.217.251.0/24\",\n    \"199.27.128.0/24\",\n    \"199.27.129.0/24\",\n    \"199.27.130.0/24\",\n    \"199.27.131.0/24\",\n    \"199.27.132.0/24\",\n    \"199.27.134.0/24\",\n    \"199.27.135.0/24\"\n  ];\n\n  /** @type { {ipNumber: number, ipMask: number}[]} */\nconst cidrNumberList= []\nfor (const cidr of cidrList) {\n\t// 8.9.231.0/24\n\tconst [rangeAddress, rangePrefix] = cidr.split('/');\n\tconst prefix = parseInt(rangePrefix, 10); // 24\n\tconst ipMask = -1 << (32 - prefix); // -256\n  // const ipMask = ~(2 ** (32 - prefix) - 1);\n\n\tconst ipNumber = convertIp2Num(rangeAddress);\n\tcidrNumberList.push(\n\t\t{\n\t\t\tipNumber, // 8.9.231.0 --> 134866688\n\t\t\tipMask // -256\n\t\t}\n\t)\n}\n\nconsole.log(convertIp2Num('162.159.137.0'));\n\nconsole.log(isIPv4InCFCIDR('162.159.137.0'));\n\nconsole.log(convertIp2Num('1.1.1.1'));\n\nconsole.log(isIPv4InCFCIDR('1.1.1.1'));"
  },
  {
    "path": "test/webstream.mjs",
    "content": "let isCancel = false;\nconst readableStream = new ReadableStream({\n  start(controller) {\n    let count = 0;\n    controller.enqueue(`Chunk ${count}`);\n    count++;\n    controller.enqueue(`Chunk ${count}`);\n\n    // controller.error(new Error('uuid is not valid'));\n    // setTimeout(() => {\n    //     console.log('ReadableStream was closed------valid22-------.');\n    //     controller.error(new Error('uuid is not valid22'));\n    // }, 1000);\n\n    // const intervalId = setInterval(() => {\n    //     if(!isCancel){\n    //   controller.enqueue(`Chunk ${count}`);\n    //     }\n    // // controller.enqueue(`Chunk ${count}`);\n    //   count++;\n    //   if (count > 5) {\n    //     console.log('ReadableStream was closed-------------.');\n    //     // controller.close()\n    //     controller.error(new Error('uuid is not valid'));\n    //     // clearInterval(intervalId);\n    //   }\n    // }, 1000);\n  },\n  async pull(controller) {\n    console.log('ReadableStream Pulling data...');\n    // await new Promise((resolve) => setTimeout(resolve, 2000));\n  },\n  cancel() {\n    isCancel = true;\n    console.log('ReadableStream was canceled.');\n  },\n});\n\nconst writableStream = new WritableStream({\n  write(chunk, controller) {\n    console.log(`Received data: ${chunk}`);\n    if(chunk === 'Chunk 1'){\n    controller.error('eroorooororo')\n    return;\n    }\n    // throw new Error('uuid is not valid');\n\n    // setTimeout( ()=>{\n    //   try {\n    //     throw new Error('setTimeout hasve error valid');\n    //   }catch(error){\n    //     console.log('////setTimeout hasve error valid');\n    //   }\n     \n    // }, 2000)\n\n    // controller.error(new Error('Received error'));\n    if(chunk === 'Chunk 3'){\n        throw new Error('uuid is not valid');\n    }\n  },\n  close() {\n    console.log('WritableStream was closed');\n  },\n  abort() {\n    console.log('WritableStream was aborted');\n    }\n});\n\nreadableStream.pipeTo(writableStream).catch((err) => {\n  console.log('-----------------------error-------------------');\n  console.log(err);\n});"
  },
  {
    "path": "test/worker/cf-cdn-cgi-trace.js",
    "content": "export default {\n\tasync fetch(request, env, ctx) {\n        const url = new URL(request.url);\n        const address  = url.searchParams.get(\"address\");\n        if(!address){\n            return new Response('not pass address', { status: 200 });\n        }\n        const resp = fetch(`http://${address}/cdn-cgi/trace`);\n        return new Response((await resp).body, { status: 200 });\n\t}\n};\n"
  },
  {
    "path": "test/worker/cf-worker-http-header.js",
    "content": "export default {\n\t/**\n\t * @param {import(\"@cloudflare/workers-types\").Request} request\n\t * @param {{uuid: string}} env\n\t * @param {import(\"@cloudflare/workers-types\").ExecutionContext} ctx\n\t * @returns {Promise<Response>}\n\t */\n\tasync fetch(request, env, ctx) {\n\t\t\tconst headers = {};\n\t\t\tfor (const [name, value] of request.headers.entries()) {\n\t\t\t\theaders[name] = value;\n\t\t\t}\n\n            const result = {\n                \"http-header\": headers,\n                \"cf\": request.cf\n            }\n\t\t\tconst headersJson = JSON.stringify(result);\n\t\t\tconsole.log(headersJson);\n            return new Response(headersJson, { status: 200 });\n\t}\n};\n"
  },
  {
    "path": "test/worker/cidr.js",
    "content": "\nimport IPCIDR from 'ip-cidr';\n\nconst chunk = '0'.repeat(1024 * 5);\nexport default {\n    async fetch(request, env, ctx) {\n        const isin = checkIPInCIDR(\"192.168.1.1\", \"102.1.5.2/24\");\n\n            return new Response(null, {\n                status: 101\n            });\n\n        \n    },\n};\n\nfunction checkIPInCIDR(ip, cidr) {\n    const cidrObject = new IPCIDR(cidr);\n  \n    // Check if the IP address is valid\n    // if (!cidrObject.isValidAddress(ip)) {\n    //   return false;\n    // }\n  \n    // Check if the IP address is within the CIDR range\n    return cidrObject.contains(ip);\n  }\n\nfunction delay(ms) {\n    return new Promise((resolve) => {\n        setTimeout(resolve, ms)\n    })\n}\n\n\n\n  /**\n * Checks if an IPv4 address is within a CIDR range.\n *\n * @param {string} address The IPv4 address to check.\n * @param {string} cidr The CIDR range to check against.\n * @returns {boolean} `true` if the address is within the CIDR range, `false` otherwise.\n */\n  function isIPv4InRange(address, cidr) {\n\t// Parse the address and CIDR range\n\tconst addressParts = address.split('.').map(part => parseInt(part, 10));\n\tconst [rangeAddress, rangePrefix] = cidr.split('/');\n\tconst rangeParts = rangeAddress.split('.').map(part => parseInt(part, 10));\n\tconst prefix = parseInt(rangePrefix, 10);\n\n\t// Convert the address and range to binary format\n\tconst addressBinary = addressParts.reduce((acc, part) => acc + part.toString(2).padStart(8, '0'), '');\n\tconst rangeBinary = rangeParts.reduce((acc, part) => acc + part.toString(2).padStart(8, '0'), '');\n\n\t// Compare the bits up to the prefix length\n\tfor (let i = 0; i < prefix; i++) {\n\t\tif (addressBinary[i] !== rangeBinary[i]) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\n/**\n* Checks if an IPv6 address is within a CIDR range.\n*\n* @param {string} address The IPv6 address to check.\n* @param {string} cidr The CIDR range to check against.\n* @returns {boolean} `true` if the address is within the CIDR range, `false` otherwise.\n*/\nfunction isIPv6InRange(address, cidr) {\n\t// Parse the address and CIDR range\n\tconst addressParts = address.split(':').map(part => parseInt(part, 16));\n\tconst [rangeAddress, rangePrefix] = cidr.split('/');\n\tconst rangeParts = rangeAddress.split(':').map(part => parseInt(part, 16));\n\tconst prefix = parseInt(rangePrefix, 10);\n\n\t// Convert the address and range to binary format\n\tconst addressBinary = addressParts.reduce((acc, part) => acc + part.toString(2).padStart(16, '0'), '');\n\tconst rangeBinary = rangeParts.reduce((acc, part) => acc + part.toString(2).padStart(16, '0'), '');\n\n\t// Compare the bits up to the prefix length\n\tfor (let i = 0; i < prefix; i++) {\n\t\tif (addressBinary[i] !== rangeBinary[i]) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\n\n"
  },
  {
    "path": "test/worker/ipaddr-test.js",
    "content": "export default {\n\t/**\n\t * @param {import(\"@cloudflare/workers-types\").Request} request\n\t * @param {{uuid: string}} env\n\t * @param {import(\"@cloudflare/workers-types\").ExecutionContext} ctx\n\t * @returns {Promise<Response>}\n\t */\n\tasync fetch(request, env, ctx) {\n\t\tconst headers = {};\n\t\tfor (const [name, value] of request.headers.entries()) {\n\t\t\theaders[name] = value;\n\t\t}\n\n\t\tconst result = {\n\t\t\t\"http-header\": headers,\n\t\t\t\"cf\": request.cf\n\t\t}\n\t\tconst headersJson = JSON.stringify(result);\n\t\tconsole.log(headersJson);\n\t\tconst addr = ipaddr.parse('2001:db8:1234::1');\n\t\tconst range = ipaddr.parse('2001:db8::');\n\n\t\taddr.match(range, 32); // => true\n\t\treturn new Response(headersJson, { status: 200 });\n\t}\n};\n\n\n//ipadder.js\n(function (root) {\n    'use strict';\n    // A list of regular expressions that match arbitrary IPv4 addresses,\n    // for which a number of weird notations exist.\n    // Note that an address like 0010.0xa5.1.1 is considered legal.\n    const ipv4Part = '(0?\\\\d+|0x[a-f0-9]+)';\n    const ipv4Regexes = {\n        fourOctet: new RegExp(`^${ipv4Part}\\\\.${ipv4Part}\\\\.${ipv4Part}\\\\.${ipv4Part}$`, 'i'),\n        threeOctet: new RegExp(`^${ipv4Part}\\\\.${ipv4Part}\\\\.${ipv4Part}$`, 'i'),\n        twoOctet: new RegExp(`^${ipv4Part}\\\\.${ipv4Part}$`, 'i'),\n        longValue: new RegExp(`^${ipv4Part}$`, 'i')\n    };\n\n    // Regular Expression for checking Octal numbers\n    const octalRegex = new RegExp(`^0[0-7]+$`, 'i');\n    const hexRegex = new RegExp(`^0x[a-f0-9]+$`, 'i');\n\n    const zoneIndex = '%[0-9a-z]{1,}';\n\n    // IPv6-matching regular expressions.\n    // For IPv6, the task is simpler: it is enough to match the colon-delimited\n    // hexadecimal IPv6 and a transitional variant with dotted-decimal IPv4 at\n    // the end.\n    const ipv6Part = '(?:[0-9a-f]+::?)+';\n    const ipv6Regexes = {\n        zoneIndex: new RegExp(zoneIndex, 'i'),\n        'native': new RegExp(`^(::)?(${ipv6Part})?([0-9a-f]+)?(::)?(${zoneIndex})?$`, 'i'),\n        deprecatedTransitional: new RegExp(`^(?:::)(${ipv4Part}\\\\.${ipv4Part}\\\\.${ipv4Part}\\\\.${ipv4Part}(${zoneIndex})?)$`, 'i'),\n        transitional: new RegExp(`^((?:${ipv6Part})|(?:::)(?:${ipv6Part})?)${ipv4Part}\\\\.${ipv4Part}\\\\.${ipv4Part}\\\\.${ipv4Part}(${zoneIndex})?$`, 'i')\n    };\n\n    // Expand :: in an IPv6 address or address part consisting of `parts` groups.\n    function expandIPv6 (string, parts) {\n        // More than one '::' means invalid adddress\n        if (string.indexOf('::') !== string.lastIndexOf('::')) {\n            return null;\n        }\n\n        let colonCount = 0;\n        let lastColon = -1;\n        let zoneId = (string.match(ipv6Regexes.zoneIndex) || [])[0];\n        let replacement, replacementCount;\n\n        // Remove zone index and save it for later\n        if (zoneId) {\n            zoneId = zoneId.substring(1);\n            string = string.replace(/%.+$/, '');\n        }\n\n        // How many parts do we already have?\n        while ((lastColon = string.indexOf(':', lastColon + 1)) >= 0) {\n            colonCount++;\n        }\n\n        // 0::0 is two parts more than ::\n        if (string.substr(0, 2) === '::') {\n            colonCount--;\n        }\n\n        if (string.substr(-2, 2) === '::') {\n            colonCount--;\n        }\n\n        // The following loop would hang if colonCount > parts\n        if (colonCount > parts) {\n            return null;\n        }\n\n        // replacement = ':' + '0:' * (parts - colonCount)\n        replacementCount = parts - colonCount;\n        replacement = ':';\n        while (replacementCount--) {\n            replacement += '0:';\n        }\n\n        // Insert the missing zeroes\n        string = string.replace('::', replacement);\n\n        // Trim any garbage which may be hanging around if :: was at the edge in\n        // the source strin\n        if (string[0] === ':') {\n            string = string.slice(1);\n        }\n\n        if (string[string.length - 1] === ':') {\n            string = string.slice(0, -1);\n        }\n\n        parts = (function () {\n            const ref = string.split(':');\n            const results = [];\n\n            for (let i = 0; i < ref.length; i++) {\n                results.push(parseInt(ref[i], 16));\n            }\n\n            return results;\n        })();\n\n        return {\n            parts: parts,\n            zoneId: zoneId\n        };\n    }\n\n    // A generic CIDR (Classless Inter-Domain Routing) RFC1518 range matcher.\n    function matchCIDR (first, second, partSize, cidrBits) {\n        if (first.length !== second.length) {\n            throw new Error('ipaddr: cannot match CIDR for objects with different lengths');\n        }\n\n        let part = 0;\n        let shift;\n\n        while (cidrBits > 0) {\n            shift = partSize - cidrBits;\n            if (shift < 0) {\n                shift = 0;\n            }\n\n            if (first[part] >> shift !== second[part] >> shift) {\n                return false;\n            }\n\n            cidrBits -= partSize;\n            part += 1;\n        }\n\n        return true;\n    }\n\n    function parseIntAuto (string) {\n        // Hexadedimal base 16 (0x#)\n        if (hexRegex.test(string)) {\n            return parseInt(string, 16);\n        }\n        // While octal representation is discouraged by ECMAScript 3\n        // and forbidden by ECMAScript 5, we silently allow it to\n        // work only if the rest of the string has numbers less than 8.\n        if (string[0] === '0' && !isNaN(parseInt(string[1], 10))) {\n        if (octalRegex.test(string)) {\n            return parseInt(string, 8);\n        }\n            throw new Error(`ipaddr: cannot parse ${string} as octal`);\n        }\n        // Always include the base 10 radix!\n        return parseInt(string, 10);\n    }\n\n    function padPart (part, length) {\n        while (part.length < length) {\n            part = `0${part}`;\n        }\n\n        return part;\n    }\n\n    const ipaddr = {};\n\n    // An IPv4 address (RFC791).\n    ipaddr.IPv4 = (function () {\n        // Constructs a new IPv4 address from an array of four octets\n        // in network order (MSB first)\n        // Verifies the input.\n        function IPv4 (octets) {\n            if (octets.length !== 4) {\n                throw new Error('ipaddr: ipv4 octet count should be 4');\n            }\n\n            let i, octet;\n\n            for (i = 0; i < octets.length; i++) {\n                octet = octets[i];\n                if (!((0 <= octet && octet <= 255))) {\n                    throw new Error('ipaddr: ipv4 octet should fit in 8 bits');\n                }\n            }\n\n            this.octets = octets;\n        }\n\n        // Special IPv4 address ranges.\n        // See also https://en.wikipedia.org/wiki/Reserved_IP_addresses\n        IPv4.prototype.SpecialRanges = {\n            unspecified: [[new IPv4([0, 0, 0, 0]), 8]],\n            broadcast: [[new IPv4([255, 255, 255, 255]), 32]],\n            // RFC3171\n            multicast: [[new IPv4([224, 0, 0, 0]), 4]],\n            // RFC3927\n            linkLocal: [[new IPv4([169, 254, 0, 0]), 16]],\n            // RFC5735\n            loopback: [[new IPv4([127, 0, 0, 0]), 8]],\n            // RFC6598\n            carrierGradeNat: [[new IPv4([100, 64, 0, 0]), 10]],\n            // RFC1918\n            'private': [\n                [new IPv4([10, 0, 0, 0]), 8],\n                [new IPv4([172, 16, 0, 0]), 12],\n                [new IPv4([192, 168, 0, 0]), 16]\n            ],\n            // Reserved and testing-only ranges; RFCs 5735, 5737, 2544, 1700\n            reserved: [\n                [new IPv4([192, 0, 0, 0]), 24],\n                [new IPv4([192, 0, 2, 0]), 24],\n                [new IPv4([192, 88, 99, 0]), 24],\n                [new IPv4([198, 18, 0, 0]), 15],\n                [new IPv4([198, 51, 100, 0]), 24],\n                [new IPv4([203, 0, 113, 0]), 24],\n                [new IPv4([240, 0, 0, 0]), 4]\n            ]\n        };\n\n        // The 'kind' method exists on both IPv4 and IPv6 classes.\n        IPv4.prototype.kind = function () {\n            return 'ipv4';\n        };\n\n        // Checks if this address matches other one within given CIDR range.\n        IPv4.prototype.match = function (other, cidrRange) {\n            let ref;\n            if (cidrRange === undefined) {\n                ref = other;\n                other = ref[0];\n                cidrRange = ref[1];\n            }\n\n            if (other.kind() !== 'ipv4') {\n                throw new Error('ipaddr: cannot match ipv4 address with non-ipv4 one');\n            }\n\n            return matchCIDR(this.octets, other.octets, 8, cidrRange);\n        };\n\n        // returns a number of leading ones in IPv4 address, making sure that\n        // the rest is a solid sequence of 0's (valid netmask)\n        // returns either the CIDR length or null if mask is not valid\n        IPv4.prototype.prefixLengthFromSubnetMask = function () {\n            let cidr = 0;\n            // non-zero encountered stop scanning for zeroes\n            let stop = false;\n            // number of zeroes in octet\n            const zerotable = {\n                0: 8,\n                128: 7,\n                192: 6,\n                224: 5,\n                240: 4,\n                248: 3,\n                252: 2,\n                254: 1,\n                255: 0\n            };\n            let i, octet, zeros;\n\n            for (i = 3; i >= 0; i -= 1) {\n                octet = this.octets[i];\n                if (octet in zerotable) {\n                    zeros = zerotable[octet];\n                    if (stop && zeros !== 0) {\n                        return null;\n                    }\n\n                    if (zeros !== 8) {\n                        stop = true;\n                    }\n\n                    cidr += zeros;\n                } else {\n                    return null;\n                }\n            }\n\n            return 32 - cidr;\n        };\n\n        // Checks if the address corresponds to one of the special ranges.\n        IPv4.prototype.range = function () {\n            return ipaddr.subnetMatch(this, this.SpecialRanges);\n        };\n\n        // Returns an array of byte-sized values in network order (MSB first)\n        IPv4.prototype.toByteArray = function () {\n            return this.octets.slice(0);\n        };\n\n        // Converts this IPv4 address to an IPv4-mapped IPv6 address.\n        IPv4.prototype.toIPv4MappedAddress = function () {\n            return ipaddr.IPv6.parse(`::ffff:${this.toString()}`);\n        };\n\n        // Symmetrical method strictly for aligning with the IPv6 methods.\n        IPv4.prototype.toNormalizedString = function () {\n            return this.toString();\n        };\n\n        // Returns the address in convenient, decimal-dotted format.\n        IPv4.prototype.toString = function () {\n            return this.octets.join('.');\n        };\n\n        return IPv4;\n    })();\n\n    // A utility function to return broadcast address given the IPv4 interface and prefix length in CIDR notation\n    ipaddr.IPv4.broadcastAddressFromCIDR = function (string) {\n\n        try {\n            const cidr = this.parseCIDR(string);\n            const ipInterfaceOctets = cidr[0].toByteArray();\n            const subnetMaskOctets = this.subnetMaskFromPrefixLength(cidr[1]).toByteArray();\n            const octets = [];\n            let i = 0;\n            while (i < 4) {\n                // Broadcast address is bitwise OR between ip interface and inverted mask\n                octets.push(parseInt(ipInterfaceOctets[i], 10) | parseInt(subnetMaskOctets[i], 10) ^ 255);\n                i++;\n            }\n\n            return new this(octets);\n        } catch (e) {\n            throw new Error('ipaddr: the address does not have IPv4 CIDR format');\n        }\n    };\n\n    // Checks if a given string is formatted like IPv4 address.\n    ipaddr.IPv4.isIPv4 = function (string) {\n        return this.parser(string) !== null;\n    };\n\n    // Checks if a given string is a valid IPv4 address.\n    ipaddr.IPv4.isValid = function (string) {\n        try {\n            new this(this.parser(string));\n            return true;\n        } catch (e) {\n            return false;\n        }\n    };\n\n    // Checks if a given string is a full four-part IPv4 Address.\n    ipaddr.IPv4.isValidFourPartDecimal = function (string) {\n        if (ipaddr.IPv4.isValid(string) && string.match(/^(0|[1-9]\\d*)(\\.(0|[1-9]\\d*)){3}$/)) {\n            return true;\n        } else {\n            return false;\n        }\n    };\n\n    // A utility function to return network address given the IPv4 interface and prefix length in CIDR notation\n    ipaddr.IPv4.networkAddressFromCIDR = function (string) {\n        let cidr, i, ipInterfaceOctets, octets, subnetMaskOctets;\n\n        try {\n            cidr = this.parseCIDR(string);\n            ipInterfaceOctets = cidr[0].toByteArray();\n            subnetMaskOctets = this.subnetMaskFromPrefixLength(cidr[1]).toByteArray();\n            octets = [];\n            i = 0;\n            while (i < 4) {\n                // Network address is bitwise AND between ip interface and mask\n                octets.push(parseInt(ipInterfaceOctets[i], 10) & parseInt(subnetMaskOctets[i], 10));\n                i++;\n            }\n\n            return new this(octets);\n        } catch (e) {\n            throw new Error('ipaddr: the address does not have IPv4 CIDR format');\n        }\n    };\n\n    // Tries to parse and validate a string with IPv4 address.\n    // Throws an error if it fails.\n    ipaddr.IPv4.parse = function (string) {\n        const parts = this.parser(string);\n\n        if (parts === null) {\n            throw new Error('ipaddr: string is not formatted like an IPv4 Address');\n        }\n\n        return new this(parts);\n    };\n\n    // Parses the string as an IPv4 Address with CIDR Notation.\n    ipaddr.IPv4.parseCIDR = function (string) {\n        let match;\n\n        if ((match = string.match(/^(.+)\\/(\\d+)$/))) {\n            const maskLength = parseInt(match[2]);\n            if (maskLength >= 0 && maskLength <= 32) {\n                const parsed = [this.parse(match[1]), maskLength];\n                Object.defineProperty(parsed, 'toString', {\n                    value: function () {\n                        return this.join('/');\n                    }\n                });\n                return parsed;\n            }\n        }\n\n        throw new Error('ipaddr: string is not formatted like an IPv4 CIDR range');\n    };\n\n    // Classful variants (like a.b, where a is an octet, and b is a 24-bit\n    // value representing last three octets; this corresponds to a class C\n    // address) are omitted due to classless nature of modern Internet.\n    ipaddr.IPv4.parser = function (string) {\n        let match, part, value;\n\n        // parseInt recognizes all that octal & hexadecimal weirdness for us\n        if ((match = string.match(ipv4Regexes.fourOctet))) {\n            return (function () {\n                const ref = match.slice(1, 6);\n                const results = [];\n\n                for (let i = 0; i < ref.length; i++) {\n                    part = ref[i];\n                    results.push(parseIntAuto(part));\n                }\n\n                return results;\n            })();\n        } else if ((match = string.match(ipv4Regexes.longValue))) {\n            value = parseIntAuto(match[1]);\n            if (value > 0xffffffff || value < 0) {\n                throw new Error('ipaddr: address outside defined range');\n            }\n\n            return ((function () {\n                const results = [];\n                let shift;\n\n                for (shift = 0; shift <= 24; shift += 8) {\n                    results.push((value >> shift) & 0xff);\n                }\n\n                return results;\n            })()).reverse();\n        } else if ((match = string.match(ipv4Regexes.twoOctet))) {\n            return (function () {\n                const ref = match.slice(1, 4);\n                const results = [];\n\n                value = parseIntAuto(ref[1]);\n                if (value > 0xffffff || value < 0) {\n                    throw new Error('ipaddr: address outside defined range');\n                }\n\n                results.push(parseIntAuto(ref[0]));\n                results.push((value >> 16) & 0xff);\n                results.push((value >>  8) & 0xff);\n                results.push( value        & 0xff);\n\n                return results;\n            })();\n        } else if ((match = string.match(ipv4Regexes.threeOctet))) {\n            return (function () {\n                const ref = match.slice(1, 5);\n                const results = [];\n\n                value = parseIntAuto(ref[2]);\n                if (value > 0xffff || value < 0) {\n                    throw new Error('ipaddr: address outside defined range');\n                }\n\n                results.push(parseIntAuto(ref[0]));\n                results.push(parseIntAuto(ref[1]));\n                results.push((value >> 8) & 0xff);\n                results.push( value       & 0xff);\n\n                return results;\n            })();\n        } else {\n            return null;\n        }\n    };\n\n    // A utility function to return subnet mask in IPv4 format given the prefix length\n    ipaddr.IPv4.subnetMaskFromPrefixLength = function (prefix) {\n        prefix = parseInt(prefix);\n        if (prefix < 0 || prefix > 32) {\n            throw new Error('ipaddr: invalid IPv4 prefix length');\n        }\n\n        const octets = [0, 0, 0, 0];\n        let j = 0;\n        const filledOctetCount = Math.floor(prefix / 8);\n\n        while (j < filledOctetCount) {\n            octets[j] = 255;\n            j++;\n        }\n\n        if (filledOctetCount < 4) {\n            octets[filledOctetCount] = Math.pow(2, prefix % 8) - 1 << 8 - (prefix % 8);\n        }\n\n        return new this(octets);\n    };\n\n    // An IPv6 address (RFC2460)\n    ipaddr.IPv6 = (function () {\n        // Constructs an IPv6 address from an array of eight 16 - bit parts\n        // or sixteen 8 - bit parts in network order(MSB first).\n        // Throws an error if the input is invalid.\n        function IPv6 (parts, zoneId) {\n            let i, part;\n\n            if (parts.length === 16) {\n                this.parts = [];\n                for (i = 0; i <= 14; i += 2) {\n                    this.parts.push((parts[i] << 8) | parts[i + 1]);\n                }\n            } else if (parts.length === 8) {\n                this.parts = parts;\n            } else {\n                throw new Error('ipaddr: ipv6 part count should be 8 or 16');\n            }\n\n            for (i = 0; i < this.parts.length; i++) {\n                part = this.parts[i];\n                if (!((0 <= part && part <= 0xffff))) {\n                    throw new Error('ipaddr: ipv6 part should fit in 16 bits');\n                }\n            }\n\n            if (zoneId) {\n                this.zoneId = zoneId;\n            }\n        }\n\n        // Special IPv6 ranges\n        IPv6.prototype.SpecialRanges = {\n            // RFC4291, here and after\n            unspecified: [new IPv6([0, 0, 0, 0, 0, 0, 0, 0]), 128],\n            linkLocal: [new IPv6([0xfe80, 0, 0, 0, 0, 0, 0, 0]), 10],\n            multicast: [new IPv6([0xff00, 0, 0, 0, 0, 0, 0, 0]), 8],\n            loopback: [new IPv6([0, 0, 0, 0, 0, 0, 0, 1]), 128],\n            uniqueLocal: [new IPv6([0xfc00, 0, 0, 0, 0, 0, 0, 0]), 7],\n            ipv4Mapped: [new IPv6([0, 0, 0, 0, 0, 0xffff, 0, 0]), 96],\n            // RFC6145\n            rfc6145: [new IPv6([0, 0, 0, 0, 0xffff, 0, 0, 0]), 96],\n            // RFC6052\n            rfc6052: [new IPv6([0x64, 0xff9b, 0, 0, 0, 0, 0, 0]), 96],\n            // RFC3056\n            '6to4': [new IPv6([0x2002, 0, 0, 0, 0, 0, 0, 0]), 16],\n            // RFC6052, RFC6146\n            teredo: [new IPv6([0x2001, 0, 0, 0, 0, 0, 0, 0]), 32],\n            // RFC4291\n            reserved: [[new IPv6([0x2001, 0xdb8, 0, 0, 0, 0, 0, 0]), 32]],\n            benchmarking: [new IPv6([0x2001, 0x2, 0, 0, 0, 0, 0, 0]), 48],\n            amt: [new IPv6([0x2001, 0x3, 0, 0, 0, 0, 0, 0]), 32],\n            as112v6: [new IPv6([0x2001, 0x4, 0x112, 0, 0, 0, 0, 0]), 48],\n            deprecated: [new IPv6([0x2001, 0x10, 0, 0, 0, 0, 0, 0]), 28],\n            orchid2: [new IPv6([0x2001, 0x20, 0, 0, 0, 0, 0, 0]), 28]\n        };\n\n        // Checks if this address is an IPv4-mapped IPv6 address.\n        IPv6.prototype.isIPv4MappedAddress = function () {\n            return this.range() === 'ipv4Mapped';\n        };\n\n        // The 'kind' method exists on both IPv4 and IPv6 classes.\n        IPv6.prototype.kind = function () {\n            return 'ipv6';\n        };\n\n        // Checks if this address matches other one within given CIDR range.\n        IPv6.prototype.match = function (other, cidrRange) {\n            let ref;\n\n            if (cidrRange === undefined) {\n                ref = other;\n                other = ref[0];\n                cidrRange = ref[1];\n            }\n\n            if (other.kind() !== 'ipv6') {\n                throw new Error('ipaddr: cannot match ipv6 address with non-ipv6 one');\n            }\n\n            return matchCIDR(this.parts, other.parts, 16, cidrRange);\n        };\n\n        // returns a number of leading ones in IPv6 address, making sure that\n        // the rest is a solid sequence of 0's (valid netmask)\n        // returns either the CIDR length or null if mask is not valid\n        IPv6.prototype.prefixLengthFromSubnetMask = function () {\n            let cidr = 0;\n            // non-zero encountered stop scanning for zeroes\n            let stop = false;\n            // number of zeroes in octet\n            const zerotable = {\n                0: 16,\n                32768: 15,\n                49152: 14,\n                57344: 13,\n                61440: 12,\n                63488: 11,\n                64512: 10,\n                65024: 9,\n                65280: 8,\n                65408: 7,\n                65472: 6,\n                65504: 5,\n                65520: 4,\n                65528: 3,\n                65532: 2,\n                65534: 1,\n                65535: 0\n            };\n            let part, zeros;\n\n            for (let i = 7; i >= 0; i -= 1) {\n                part = this.parts[i];\n                if (part in zerotable) {\n                    zeros = zerotable[part];\n                    if (stop && zeros !== 0) {\n                        return null;\n                    }\n\n                    if (zeros !== 16) {\n                        stop = true;\n                    }\n\n                    cidr += zeros;\n                } else {\n                    return null;\n                }\n            }\n\n            return 128 - cidr;\n        };\n\n\n        // Checks if the address corresponds to one of the special ranges.\n        IPv6.prototype.range = function () {\n            return ipaddr.subnetMatch(this, this.SpecialRanges);\n        };\n\n        // Returns an array of byte-sized values in network order (MSB first)\n        IPv6.prototype.toByteArray = function () {\n            let part;\n            const bytes = [];\n            const ref = this.parts;\n            for (let i = 0; i < ref.length; i++) {\n                part = ref[i];\n                bytes.push(part >> 8);\n                bytes.push(part & 0xff);\n            }\n\n            return bytes;\n        };\n\n        // Returns the address in expanded format with all zeroes included, like\n        // 2001:0db8:0008:0066:0000:0000:0000:0001\n        IPv6.prototype.toFixedLengthString = function () {\n            const addr = ((function () {\n                const results = [];\n                for (let i = 0; i < this.parts.length; i++) {\n                    results.push(padPart(this.parts[i].toString(16), 4));\n                }\n\n                return results;\n            }).call(this)).join(':');\n\n            let suffix = '';\n\n            if (this.zoneId) {\n                suffix = `%${this.zoneId}`;\n            }\n\n            return addr + suffix;\n        };\n\n        // Converts this address to IPv4 address if it is an IPv4-mapped IPv6 address.\n        // Throws an error otherwise.\n        IPv6.prototype.toIPv4Address = function () {\n            if (!this.isIPv4MappedAddress()) {\n                throw new Error('ipaddr: trying to convert a generic ipv6 address to ipv4');\n            }\n\n            const ref = this.parts.slice(-2);\n            const high = ref[0];\n            const low = ref[1];\n\n            return new ipaddr.IPv4([high >> 8, high & 0xff, low >> 8, low & 0xff]);\n        };\n\n        // Returns the address in expanded format with all zeroes included, like\n        // 2001:db8:8:66:0:0:0:1\n        //\n        // Deprecated: use toFixedLengthString() instead.\n        IPv6.prototype.toNormalizedString = function () {\n            const addr = ((function () {\n                const results = [];\n\n                for (let i = 0; i < this.parts.length; i++) {\n                    results.push(this.parts[i].toString(16));\n                }\n\n                return results;\n            }).call(this)).join(':');\n\n            let suffix = '';\n\n            if (this.zoneId) {\n                suffix = `%${this.zoneId}`;\n            }\n\n            return addr + suffix;\n        };\n\n        // Returns the address in compact, human-readable format like\n        // 2001:db8:8:66::1\n        // in line with RFC 5952 (see https://tools.ietf.org/html/rfc5952#section-4)\n        IPv6.prototype.toRFC5952String = function () {\n            const regex = /((^|:)(0(:|$)){2,})/g;\n            const string = this.toNormalizedString();\n            let bestMatchIndex = 0;\n            let bestMatchLength = -1;\n            let match;\n\n            while ((match = regex.exec(string))) {\n                if (match[0].length > bestMatchLength) {\n                    bestMatchIndex = match.index;\n                    bestMatchLength = match[0].length;\n                }\n            }\n\n            if (bestMatchLength < 0) {\n                return string;\n            }\n\n            return `${string.substring(0, bestMatchIndex)}::${string.substring(bestMatchIndex + bestMatchLength)}`;\n        };\n\n        // Returns the address in compact, human-readable format like\n        // 2001:db8:8:66::1\n        // Calls toRFC5952String under the hood.\n        IPv6.prototype.toString = function () {\n            return this.toRFC5952String();\n        };\n\n        return IPv6;\n\n    })();\n\n    // A utility function to return broadcast address given the IPv6 interface and prefix length in CIDR notation\n    ipaddr.IPv6.broadcastAddressFromCIDR = function (string) {\n        try {\n            const cidr = this.parseCIDR(string);\n            const ipInterfaceOctets = cidr[0].toByteArray();\n            const subnetMaskOctets = this.subnetMaskFromPrefixLength(cidr[1]).toByteArray();\n            const octets = [];\n            let i = 0;\n            while (i < 16) {\n                // Broadcast address is bitwise OR between ip interface and inverted mask\n                octets.push(parseInt(ipInterfaceOctets[i], 10) | parseInt(subnetMaskOctets[i], 10) ^ 255);\n                i++;\n            }\n\n            return new this(octets);\n        } catch (e) {\n            throw new Error(`ipaddr: the address does not have IPv6 CIDR format (${e})`);\n        }\n    };\n\n    // Checks if a given string is formatted like IPv6 address.\n    ipaddr.IPv6.isIPv6 = function (string) {\n        return this.parser(string) !== null;\n    };\n\n    // Checks to see if string is a valid IPv6 Address\n    ipaddr.IPv6.isValid = function (string) {\n\n        // Since IPv6.isValid is always called first, this shortcut\n        // provides a substantial performance gain.\n        if (typeof string === 'string' && string.indexOf(':') === -1) {\n            return false;\n        }\n\n        try {\n            const addr = this.parser(string);\n            new this(addr.parts, addr.zoneId);\n            return true;\n        } catch (e) {\n            return false;\n        }\n    };\n\n    // A utility function to return network address given the IPv6 interface and prefix length in CIDR notation\n    ipaddr.IPv6.networkAddressFromCIDR = function (string) {\n        let cidr, i, ipInterfaceOctets, octets, subnetMaskOctets;\n\n        try {\n            cidr = this.parseCIDR(string);\n            ipInterfaceOctets = cidr[0].toByteArray();\n            subnetMaskOctets = this.subnetMaskFromPrefixLength(cidr[1]).toByteArray();\n            octets = [];\n            i = 0;\n            while (i < 16) {\n                // Network address is bitwise AND between ip interface and mask\n                octets.push(parseInt(ipInterfaceOctets[i], 10) & parseInt(subnetMaskOctets[i], 10));\n                i++;\n            }\n\n            return new this(octets);\n        } catch (e) {\n            throw new Error(`ipaddr: the address does not have IPv6 CIDR format (${e})`);\n        }\n    };\n\n    // Tries to parse and validate a string with IPv6 address.\n    // Throws an error if it fails.\n    ipaddr.IPv6.parse = function (string) {\n        const addr = this.parser(string);\n\n        if (addr.parts === null) {\n            throw new Error('ipaddr: string is not formatted like an IPv6 Address');\n        }\n\n        return new this(addr.parts, addr.zoneId);\n    };\n\n    ipaddr.IPv6.parseCIDR = function (string) {\n        let maskLength, match, parsed;\n\n        if ((match = string.match(/^(.+)\\/(\\d+)$/))) {\n            maskLength = parseInt(match[2]);\n            if (maskLength >= 0 && maskLength <= 128) {\n                parsed = [this.parse(match[1]), maskLength];\n                Object.defineProperty(parsed, 'toString', {\n                    value: function () {\n                        return this.join('/');\n                    }\n                });\n                return parsed;\n            }\n        }\n\n        throw new Error('ipaddr: string is not formatted like an IPv6 CIDR range');\n    };\n\n    // Parse an IPv6 address.\n    ipaddr.IPv6.parser = function (string) {\n        let addr, i, match, octet, octets, zoneId;\n\n        if ((match = string.match(ipv6Regexes.deprecatedTransitional))) {\n            return this.parser(`::ffff:${match[1]}`);\n        }\n        if (ipv6Regexes.native.test(string)) {\n            return expandIPv6(string, 8);\n        }\n        if ((match = string.match(ipv6Regexes.transitional))) {\n            zoneId = match[6] || '';\n            addr = expandIPv6(match[1].slice(0, -1) + zoneId, 6);\n            if (addr.parts) {\n                octets = [\n                    parseInt(match[2]),\n                    parseInt(match[3]),\n                    parseInt(match[4]),\n                    parseInt(match[5])\n                ];\n                for (i = 0; i < octets.length; i++) {\n                    octet = octets[i];\n                    if (!((0 <= octet && octet <= 255))) {\n                        return null;\n                    }\n                }\n\n                addr.parts.push(octets[0] << 8 | octets[1]);\n                addr.parts.push(octets[2] << 8 | octets[3]);\n                return {\n                    parts: addr.parts,\n                    zoneId: addr.zoneId\n                };\n            }\n        }\n\n        return null;\n    };\n\n    // A utility function to return subnet mask in IPv6 format given the prefix length\n    ipaddr.IPv6.subnetMaskFromPrefixLength = function (prefix) {\n        prefix = parseInt(prefix);\n        if (prefix < 0 || prefix > 128) {\n            throw new Error('ipaddr: invalid IPv6 prefix length');\n        }\n\n        const octets = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];\n        let j = 0;\n        const filledOctetCount = Math.floor(prefix / 8);\n\n        while (j < filledOctetCount) {\n            octets[j] = 255;\n            j++;\n        }\n\n        if (filledOctetCount < 16) {\n            octets[filledOctetCount] = Math.pow(2, prefix % 8) - 1 << 8 - (prefix % 8);\n        }\n\n        return new this(octets);\n    };\n\n    // Try to parse an array in network order (MSB first) for IPv4 and IPv6\n    ipaddr.fromByteArray = function (bytes) {\n        const length = bytes.length;\n\n        if (length === 4) {\n            return new ipaddr.IPv4(bytes);\n        } else if (length === 16) {\n            return new ipaddr.IPv6(bytes);\n        } else {\n            throw new Error('ipaddr: the binary input is neither an IPv6 nor IPv4 address');\n        }\n    };\n\n    // Checks if the address is valid IP address\n    ipaddr.isValid = function (string) {\n        return ipaddr.IPv6.isValid(string) || ipaddr.IPv4.isValid(string);\n    };\n\n\n    // Attempts to parse an IP Address, first through IPv6 then IPv4.\n    // Throws an error if it could not be parsed.\n    ipaddr.parse = function (string) {\n        if (ipaddr.IPv6.isValid(string)) {\n            return ipaddr.IPv6.parse(string);\n        } else if (ipaddr.IPv4.isValid(string)) {\n            return ipaddr.IPv4.parse(string);\n        } else {\n            throw new Error('ipaddr: the address has neither IPv6 nor IPv4 format');\n        }\n    };\n\n    // Attempt to parse CIDR notation, first through IPv6 then IPv4.\n    // Throws an error if it could not be parsed.\n    ipaddr.parseCIDR = function (string) {\n        try {\n            return ipaddr.IPv6.parseCIDR(string);\n        } catch (e) {\n            try {\n                return ipaddr.IPv4.parseCIDR(string);\n            } catch (e2) {\n                throw new Error('ipaddr: the address has neither IPv6 nor IPv4 CIDR format');\n            }\n        }\n    };\n\n    // Parse an address and return plain IPv4 address if it is an IPv4-mapped address\n    ipaddr.process = function (string) {\n        const addr = this.parse(string);\n\n        if (addr.kind() === 'ipv6' && addr.isIPv4MappedAddress()) {\n            return addr.toIPv4Address();\n        } else {\n            return addr;\n        }\n    };\n\n    // An utility function to ease named range matching. See examples below.\n    // rangeList can contain both IPv4 and IPv6 subnet entries and will not throw errors\n    // on matching IPv4 addresses to IPv6 ranges or vice versa.\n    ipaddr.subnetMatch = function (address, rangeList, defaultName) {\n        let i, rangeName, rangeSubnets, subnet;\n\n        if (defaultName === undefined || defaultName === null) {\n            defaultName = 'unicast';\n        }\n\n        for (rangeName in rangeList) {\n            if (Object.prototype.hasOwnProperty.call(rangeList, rangeName)) {\n                rangeSubnets = rangeList[rangeName];\n                // ECMA5 Array.isArray isn't available everywhere\n                if (rangeSubnets[0] && !(rangeSubnets[0] instanceof Array)) {\n                    rangeSubnets = [rangeSubnets];\n                }\n\n                for (i = 0; i < rangeSubnets.length; i++) {\n                    subnet = rangeSubnets[i];\n                    if (address.kind() === subnet[0].kind() && address.match.apply(address, subnet)) {\n                        return rangeName;\n                    }\n                }\n            }\n        }\n\n        return defaultName;\n    };\n\n    // Export for both the CommonJS and browser-like environment\n    if (typeof module !== 'undefined' && module.exports) {\n        module.exports = ipaddr;\n\n    } else {\n        root.ipaddr = ipaddr;\n    }\n\n}(this));"
  },
  {
    "path": "test/worker/stream-ws-test.js",
    "content": "export default {\n    async fetch(request, env, ctx) {\n        const upgradeHeader = request.headers.get('Upgrade');\n        if (!upgradeHeader || upgradeHeader !== 'websocket') {\n            return new Response('not websocket', { status: 200 });\n        }\n        const webSocketPair = new WebSocketPair();\n        const [client, webSocket] = Object.values(webSocketPair);\n        webSocket.accept();\n        let count = 0;\n        const readableStream = new ReadableStream({\n            start(controller) {\n                setInterval(() => {\n                    controller.enqueue(count);\n                    count++;\n                }, 500)\n\n            },\n            async pull(controller) {\n            },\n            cancel() {\n                console.log('ReadableStream was canceled.');\n            },\n        });\n\n        const writableStream = new WritableStream({\n            write(chunk, controller) {\n                console.log(`Received data: ${chunk}`);\n                webSocket.send(`Received data: ${chunk}`);\n                if (chunk === 3) {\n                    controller.error('eroorooororo')\n                    return;\n                }\n\n            },\n            close() {\n                console.log('WritableStream was closed');\n            },\n            abort() {\n                console.log('WritableStream was aborted');\n            }\n        });\n        readableStream.pipeTo(writableStream).catch((error) => {\n            console.log('pipeTo error', error);\n            webSocket.close();\n        });\n        webSocket.addEventListener('close', () => {\n            console.log('close');\n        });\n        return new Response(null, {\n            status: 101,\n            webSocket: client,\n        });\n    }\n};"
  },
  {
    "path": "test/worker/worker-connect-test.js",
    "content": "import { connect } from 'cloudflare:sockets';\n\nexport default {\n  async fetch(request, env, ctx) {\n    console.log('start fetch111');\n    const url = new URL(request.url);\n    const target = url.searchParams.get('target');\n    // if (!target) {\n    //   return new Response('target is empty', {\n    //     status: 500,\n    //   });\n    // }\n    try {\n\n      try {\n      /** @type {import(\"@cloudflare/workers-types\").Socket}*/\n        const socket = connect(\n          {\n            hostname: target,\n            port: 443,\n          }\n        );\n\n        // socket.closed.then(() => {\n        //   console.log('....socket.closed.then............');\n        // }).catch((e) => {\n        //   console.log('.........socket.closed.error.............', e);\n        // }).finally(() => {\n        //   console.log('.........socket.closed.finally.............');\n        // })\n        // console.log('---------------close-------');\n  \n        // socket.readable.getReader().closed.then(() => {\n        //   console.log('.........socket.readabl.....closed then.............');\n        // }).catch((e) => {\n        //   console.log('....socket.readabl.....catch closing.............', e);\n        // })\n\n        await socket.writable.getWriter().write(new Uint8Array([1,2,3,4,5,6,7,8,9,10]))\n\n        // await delay(10)\n\n      } catch (e) {\n        console.log('connect error', e);\n      }\n      console.log('start conneted', target);\n\n      \n\n\n      // const writer = socket.writable.getWriter();\n      // const encoder = new TextEncoder();\n      // const encoded = encoder.encode(\n      //   `GET / HTTP/1.1\\r\\nHost: ${target}\\r\\nUser-Agent: curl/8.0.1\\r\\nAccept: */*\\r\\n\\r\\n`\n      // );\n      // await writer.write(encoded);\n      // // await writer.close();\n      // console.log('write end');\n\n      // await delay(1)\n      return new Response('yyyyyyyyyyyyyyyyyyyyyyyyyy', {\n        headers: { 'Content-Type': 'text/plain' },\n        status: 500,\n      });\n    } catch (error) {\n      console.log('Socket connection failed: ' + error);\n      return new Response('Socket connection failed: ' + error, {\n        status: 500,\n      });\n    }\n  },\n};\n\nfunction delay(timeout) {\n  return new Promise((resolve) => {\n    setTimeout(resolve, timeout);\n  });\n}"
  },
  {
    "path": "test/worker/wrangler.toml",
    "content": "name = \"cf-worker-http-header\" # todo\nmain = \"./cf-worker-http-header.js\"\ncompatibility_date = \"2023-05-26\"\n\n[vars]\nUUID = \"example_dev_token\""
  },
  {
    "path": "test/worker/ws-send-issue.js",
    "content": "\nconst chunk = '0'.repeat(1024 * 5);\nexport default {\n    async fetch(request, env, ctx) {\n        try {\n            console.log('---------------');\n            const webSocketPair = new WebSocketPair();\n            /** @type {import(\"@cloudflare/workers-types\").WebSocket[]} */\n            const [client, webSocket] = Object.values(webSocketPair);\n            webSocket.accept();\n            let btyes = 0;\n            // (async () => {\n            //     const repose = await fetch('http://speed.cloudflare.com/__down?bytes=1145141919810')\n            //     const body = repose.body;\n            //     const reader = body?.getReader();\n            //     let packets = [];\n            //     while (true && reader) {\n            //         const { done, value } = await reader.read();\n            //         packets.push(value);\n            //         console.log(btyes += value?.length || 0);\n            //         if (packets.length > 100) {\n            //             webSocket.send(value || '');\n            //             await delay(2);\n            //             packets = [];\n            //         }\n            //         if (done) {\n            //             break;\n            //         }\n            //     }\n            // })()\n            console.log('---------------');\n            (async () => {\n                let packets = [];\n                console.log('---------------');\n                while (true) {\n                    console.log(btyes += chunk?.length || 0);\n                    webSocket.send(chunk || '');\n                    await delay(1)\n                }\n            })()\n            // console.log(btyes += chunk?.length || 0);\n            // webSocket.send(chunk || '');\n\n            return new Response(null, {\n                status: 101,\n                webSocket: client,\n            });\n\n        } catch (err) {\n\t\t\t/** @type {Error} */ let e = err;\n            return new Response(e.toString());\n        }\n    },\n};\n\nfunction delay(ms) {\n    return new Promise((resolve) => {\n        setTimeout(resolve, ms)\n    })\n}"
  },
  {
    "path": "wrangler.toml",
    "content": "name = \"cf-worker-ws-dev-0415\" # todo\n#name = \"cf-worker-connect-test\" # todo\n#main = \"test/worker/cf-cdn-cgi-trace2.js\"\n\n#main = \"test/worker/worker-connect-test.js\"\nmain = \"src/worker-vless.js\"\n\ncompatibility_date = \"2024-04-15\"\n\n[vars]\n# UUID = \"example_dev_token\"\n"
  }
]