es6-crawler-detect 3.1.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/.eslintignore +6 -0
- package/.eslintrc.json +30 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +11 -8
- package/.github/ISSUE_TEMPLATE/feature_request.md +1 -1
- package/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +29 -0
- package/.prettierrc.json +5 -0
- package/README.md +27 -17
- package/dist/main.bundle.js +1 -1
- package/example/node/dist/crawler.min.js +1 -1
- package/example/node/node_modules/.bin/mime +15 -0
- package/example/node/node_modules/.bin/mime.cmd +7 -0
- package/example/node/node_modules/.yarn-integrity +67 -0
- package/example/node/node_modules/accepts/HISTORY.md +236 -0
- package/example/node/node_modules/accepts/LICENSE +23 -0
- package/example/node/node_modules/accepts/README.md +142 -0
- package/example/node/node_modules/accepts/index.js +238 -0
- package/example/node/node_modules/accepts/package.json +47 -0
- package/example/node/node_modules/array-flatten/LICENSE +21 -0
- package/example/node/node_modules/array-flatten/README.md +43 -0
- package/example/node/node_modules/array-flatten/array-flatten.js +64 -0
- package/example/node/node_modules/array-flatten/package.json +39 -0
- package/example/node/node_modules/body-parser/HISTORY.md +624 -0
- package/example/node/node_modules/body-parser/LICENSE +23 -0
- package/example/node/node_modules/body-parser/README.md +456 -0
- package/example/node/node_modules/body-parser/index.js +157 -0
- package/example/node/node_modules/body-parser/lib/read.js +181 -0
- package/example/node/node_modules/body-parser/lib/types/json.js +230 -0
- package/example/node/node_modules/body-parser/lib/types/raw.js +101 -0
- package/example/node/node_modules/body-parser/lib/types/text.js +121 -0
- package/example/node/node_modules/body-parser/lib/types/urlencoded.js +284 -0
- package/example/node/node_modules/body-parser/package.json +52 -0
- package/example/node/node_modules/bytes/History.md +92 -0
- package/example/node/node_modules/bytes/LICENSE +23 -0
- package/example/node/node_modules/bytes/Readme.md +152 -0
- package/example/node/node_modules/bytes/index.js +166 -0
- package/example/node/node_modules/bytes/package.json +42 -0
- package/example/node/node_modules/content-disposition/HISTORY.md +60 -0
- package/example/node/node_modules/content-disposition/LICENSE +22 -0
- package/example/node/node_modules/content-disposition/README.md +142 -0
- package/example/node/node_modules/content-disposition/index.js +458 -0
- package/example/node/node_modules/content-disposition/package.json +44 -0
- package/example/node/node_modules/content-type/HISTORY.md +24 -0
- package/example/node/node_modules/content-type/LICENSE +22 -0
- package/example/node/node_modules/content-type/README.md +92 -0
- package/example/node/node_modules/content-type/index.js +222 -0
- package/example/node/node_modules/content-type/package.json +40 -0
- package/example/node/node_modules/cookie/HISTORY.md +128 -0
- package/example/node/node_modules/cookie/LICENSE +24 -0
- package/example/node/node_modules/cookie/README.md +257 -0
- package/example/node/node_modules/cookie/index.js +202 -0
- package/example/node/node_modules/cookie/package.json +40 -0
- package/example/node/node_modules/cookie-signature/History.md +38 -0
- package/example/node/node_modules/cookie-signature/Readme.md +42 -0
- package/example/node/node_modules/cookie-signature/index.js +51 -0
- package/example/node/node_modules/cookie-signature/package.json +18 -0
- package/example/node/node_modules/debug/.coveralls.yml +1 -0
- package/example/node/node_modules/debug/.eslintrc +11 -0
- package/example/node/node_modules/debug/.travis.yml +14 -0
- package/example/node/node_modules/debug/CHANGELOG.md +362 -0
- package/example/node/node_modules/debug/LICENSE +19 -0
- package/example/node/node_modules/debug/Makefile +50 -0
- package/example/node/node_modules/debug/README.md +312 -0
- package/example/node/node_modules/debug/component.json +19 -0
- package/example/node/node_modules/debug/karma.conf.js +70 -0
- package/example/node/node_modules/debug/node.js +1 -0
- package/example/node/node_modules/debug/package.json +49 -0
- package/example/node/node_modules/debug/src/browser.js +185 -0
- package/example/node/node_modules/debug/src/debug.js +202 -0
- package/example/node/node_modules/debug/src/index.js +10 -0
- package/example/node/node_modules/debug/src/inspector-log.js +15 -0
- package/example/node/node_modules/debug/src/node.js +248 -0
- package/example/node/node_modules/depd/History.md +96 -0
- package/example/node/node_modules/depd/LICENSE +22 -0
- package/example/node/node_modules/depd/Readme.md +280 -0
- package/example/node/node_modules/depd/index.js +522 -0
- package/example/node/node_modules/depd/lib/browser/index.js +77 -0
- package/example/node/node_modules/depd/lib/compat/callsite-tostring.js +103 -0
- package/example/node/node_modules/depd/lib/compat/event-listener-count.js +22 -0
- package/example/node/node_modules/depd/lib/compat/index.js +79 -0
- package/example/node/node_modules/depd/package.json +41 -0
- package/example/node/node_modules/destroy/LICENSE +22 -0
- package/example/node/node_modules/destroy/README.md +60 -0
- package/example/node/node_modules/destroy/index.js +75 -0
- package/example/node/node_modules/destroy/package.json +37 -0
- package/example/node/node_modules/ee-first/LICENSE +22 -0
- package/example/node/node_modules/ee-first/README.md +80 -0
- package/example/node/node_modules/ee-first/index.js +95 -0
- package/example/node/node_modules/ee-first/package.json +29 -0
- package/example/node/node_modules/encodeurl/HISTORY.md +14 -0
- package/example/node/node_modules/encodeurl/LICENSE +22 -0
- package/example/node/node_modules/encodeurl/README.md +128 -0
- package/example/node/node_modules/encodeurl/index.js +60 -0
- package/example/node/node_modules/encodeurl/package.json +40 -0
- package/example/node/node_modules/escape-html/LICENSE +24 -0
- package/example/node/node_modules/escape-html/Readme.md +43 -0
- package/example/node/node_modules/escape-html/index.js +78 -0
- package/example/node/node_modules/escape-html/package.json +24 -0
- package/example/node/node_modules/etag/HISTORY.md +83 -0
- package/example/node/node_modules/etag/LICENSE +22 -0
- package/example/node/node_modules/etag/README.md +159 -0
- package/example/node/node_modules/etag/index.js +131 -0
- package/example/node/node_modules/etag/package.json +47 -0
- package/example/node/node_modules/express/History.md +3510 -0
- package/example/node/node_modules/express/LICENSE +24 -0
- package/example/node/node_modules/express/Readme.md +158 -0
- package/example/node/node_modules/express/index.js +11 -0
- package/example/node/node_modules/express/lib/application.js +644 -0
- package/example/node/node_modules/express/lib/express.js +116 -0
- package/example/node/node_modules/express/lib/middleware/init.js +43 -0
- package/example/node/node_modules/express/lib/middleware/query.js +47 -0
- package/example/node/node_modules/express/lib/request.js +525 -0
- package/example/node/node_modules/express/lib/response.js +1147 -0
- package/example/node/node_modules/express/lib/router/index.js +668 -0
- package/example/node/node_modules/express/lib/router/layer.js +181 -0
- package/example/node/node_modules/express/lib/router/route.js +216 -0
- package/example/node/node_modules/express/lib/utils.js +302 -0
- package/example/node/node_modules/express/lib/view.js +182 -0
- package/example/node/node_modules/express/package.json +99 -0
- package/example/node/node_modules/finalhandler/HISTORY.md +187 -0
- package/example/node/node_modules/finalhandler/LICENSE +22 -0
- package/example/node/node_modules/finalhandler/README.md +148 -0
- package/example/node/node_modules/finalhandler/index.js +331 -0
- package/example/node/node_modules/finalhandler/package.json +45 -0
- package/example/node/node_modules/forwarded/HISTORY.md +21 -0
- package/example/node/node_modules/forwarded/LICENSE +22 -0
- package/example/node/node_modules/forwarded/README.md +57 -0
- package/example/node/node_modules/forwarded/index.js +90 -0
- package/example/node/node_modules/forwarded/package.json +45 -0
- package/example/node/node_modules/fresh/HISTORY.md +70 -0
- package/example/node/node_modules/fresh/LICENSE +23 -0
- package/example/node/node_modules/fresh/README.md +119 -0
- package/example/node/node_modules/fresh/index.js +137 -0
- package/example/node/node_modules/fresh/package.json +46 -0
- package/example/node/node_modules/http-errors/HISTORY.md +165 -0
- package/example/node/node_modules/http-errors/LICENSE +23 -0
- package/example/node/node_modules/http-errors/README.md +169 -0
- package/example/node/node_modules/http-errors/index.js +299 -0
- package/example/node/node_modules/http-errors/package.json +49 -0
- package/example/node/node_modules/iconv-lite/Changelog.md +162 -0
- package/example/node/node_modules/iconv-lite/LICENSE +21 -0
- package/example/node/node_modules/iconv-lite/README.md +156 -0
- package/example/node/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/example/node/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/example/node/node_modules/iconv-lite/encodings/index.js +22 -0
- package/example/node/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/example/node/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/example/node/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/example/node/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/example/node/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/example/node/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/example/node/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/example/node/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/example/node/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/example/node/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/example/node/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/example/node/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/example/node/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/example/node/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/example/node/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/example/node/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/example/node/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/example/node/node_modules/iconv-lite/lib/index.js +153 -0
- package/example/node/node_modules/iconv-lite/lib/streams.js +121 -0
- package/example/node/node_modules/iconv-lite/package.json +46 -0
- package/example/node/node_modules/inherits/LICENSE +16 -0
- package/example/node/node_modules/inherits/README.md +42 -0
- package/example/node/node_modules/inherits/inherits.js +9 -0
- package/example/node/node_modules/inherits/inherits_browser.js +27 -0
- package/example/node/node_modules/inherits/package.json +29 -0
- package/example/node/node_modules/ipaddr.js/LICENSE +19 -0
- package/example/node/node_modules/ipaddr.js/README.md +233 -0
- package/example/node/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/example/node/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/example/node/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/example/node/node_modules/ipaddr.js/package.json +35 -0
- package/example/node/node_modules/media-typer/HISTORY.md +22 -0
- package/example/node/node_modules/media-typer/LICENSE +22 -0
- package/example/node/node_modules/media-typer/README.md +81 -0
- package/example/node/node_modules/media-typer/index.js +270 -0
- package/example/node/node_modules/media-typer/package.json +26 -0
- package/example/node/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/example/node/node_modules/merge-descriptors/LICENSE +23 -0
- package/example/node/node_modules/merge-descriptors/README.md +48 -0
- package/example/node/node_modules/merge-descriptors/index.js +60 -0
- package/example/node/node_modules/merge-descriptors/package.json +32 -0
- package/example/node/node_modules/methods/HISTORY.md +29 -0
- package/example/node/node_modules/methods/LICENSE +24 -0
- package/example/node/node_modules/methods/README.md +51 -0
- package/example/node/node_modules/methods/index.js +69 -0
- package/example/node/node_modules/methods/package.json +36 -0
- package/example/node/node_modules/mime/CHANGELOG.md +164 -0
- package/example/node/node_modules/mime/LICENSE +21 -0
- package/example/node/node_modules/mime/README.md +90 -0
- package/example/node/node_modules/mime/cli.js +8 -0
- package/example/node/node_modules/mime/mime.js +108 -0
- package/example/node/node_modules/mime/package.json +44 -0
- package/example/node/node_modules/mime/src/build.js +53 -0
- package/example/node/node_modules/mime/src/test.js +60 -0
- package/example/node/node_modules/mime/types.json +1 -0
- package/example/node/node_modules/mime-db/HISTORY.md +499 -0
- package/example/node/node_modules/mime-db/LICENSE +22 -0
- package/example/node/node_modules/mime-db/README.md +100 -0
- package/example/node/node_modules/mime-db/db.json +8471 -0
- package/example/node/node_modules/mime-db/index.js +11 -0
- package/example/node/node_modules/mime-db/package.json +59 -0
- package/example/node/node_modules/mime-types/HISTORY.md +388 -0
- package/example/node/node_modules/mime-types/LICENSE +23 -0
- package/example/node/node_modules/mime-types/README.md +113 -0
- package/example/node/node_modules/mime-types/index.js +188 -0
- package/example/node/node_modules/mime-types/package.json +44 -0
- package/example/node/node_modules/ms/index.js +152 -0
- package/example/node/node_modules/ms/license.md +21 -0
- package/example/node/node_modules/ms/package.json +37 -0
- package/example/node/node_modules/ms/readme.md +51 -0
- package/example/node/node_modules/negotiator/HISTORY.md +103 -0
- package/example/node/node_modules/negotiator/LICENSE +24 -0
- package/example/node/node_modules/negotiator/README.md +203 -0
- package/example/node/node_modules/negotiator/index.js +124 -0
- package/example/node/node_modules/negotiator/lib/charset.js +169 -0
- package/example/node/node_modules/negotiator/lib/encoding.js +184 -0
- package/example/node/node_modules/negotiator/lib/language.js +179 -0
- package/example/node/node_modules/negotiator/lib/mediaType.js +294 -0
- package/example/node/node_modules/negotiator/package.json +42 -0
- package/example/node/node_modules/on-finished/HISTORY.md +88 -0
- package/example/node/node_modules/on-finished/LICENSE +23 -0
- package/example/node/node_modules/on-finished/README.md +154 -0
- package/example/node/node_modules/on-finished/index.js +196 -0
- package/example/node/node_modules/on-finished/package.json +31 -0
- package/example/node/node_modules/parseurl/HISTORY.md +58 -0
- package/example/node/node_modules/parseurl/LICENSE +24 -0
- package/example/node/node_modules/parseurl/README.md +133 -0
- package/example/node/node_modules/parseurl/index.js +158 -0
- package/example/node/node_modules/parseurl/package.json +40 -0
- package/example/node/node_modules/path-to-regexp/History.md +36 -0
- package/example/node/node_modules/path-to-regexp/LICENSE +21 -0
- package/example/node/node_modules/path-to-regexp/Readme.md +35 -0
- package/example/node/node_modules/path-to-regexp/index.js +129 -0
- package/example/node/node_modules/path-to-regexp/package.json +30 -0
- package/example/node/node_modules/proxy-addr/HISTORY.md +161 -0
- package/example/node/node_modules/proxy-addr/LICENSE +22 -0
- package/example/node/node_modules/proxy-addr/README.md +139 -0
- package/example/node/node_modules/proxy-addr/index.js +327 -0
- package/example/node/node_modules/proxy-addr/package.json +47 -0
- package/example/node/node_modules/qs/.editorconfig +39 -0
- package/example/node/node_modules/qs/.eslintignore +2 -0
- package/example/node/node_modules/qs/.eslintrc +35 -0
- package/example/node/node_modules/qs/.github/FUNDING.yml +12 -0
- package/example/node/node_modules/qs/.nycrc +13 -0
- package/example/node/node_modules/qs/CHANGELOG.md +359 -0
- package/example/node/node_modules/qs/LICENSE.md +29 -0
- package/example/node/node_modules/qs/README.md +604 -0
- package/example/node/node_modules/qs/dist/qs.js +832 -0
- package/example/node/node_modules/qs/lib/formats.js +23 -0
- package/example/node/node_modules/qs/lib/index.js +11 -0
- package/example/node/node_modules/qs/lib/parse.js +257 -0
- package/example/node/node_modules/qs/lib/stringify.js +278 -0
- package/example/node/node_modules/qs/lib/utils.js +251 -0
- package/example/node/node_modules/qs/package.json +69 -0
- package/example/node/node_modules/qs/test/parse.js +772 -0
- package/example/node/node_modules/qs/test/stringify.js +793 -0
- package/example/node/node_modules/qs/test/utils.js +136 -0
- package/example/node/node_modules/range-parser/HISTORY.md +56 -0
- package/example/node/node_modules/range-parser/LICENSE +23 -0
- package/example/node/node_modules/range-parser/README.md +84 -0
- package/example/node/node_modules/range-parser/index.js +162 -0
- package/example/node/node_modules/range-parser/package.json +44 -0
- package/example/node/node_modules/raw-body/HISTORY.md +284 -0
- package/example/node/node_modules/raw-body/LICENSE +22 -0
- package/example/node/node_modules/raw-body/README.md +217 -0
- package/example/node/node_modules/raw-body/index.d.ts +87 -0
- package/example/node/node_modules/raw-body/index.js +286 -0
- package/example/node/node_modules/raw-body/package.json +48 -0
- package/example/node/node_modules/safe-buffer/LICENSE +21 -0
- package/example/node/node_modules/safe-buffer/README.md +584 -0
- package/example/node/node_modules/safe-buffer/index.d.ts +187 -0
- package/example/node/node_modules/safe-buffer/index.js +65 -0
- package/example/node/node_modules/safe-buffer/package.json +51 -0
- package/example/node/node_modules/safer-buffer/LICENSE +21 -0
- package/example/node/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/example/node/node_modules/safer-buffer/Readme.md +156 -0
- package/example/node/node_modules/safer-buffer/dangerous.js +58 -0
- package/example/node/node_modules/safer-buffer/package.json +34 -0
- package/example/node/node_modules/safer-buffer/safer.js +77 -0
- package/example/node/node_modules/safer-buffer/tests.js +406 -0
- package/example/node/node_modules/send/HISTORY.md +506 -0
- package/example/node/node_modules/send/LICENSE +23 -0
- package/example/node/node_modules/send/README.md +327 -0
- package/example/node/node_modules/send/index.js +1133 -0
- package/example/node/node_modules/send/node_modules/.bin/mime +15 -0
- package/example/node/node_modules/send/node_modules/.bin/mime.cmd +7 -0
- package/example/node/node_modules/send/node_modules/ms/index.js +162 -0
- package/example/node/node_modules/send/node_modules/ms/license.md +21 -0
- package/example/node/node_modules/send/node_modules/ms/package.json +38 -0
- package/example/node/node_modules/send/node_modules/ms/readme.md +59 -0
- package/example/node/node_modules/send/package.json +61 -0
- package/example/node/node_modules/serve-static/HISTORY.md +459 -0
- package/example/node/node_modules/serve-static/LICENSE +25 -0
- package/example/node/node_modules/serve-static/README.md +257 -0
- package/example/node/node_modules/serve-static/index.js +210 -0
- package/example/node/node_modules/serve-static/package.json +42 -0
- package/example/node/node_modules/setprototypeof/LICENSE +13 -0
- package/example/node/node_modules/setprototypeof/README.md +31 -0
- package/example/node/node_modules/setprototypeof/index.d.ts +2 -0
- package/example/node/node_modules/setprototypeof/index.js +17 -0
- package/example/node/node_modules/setprototypeof/package.json +38 -0
- package/example/node/node_modules/setprototypeof/test/index.js +24 -0
- package/example/node/node_modules/statuses/HISTORY.md +65 -0
- package/example/node/node_modules/statuses/LICENSE +23 -0
- package/example/node/node_modules/statuses/README.md +127 -0
- package/example/node/node_modules/statuses/codes.json +66 -0
- package/example/node/node_modules/statuses/index.js +113 -0
- package/example/node/node_modules/statuses/package.json +48 -0
- package/example/node/node_modules/toidentifier/HISTORY.md +9 -0
- package/example/node/node_modules/toidentifier/LICENSE +21 -0
- package/example/node/node_modules/toidentifier/README.md +61 -0
- package/example/node/node_modules/toidentifier/index.js +32 -0
- package/example/node/node_modules/toidentifier/package.json +38 -0
- package/example/node/node_modules/type-is/HISTORY.md +259 -0
- package/example/node/node_modules/type-is/LICENSE +23 -0
- package/example/node/node_modules/type-is/README.md +170 -0
- package/example/node/node_modules/type-is/index.js +266 -0
- package/example/node/node_modules/type-is/package.json +45 -0
- package/example/node/node_modules/unpipe/HISTORY.md +4 -0
- package/example/node/node_modules/unpipe/LICENSE +22 -0
- package/example/node/node_modules/unpipe/README.md +43 -0
- package/example/node/node_modules/unpipe/index.js +69 -0
- package/example/node/node_modules/unpipe/package.json +27 -0
- package/example/node/node_modules/utils-merge/LICENSE +20 -0
- package/example/node/node_modules/utils-merge/README.md +34 -0
- package/example/node/node_modules/utils-merge/index.js +23 -0
- package/example/node/node_modules/utils-merge/package.json +40 -0
- package/example/node/node_modules/vary/HISTORY.md +39 -0
- package/example/node/node_modules/vary/LICENSE +22 -0
- package/example/node/node_modules/vary/README.md +101 -0
- package/example/node/node_modules/vary/index.js +149 -0
- package/example/node/node_modules/vary/package.json +43 -0
- package/example/node/package.json +11 -0
- package/example/node/server.js +32 -26
- package/example/node/yarn.lock +352 -0
- package/package.json +30 -19
- package/src/index.js +16 -10
- package/src/lib/crawler/crawlers.js +1402 -15
- package/src/lib/crawler/exclusions.js +62 -15
- package/src/lib/crawler/headers.js +24 -15
- package/src/lib/crawler/provider.js +11 -13
- package/src/lib/crawler.js +135 -139
- package/test/lib/crawler.test.js +52 -35
- package/webpack.common.js +20 -20
- package/webpack.dev.js +7 -7
- package/webpack.prod.js +14 -15
package/.babelrc
CHANGED
package/.eslintignore
ADDED
package/.eslintrc.json
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
|
3
|
+
"env": {
|
4
|
+
"browser": false,
|
5
|
+
"commonjs": true,
|
6
|
+
"es6": true,
|
7
|
+
"node": true,
|
8
|
+
"mocha": true
|
9
|
+
},
|
10
|
+
"rules": {
|
11
|
+
"max-len": [
|
12
|
+
"warn",
|
13
|
+
{
|
14
|
+
"code": 80,
|
15
|
+
"tabWidth": 2,
|
16
|
+
"comments": 80,
|
17
|
+
"ignoreComments": false,
|
18
|
+
"ignoreTrailingComments": true,
|
19
|
+
"ignoreUrls": true,
|
20
|
+
"ignoreStrings": true,
|
21
|
+
"ignoreTemplateLiterals": true,
|
22
|
+
"ignoreRegExpLiterals": true
|
23
|
+
}
|
24
|
+
]
|
25
|
+
},
|
26
|
+
"parser": "@babel/eslint-parser",
|
27
|
+
"parserOptions": {
|
28
|
+
"requireConfigFile": false
|
29
|
+
}
|
30
|
+
}
|
@@ -2,7 +2,7 @@
|
|
2
2
|
name: Bug report
|
3
3
|
about: Create a report to help us improve
|
4
4
|
title: ''
|
5
|
-
labels: ''
|
5
|
+
labels: 'bug'
|
6
6
|
assignees: ''
|
7
7
|
|
8
8
|
---
|
@@ -12,6 +12,7 @@ A clear and concise description of what the bug is.
|
|
12
12
|
|
13
13
|
**To Reproduce**
|
14
14
|
Steps to reproduce the behavior:
|
15
|
+
|
15
16
|
1. Go to '...'
|
16
17
|
2. Click on '....'
|
17
18
|
3. Scroll down to '....'
|
@@ -24,15 +25,17 @@ A clear and concise description of what you expected to happen.
|
|
24
25
|
If applicable, add screenshots to help explain your problem.
|
25
26
|
|
26
27
|
**Desktop (please complete the following information):**
|
27
|
-
|
28
|
-
|
29
|
-
|
28
|
+
|
29
|
+
- OS: [e.g. iOS]
|
30
|
+
- Browser [e.g. chrome, safari]
|
31
|
+
- Version [e.g. 22]
|
30
32
|
|
31
33
|
**Smartphone (please complete the following information):**
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
34
|
+
|
35
|
+
- Device: [e.g. iPhone6]
|
36
|
+
- OS: [e.g. iOS8.1]
|
37
|
+
- Browser [e.g. stock browser, safari]
|
38
|
+
- Version [e.g. 22]
|
36
39
|
|
37
40
|
**Additional context**
|
38
41
|
Add any other context about the problem here.
|
@@ -0,0 +1,29 @@
|
|
1
|
+
---
|
2
|
+
name: Pull request
|
3
|
+
about: Improving the existing code
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
## Description
|
11
|
+
|
12
|
+
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
|
13
|
+
|
14
|
+
## Summary
|
15
|
+
|
16
|
+
Please delete options that are not relevant.
|
17
|
+
|
18
|
+
- [ ] Bug fix (non-breaking change which fixes an issue)
|
19
|
+
- [ ] New feature (non-breaking change which adds functionality)
|
20
|
+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
21
|
+
- [ ] This change requires a documentation update
|
22
|
+
|
23
|
+
## Notes
|
24
|
+
|
25
|
+
- Run an example command line
|
26
|
+
|
27
|
+
## Examples
|
28
|
+
|
29
|
+
Writing examples of how to integrate the new code is helpful
|
package/.prettierrc.json
ADDED
package/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# Crawler Detect
|
2
|
+
|
1
3
|
<p align="center"><a href="http://crawlerdetect.io/" target="_blank"><img src="https://cloud.githubusercontent.com/assets/340752/23082173/1bd1a396-f550-11e6-8aba-4d3c75edea2f.png" width="321" height="219" /></a><br><br>
|
2
4
|
<a href="http://crawlerdetect.io/" target="_blank">crawlerdetect.io</a>
|
3
5
|
<br><br>
|
@@ -6,22 +8,23 @@
|
|
6
8
|
[](https://badge.fury.io/js/es6-crawler-detect)
|
7
9
|
[](https://github.com/JefferyHus/es6-crawler-detect/issues)
|
8
10
|
|
9
|
-
|
10
|
-
The new version now do include a middleware for expressjs, please read the documentation for the latest updates.
|
11
|
+
## About
|
11
12
|
|
12
|
-
# About ES6-CrawlerDetect
|
13
13
|
This Library is an ES6 version of the original PHP class @[CrawlerDetect](https://github.com/JayBizzle/Crawler-Detect), it helps you detect bots/crawlers and spiders only by scanning the user-agent string or from the global `request.headers`.
|
14
14
|
|
15
15
|
## Installation
|
16
|
+
|
16
17
|
`npm install es6-crawler-detect`
|
17
18
|
|
18
19
|
## Usage
|
19
|
-
|
20
|
+
|
21
|
+
### ECMAScript 6 (ES6)
|
22
|
+
|
20
23
|
```javascript
|
21
24
|
'use strict';
|
22
25
|
|
23
26
|
const express = require('express')
|
24
|
-
const {Crawler, middleware} = require('es6-crawler-detect
|
27
|
+
const { Crawler, middleware } = require('es6-crawler-detect')
|
25
28
|
|
26
29
|
const app = express()
|
27
30
|
|
@@ -48,7 +51,11 @@ app.get('your/route', function async (request, response) {
|
|
48
51
|
/**
|
49
52
|
* Or by using the middleware
|
50
53
|
*/
|
51
|
-
app.use(middleware)
|
54
|
+
app.use(middleware((request, reponse) => {
|
55
|
+
// do something here
|
56
|
+
// e.g. console.log(request.body)
|
57
|
+
// e.g. return response.status(403).send('Forbidden')
|
58
|
+
}))
|
52
59
|
|
53
60
|
app.get('/crawler', function async (request, response) {
|
54
61
|
// or check a user agent string
|
@@ -58,19 +65,21 @@ app.get('/crawler', function async (request, response) {
|
|
58
65
|
response.send(request.Crawler.getMatches())
|
59
66
|
})
|
60
67
|
```
|
61
|
-
|
68
|
+
|
69
|
+
### ECMAScript 5 (ES5)
|
70
|
+
|
62
71
|
```xml
|
63
72
|
<head>
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
73
|
+
<!-- Metas -->
|
74
|
+
<meta name="title" content="ES6-CrawlerDetect">
|
75
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
76
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
77
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
78
|
+
<meta name="description" content="">
|
79
|
+
<meta name="keywords" content="">
|
80
|
+
<title>CrawlerDetect - the web crawler detection library</title>
|
81
|
+
<!-- Scripts -->
|
82
|
+
<script type="text/javascript" src="./your/path/to/main.bundle.js"></script>
|
74
83
|
</head>
|
75
84
|
```
|
76
85
|
|
@@ -90,4 +99,5 @@ app.get('/crawler', function async (request, response) {
|
|
90
99
|
```
|
91
100
|
|
92
101
|
## Contributing
|
102
|
+
|
93
103
|
If you find a bot/spider/crawler user agent that CrawlerDetect fails to detect, please submit a pull request with the regex pattern added to the `data` array in `./crawler/crawlers.js`.
|
package/dist/main.bundle.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
var Crawler=function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=48)}([function(e,t,r){var n=r(19)("wks"),o=r(12),i=r(1).Symbol,a="function"==typeof i;(e.exports=function(e){return n[e]||(n[e]=a&&i[e]||(a?i:o)("Symbol."+e))}).store=n},function(e,t){var r=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,r){var n=r(4),o=r(21);e.exports=r(5)?function(e,t,r){return n.f(e,t,o(1,r))}:function(e,t,r){return e[t]=r,e}},function(e,t,r){var n=r(6),o=r(37),i=r(24),a=Object.defineProperty;t.f=r(5)?Object.defineProperty:function(e,t,r){if(n(e),t=i(t,!0),n(r),o)try{return a(e,t,r)}catch(e){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(e[t]=r.value),e}},function(e,t,r){e.exports=!r(7)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t,r){var n=r(2);e.exports=function(e){if(!n(e))throw TypeError(e+" is not an object!");return e}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t,r){var n=r(1),o=r(3),i=r(9),a=r(12)("src"),c=r(56),u=(""+c).split("toString");r(11).inspectSource=function(e){return c.call(e)},(e.exports=function(e,t,r,c){var s="function"==typeof r;s&&(i(r,"name")||o(r,"name",t)),e[t]!==r&&(s&&(i(r,a)||o(r,a,e[t]?""+e[t]:u.join(String(t)))),e===n?e[t]=r:c?e[t]?e[t]=r:o(e,t,r):(delete e[t],o(e,t,r)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[a]||c.call(this)})},function(e,t){var r={}.hasOwnProperty;e.exports=function(e,t){return r.call(e,t)}},function(e,t,r){var n=r(60),o=r(16);e.exports=function(e){return n(o(e))}},function(e,t){var r=e.exports={version:"2.6.9"};"number"==typeof __e&&(__e=r)},function(e,t){var r=0,n=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++r+n).toString(36))}},function(e,t,r){var n=r(1),o=r(11),i=r(3),a=r(8),c=r(39),u=function(e,t,r){var s,l,p,f,h=e&u.F,d=e&u.G,y=e&u.S,g=e&u.P,b=e&u.B,S=d?n:y?n[t]||(n[t]={}):(n[t]||{}).prototype,m=d?o:o[t]||(o[t]={}),v=m.prototype||(m.prototype={});for(s in d&&(r=t),r)p=((l=!h&&S&&void 0!==S[s])?S:r)[s],f=b&&l?c(p,n):g&&"function"==typeof p?c(Function.call,p):p,S&&a(S,s,p,e&u.U),m[s]!=p&&i(m,s,f),g&&v[s]!=p&&(v[s]=p)};n.core=o,u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,e.exports=u},function(e,t,r){var n=r(42),o=r(27);e.exports=Object.keys||function(e){return n(e,o)}},function(e,t,r){var n=r(16);e.exports=function(e){return Object(n(e))}},function(e,t){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},function(e,t){var r=Math.ceil,n=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?n:r)(e)}},function(e,t){var r={}.toString;e.exports=function(e){return r.call(e).slice(8,-1)}},function(e,t,r){var n=r(11),o=r(1),i=o["__core-js_shared__"]||(o["__core-js_shared__"]={});(e.exports=function(e,t){return i[e]||(i[e]=void 0!==t?t:{})})("versions",[]).push({version:n.version,mode:r(20)?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(e,t){e.exports=!1},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,r){r(40)("asyncIterator")},function(e,t,r){"use strict";var n=r(1),o=r(9),i=r(5),a=r(13),c=r(8),u=r(58).KEY,s=r(7),l=r(19),p=r(25),f=r(12),h=r(0),d=r(41),y=r(40),g=r(59),b=r(63),S=r(6),m=r(2),v=r(15),P=r(10),k=r(24),w=r(21),x=r(44),T=r(66),O=r(45),C=r(43),A=r(4),E=r(14),M=O.f,W=A.f,_=T.f,R=n.Symbol,I=n.JSON,L=I&&I.stringify,j=h("_hidden"),G=h("toPrimitive"),H={}.propertyIsEnumerable,F=l("symbol-registry"),N=l("symbols"),B=l("op-symbols"),D=Object.prototype,z="function"==typeof R&&!!C.f,U=n.QObject,V=!U||!U.prototype||!U.prototype.findChild,J=i&&s(function(){return 7!=x(W({},"a",{get:function(){return W(this,"a",{value:7}).a}})).a})?function(e,t,r){var n=M(D,t);n&&delete D[t],W(e,t,r),n&&e!==D&&W(D,t,n)}:W,K=function(e){var t=N[e]=x(R.prototype);return t._k=e,t},Y=z&&"symbol"==typeof R.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof R},q=function(e,t,r){return e===D&&q(B,t,r),S(e),t=k(t,!0),S(r),o(N,t)?(r.enumerable?(o(e,j)&&e[j][t]&&(e[j][t]=!1),r=x(r,{enumerable:w(0,!1)})):(o(e,j)||W(e,j,w(1,{})),e[j][t]=!0),J(e,t,r)):W(e,t,r)},Z=function(e,t){S(e);for(var r,n=g(t=P(t)),o=0,i=n.length;i>o;)q(e,r=n[o++],t[r]);return e},X=function(e){var t=H.call(this,e=k(e,!0));return!(this===D&&o(N,e)&&!o(B,e))&&(!(t||!o(this,e)||!o(N,e)||o(this,j)&&this[j][e])||t)},Q=function(e,t){if(e=P(e),t=k(t,!0),e!==D||!o(N,t)||o(B,t)){var r=M(e,t);return!r||!o(N,t)||o(e,j)&&e[j][t]||(r.enumerable=!0),r}},$=function(e){for(var t,r=_(P(e)),n=[],i=0;r.length>i;)o(N,t=r[i++])||t==j||t==u||n.push(t);return n},ee=function(e){for(var t,r=e===D,n=_(r?B:P(e)),i=[],a=0;n.length>a;)!o(N,t=n[a++])||r&&!o(D,t)||i.push(N[t]);return i};z||(c((R=function(){if(this instanceof R)throw TypeError("Symbol is not a constructor!");var e=f(arguments.length>0?arguments[0]:void 0),t=function(r){this===D&&t.call(B,r),o(this,j)&&o(this[j],e)&&(this[j][e]=!1),J(this,e,w(1,r))};return i&&V&&J(D,e,{configurable:!0,set:t}),K(e)}).prototype,"toString",function(){return this._k}),O.f=Q,A.f=q,r(29).f=T.f=$,r(28).f=X,C.f=ee,i&&!r(20)&&c(D,"propertyIsEnumerable",X,!0),d.f=function(e){return K(h(e))}),a(a.G+a.W+a.F*!z,{Symbol:R});for(var te="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),re=0;te.length>re;)h(te[re++]);for(var ne=E(h.store),oe=0;ne.length>oe;)y(ne[oe++]);a(a.S+a.F*!z,"Symbol",{for:function(e){return o(F,e+="")?F[e]:F[e]=R(e)},keyFor:function(e){if(!Y(e))throw TypeError(e+" is not a symbol!");for(var t in F)if(F[t]===e)return t},useSetter:function(){V=!0},useSimple:function(){V=!1}}),a(a.S+a.F*!z,"Object",{create:function(e,t){return void 0===t?x(e):Z(x(e),t)},defineProperty:q,defineProperties:Z,getOwnPropertyDescriptor:Q,getOwnPropertyNames:$,getOwnPropertySymbols:ee});var ie=s(function(){C.f(1)});a(a.S+a.F*ie,"Object",{getOwnPropertySymbols:function(e){return C.f(v(e))}}),I&&a(a.S+a.F*(!z||s(function(){var e=R();return"[null]"!=L([e])||"{}"!=L({a:e})||"{}"!=L(Object(e))})),"JSON",{stringify:function(e){for(var t,r,n=[e],o=1;arguments.length>o;)n.push(arguments[o++]);if(r=t=n[1],(m(t)||void 0!==e)&&!Y(e))return b(t)||(t=function(e,t){if("function"==typeof r&&(t=r.call(this,e,t)),!Y(t))return t}),n[1]=t,L.apply(I,n)}}),R.prototype[G]||r(3)(R.prototype,G,R.prototype.valueOf),p(R,"Symbol"),p(Math,"Math",!0),p(n.JSON,"JSON",!0)},function(e,t,r){var n=r(2);e.exports=function(e,t){if(!n(e))return e;var r,o;if(t&&"function"==typeof(r=e.toString)&&!n(o=r.call(e)))return o;if("function"==typeof(r=e.valueOf)&&!n(o=r.call(e)))return o;if(!t&&"function"==typeof(r=e.toString)&&!n(o=r.call(e)))return o;throw TypeError("Can't convert object to primitive value")}},function(e,t,r){var n=r(4).f,o=r(9),i=r(0)("toStringTag");e.exports=function(e,t,r){e&&!o(e=r?e:e.prototype,i)&&n(e,i,{configurable:!0,value:t})}},function(e,t,r){var n=r(19)("keys"),o=r(12);e.exports=function(e){return n[e]||(n[e]=o(e))}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,r){var n=r(42),o=r(27).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return n(e,o)}},function(e,t){e.exports={}},function(e,t,r){var n=r(13);n(n.S,"Object",{setPrototypeOf:r(47).set})},function(e,t,r){"use strict";function n(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var o=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}var t,r,o;return t=e,(r=[{key:"getAll",value:function(){return this.data}}])&&n(t.prototype,r),o&&n(t,o),e}();e.exports=o},function(e,t,r){var n=r(17),o=Math.min;e.exports=function(e){return e>0?o(n(e),9007199254740991):0}},function(e,t,r){var n=r(18),o=r(0)("toStringTag"),i="Arguments"==n(function(){return arguments}());e.exports=function(e){var t,r,a;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(r=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),o))?r:i?n(t):"Object"==(a=n(t))&&"function"==typeof t.callee?"Arguments":a}},function(e,t,r){"use strict";var n,o,i=r(36),a=RegExp.prototype.exec,c=String.prototype.replace,u=a,s=(n=/a/,o=/b*/g,a.call(n,"a"),a.call(o,"a"),0!==n.lastIndex||0!==o.lastIndex),l=void 0!==/()??/.exec("")[1];(s||l)&&(u=function(e){var t,r,n,o,u=this;return l&&(r=new RegExp("^"+u.source+"$(?!\\s)",i.call(u))),s&&(t=u.lastIndex),n=a.call(u,e),s&&n&&(u.lastIndex=u.global?n.index+n[0].length:t),l&&n&&n.length>1&&c.call(n[0],r,function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(n[o]=void 0)}),n}),e.exports=u},function(e,t,r){"use strict";var n=r(6);e.exports=function(){var e=n(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},function(e,t,r){e.exports=!r(5)&&!r(7)(function(){return 7!=Object.defineProperty(r(38)("div"),"a",{get:function(){return 7}}).a})},function(e,t,r){var n=r(2),o=r(1).document,i=n(o)&&n(o.createElement);e.exports=function(e){return i?o.createElement(e):{}}},function(e,t,r){var n=r(57);e.exports=function(e,t,r){if(n(e),void 0===t)return e;switch(r){case 1:return function(r){return e.call(t,r)};case 2:return function(r,n){return e.call(t,r,n)};case 3:return function(r,n,o){return e.call(t,r,n,o)}}return function(){return e.apply(t,arguments)}}},function(e,t,r){var n=r(1),o=r(11),i=r(20),a=r(41),c=r(4).f;e.exports=function(e){var t=o.Symbol||(o.Symbol=i?{}:n.Symbol||{});"_"==e.charAt(0)||e in t||c(t,e,{value:a.f(e)})}},function(e,t,r){t.f=r(0)},function(e,t,r){var n=r(9),o=r(10),i=r(61)(!1),a=r(26)("IE_PROTO");e.exports=function(e,t){var r,c=o(e),u=0,s=[];for(r in c)r!=a&&n(c,r)&&s.push(r);for(;t.length>u;)n(c,r=t[u++])&&(~i(s,r)||s.push(r));return s}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,r){var n=r(6),o=r(64),i=r(27),a=r(26)("IE_PROTO"),c=function(){},u=function(){var e,t=r(38)("iframe"),n=i.length;for(t.style.display="none",r(65).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write("<script>document.F=Object<\/script>"),e.close(),u=e.F;n--;)delete u.prototype[i[n]];return u()};e.exports=Object.create||function(e,t){var r;return null!==e?(c.prototype=n(e),r=new c,c.prototype=null,r[a]=e):r=u(),void 0===t?r:o(r,t)}},function(e,t,r){var n=r(28),o=r(21),i=r(10),a=r(24),c=r(9),u=r(37),s=Object.getOwnPropertyDescriptor;t.f=r(5)?s:function(e,t){if(e=i(e),t=a(t,!0),u)try{return s(e,t)}catch(e){}if(c(e,t))return o(!n.f.call(e,t),e[t])}},function(e,t,r){"use strict";var n=r(68),o=r(69),i=r(30),a=r(10);e.exports=r(70)(Array,"Array",function(e,t){this._t=a(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,r=this._i++;return!e||r>=e.length?(this._t=void 0,o(1)):o(0,"keys"==t?r:"values"==t?e[r]:[r,e[r]])},"values"),i.Arguments=i.Array,n("keys"),n("values"),n("entries")},function(e,t,r){var n=r(2),o=r(6),i=function(e,t){if(o(e),!n(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,n){try{(n=r(39)(Function.call,r(45).f(Object.prototype,"__proto__").set,2))(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,r){return i(e,r),t?e.__proto__=r:n(e,r),e}}({},!1):void 0),check:i}},function(e,t,r){var n=r(49);e.exports={Crawler:n,middleware:function(e,t,r){e.Crawler=new n(e),r()}}},function(e,t,r){"use strict";function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function o(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}r(50),r(22),r(23),r(67),r(46),r(73),r(74),r(76);var i=r(80),a=r(81),c=r(82),u=function(){function e(t,r,o){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this._init(),this.request="object"===n(t)?t:{},this.compiledRegexList=this.compileRegex(this.crawlers.getAll(),"i"),this.compiledExclusions=this.compileRegex(this.exclusions.getAll(),"g"),this.setHttpHeaders(r),this.userAgent=this.setUserAgent(o)}var t,r,u;return t=e,(r=[{key:"_init",value:function(){this.crawlers=new i,this.headers=new c,this.exclusions=new a}},{key:"compileRegex",value:function(e,t){return new RegExp(e.join("|").trim(),t)}},{key:"setHttpHeaders",value:function(e){for(var t in"object"===n(e)&&0!=Object.keys(e).length||(e=Object.keys(this.request).length?this.request.headers:{}),this.httpHeaders=[],e)"http-"===t.substring(0,5)&&(this.httpHeaders[t]=e[t])}},{key:"setUserAgent",value:function(e){if(void 0===e||null==e||!e.length){var t=!0,r=!1,n=void 0;try{for(var o,i=this.getUaHttpHeaders()[Symbol.iterator]();!(t=(o=i.next()).done);t=!0){var a=o.value;0===Object.keys(this.httpHeaders).indexOf(a.toLowerCase())&&(e+=this.httpHeaders[a]+" ")}}catch(e){r=!0,n=e}finally{try{t||null==i.return||i.return()}finally{if(r)throw n}}}return e}},{key:"getUaHttpHeaders",value:function(){return this.headers.getAll()}},{key:"isCrawler",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=void 0===e||null==e?this.userAgent:e;if(0==(t=t.replace(this.compiledExclusions,"")).trim().length)return!1;var r=this.compiledRegexList.exec(t.trim());return r&&(this.matches=r),null!==r&&!!r.length}},{key:"getMatches",value:function(){return void 0!==this.matches?this.matches.length?this.matches[0]:null:{}}}])&&o(t.prototype,r),u&&o(t,u),e}();e.exports=u},function(e,t,r){"use strict";var n=r(6),o=r(15),i=r(33),a=r(17),c=r(51),u=r(53),s=Math.max,l=Math.min,p=Math.floor,f=/\$([$&`']|\d\d?|<[^>]*>)/g,h=/\$([$&`']|\d\d?)/g;r(54)("replace",2,function(e,t,r,d){return[function(n,o){var i=e(this),a=null==n?void 0:n[t];return void 0!==a?a.call(n,i,o):r.call(String(i),n,o)},function(e,t){var o=d(r,e,this,t);if(o.done)return o.value;var p=n(e),f=String(this),h="function"==typeof t;h||(t=String(t));var g=p.global;if(g){var b=p.unicode;p.lastIndex=0}for(var S=[];;){var m=u(p,f);if(null===m)break;if(S.push(m),!g)break;""===String(m[0])&&(p.lastIndex=c(f,i(p.lastIndex),b))}for(var v,P="",k=0,w=0;w<S.length;w++){m=S[w];for(var x=String(m[0]),T=s(l(a(m.index),f.length),0),O=[],C=1;C<m.length;C++)O.push(void 0===(v=m[C])?v:String(v));var A=m.groups;if(h){var E=[x].concat(O,T,f);void 0!==A&&E.push(A);var M=String(t.apply(void 0,E))}else M=y(x,f,T,O,A,t);T>=k&&(P+=f.slice(k,T)+M,k=T+x.length)}return P+f.slice(k)}];function y(e,t,n,i,a,c){var u=n+e.length,s=i.length,l=h;return void 0!==a&&(a=o(a),l=f),r.call(c,l,function(r,o){var c;switch(o.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,n);case"'":return t.slice(u);case"<":c=a[o.slice(1,-1)];break;default:var l=+o;if(0===l)return r;if(l>s){var f=p(l/10);return 0===f?r:f<=s?void 0===i[f-1]?o.charAt(1):i[f-1]+o.charAt(1):r}c=i[l-1]}return void 0===c?"":c})}})},function(e,t,r){"use strict";var n=r(52)(!0);e.exports=function(e,t,r){return t+(r?n(e,t).length:1)}},function(e,t,r){var n=r(17),o=r(16);e.exports=function(e){return function(t,r){var i,a,c=String(o(t)),u=n(r),s=c.length;return u<0||u>=s?e?"":void 0:(i=c.charCodeAt(u))<55296||i>56319||u+1===s||(a=c.charCodeAt(u+1))<56320||a>57343?e?c.charAt(u):i:e?c.slice(u,u+2):a-56320+(i-55296<<10)+65536}}},function(e,t,r){"use strict";var n=r(34),o=RegExp.prototype.exec;e.exports=function(e,t){var r=e.exec;if("function"==typeof r){var i=r.call(e,t);if("object"!=typeof i)throw new TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==n(e))throw new TypeError("RegExp#exec called on incompatible receiver");return o.call(e,t)}},function(e,t,r){"use strict";r(55);var n=r(8),o=r(3),i=r(7),a=r(16),c=r(0),u=r(35),s=c("species"),l=!i(function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")}),p=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var r="ab".split(e);return 2===r.length&&"a"===r[0]&&"b"===r[1]}();e.exports=function(e,t,r){var f=c(e),h=!i(function(){var t={};return t[f]=function(){return 7},7!=""[e](t)}),d=h?!i(function(){var t=!1,r=/a/;return r.exec=function(){return t=!0,null},"split"===e&&(r.constructor={},r.constructor[s]=function(){return r}),r[f](""),!t}):void 0;if(!h||!d||"replace"===e&&!l||"split"===e&&!p){var y=/./[f],g=r(a,f,""[e],function(e,t,r,n,o){return t.exec===u?h&&!o?{done:!0,value:y.call(t,r,n)}:{done:!0,value:e.call(r,t,n)}:{done:!1}}),b=g[0],S=g[1];n(String.prototype,e,b),o(RegExp.prototype,f,2==t?function(e,t){return S.call(e,this,t)}:function(e){return S.call(e,this)})}}},function(e,t,r){"use strict";var n=r(35);r(13)({target:"RegExp",proto:!0,forced:n!==/./.exec},{exec:n})},function(e,t,r){e.exports=r(19)("native-function-to-string",Function.toString)},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,r){var n=r(12)("meta"),o=r(2),i=r(9),a=r(4).f,c=0,u=Object.isExtensible||function(){return!0},s=!r(7)(function(){return u(Object.preventExtensions({}))}),l=function(e){a(e,n,{value:{i:"O"+ ++c,w:{}}})},p=e.exports={KEY:n,NEED:!1,fastKey:function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!i(e,n)){if(!u(e))return"F";if(!t)return"E";l(e)}return e[n].i},getWeak:function(e,t){if(!i(e,n)){if(!u(e))return!0;if(!t)return!1;l(e)}return e[n].w},onFreeze:function(e){return s&&p.NEED&&u(e)&&!i(e,n)&&l(e),e}}},function(e,t,r){var n=r(14),o=r(43),i=r(28);e.exports=function(e){var t=n(e),r=o.f;if(r)for(var a,c=r(e),u=i.f,s=0;c.length>s;)u.call(e,a=c[s++])&&t.push(a);return t}},function(e,t,r){var n=r(18);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==n(e)?e.split(""):Object(e)}},function(e,t,r){var n=r(10),o=r(33),i=r(62);e.exports=function(e){return function(t,r,a){var c,u=n(t),s=o(u.length),l=i(a,s);if(e&&r!=r){for(;s>l;)if((c=u[l++])!=c)return!0}else for(;s>l;l++)if((e||l in u)&&u[l]===r)return e||l||0;return!e&&-1}}},function(e,t,r){var n=r(17),o=Math.max,i=Math.min;e.exports=function(e,t){return(e=n(e))<0?o(e+t,0):i(e,t)}},function(e,t,r){var n=r(18);e.exports=Array.isArray||function(e){return"Array"==n(e)}},function(e,t,r){var n=r(4),o=r(6),i=r(14);e.exports=r(5)?Object.defineProperties:function(e,t){o(e);for(var r,a=i(t),c=a.length,u=0;c>u;)n.f(e,r=a[u++],t[r]);return e}},function(e,t,r){var n=r(1).document;e.exports=n&&n.documentElement},function(e,t,r){var n=r(10),o=r(29).f,i={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return a&&"[object Window]"==i.call(e)?function(e){try{return o(e)}catch(e){return a.slice()}}(e):o(n(e))}},function(e,t,r){for(var n=r(46),o=r(14),i=r(8),a=r(1),c=r(3),u=r(30),s=r(0),l=s("iterator"),p=s("toStringTag"),f=u.Array,h={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},d=o(h),y=0;y<d.length;y++){var g,b=d[y],S=h[b],m=a[b],v=m&&m.prototype;if(v&&(v[l]||c(v,l,f),v[p]||c(v,p,b),u[b]=f,S))for(g in n)v[g]||i(v,g,n[g],!0)}},function(e,t,r){var n=r(0)("unscopables"),o=Array.prototype;null==o[n]&&r(3)(o,n,{}),e.exports=function(e){o[n][e]=!0}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,r){"use strict";var n=r(20),o=r(13),i=r(8),a=r(3),c=r(30),u=r(71),s=r(25),l=r(72),p=r(0)("iterator"),f=!([].keys&&"next"in[].keys()),h=function(){return this};e.exports=function(e,t,r,d,y,g,b){u(r,t,d);var S,m,v,P=function(e){if(!f&&e in T)return T[e];switch(e){case"keys":case"values":return function(){return new r(this,e)}}return function(){return new r(this,e)}},k=t+" Iterator",w="values"==y,x=!1,T=e.prototype,O=T[p]||T["@@iterator"]||y&&T[y],C=O||P(y),A=y?w?P("entries"):C:void 0,E="Array"==t&&T.entries||O;if(E&&(v=l(E.call(new e)))!==Object.prototype&&v.next&&(s(v,k,!0),n||"function"==typeof v[p]||a(v,p,h)),w&&O&&"values"!==O.name&&(x=!0,C=function(){return O.call(this)}),n&&!b||!f&&!x&&T[p]||a(T,p,C),c[t]=C,c[k]=h,y)if(S={values:w?C:P("values"),keys:g?C:P("keys"),entries:A},b)for(m in S)m in T||i(T,m,S[m]);else o(o.P+o.F*(f||x),t,S);return S}},function(e,t,r){"use strict";var n=r(44),o=r(21),i=r(25),a={};r(3)(a,r(0)("iterator"),function(){return this}),e.exports=function(e,t,r){e.prototype=n(a,{next:o(1,r)}),i(e,t+" Iterator")}},function(e,t,r){var n=r(9),o=r(15),i=r(26)("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=o(e),n(e,i)?e[i]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},function(e,t,r){"use strict";var n=r(34),o={};o[r(0)("toStringTag")]="z",o+""!="[object z]"&&r(8)(Object.prototype,"toString",function(){return"[object "+n(this)+"]"},!0)},function(e,t,r){var n=r(15),o=r(14);r(75)("keys",function(){return function(e){return o(n(e))}})},function(e,t,r){var n=r(13),o=r(11),i=r(7);e.exports=function(e,t){var r=(o.Object||{})[e]||Object[e],a={};a[e]=t(r),n(n.S+n.F*i(function(){r(1)}),"Object",a)}},function(e,t,r){var n=r(1),o=r(77),i=r(4).f,a=r(29).f,c=r(78),u=r(36),s=n.RegExp,l=s,p=s.prototype,f=/a/g,h=/a/g,d=new s(f)!==f;if(r(5)&&(!d||r(7)(function(){return h[r(0)("match")]=!1,s(f)!=f||s(h)==h||"/a/i"!=s(f,"i")}))){s=function(e,t){var r=this instanceof s,n=c(e),i=void 0===t;return!r&&n&&e.constructor===s&&i?e:o(d?new l(n&&!i?e.source:e,t):l((n=e instanceof s)?e.source:e,n&&i?u.call(e):t),r?this:p,s)};for(var y=function(e){e in s||i(s,e,{configurable:!0,get:function(){return l[e]},set:function(t){l[e]=t}})},g=a(l),b=0;g.length>b;)y(g[b++]);p.constructor=s,s.prototype=p,r(8)(n,"RegExp",s)}r(79)("RegExp")},function(e,t,r){var n=r(2),o=r(47).set;e.exports=function(e,t,r){var i,a=t.constructor;return a!==r&&"function"==typeof a&&(i=a.prototype)!==r.prototype&&n(i)&&o&&o(e,i),e}},function(e,t,r){var n=r(2),o=r(18),i=r(0)("match");e.exports=function(e){var t;return n(e)&&(void 0!==(t=e[i])?!!t:"RegExp"==o(e))}},function(e,t,r){"use strict";var n=r(1),o=r(4),i=r(5),a=r(0)("species");e.exports=function(e){var t=n[e];i&&t&&!t[a]&&o.f(t,a,{configurable:!0,get:function(){return this}})}},function(e,t,r){"use strict";function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function o(e,t){return!t||"object"!==n(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function i(e){return(i=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function a(e,t){return(a=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}r(22),r(23),r(31);var c=r(32),u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=o(this,i(t).call(this))).data=[".*Java.*outbrain"," YLT","^b0t$","^bluefish ","^Calypso v\\/","^COMODO DCV","^DangDang","^DavClnt","^FDM ","^git\\/","^Goose\\/","^Grabber","^HTTPClient\\/","^Java\\/","^Jeode\\/","^Jetty\\/","^Mail\\/","^Mget","^Microsoft URL Control","^NG\\/[0-9\\.]","^NING\\/","^PHP\\/[0-9]","^RMA\\/","^Ruby|Ruby\\/[0-9]","^VSE\\/[0-9]","^WordPress\\.com","^XRL\\/[0-9]","^ZmEu","008\\/","13TABS","192\\.comAgent","2ip\\.ru","404checker","404enemy","7Siters","80legs","a\\.pr-cy\\.ru","a3logics\\.in","A6-Indexer","Abonti","Aboundex","aboutthedomain","Accoona-AI-Agent","acoon","acrylicapps\\.com\\/pulp","Acunetix","AdAuth\\/","adbeat","AddThis","ADmantX","adressendeutschland","adscanner\\/","Advanced Email Extractor v","agentslug","AHC","aihit","aiohttp\\/","Airmail","Akamai_Site_Analyzer","akka-http\\/","akula\\/","alertra","alexa site audit","Alibaba\\.Security\\.Heimdall","Alligator","allloadin\\.com","AllSubmitter","alyze\\.info","amagit","Anarchie","AndroidDownloadManager","Anemone","AngleSharp\\/","annotate_google","Ant\\.com","Anturis Agent","AnyEvent-HTTP\\/","Apache Droid","Apache OpenOffice","Apache-HttpAsyncClient\\/","Apache-HttpClient\\/","ApacheBench\\/","Apexoo","APIs-Google","AportWorm\\/[0-9]","AppBeat\\/[0-9]","AppEngine-Google","AppStoreScraperZ","Aprc\\/[0-9]","Arachmo","arachnode","Arachnophilia","aria2","Arukereso","asafaweb.com","AskQuickly","ASPSeek","Asterias","Astute","asynchttp","Attach","autocite","Autonomy","axios\\/","B-l-i-t-z-B-O-T","Backlink-Ceck","backlink-check","BackStreet","BackWeb","Bad-Neighborhood","Badass","baidu\\.com","Bandit","basicstate","BatchFTP","Battleztar\\ Bazinga","baypup\\/[0-9]","baypup\\/colbert","BazQux","BBBike","BCKLINKS","BDFetch","BegunAdvertising\\/","Bidtellect\\/","BigBozz","Bigfoot","biglotron","BingLocalSearch","BingPreview","binlar","biNu image cacher","Bitacle","biz_Directory","Black\\ Hole","Blackboard Safeassign","BlackWidow","BlockNote\\.Net","Bloglines\\/","Bloglovin","BlogPulseLive","BlogSearch","Blogtrottr","BlowFish","Boardreader","boitho\\.com-dc","BPImageWalker","Braintree-Webhooks","Branch Metrics API","Branch-Passthrough","Brandprotect","BrandVerity\\/[0-9]","Brandwatch","Brodie\\/","Browsershots","BUbiNG","Buck\\/","Buddy","BuiltWith","Bullseye","BunnySlippers","Burf Search","Butterfly\\/","BuzzSumo","CAAM\\/[0-9]","CakePHP","Calculon","CapsuleChecker","CaretNail","catexplorador","CC Metadata Scaper","Cegbfeieh","censys","Cerberian Drtrs","CERT\\.at-Statistics-Survey","cg-eye","changedetection","ChangesMeter\\/","Charlotte","CheckHost","checkprivacy","CherryPicker","ChinaClaw","Chirp\\/[0-9]","chkme\\.com","Chlooe","Chromaxa","CirrusExplorer\\/","CISPA Vulnerability Notification","Citoid","CJNetworkQuality","Clarsentia","clips\\.ua\\.ac\\.be","Cloud\\ mapping","CloudEndure","CloudFlare-AlwaysOnline","Cloudinary\\/[0-9]","cmcm\\.com","coccoc","cognitiveseo","colly -","CommaFeed","Commons-HttpClient","Comodo SSL Checker","contactbigdatafr","contentkingapp","convera","CookieReports\\.com","copyright sheriff","CopyRightCheck","Copyscape","Cosmos4j\\.feedback","Covario-IDS","Crescent","Crowsnest","Criteo","CSHttp","curb","Curious George","curl","cuwhois\\/[0-9]","cybo\\.com","DareBoost","DatabaseDriverMysqli","DataCha0s","Datanyze","DataparkSearch","dataprovider","DataXu","Daum(oa)?[ \\/][0-9]","DemandbasePublisherAnalyzer\\/","Demon","DeuSu","developers\\.google\\.com\\/\\+\\/web\\/snippet\\/","Devil","Digg","Digincore","DigitalPebble","Dirbuster","Dispatch\\/","DittoSpyder","dlvr","DMBrowser","DNS-Tools Header-Analyzer","DNSPod-reporting","docoloc","Dolphin http client\\/","DomainAppender","Donuts Content Explorer","dotMailer content retrieval","dotSemantic","downforeveryoneorjustme","Download\\ Wonder","downnotifier\\.com","DowntimeDetector","Dragonfly File Reader","Drip","drupact","Drupal \\(\\+http:\\/\\/drupal\\.org\\/\\)","DTS\\ Agent","dubaiindex","EARTHCOM","Easy-Thumb","EasyDL","Ebingbong","ec2linkfinder","eCairn-Grabber","eCatch","ECCP","eContext\\/","Ecxi","EirGrabber","ElectricMonk","elefent","EMail Exractor","EMail\\ Wolf","Email%20Extractor%20Lite","EmailWolf","Embed PHP Library","Embedly","endo\\/","europarchive\\.org","evc-batch","EventMachine HttpClient","Everwall Link Expander","Evidon","Evrinid","ExactSearch","ExaleadCloudview","Excel\\/","exif","Exploratodo","Express WebPictures","ExtractorPro","Extreme\\ Picture\\ Finder","EyeNetIE","ezooms","facebookexternalhit","facebookplatform","fairshare","Faraday v","fasthttp","Faveeo","Favicon downloader","faviconkit","FavOrg","Feed Wrangler","Feedable\\/","Feedbin","FeedBooster","FeedBucket","FeedBunch\\/[0-9]","FeedBurner","FeedChecker","Feedly","Feedreader","FeedshowOnline","Feedspot","Feedwind\\/[0-9]","FeedZcollector","feeltiptop","Fetch API","Fetch\\/[0-9]","Fever\\/[0-9]","FHscan","Fimap","findlink","findthatfile","FlashGet","FlipboardBrowserProxy","FlipboardProxy","FlipboardRSS","Flock\\/","fluffy","Flunky","flynxapp","forensiq","FoundSeoTool\\/[0-9]","free thumbnails","Freeuploader","FreeWebMonitoring SiteChecker","Funnelback","G-i-g-a-b-o-t","g00g1e\\.net","GAChecker","ganarvisitas\\/[0-9]","geek-tools","Genderanalyzer","Genieo","GentleSource","Getintent","GetLinkInfo","getprismatic\\.com","GetRight","getroot","GetURLInfo\\/[0-9]","GetWeb","Ghost Inspector","GigablastOpenSource","GIS-LABS","github-camo","github\\.com\\/","Go [\\d\\.]* package http","Go http package","Go-Ahead-Got-It","Go-http-client","Go!Zilla","gobyus","gofetch","GomezAgent","gooblog","Goodzer\\/[0-9]","Google AppsViewer","Google favicon","Google Keyword Suggestion","Google Keyword Tool","Google Page Speed Insights","Google PP Default","Google Search Console","Google Web Preview","google_partner_monitoring","Google-Adwords","Google-Apps-Script","Google-Calendar-Importer","Google-HotelAdsVerifier","Google-HTTP-Java-Client","Google-Publisher-Plugin","Google-SearchByImage","Google-Site-Verification","Google-Structured-Data-Testing-Tool","Google-Youtube-Links","GoogleCloudMonitoring","GoogleDocs","GoogleHC\\/","GoogleProducer","GoogleSites","Gookey","GoScraper","GoSpotCheck","GoSquared-Status-Checker","gosquared-thumbnailer","Gotit","GoZilla","grabify","GrabNet","Grafula","Grammarly","GrapeFX","grokkit","grouphigh","grub-client","gSOAP\\/","GT::WWW","GTmetrix","GuzzleHttp","gvfs\\/","HAA(A)?RTLAND http client","Haansoft","hackney\\/","Hatena","Havij","hawkReader","HeadlessChrome","HEADMasterSEO","HeartRails_Capture","help@dataminr\\.com","heritrix","historious\\/","hkedcity","hledejLevne\\.cz\\/[0-9]","Hloader","HMView","Holmes","HonesoSearchEngine\\/","HootSuite Image proxy","Hootsuite-WebFeed\\/[0-9]","hosterstats","HostTracker","ht:\\/\\/check","htdig","HTMLparser","htmlyse\\.com","HTTP_Compression_Test","http_request2","http_requester","http-get","HTTP-Header-Abfrage","http-kit","http-request\\/","HTTP-Tiny","HTTP::Lite","http\\.rb\\/","HttpComponents","httphr","HTTPMon","httpscheck","httpssites_power","httpunit","HttpUrlConnection","httrack","huaweisymantec","HubSpot ","Humanlinks","HyperZbozi.cz Feeder","i2kconnect\\/","Iblog","ichiro","Id-search","IdeelaborPlagiaat","IDG Twitter Links Resolver","IDwhois\\/[0-9]","Iframely","igdeSpyder","IlTrovatore","Image\\ Fetch","Image\\ Sucker","ImageEngine\\/","ImageVisu\\/","Imagga","imagineeasy","imgsizer","InAGist","inbound\\.li parser","InDesign%20CC","Indy\\ Library","InetURL","infegy","infohelfer","InfoTekies","InfoWizards Reciprocal Link System PRO","inpwrd\\.com","instabid","Instapaper","Integrity","integromedb","Intelliseek","InterGET","internet_archive","Internet\\ Ninja","InternetSeer","internetVista monitor","intraVnews","IODC","IOI","iplabel","ips-agent","IPS\\/[0-9]","IPWorks HTTP\\/S Component","iqdb\\/","Iria","Irokez","isitup\\.org","iskanie","isUp\\.li","iThemes Sync\\/[0-9]","iZSearch","JAHHO","janforman","Jaunt\\/","Jbrofuzz","Jersey\\/","JetCar","Jigsaw","Jobboerse","JobFeed discovery","Jobg8 URL Monitor","jobo","Jobrapido","Jobsearch1\\.5","JoinVision Generic","JolokiaPwn","Joomla","Jorgee","JS-Kit","JustView","Kaspersky Lab CFR link resolver","KeepRight OpenStreetMap Checker","Kelny\\/","Kerrigan\\/","KeyCDN","Keyword Extractor","Keyword\\ Density","Keywords Research","KickFire","KimonoLabs\\/","Kml-Google","knows\\.is","KOCMOHABT","kouio","kube-probe","kulturarw3","KumKie","L\\.webis","Larbin","Lavf\\/","LayeredExtractor","LeechFTP","LeechGet","letsencrypt","Lftp","LibVLC","LibWeb","Libwhisker","libwww","Licorne","Liferea\\/","Lightspeedsystems","Likse","link checker","Link Valet","link_thumbnailer","LinkAlarm\\/","linkCheck","linkdex","LinkExaminer","linkfluence","linkpeek","LinkPreviewGenerator","LinkScan","LinksManager","LinkTiger","LinkWalker","Lipperhey","Litemage_walker","livedoor ScreenShot","LoadImpactRload","localsearch-web","LongURL API","looksystems\\.net","ltx71","lua-resty-http","lwp-request","lwp-trivial","LWP::Simple","lycos","LYT\\.SR","mabontland","Mag-Net","MagpieRSS","Mail.Ru","MailChimp","Majestic12","makecontact\\/","Mandrill","MapperCmd","marketinggrader","MarkMonitor","MarkWatch","Mass\\ Downloader","masscan\\/[0-9]","Mata\\ Hari","Mediapartners-Google","mediawords","MegaIndex\\.ru","Melvil Rawi\\/","MergeFlow-PageReader","Metaspinner","MetaURI","MFC_Tear_Sample","Microsearch","Microsoft Office ","Microsoft Outlook","Microsoft Windows Network Diagnostics","Microsoft-WebDAV-MiniRedir","Microsoft\\ Data\\ Access","MIDown\\ tool","MIIxpc","Mindjet","Miniature.io\\/","Miniflux","Mister\\ PiX","mixdata dot com","mixed-content-scan","Mixmax-LinkPreview","mixnode","Mnogosearch","mogimogi","Mojeek","Mojolicious \\(Perl\\)","Monit\\/","monitis","Monitority\\/[0-9]","montastic","MonTools","Moreover","Morfeus\\ Fucking\\ Scanner","Morning Paper","MovableType","mowser","Mrcgiguy","MS\\ Web\\ Services\\ Client\\ Protocol","MSFrontPage","mShots","MuckRack\\/","muhstik-scan","MVAClient","MxToolbox\\/","nagios","Najdi\\.si\\/","Name\\ Intelligence","Nameprotect","Navroad","NearSite","Needle","Nessus","Net\\ Vampire","NetAnts","NETCRAFT","NetLyzer","NetMechanic","NetNewsWire","Netpursual","netresearch","NetShelter ContentScan","Netsparker","NetTrack","Netvibes","NetZIP","Neustar WPM","NeutrinoAPI","NewRelicPinger","NewsBlur .*Finder","NewsGator","newsme","newspaper\\/","Nexgate Ruby Client","NG-Search","Nibbler","NICErsPRO","Nikto","nineconnections\\.com","NLNZ_IAHarvester","Nmap Scripting Engine","node-superagent","node-urllib\\/","node\\.io","Nodemeter","NodePing","nominet\\.org\\.uk","Norton-Safeweb","Notifixious","notifyninja","nuhk","nutch","Nuzzel","nWormFeedFinder","Nymesis","NYU","Ocelli\\/[0-9]","Octopus","oegp","Offline Explorer","Offline\\ Navigator","og-scraper\\/","okhttp","Omea Reader","omgili","OMSC","Online Domain Tools","OpenCalaisSemanticProxy","Openfind","OpenLinkProfiler","Openstat\\/","OpenVAS","Optimizer","Orbiter","OrgProbe\\/[0-9]","orion-semantics","Outlook-Express","ow\\.ly","Owler","ownCloud News","OxfordCloudService\\/[0-9]","Page Analyzer","Page Valet","page_verifier","page\\ scorer","page2rss","PageAnalyzer","PageGrabber","PagePeeker","PageScorer","Pagespeed\\/[0-9]","Panopta","panscient","Papa\\ Foto","parsijoo","Pavuk","PayPal IPN","pcBrowser","Pcore-HTTP","PEAR HTTPRequest","Pearltrees","PECL::HTTP","peerindex","Peew","PeoplePal","Perlu -","PhantomJS Screenshoter","PhantomJS\\/","Photon\\/","phpservermon","Pi-Monster","Picscout","Picsearch","PictureFinder","Pimonster","ping\\.blo\\.gs\\/","Pingability","PingAdmin\\.Ru","Pingdom","Pingoscope","PingSpot","pinterest\\.com","Pixray","Pizilla","Plagger\\/","Ploetz \\+ Zeller","Plukkie","plumanalytics","PocketImageCache","PocketParser","Pockey","POE-Component-Client-HTTP","Pompos","Porkbun","Port Monitor","postano","PostmanRuntime\\/","PostPost","postrank","PowerPoint\\/","Priceonomics Analysis Engine","PrintFriendly\\.com","PritTorrent\\/[0-9]","Prlog","probethenet","Project 25499","Promotion_Tools_www.searchenginepromotionhelp.com","prospectb2b","Protopage","ProWebWalker","proximic","PRTG Network Monitor","pshtt, https scanning","PTST ","PTST\\/[0-9]+","Pulsepoint XT3 web scraper","Pump","Python-httplib2","python-requests","Python-urllib","Qirina Hurdler","QQDownload","QrafterPro","Qseero","Qualidator.com SiteAnalyzer","QueryN\\ Metasearch","queuedriver","Quora Link Preview","Qwantify","Radian6","RankActive","RankFlex","RankSonicSiteAuditor","raynette_httprequest","Re-re Studio","Readability","RealDownload","RealPlayer%20Downloader","RebelMouse","Recorder","RecurPost\\/","redback\\/","Redirect Checker Tool","ReederForMac","ReGet","RepoMonkey","request\\.js","ResponseCodeTest\\/[0-9]","RestSharp","Riddler","Rival IQ","Robosourcer","Robozilla\\/[0-9]","ROI Hunter","RPT-HTTPClient","rss reader","RSSOwl","RssReader\\/","safe-agent-scanner","SalesIntelligent","Saleslift","SauceNAO","SBIder","scalaj-http","scan\\.lol","ScanAlert","Scoop","scooter","ScoutJet","ScoutURLMonitor","ScrapeBox Page Scanner","Scrapy","Screaming","ScreenShotService\\/[0-9]","Scrubby","Scrutiny\\/","search\\.thunderstone","Search37\\/","Searchestate","SearchExpress","SearchSight","Seeker","semanticdiscovery","semanticjuice","Semiocast HTTP client","Semrush","sentry\\/","SEO Browser","Seo Servis","seo-nastroj.cz","seo4ajax","Seobility","SEOCentro","SeoCheck","SEOkicks","Seomoz","SEOprofiler","SeopultContentAnalyzer","seoscanners","SEOstats","Server Density Service Monitoring","servernfo\\.com","sexsearcher","Seznam","Shelob","Shodan","Shoppimon Analyzer","ShoppimonAgent\\/[0-9]","ShopWiki","ShortLinkTranslate","shrinktheweb","Sideqik","SilverReader","SimplePie","SimplyFast","Siphon","SISTRIX","Site-Shot\\/","Site\\ Sucker","Site24x7","SiteBar","Sitebeam","Sitebulb\\/","SiteCondor","SiteExplorer","SiteGuardian","Siteimprove","SiteIndexed","Sitemap(s)? Generator","SitemapGenerator","SiteMonitor","Siteshooter B0t","SiteSnagger","SiteSucker","SiteTruth","Sitevigil","sitexy\\.com","SkypeUriPreview","Slack\\/","slider\\.com","slurp","SlySearch","SmartDownload","SMRF URL Expander","SMUrlExpander","Snake","Snappy","SnapSearch","Snarfer\\/","SniffRSS","sniptracker","Snoopy","SnowHaze Search","sogou web","SortSite","Sottopop","sovereign\\.ai","SpaceBison","SpamExperts","Spammen","Spanner","spaziodati","SPDYCheck","Specificfeeds","speedy","SPEng","Spinn3r","spray-can","Sprinklr ","spyonweb","sqlmap","Sqlworm","Sqworm","SSL Labs","ssl-tools","StackRambler","Statastico\\/","StatusCake","Steeler","Stratagems Kumo","Stroke.cz","StudioFACA","StumbleUpon","suchen","Sucuri","summify","Super Monitoring","SuperHTTP","Surphace Scout","Suzuran","SwiteScraper","Symfony BrowserKit","Symfony2 BrowserKit","SynHttpClient-Built","Sysomos","sysscan","Szukacz","T0PHackTeam","tAkeOut","Tarantula\\/","Taringa UGC","TarmotGezgin","Teleport","Telesoft","Telesphoreo","Telesphorep","Tenon\\.io","teoma","terrainformatica\\.com","Test Certificate Info","Tetrahedron\\/[0-9]","The Drop Reaper","The Expert HTML Source Viewer","The Knowledge AI","The\\ Intraformant","theinternetrules","TheNomad","theoldreader\\.com","Thinklab","Thumbshots","ThumbSniper","TinEye","Tiny Tiny RSS","TLSProbe\\/","Toata","topster","touche.com","Traackr.com","tracemyfile","TrapitAgent","Trendiction","Trendsmap Resolver","trendspottr\\.com","truwoGPS","TulipChain","Turingos","Turnitin","tweetedtimes\\.com","Tweetminster","Tweezler\\/","twibble","Twice","Twikle","Twingly","Twisted PageGetter","Typhoeus","ubermetrics-technologies","uclassify","UdmSearch","unirest-java","UniversalFeedParser","Unshorten\\.It","Untiny","UnwindFetchor","updated","updown\\.io daemon","Upflow","Uptimia","URL Verifier","URLChecker","URLitor.com","urlresolver","Urlstat","UrlTrends Ranking Updater","URLy\\ Warning","URLy\\.Warning","Vacuum","Vagabondo","VB\\ Project","vBSEO","VCI","via ggpht\\.com GoogleImageProxy","VidibleScraper","Virusdie","visionutils","vkShare","VoidEYE","Voil","voltron","voyager\\/","VSAgent\\/[0-9]","VSB-TUO\\/[0-9]","Vulnbusters Meter","VYU2","w3af\\.org","W3C_I18n-Checker","W3C_Unicorn","W3C-checklink","W3C-mobileOK","WAC-OFU","Wallpapers\\/[0-9]+","WallpapersHD","wangling","Wappalyzer","WatchMouse","WbSrch\\/","WDT\\.io","web-capture\\.net","Web-Monitoring","Web-sniffer","Web\\ Auto","Web\\ Collage","Web\\ Enhancer","Web\\ Fetch","Web\\ Fuck","Web\\ Pix","Web\\ Sauger","Web\\ Sucker","Webalta","Webauskunft","WebAuto","WebCapture","WebClient\\/","webcollage","WebCookies","WebCopier","WebCorp","WebDataStats\\/[0-9]","WebDoc","WebEnhancer","WebFetch","WebFuck","WebGo\\ IS","WebImageCollector","WebImages","WebIndex","webkit2png","WebLeacher","webmastercoffee","webmon ","WebPix","WebReaper","WebSauger","webscreenie","Webshag","Webshot","Website Analyzer\\/","Website\\ Quester","WebsiteExtractor","websitepulse agent","websitepulse[+ ]checker","WebsiteQuester","Websnapr\\/","Webster","WebStripper","WebSucker","Webthumb\\/[0-9]","WebThumbnail","WebWhacker","WebZIP","WeLikeLinks","WEPA","WeSEE","wf84","Wfuzz\\/","wget","WhatsApp","WhatsMyIP","WhatWeb","WhereGoes\\?","Whibse","WhoRunsCoinHive","Whynder Magnet","Windows-RSS-Platform","WinHttpRequest","WinPodder","wkhtmlto","wmtips","Woko","Word\\/","WordPress\\/","WordupinfoSearch","wotbox","WP Engine Install Performance API","wpif","wprecon\\.com survey","WPScan","wscheck","Wtrace","WWW-Collector-E","WWW-Mechanize","WWW::Document","WWW::Mechanize","www\\.monitor\\.us","WWWOFFLE","x09Mozilla","x22Mozilla","XaxisSemanticsClassifier","Xenu Link Sleuth","XING-contenttabreceiver\\/[0-9]","xpymep([0-9]?)\\.exe","Y!J-(ASR|BSC)","Y\\!J-BRW","Yaanb","yacy","Yahoo Ad monitoring","Yahoo Link Preview","YahooCacheSystem","YahooYSMcm","YandeG","Yandex(?!Search)","yanga","yeti","Yo-yo","Yoleo Consumer","yoogliFetchAgent","YottaaMonitor","Your-Website-Sucks\\/[0-9]","yourls\\.org","YoYs\\.net","YP\\.PL","Zade","Zao","Zauba","Zemanta Aggregator","Zend_Http_Client","Zend\\\\Http\\\\Client","Zermelo","Zeus","zgrab","ZnajdzFoto","Zombie\\.js","ZyBorg","[a-z0-9\\-_]*(bot|crawl|archiver|transcoder|spider|uptime|validator|fetcher|cron)"],e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&a(e,t)}(t,c),t}();e.exports=u},function(e,t,r){"use strict";function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function o(e,t){return!t||"object"!==n(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function i(e){return(i=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function a(e,t){return(a=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}r(22),r(23),r(31);var c=r(32),u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=o(this,i(t).call(this))).data=["Safari.[\\d\\.]*","Firefox.[\\d\\.]*"," Chrome.[\\d\\.]*","Chromium.[\\d\\.]*","MSIE.[\\d\\.]","Opera\\/[\\d\\.]*","Mozilla.[\\d\\.]*","AppleWebKit.[\\d\\.]*","Trident.[\\d\\.]*","Windows NT.[\\d\\.]*","Android [\\d\\.]*","Macintosh.","Ubuntu","Linux","[ ]Intel","Mac OS X [\\d_]*","(like )?Gecko(.[\\d\\.]*)?","KHTML,","CriOS.[\\d\\.]*","CPU iPhone OS ([0-9_])* like Mac OS X","CPU OS ([0-9_])* like Mac OS X","iPod","compatible","x86_..","i686","x64","X11","rv:[\\d\\.]*","Version.[\\d\\.]*","WOW64","Win64","Dalvik.[\\d\\.]*"," \\.NET CLR [\\d\\.]*","Presto.[\\d\\.]*","Media Center PC","BlackBerry","Build","Opera Mini\\/\\d{1,2}\\.\\d{1,2}\\.[\\d\\.]*\\/\\d{1,2}\\.","Opera"," \\.NET[\\d\\.]*","cubot","; M bot","; B bot","; IDbot","; ID bot","; POWER BOT",";"],e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&a(e,t)}(t,c),t}();e.exports=u},function(e,t,r){"use strict";function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function o(e,t){return!t||"object"!==n(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function i(e){return(i=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function a(e,t){return(a=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}r(22),r(23),r(31);var c=r(32),u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=o(this,i(t).call(this))).data=["HTTP_USER_AGENT","HTTP_X_OPERAMINI_PHONE_UA","HTTP_X_DEVICE_USER_AGENT","HTTP_X_ORIGINAL_USER_AGENT","HTTP_X_SKYFIRE_PHONE","HTTP_X_BOLT_PHONE_UA","HTTP_DEVICE_STOCK_UA","HTTP_X_UCBROWSER_DEVICE_UA","HTTP_FROM","HTTP_X_SCANNER"],e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&a(e,t)}(t,c),t}();e.exports=u}]);
|
1
|
+
var Crawler;(()=>{var e={7697:(e,t,r)=>{var n=r(609);e.exports={Crawler:n,middleware:function(e){return function(t,r,o){"function"==typeof e&&e.call(t,r),t.Crawler=new n(t),o()}}}},609:(e,t,r)=>{"use strict";function n(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=function(e,t){if(!e)return;if("string"==typeof e)return o(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return o(e,t)}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,i=function(){};return{s:i,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,c=!0,s=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return c=e.done,e},e:function(e){s=!0,a=e},f:function(){try{c||null==r.return||r.return()}finally{if(s)throw a}}}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}r(2759),r(2077),r(895),r(266),r(5613),r(2571),r(7471),r(911),r(5901),r(2189),r(3238),r(1047),r(5769),r(7460),r(4078),r(2410),r(3352),r(5610);var c=r(8962),s=r(8290),u=r(4371),l=function(){function e(t,r,n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this._init(),this.request="object"===i(t)?t:{},this.compiledRegexList=this.compileRegex(this.crawlers.getAll(),"i"),this.compiledExclusions=this.compileRegex(this.exclusions.getAll(),"g"),this.setHttpHeaders(r),this.userAgent=this.setUserAgent(n)}var t,r,o;return t=e,r=[{key:"_init",value:function(){this.crawlers=new c,this.headers=new u,this.exclusions=new s}},{key:"compileRegex",value:function(e,t){return new RegExp(e.join("|").trim(),t)}},{key:"setHttpHeaders",value:function(e){for(var t in void 0!==e&&0!==Object.keys(e).length||(e=Object.keys(this.request).length?this.request.headers:{}),this.httpHeaders=[],e)this.httpHeaders[t]=e[t]}},{key:"setUserAgent",value:function(e){if(null==e||!e.length){var t,r=n(this.getUaHttpHeaders());try{for(r.s();!(t=r.n()).done;){var o=t.value;Object.keys(this.httpHeaders).indexOf(o.toLowerCase())>=0&&(e+=this.httpHeaders[o]+" ")}}catch(e){r.e(e)}finally{r.f()}}return e}},{key:"getUaHttpHeaders",value:function(){return this.headers.getAll()}},{key:"isCrawler",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0;if(Buffer.byteLength(e||"","utf8")>4096)return!1;var t=null==e?this.userAgent:e;if(0===(t=t.replace(this.compiledExclusions,"")).trim().length)return!1;var r=this.compiledRegexList.exec(t.trim());return r&&(this.matches=r),null!==r&&!!r.length}},{key:"getMatches",value:function(){return void 0!==this.matches?this.matches.length?this.matches[0]:null:{}}}],r&&a(t.prototype,r),o&&a(t,o),Object.defineProperty(t,"prototype",{writable:!1}),e}();e.exports=l},8962:(e,t,r)=>{"use strict";function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function o(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function i(e,t){return i=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},i(e,t)}function a(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=s(e);if(t){var o=s(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return c(this,r)}}function c(e,t){if(t&&("object"===n(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function s(e){return s=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},s(e)}r(987),r(2274),r(3238),r(3214),r(5901),r(2189),r(1047),r(5769),r(7460),r(4078);var u=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");Object.defineProperty(e,"prototype",{value:Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),writable:!1}),t&&i(e,t)}(s,e);var t,r,n,c=a(s);function s(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),(e=c.call(this)).data=[" YLT","^Aether","^Amazon Simple Notification Service Agent$","^Amazon-Route53-Health-Check-Service","^b0t$","^bluefish ","^Calypso v\\/","^COMODO DCV","^Corax","^DangDang","^DavClnt","^DHSH","^docker\\/[0-9]","^Expanse","^FDM ","^git\\/","^Goose\\/","^Grabber","^Gradle\\/","^HTTPClient\\/","^HTTPing","^Java\\/","^Jeode\\/","^Jetty\\/","^Mail\\/","^Mget","^Microsoft URL Control","^Mikrotik\\/","^Netlab360","^NG\\/[0-9\\.]","^NING\\/","^npm\\/","^Nuclei","^PHP-AYMAPI\\/","^PHP\\/","^pip\\/","^pnpm\\/","^RMA\\/","^Ruby|Ruby\\/[0-9]","^Swurl ","^TLS tester ","^twine\\/","^ureq","^VSE\\/[0-9]","^WordPress\\.com","^XRL\\/[0-9]","^ZmEu","008\\/","13TABS","192\\.comAgent","2GDPR\\/","2ip\\.ru","404enemy","7Siters","80legs","a3logics\\.in","A6-Indexer","Abonti","Aboundex","aboutthedomain","Accoona-AI-Agent","acebookexternalhit\\/","acoon","acrylicapps\\.com\\/pulp","Acunetix","AdAuth\\/","adbeat","AddThis","ADmantX","AdminLabs","adressendeutschland","adreview\\/","adscanner","adstxt-worker","Adstxtaggregator","adstxt\\.com","Adyen HttpClient","AffiliateLabz\\/","affilimate-puppeteer","agentslug","AHC","aihit","aiohttp\\/","Airmail","akka-http\\/","akula\\/","alertra","alexa site audit","Alibaba\\.Security\\.Heimdall","Alligator","allloadin","AllSubmitter","alyze\\.info","amagit","Anarchie","AndroidDownloadManager","Anemone","AngleSharp","annotate_google","Anthill","Anturis Agent","Ant\\.com","AnyEvent-HTTP\\/","Apache Ant\\/","Apache Droid","Apache OpenOffice","Apache-HttpAsyncClient","Apache-HttpClient","ApacheBench","Apexoo","apimon\\.de","APIs-Google","AportWorm\\/","AppBeat\\/","AppEngine-Google","AppleSyndication","Aprc\\/[0-9]","Arachmo","arachnode","Arachnophilia","aria2","Arukereso","asafaweb","Asana\\/","Ask Jeeves","AskQuickly","ASPSeek","Asterias","Astute","asynchttp","Attach","attohttpc","autocite","AutomaticWPTester","Autonomy","awin\\.com","AWS Security Scanner","axios\\/","a\\.pr-cy\\.ru","B-l-i-t-z-B-O-T","Backlink-Ceck","backlink-check","BacklinkHttpStatus","BackStreet","BackupLand","BackWeb","Bad-Neighborhood","Badass","baidu\\.com","Bandit","basicstate","BatchFTP","Battleztar Bazinga","baypup\\/","BazQux","BBBike","BCKLINKS","BDFetch","BegunAdvertising","Bewica-security-scan","Bidtellect","BigBozz","Bigfoot","biglotron","BingLocalSearch","BingPreview","binlar","biNu image cacher","Bitacle","Bitrix link preview","biz_Directory","BKCTwitterUnshortener\\/","Black Hole","Blackboard Safeassign","BlackWidow","BlockNote\\.Net","BlogBridge","Bloglines","Bloglovin","BlogPulseLive","BlogSearch","Blogtrottr","BlowFish","boitho\\.com-dc","Boost\\.Beast","BPImageWalker","Braintree-Webhooks","Branch Metrics API","Branch-Passthrough","Brandprotect","BrandVerity","Brandwatch","Brodie\\/","Browsershots","BUbiNG","Buck\\/","Buddy","BuiltWith","Bullseye","BunnySlippers","Burf Search","Butterfly\\/","BuzzSumo","CAAM\\/[0-9]","CakePHP","Calculon","Canary%20Mail","CaretNail","catexplorador","CC Metadata Scaper","Cegbfeieh","censys","centuryb.o.t9[at]gmail.com","Cerberian Drtrs","CERT\\.at-Statistics-Survey","cf-facebook","cg-eye","changedetection","ChangesMeter","Charlotte","CheckHost","checkprivacy","CherryPicker","ChinaClaw","Chirp\\/","chkme\\.com","Chlooe","Chromaxa","CirrusExplorer","CISPA Vulnerability Notification","CISPA Web Analyser","Citoid","CJNetworkQuality","Clarsentia","clips\\.ua\\.ac\\.be","Cloud mapping","CloudEndure","CloudFlare-AlwaysOnline","Cloudflare-Healthchecks","Cloudinary","cmcm\\.com","coccoc","cognitiveseo","ColdFusion","colly -","CommaFeed","Commons-HttpClient","commonscan","contactbigdatafr","contentkingapp","Contextual Code Sites Explorer","convera","CookieReports","copyright sheriff","CopyRightCheck","Copyscape","cortex\\/","Cosmos4j\\.feedback","Covario-IDS","Craw\\/","Crescent","Criteo","Crowsnest","CSHttp","CSSCheck","Cula\\/","curb","Curious George","curl","cuwhois\\/","cybo\\.com","DAP\\/NetHTTP","DareBoost","DatabaseDriverMysqli","DataCha0s","Datafeedwatch","Datanyze","DataparkSearch","dataprovider","DataXu","Daum(oa)?[ \\/][0-9]","dBpoweramp","ddline","deeris","delve\\.ai","Demon","DeuSu","developers\\.google\\.com\\/+\\/web\\/snippet\\/","Devil","Digg","Digincore","DigitalPebble","Dirbuster","Discourse Forum Onebox","Dispatch\\/","Disqus\\/","DittoSpyder","dlvr","DMBrowser","DNSPod-reporting","docoloc","Dolphin http client","DomainAppender","DomainLabz","Domains Project\\/","Donuts Content Explorer","dotMailer content retrieval","dotSemantic","downforeveryoneorjustme","Download Wonder","downnotifier","DowntimeDetector","Drip","drupact","Drupal \\(\\+http:\\/\\/drupal\\.org\\/\\)","DTS Agent","dubaiindex","DuplexWeb-Google","DynatraceSynthetic","EARTHCOM","Easy-Thumb","EasyDL","Ebingbong","ec2linkfinder","eCairn-Grabber","eCatch","ECCP","eContext\\/","Ecxi","EirGrabber","ElectricMonk","elefent","EMail Exractor","EMail Wolf","EmailWolf","Embarcadero","Embed PHP Library","Embedly","endo\\/","europarchive\\.org","evc-batch","EventMachine HttpClient","Everwall Link Expander","Evidon","Evrinid","ExactSearch","ExaleadCloudview","Excel\\/","exif","ExoRank","Exploratodo","Express WebPictures","Extreme Picture Finder","EyeNetIE","ezooms","facebookexternalhit","facebookexternalua","facebookplatform","fairshare","Faraday v","fasthttp","Faveeo","Favicon downloader","faviconarchive","faviconkit","FavOrg","Feed Wrangler","Feedable\\/","Feedbin","FeedBooster","FeedBucket","FeedBunch\\/","FeedBurner","feeder","Feedly","FeedshowOnline","Feedshow\\/","Feedspot","FeedViewer\\/","Feedwind\\/","FeedZcollector","feeltiptop","Fetch API","Fetch\\/[0-9]","Fever\\/[0-9]","FHscan","Fiery%20Feeds","Filestack","Fimap","findlink","findthatfile","FlashGet","FlipboardBrowserProxy","FlipboardProxy","FlipboardRSS","Flock\\/","Florienzh\\/","fluffy","Flunky","flynxapp","forensiq","FoundSeoTool","free thumbnails","Freeuploader","FreshRSS","Funnelback","Fuzz Faster U Fool","G-i-g-a-b-o-t","g00g1e\\.net","ganarvisitas","gdnplus\\.com","geek-tools","Genieo","GentleSource","GetCode","Getintent","GetLinkInfo","getprismatic","GetRight","getroot","GetURLInfo\\/","GetWeb","Geziyor","Ghost Inspector","GigablastOpenSource","GIS-LABS","github-camo","GitHub-Hookshot","github\\.com","Go http package","Go [\\d\\.]* package http","Go!Zilla","Go-Ahead-Got-It","Go-http-client","go-mtasts\\/","gobyus","Gofeed","gofetch","Goldfire Server","GomezAgent","gooblog","Goodzer\\/","Google AppsViewer","Google Desktop","Google favicon","Google Keyword Suggestion","Google Keyword Tool","Google Page Speed Insights","Google PP Default","Google Search Console","Google Web Preview","Google-Ads-Creatives-Assistant","Google-Ads-Overview","Google-Adwords","Google-Apps-Script","Google-Calendar-Importer","Google-HotelAdsVerifier","Google-HTTP-Java-Client","Google-Podcast","Google-Publisher-Plugin","Google-Read-Aloud","Google-SearchByImage","Google-Site-Verification","Google-SMTP-STS","Google-speakr","Google-Structured-Data-Testing-Tool","Google-Transparency-Report","google-xrawler","Google-Youtube-Links","GoogleDocs","GoogleHC\\/","GoogleProber","GoogleProducer","GoogleSites","Gookey","GoSpotCheck","gosquared-thumbnailer","Gotit","GoZilla","grabify","GrabNet","Grafula","Grammarly","GrapeFX","GreatNews","Gregarius","GRequests","grokkit","grouphigh","grub-client","gSOAP\\/","GT::WWW","GTmetrix","GuzzleHttp","gvfs\\/","HAA(A)?RTLAND http client","Haansoft","hackney\\/","Hadi Agent","HappyApps-WebCheck","Hardenize","Hatena","Havij","HaxerMen","HeadlessChrome","HEADMasterSEO","HeartRails_Capture","help@dataminr\\.com","heritrix","Hexometer","historious","hkedcity","hledejLevne\\.cz","Hloader","HMView","Holmes","HonesoSearchEngine","HootSuite Image proxy","Hootsuite-WebFeed","hosterstats","HostTracker","ht:\\/\\/check","htdig","HTMLparser","htmlyse","HTTP Banner Detection","http-get","HTTP-Header-Abfrage","http-kit","http-request\\/","HTTP-Tiny","HTTP::Lite","http:\\/\\/www.neomo.de\\/","HttpComponents","httphr","HTTPie","HTTPMon","httpRequest","httpscheck","httpssites_power","httpunit","HttpUrlConnection","http\\.rb\\/","HTTP_Compression_Test","http_get","http_request2","http_requester","httrack","huaweisymantec","HubSpot ","HubSpot-Link-Resolver","Humanlinks","i2kconnect\\/","Iblog","ichiro","Id-search","IdeelaborPlagiaat","IDG Twitter Links Resolver","IDwhois\\/","Iframely","igdeSpyder","iGooglePortal","IlTrovatore","Image Fetch","Image Sucker","ImageEngine\\/","ImageVisu\\/","Imagga","imagineeasy","imgsizer","InAGist","inbound\\.li parser","InDesign%20CC","Indy Library","InetURL","infegy","infohelfer","InfoTekies","InfoWizards Reciprocal Link","inpwrd\\.com","instabid","Instapaper","Integrity","integromedb","Intelliseek","InterGET","Internet Ninja","InternetSeer","internetVista monitor","internetwache","internet_archive","intraVnews","IODC","IOI","iplabel","ips-agent","IPS\\/[0-9]","IPWorks HTTP\\/S Component","iqdb\\/","Iria","Irokez","isitup\\.org","iskanie","isUp\\.li","iThemes Sync\\/","IZaBEE","iZSearch","JAHHO","janforman","Jaunt\\/","Java.*outbrain","javelin\\.io","Jbrofuzz","Jersey\\/","JetCar","Jigsaw","Jobboerse","JobFeed discovery","Jobg8 URL Monitor","jobo","Jobrapido","Jobsearch1\\.5","JoinVision Generic","JolokiaPwn","Joomla","Jorgee","JS-Kit","JungleKeyThumbnail","JustView","Kaspersky Lab CFR link resolver","Kelny\\/","Kerrigan\\/","KeyCDN","Keyword Density","Keywords Research","khttp\\/","KickFire","KimonoLabs\\/","Kml-Google","knows\\.is","KOCMOHABT","kouio","kube-probe","kubectl","kulturarw3","KumKie","Larbin","Lavf\\/","leakix\\.net","LeechFTP","LeechGet","letsencrypt","Lftp","LibVLC","LibWeb","Libwhisker","libwww","Licorne","Liferea\\/","Lighthouse","Lightspeedsystems","Likse","limber\\.io","Link Valet","LinkAlarm\\/","LinkAnalyser","linkCheck","linkdex","LinkExaminer","linkfluence","linkpeek","LinkPreview","LinkScan","LinksManager","LinkTiger","LinkWalker","link_thumbnailer","Lipperhey","Litemage_walker","livedoor ScreenShot","LoadImpactRload","localsearch-web","LongURL API","longurl-r-package","looid\\.com","looksystems\\.net","ltx71","lua-resty-http","Lucee \\(CFML Engine\\)","Lush Http Client","lwp-request","lwp-trivial","LWP::Simple","lycos","LYT\\.SR","L\\.webis","mabontland","MacOutlook\\/","Mag-Net","MagpieRSS","Mail::STS","MailChimp","Mail\\.Ru","Majestic12","makecontact\\/","Mandrill","MapperCmd","marketinggrader","MarkMonitor","MarkWatch","Mass Downloader","masscan\\/","Mata Hari","mattermost","Mediametric","Mediapartners-Google","mediawords","MegaIndex\\.ru","MeltwaterNews","Melvil Rawi","MemGator","Metaspinner","MetaURI","MFC_Tear_Sample","Microsearch","Microsoft Data Access","Microsoft Office","Microsoft Outlook","Microsoft Windows Network Diagnostics","Microsoft-WebDAV-MiniRedir","Microsoft\\.Data\\.Mashup","MIDown tool","MIIxpc","Mindjet","Miniature\\.io","Miniflux","mio_httpc","Miro-HttpClient","Mister PiX","mixdata dot com","mixed-content-scan","mixnode","Mnogosearch","mogimogi","Mojeek","Mojolicious \\(Perl\\)","monitis","Monitority\\/","Monit\\/","montastic","MonTools","Moreover","Morfeus Fucking Scanner","Morning Paper","MovableType","mowser","Mrcgiguy","Mr\\.4x3 Powered","MS Web Services Client Protocol","MSFrontPage","mShots","MuckRack\\/","muhstik-scan","MVAClient","MxToolbox\\/","myseosnapshot","nagios","Najdi\\.si","Name Intelligence","NameFo\\.com","Nameprotect","nationalarchives","Navroad","NearSite","Needle","Nessus","Net Vampire","NetAnts","NETCRAFT","NetLyzer","NetMechanic","NetNewsWire","Netpursual","netresearch","NetShelter ContentScan","Netsparker","NetSystemsResearch","nettle","NetTrack","Netvibes","NetZIP","Neustar WPM","NeutrinoAPI","NewRelicPinger","NewsBlur .*Finder","NewsGator","newsme","newspaper\\/","Nexgate Ruby Client","NG-Search","nghttp2","Nibbler","NICErsPRO","NihilScio","Nikto","nineconnections","NLNZ_IAHarvester","Nmap Scripting Engine","node-fetch","node-superagent","node-urllib","Nodemeter","NodePing","node\\.io","nominet\\.org\\.uk","nominet\\.uk","Norton-Safeweb","Notifixious","notifyninja","NotionEmbedder","nuhk","nutch","Nuzzel","nWormFeedFinder","nyawc\\/","Nymesis","NYU","Observatory\\/","Ocelli\\/","Octopus","oegp","Offline Explorer","Offline Navigator","OgScrper","okhttp","omgili","OMSC","Online Domain Tools","Open Source RSS","OpenCalaisSemanticProxy","Openfind","OpenLinkProfiler","Openstat\\/","OpenVAS","OPPO A33","Optimizer","Orbiter","OrgProbe\\/","orion-semantics","Outlook-Express","Outlook-iOS","Owler","Owlin","ownCloud News","ow\\.ly","OxfordCloudService","page scorer","Page Valet","page2rss","PageFreezer","PageGrabber","PagePeeker","PageScorer","Pagespeed\\/","PageThing","page_verifier","Panopta","panscient","Papa Foto","parsijoo","Pavuk","PayPal IPN","pcBrowser","Pcore-HTTP","PDF24 URL To PDF","Pearltrees","PECL::HTTP","peerindex","Peew","PeoplePal","Perlu -","PhantomJS Screenshoter","PhantomJS\\/","Photon\\/","php-requests","phpservermon","Pi-Monster","Picscout","Picsearch","PictureFinder","Pimonster","Pingability","PingAdmin\\.Ru","Pingdom","Pingoscope","PingSpot","ping\\.blo\\.gs","pinterest\\.com","Pixray","Pizilla","Plagger\\/","Pleroma ","Ploetz \\+ Zeller","Plukkie","plumanalytics","PocketImageCache","PocketParser","Pockey","PodcastAddict\\/","POE-Component-Client-HTTP","Polymail\\/","Pompos","Porkbun","Port Monitor","postano","postfix-mta-sts-resolver","PostmanRuntime","postplanner\\.com","PostPost","postrank","PowerPoint\\/","Prebid","Prerender","Priceonomics Analysis Engine","PrintFriendly","PritTorrent","Prlog","probethenet","Project ?25499","Project-Resonance","prospectb2b","Protopage","ProWebWalker","proximic","PRTG Network Monitor","pshtt, https scanning","PTST ","PTST\\/[0-9]+","Pump","Python-httplib2","python-httpx","python-requests","Python-urllib","Qirina Hurdler","QQDownload","QrafterPro","Qseero","Qualidator","QueryN Metasearch","queuedriver","quic-go-HTTP\\/","QuiteRSS","Quora Link Preview","Qwantify","Radian6","RadioPublicImageResizer","Railgun\\/","RankActive","RankFlex","RankSonicSiteAuditor","RapidLoad\\/","Re-re Studio","ReactorNetty","Readability","RealDownload","RealPlayer%20Downloader","RebelMouse","Recorder","RecurPost\\/","redback\\/","ReederForMac","Reeder\\/","ReGet","RepoMonkey","request\\.js","reqwest\\/","ResponseCodeTest","RestSharp","Riddler","Rival IQ","Robosourcer","Robozilla","ROI Hunter","RPT-HTTPClient","RSSMix\\/","RSSOwl","RyowlEngine","safe-agent-scanner","SalesIntelligent","Saleslift","SAP NetWeaver Application Server","SauceNAO","SBIder","sc-downloader","scalaj-http","Scamadviser-Frontend","ScanAlert","scan\\.lol","Scoop","scooter","ScopeContentAG-HTTP-Client","ScoutJet","ScoutURLMonitor","ScrapeBox Page Scanner","Scrapy","Screaming","ScreenShotService","Scrubby","Scrutiny\\/","Search37","searchenginepromotionhelp","Searchestate","SearchExpress","SearchSight","SearchWP","search\\.thunderstone","Seeker","semanticdiscovery","semanticjuice","Semiocast HTTP client","Semrush","Sendsay\\.Ru","sentry\\/","SEO Browser","Seo Servis","seo-nastroj\\.cz","seo4ajax","Seobility","SEOCentro","SeoCheck","SEOkicks","SEOlizer","Seomoz","SEOprofiler","seoscanners","SEOsearch","seositecheckup","SEOstats","servernfo","sexsearcher","Seznam","Shelob","Shodan","Shoppimon","ShopWiki","ShortLinkTranslate","shortURL lengthener","shrinktheweb","Sideqik","Siege","SimplePie","SimplyFast","Siphon","SISTRIX","Site Sucker","Site-Shot\\/","Site24x7","SiteBar","Sitebeam","Sitebulb\\/","SiteCondor","SiteExplorer","SiteGuardian","Siteimprove","SiteIndexed","Sitemap(s)? Generator","SitemapGenerator","SiteMonitor","Siteshooter B0t","SiteSnagger","SiteSucker","SiteTruth","Sitevigil","sitexy\\.com","SkypeUriPreview","Slack\\/","sli-systems\\.com","slider\\.com","slurp","SlySearch","SmartDownload","SMRF URL Expander","SMUrlExpander","Snake","Snappy","SnapSearch","Snarfer\\/","SniffRSS","sniptracker","Snoopy","SnowHaze Search","sogou web","SortSite","Sottopop","sovereign\\.ai","SpaceBison","SpamExperts","Spammen","Spanner","spaziodati","SPDYCheck","Specificfeeds","speedy","SPEng","Spinn3r","spray-can","Sprinklr ","spyonweb","sqlmap","Sqlworm","Sqworm","SSL Labs","ssl-tools","StackRambler","Statastico\\/","Statically-","StatusCake","Steeler","Stratagems Kumo","Stripe\\/","Stroke\\.cz","StudioFACA","StumbleUpon","suchen","Sucuri","summify","SuperHTTP","Surphace Scout","Suzuran","swcd ","Symfony BrowserKit","Symfony2 BrowserKit","Synapse\\/","Syndirella\\/","SynHttpClient-Built","Sysomos","sysscan","Szukacz","T0PHackTeam","tAkeOut","Tarantula\\/","Taringa UGC","TarmotGezgin","tchelebi\\.io","techiaith\\.cymru","Teleport","Telesoft","Telesphoreo","Telesphorep","Tenon\\.io","teoma","terrainformatica","Test Certificate Info","testuri","Tetrahedron","TextRazor Downloader","The Drop Reaper","The Expert HTML Source Viewer","The Intraformant","The Knowledge AI","theinternetrules","TheNomad","Thinklab","Thumbor","Thumbshots","ThumbSniper","timewe\\.net","TinEye","Tiny Tiny RSS","TLSProbe\\/","Toata","topster","touche\\.com","Traackr\\.com","tracemyfile","Trackuity","TrapitAgent","Trendiction","Trendsmap","trendspottr","truwoGPS","TryJsoup","TulipChain","Turingos","Turnitin","tweetedtimes","Tweetminster","Tweezler\\/","twibble","Twice","Twikle","Twingly","Twisted PageGetter","Typhoeus","ubermetrics-technologies","uclassify","UdmSearch","ultimate_sitemap_parser","unchaos","unirest-java","UniversalFeedParser","unshortenit","Unshorten\\.It","Untiny","UnwindFetchor","updated","updown\\.io daemon","Upflow","Uptimia","URL Verifier","Urlcheckr","URLitor","urlresolver","Urlstat","URLTester","UrlTrends Ranking Updater","URLy Warning","URLy\\.Warning","URL\\/Emacs","Vacuum","Vagabondo","VB Project","vBSEO","VCI","via ggpht\\.com GoogleImageProxy","Virusdie","visionutils","vkShare","VoidEYE","Voil","voltron","voyager\\/","VSAgent\\/","VSB-TUO\\/","Vulnbusters Meter","VYU2","w3af\\.org","W3C-checklink","W3C-mobileOK","W3C_Unicorn","WAC-OFU","WakeletLinkExpander","WallpapersHD","Wallpapers\\/[0-9]+","wangling","Wappalyzer","WatchMouse","WbSrch\\/","WDT\\.io","Web Auto","Web Collage","Web Enhancer","Web Fetch","Web Fuck","Web Pix","Web Sauger","Web spyder","Web Sucker","web-capture\\.net","Web-sniffer","Webalta","Webauskunft","WebAuto","WebCapture","WebClient\\/","webcollage","WebCookies","WebCopier","WebCorp","WebDataStats","WebDoc","WebEnhancer","WebFetch","WebFuck","WebGazer","WebGo IS","WebImageCollector","WebImages","WebIndex","webkit2png","WebLeacher","webmastercoffee","webmon ","WebPix","WebReaper","WebSauger","webscreenie","Webshag","Webshot","Website Quester","websitepulse agent","WebsiteQuester","Websnapr","WebSniffer","Webster","WebStripper","WebSucker","webtech\\/","WebThumbnail","Webthumb\\/","WebWhacker","WebZIP","WeLikeLinks","WEPA","WeSEE","wf84","Wfuzz\\/","wget","WhatCMS","WhatsApp","WhatsMyIP","WhatWeb","WhereGoes\\?","Whibse","WhoAPI\\/","WhoRunsCoinHive","Whynder Magnet","Windows-RSS-Platform","WinHttp-Autoproxy-Service","WinHTTP\\/","WinPodder","wkhtmlto","wmtips","Woko","Wolfram HTTPClient","woorankreview","WordPress\\/","WordupinfoSearch","Word\\/","worldping-api","wotbox","WP Engine Install Performance API","WP Rocket","wpif","wprecon\\.com survey","WPScan","wscheck","Wtrace","WWW-Collector-E","WWW-Mechanize","WWW::Document","WWW::Mechanize","WWWOFFLE","www\\.monitor\\.us","x09Mozilla","x22Mozilla","XaxisSemanticsClassifier","XenForo\\/","Xenu Link Sleuth","XING-contenttabreceiver","xpymep([0-9]?)\\.exe","Y!J-[A-Z][A-Z][A-Z]","Yaanb","yacy","Yahoo Link Preview","YahooCacheSystem","YahooMailProxy","YahooYSMcm","YandeG","Yandex(?!Search)","yanga","yeti","Yo-yo","Yoleo Consumer","yomins\\.com","yoogliFetchAgent","YottaaMonitor","Your-Website-Sucks","yourls\\.org","YoYs\\.net","YP\\.PL","Zabbix","Zade","Zao","Zauba","Zemanta Aggregator","Zend\\\\Http\\\\Client","Zend_Http_Client","Zermelo","Zeus ","zgrab","ZnajdzFoto","ZnHTTP","Zombie\\.js","Zoom\\.Mac","ZoteroTranslationServer","ZyBorg","[a-z0-9\\-_]*(bot|crawl|archiver|transcoder|spider|uptime|validator|fetcher|cron|checker|reader|extractor|monitoring|analyzer|scraper)"],e}return t=s,r&&o(t.prototype,r),n&&o(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}(r(6757));e.exports=u},8290:(e,t,r)=>{"use strict";function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function o(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function i(e,t){return i=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},i(e,t)}function a(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=s(e);if(t){var o=s(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return c(this,r)}}function c(e,t){if(t&&("object"===n(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function s(e){return s=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},s(e)}r(987),r(2274),r(3238),r(3214),r(5901),r(2189),r(1047),r(5769),r(7460),r(4078);var u=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");Object.defineProperty(e,"prototype",{value:Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),writable:!1}),t&&i(e,t)}(s,e);var t,r,n,c=a(s);function s(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),(e=c.call(this)).data=["Safari.[\\d\\.]*","Firefox.[\\d\\.]*"," Chrome.[\\d\\.]*","Chromium.[\\d\\.]*","MSIE.[\\d\\.]","Opera\\/[\\d\\.]*","Mozilla.[\\d\\.]*","AppleWebKit.[\\d\\.]*","Trident.[\\d\\.]*","Windows NT.[\\d\\.]*","Android [\\d\\.]*","Macintosh.","Ubuntu","Linux","[ ]Intel","Mac OS X [\\d_]*","(like )?Gecko(.[\\d\\.]*)?","KHTML,","CriOS.[\\d\\.]*","CPU iPhone OS ([0-9_])* like Mac OS X","CPU OS ([0-9_])* like Mac OS X","iPod","compatible","x86_..","i686","x64","X11","rv:[\\d\\.]*","Version.[\\d\\.]*","WOW64","Win64","Dalvik.[\\d\\.]*"," \\.NET CLR [\\d\\.]*","Presto.[\\d\\.]*","Media Center PC","BlackBerry","Build","Opera Mini\\/\\d{1,2}\\.\\d{1,2}\\.[\\d\\.]*\\/\\d{1,2}\\.","Opera"," \\.NET[\\d\\.]*","cubot","; M bot","; CRONO","; B bot","; IDbot","; ID bot","; POWER BOT",";"],e}return t=s,r&&o(t.prototype,r),n&&o(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}(r(6757));e.exports=u},4371:(e,t,r)=>{"use strict";function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function o(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function i(e,t){return i=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},i(e,t)}function a(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=s(e);if(t){var o=s(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return c(this,r)}}function c(e,t){if(t&&("object"===n(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function s(e){return s=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},s(e)}r(987),r(2274),r(3238),r(3214),r(5901),r(2189),r(1047),r(5769),r(7460),r(4078);var u=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");Object.defineProperty(e,"prototype",{value:Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),writable:!1}),t&&i(e,t)}(s,e);var t,r,n,c=a(s);function s(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),(e=c.call(this)).data=["USER-AGENT","X-OPERAMINI-PHONE-UA","X-DEVICE-USER-AGENT","X-ORIGINAL-USER-AGENT","X-SKYFIRE-PHONE","X-BOLT-PHONE-UA","DEVICE-STOCK-UA","X-UCBROWSER-DEVICE-UA","FROM","X-SCANNER"],e}return t=s,r&&o(t.prototype,r),n&&o(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}(r(6757));e.exports=u},6757:e=>{"use strict";function t(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var r=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}var r,n,o;return r=e,(n=[{key:"getAll",value:function(){return this.data}}])&&t(r.prototype,n),o&&t(r,o),Object.defineProperty(r,"prototype",{writable:!1}),e}();e.exports=r},5089:(e,t,r)=>{var n=r(2086),o=r(930),i=r(9268),a=n.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},1449:(e,t,r)=>{var n=r(2086),o=r(1956),i=r(9268),a=n.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},1378:(e,t,r)=>{var n=r(2086),o=r(930),i=n.String,a=n.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},8669:(e,t,r)=>{var n=r(211),o=r(4710),i=r(7826),a=n("unscopables"),c=Array.prototype;null==c[a]&&i.f(c,a,{configurable:!0,value:o(null)}),e.exports=function(e){c[a][e]=!0}},9966:(e,t,r)=>{"use strict";var n=r(3448).charAt;e.exports=function(e,t,r){return t+(r?n(e,t).length:1)}},6112:(e,t,r)=>{var n=r(2086),o=r(8759),i=n.String,a=n.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},1842:(e,t,r)=>{"use strict";var n=r(2086),o=r(8516),i=r(9413),a=r(3060),c=r(7850),s=r(2814),u=r(1956),l=r(2871),p=r(9720),f=r(3546),h=r(1667),d=n.Array;e.exports=function(e){var t=a(e),r=u(this),n=arguments.length,y=n>1?arguments[1]:void 0,g=void 0!==y;g&&(y=o(y,n>2?arguments[2]:void 0));var v,b,m,S,x,w,P=h(t),k=0;if(!P||this==d&&s(P))for(v=l(t),b=r?new this(v):d(v);v>k;k++)w=g?y(t[k],k):t[k],p(b,k,w);else for(x=(S=f(t,P)).next,b=r?new this:[];!(m=i(x,S)).done;k++)w=g?c(S,y,[m.value,k],!0):m.value,p(b,k,w);return b.length=k,b}},6198:(e,t,r)=>{var n=r(4088),o=r(7740),i=r(2871),a=function(e){return function(t,r,a){var c,s=n(t),u=i(s),l=o(a,u);if(e&&r!=r){for(;u>l;)if((c=s[l++])!=c)return!0}else for(;u>l;l++)if((e||l in s)&&s[l]===r)return e||l||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},8062:(e,t,r)=>{var n=r(8516),o=r(8240),i=r(5974),a=r(3060),c=r(2871),s=r(5574),u=o([].push),l=function(e){var t=1==e,r=2==e,o=3==e,l=4==e,p=6==e,f=7==e,h=5==e||p;return function(d,y,g,v){for(var b,m,S=a(d),x=i(S),w=n(y,g),P=c(x),k=0,O=v||s,T=t?O(d,P):r||f?O(d,0):void 0;P>k;k++)if((h||k in x)&&(m=w(b=x[k],k,S),e))if(t)T[k]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return k;case 2:u(T,b)}else switch(e){case 4:return!1;case 7:u(T,b)}return p?-1:o||l?l:T}};e.exports={forEach:l(0),map:l(1),filter:l(2),some:l(3),every:l(4),find:l(5),findIndex:l(6),filterReject:l(7)}},9955:(e,t,r)=>{var n=r(3677),o=r(211),i=r(1448),a=o("species");e.exports=function(e){return i>=51||!n((function(){var t=[];return(t.constructor={})[a]=function(){return{foo:1}},1!==t[e](Boolean).foo}))}},2802:(e,t,r)=>{"use strict";var n=r(3677);e.exports=function(e,t){var r=[][e];return!!r&&n((function(){r.call(null,t||function(){throw 1},1)}))}},3329:(e,t,r)=>{var n=r(2086),o=r(7740),i=r(2871),a=r(9720),c=n.Array,s=Math.max;e.exports=function(e,t,r){for(var n=i(e),u=o(t,n),l=o(void 0===r?n:r,n),p=c(s(l-u,0)),f=0;u<l;u++,f++)a(p,f,e[u]);return p.length=f,p}},745:(e,t,r)=>{var n=r(8240);e.exports=n([].slice)},8789:(e,t,r)=>{var n=r(2086),o=r(6526),i=r(1956),a=r(8759),c=r(211)("species"),s=n.Array;e.exports=function(e){var t;return o(e)&&(t=e.constructor,(i(t)&&(t===s||o(t.prototype))||a(t)&&null===(t=t[c]))&&(t=void 0)),void 0===t?s:t}},5574:(e,t,r)=>{var n=r(8789);e.exports=function(e,t){return new(n(e))(0===t?0:t)}},7850:(e,t,r)=>{var n=r(6112),o=r(6737);e.exports=function(e,t,r,i){try{return i?t(n(r)[0],r[1]):t(r)}catch(t){o(e,"throw",t)}}},8939:(e,t,r)=>{var n=r(211)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[n]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,t){if(!t&&!o)return!1;var r=!1;try{var i={};i[n]=function(){return{next:function(){return{done:r=!0}}}},e(i)}catch(e){}return r}},2306:(e,t,r)=>{var n=r(8240),o=n({}.toString),i=n("".slice);e.exports=function(e){return i(o(e),8,-1)}},375:(e,t,r)=>{var n=r(2086),o=r(2371),i=r(930),a=r(2306),c=r(211)("toStringTag"),s=n.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var t,r,n;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(r=function(e,t){try{return e[t]}catch(e){}}(t=s(e),c))?r:u?a(t):"Object"==(n=a(t))&&i(t.callee)?"Arguments":n}},8474:(e,t,r)=>{var n=r(9606),o=r(6095),i=r(4399),a=r(7826);e.exports=function(e,t,r){for(var c=o(t),s=a.f,u=i.f,l=0;l<c.length;l++){var p=c[l];n(e,p)||r&&n(r,p)||s(e,p,u(t,p))}}},7209:(e,t,r)=>{var n=r(3677);e.exports=!n((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},471:(e,t,r)=>{"use strict";var n=r(3083).IteratorPrototype,o=r(4710),i=r(5736),a=r(914),c=r(7719),s=function(){return this};e.exports=function(e,t,r,u){var l=t+" Iterator";return e.prototype=o(n,{next:i(+!u,r)}),a(e,l,!1,!0),c[l]=s,e}},2585:(e,t,r)=>{var n=r(5283),o=r(7826),i=r(5736);e.exports=n?function(e,t,r){return o.f(e,t,i(1,r))}:function(e,t,r){return e[t]=r,e}},5736:e=>{e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},9720:(e,t,r)=>{"use strict";var n=r(2258),o=r(7826),i=r(5736);e.exports=function(e,t,r){var a=n(t);a in e?o.f(e,a,i(0,r)):e[a]=r}},8432:(e,t,r)=>{"use strict";var n=r(1695),o=r(9413),i=r(3296),a=r(4398),c=r(930),s=r(471),u=r(2130),l=r(7530),p=r(914),f=r(2585),h=r(1007),d=r(211),y=r(7719),g=r(3083),v=a.PROPER,b=a.CONFIGURABLE,m=g.IteratorPrototype,S=g.BUGGY_SAFARI_ITERATORS,x=d("iterator"),w="keys",P="values",k="entries",O=function(){return this};e.exports=function(e,t,r,a,d,g,T){s(r,t,a);var A,C,R,E=function(e){if(e===d&&L)return L;if(!S&&e in W)return W[e];switch(e){case w:case P:case k:return function(){return new r(this,e)}}return function(){return new r(this)}},M=t+" Iterator",I=!1,W=e.prototype,j=W[x]||W["@@iterator"]||d&&W[d],L=!S&&j||E(d),G="Array"==t&&W.entries||j;if(G&&(A=u(G.call(new e)))!==Object.prototype&&A.next&&(i||u(A)===m||(l?l(A,m):c(A[x])||h(A,x,O)),p(A,M,!0,!0),i&&(y[M]=O)),v&&d==P&&j&&j.name!==P&&(!i&&b?f(W,"name",P):(I=!0,L=function(){return o(j,this)})),d)if(C={values:E(P),keys:g?L:E(w),entries:E(k)},T)for(R in C)(S||I||!(R in W))&&h(W,R,C[R]);else n({target:t,proto:!0,forced:S||I},C);return i&&!T||W[x]===L||h(W,x,L,{name:d}),y[t]=L,C}},4145:(e,t,r)=>{var n=r(9775),o=r(9606),i=r(9251),a=r(7826).f;e.exports=function(e){var t=n.Symbol||(n.Symbol={});o(t,e)||a(t,e,{value:i.f(e)})}},5283:(e,t,r)=>{var n=r(3677);e.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},821:(e,t,r)=>{var n=r(2086),o=r(8759),i=n.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},933:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},3526:(e,t,r)=>{var n=r(821)("span").classList,o=n&&n.constructor&&n.constructor.prototype;e.exports=o===Object.prototype?void 0:o},4999:(e,t,r)=>{var n=r(563);e.exports=n("navigator","userAgent")||""},1448:(e,t,r)=>{var n,o,i=r(2086),a=r(4999),c=i.process,s=i.Deno,u=c&&c.versions||s&&s.version,l=u&&u.v8;l&&(o=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(o=+n[1]),e.exports=o},8684:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},1695:(e,t,r)=>{var n=r(2086),o=r(4399).f,i=r(2585),a=r(1007),c=r(3648),s=r(8474),u=r(7189);e.exports=function(e,t){var r,l,p,f,h,d=e.target,y=e.global,g=e.stat;if(r=y?n:g?n[d]||c(d,{}):(n[d]||{}).prototype)for(l in t){if(f=t[l],p=e.noTargetGet?(h=o(r,l))&&h.value:r[l],!u(y?l:d+(g?".":"#")+l,e.forced)&&void 0!==p){if(typeof f==typeof p)continue;s(f,p)}(e.sham||p&&p.sham)&&i(f,"sham",!0),a(r,l,f,e)}}},3677:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},2331:(e,t,r)=>{"use strict";r(2077);var n=r(8240),o=r(1007),i=r(4861),a=r(3677),c=r(211),s=r(2585),u=c("species"),l=RegExp.prototype;e.exports=function(e,t,r,p){var f=c(e),h=!a((function(){var t={};return t[f]=function(){return 7},7!=""[e](t)})),d=h&&!a((function(){var t=!1,r=/a/;return"split"===e&&((r={}).constructor={},r.constructor[u]=function(){return r},r.flags="",r[f]=/./[f]),r.exec=function(){return t=!0,null},r[f](""),!t}));if(!h||!d||r){var y=n(/./[f]),g=t(f,""[e],(function(e,t,r,o,a){var c=n(e),s=t.exec;return s===i||s===l.exec?h&&!a?{done:!0,value:y(t,r,o)}:{done:!0,value:c(r,t,o)}:{done:!1}}));o(String.prototype,e,g[0]),o(l,f,g[1])}p&&s(l[f],"sham",!0)}},7258:e=>{var t=Function.prototype,r=t.apply,n=t.bind,o=t.call;e.exports="object"==typeof Reflect&&Reflect.apply||(n?o.bind(r):function(){return o.apply(r,arguments)})},8516:(e,t,r)=>{var n=r(8240),o=r(5089),i=n(n.bind);e.exports=function(e,t){return o(e),void 0===t?e:i?i(e,t):function(){return e.apply(t,arguments)}}},2395:(e,t,r)=>{"use strict";var n=r(2086),o=r(8240),i=r(5089),a=r(8759),c=r(9606),s=r(745),u=n.Function,l=o([].concat),p=o([].join),f={},h=function(e,t,r){if(!c(f,t)){for(var n=[],o=0;o<t;o++)n[o]="a["+o+"]";f[t]=u("C,a","return new C("+p(n,",")+")")}return f[t](e,r)};e.exports=u.bind||function(e){var t=i(this),r=t.prototype,n=s(arguments,1),o=function(){var r=l(n,s(arguments));return this instanceof o?h(t,r.length,r):t.apply(e,r)};return a(r)&&(o.prototype=r),o}},9413:e=>{var t=Function.prototype.call;e.exports=t.bind?t.bind(t):function(){return t.apply(t,arguments)}},4398:(e,t,r)=>{var n=r(5283),o=r(9606),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,c=o(i,"name"),s=c&&"something"===function(){}.name,u=c&&(!n||n&&a(i,"name").configurable);e.exports={EXISTS:c,PROPER:s,CONFIGURABLE:u}},8240:e=>{var t=Function.prototype,r=t.bind,n=t.call,o=r&&r.bind(n);e.exports=r?function(e){return e&&o(n,e)}:function(e){return e&&function(){return n.apply(e,arguments)}}},563:(e,t,r)=>{var n=r(2086),o=r(930),i=function(e){return o(e)?e:void 0};e.exports=function(e,t){return arguments.length<2?i(n[e]):n[e]&&n[e][t]}},1667:(e,t,r)=>{var n=r(375),o=r(2964),i=r(7719),a=r(211)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[n(e)]}},3546:(e,t,r)=>{var n=r(2086),o=r(9413),i=r(5089),a=r(6112),c=r(9268),s=r(1667),u=n.TypeError;e.exports=function(e,t){var r=arguments.length<2?s(e):t;if(i(r))return a(o(r,e));throw u(c(e)+" is not iterable")}},2964:(e,t,r)=>{var n=r(5089);e.exports=function(e,t){var r=e[t];return null==r?void 0:n(r)}},8509:(e,t,r)=>{var n=r(8240),o=r(3060),i=Math.floor,a=n("".charAt),c=n("".replace),s=n("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,l=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,t,r,n,p,f){var h=r+e.length,d=n.length,y=l;return void 0!==p&&(p=o(p),y=u),c(f,y,(function(o,c){var u;switch(a(c,0)){case"$":return"$";case"&":return e;case"`":return s(t,0,r);case"'":return s(t,h);case"<":u=p[s(c,1,-1)];break;default:var l=+c;if(0===l)return o;if(l>d){var f=i(l/10);return 0===f?o:f<=d?void 0===n[f-1]?a(c,1):n[f-1]+a(c,1):o}u=n[l-1]}return void 0===u?"":u}))}},2086:(e,t,r)=>{var n=function(e){return e&&e.Math==Math&&e};e.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||function(){return this}()||Function("return this")()},9606:(e,t,r)=>{var n=r(8240),o=r(3060),i=n({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return i(o(e),t)}},7153:e=>{e.exports={}},5963:(e,t,r)=>{var n=r(563);e.exports=n("document","documentElement")},6761:(e,t,r)=>{var n=r(5283),o=r(3677),i=r(821);e.exports=!n&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},5974:(e,t,r)=>{var n=r(2086),o=r(8240),i=r(3677),a=r(2306),c=n.Object,s=o("".split);e.exports=i((function(){return!c("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?s(e,""):c(e)}:c},5070:(e,t,r)=>{var n=r(930),o=r(8759),i=r(7530);e.exports=function(e,t,r){var a,c;return i&&n(a=t.constructor)&&a!==r&&o(c=a.prototype)&&c!==r.prototype&&i(e,c),e}},9277:(e,t,r)=>{var n=r(8240),o=r(930),i=r(4489),a=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},3278:(e,t,r)=>{var n,o,i,a=r(9316),c=r(2086),s=r(8240),u=r(8759),l=r(2585),p=r(9606),f=r(4489),h=r(8944),d=r(7153),y="Object already initialized",g=c.TypeError,v=c.WeakMap;if(a||f.state){var b=f.state||(f.state=new v),m=s(b.get),S=s(b.has),x=s(b.set);n=function(e,t){if(S(b,e))throw new g(y);return t.facade=e,x(b,e,t),t},o=function(e){return m(b,e)||{}},i=function(e){return S(b,e)}}else{var w=h("state");d[w]=!0,n=function(e,t){if(p(e,w))throw new g(y);return t.facade=e,l(e,w,t),t},o=function(e){return p(e,w)?e[w]:{}},i=function(e){return p(e,w)}}e.exports={set:n,get:o,has:i,enforce:function(e){return i(e)?o(e):n(e,{})},getterFor:function(e){return function(t){var r;if(!u(t)||(r=o(t)).type!==e)throw g("Incompatible receiver, "+e+" required");return r}}}},2814:(e,t,r)=>{var n=r(211),o=r(7719),i=n("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},6526:(e,t,r)=>{var n=r(2306);e.exports=Array.isArray||function(e){return"Array"==n(e)}},930:e=>{e.exports=function(e){return"function"==typeof e}},1956:(e,t,r)=>{var n=r(8240),o=r(3677),i=r(930),a=r(375),c=r(563),s=r(9277),u=function(){},l=[],p=c("Reflect","construct"),f=/^\s*(?:class|function)\b/,h=n(f.exec),d=!f.exec(u),y=function(e){if(!i(e))return!1;try{return p(u,l,e),!0}catch(e){return!1}},g=function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return d||!!h(f,s(e))}catch(e){return!0}};g.sham=!0,e.exports=!p||o((function(){var e;return y(y.call)||!y(Object)||!y((function(){e=!0}))||e}))?g:y},7189:(e,t,r)=>{var n=r(3677),o=r(930),i=/#|\.prototype\./,a=function(e,t){var r=s[c(e)];return r==l||r!=u&&(o(t)?n(t):!!t)},c=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},s=a.data={},u=a.NATIVE="N",l=a.POLYFILL="P";e.exports=a},8759:(e,t,r)=>{var n=r(930);e.exports=function(e){return"object"==typeof e?null!==e:n(e)}},3296:e=>{e.exports=!1},7994:(e,t,r)=>{var n=r(8759),o=r(2306),i=r(211)("match");e.exports=function(e){var t;return n(e)&&(void 0!==(t=e[i])?!!t:"RegExp"==o(e))}},2071:(e,t,r)=>{var n=r(2086),o=r(563),i=r(930),a=r(5516),c=r(1876),s=n.Object;e.exports=c?function(e){return"symbol"==typeof e}:function(e){var t=o("Symbol");return i(t)&&a(t.prototype,s(e))}},6737:(e,t,r)=>{var n=r(9413),o=r(6112),i=r(2964);e.exports=function(e,t,r){var a,c;o(e);try{if(!(a=i(e,"return"))){if("throw"===t)throw r;return r}a=n(a,e)}catch(e){c=!0,a=e}if("throw"===t)throw r;if(c)throw a;return o(a),r}},3083:(e,t,r)=>{"use strict";var n,o,i,a=r(3677),c=r(930),s=r(4710),u=r(2130),l=r(1007),p=r(211),f=r(3296),h=p("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(n=o):d=!0),null==n||a((function(){var e={};return n[h].call(e)!==e}))?n={}:f&&(n=s(n)),c(n[h])||l(n,h,(function(){return this})),e.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:d}},7719:e=>{e.exports={}},2871:(e,t,r)=>{var n=r(4005);e.exports=function(e){return n(e.length)}},3193:(e,t,r)=>{var n=r(1448),o=r(3677);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},9316:(e,t,r)=>{var n=r(2086),o=r(930),i=r(9277),a=n.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},4710:(e,t,r)=>{var n,o=r(6112),i=r(7711),a=r(8684),c=r(7153),s=r(5963),u=r(821),l=r(8944),p=l("IE_PROTO"),f=function(){},h=function(e){return"<script>"+e+"</"+"script>"},d=function(e){e.write(h("")),e.close();var t=e.parentWindow.Object;return e=null,t},y=function(){try{n=new ActiveXObject("htmlfile")}catch(e){}var e,t;y="undefined"!=typeof document?document.domain&&n?d(n):((t=u("iframe")).style.display="none",s.appendChild(t),t.src=String("javascript:"),(e=t.contentWindow.document).open(),e.write(h("document.F=Object")),e.close(),e.F):d(n);for(var r=a.length;r--;)delete y.prototype[a[r]];return y()};c[p]=!0,e.exports=Object.create||function(e,t){var r;return null!==e?(f.prototype=o(e),r=new f,f.prototype=null,r[p]=e):r=y(),void 0===t?r:i(r,t)}},7711:(e,t,r)=>{var n=r(5283),o=r(7826),i=r(6112),a=r(4088),c=r(8779);e.exports=n?Object.defineProperties:function(e,t){i(e);for(var r,n=a(t),s=c(t),u=s.length,l=0;u>l;)o.f(e,r=s[l++],n[r]);return e}},7826:(e,t,r)=>{var n=r(2086),o=r(5283),i=r(6761),a=r(6112),c=r(2258),s=n.TypeError,u=Object.defineProperty;t.f=o?u:function(e,t,r){if(a(e),t=c(t),a(r),i)try{return u(e,t,r)}catch(e){}if("get"in r||"set"in r)throw s("Accessors not supported");return"value"in r&&(e[t]=r.value),e}},4399:(e,t,r)=>{var n=r(5283),o=r(9413),i=r(7446),a=r(5736),c=r(4088),s=r(2258),u=r(9606),l=r(6761),p=Object.getOwnPropertyDescriptor;t.f=n?p:function(e,t){if(e=c(e),t=s(t),l)try{return p(e,t)}catch(e){}if(u(e,t))return a(!o(i.f,e,t),e[t])}},3226:(e,t,r)=>{var n=r(2306),o=r(4088),i=r(62).f,a=r(3329),c="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return c&&"Window"==n(e)?function(e){try{return i(e)}catch(e){return a(c)}}(e):i(o(e))}},62:(e,t,r)=>{var n=r(1352),o=r(8684).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return n(e,o)}},6952:(e,t)=>{t.f=Object.getOwnPropertySymbols},2130:(e,t,r)=>{var n=r(2086),o=r(9606),i=r(930),a=r(3060),c=r(8944),s=r(7209),u=c("IE_PROTO"),l=n.Object,p=l.prototype;e.exports=s?l.getPrototypeOf:function(e){var t=a(e);if(o(t,u))return t[u];var r=t.constructor;return i(r)&&t instanceof r?r.prototype:t instanceof l?p:null}},5516:(e,t,r)=>{var n=r(8240);e.exports=n({}.isPrototypeOf)},1352:(e,t,r)=>{var n=r(8240),o=r(9606),i=r(4088),a=r(6198).indexOf,c=r(7153),s=n([].push);e.exports=function(e,t){var r,n=i(e),u=0,l=[];for(r in n)!o(c,r)&&o(n,r)&&s(l,r);for(;t.length>u;)o(n,r=t[u++])&&(~a(l,r)||s(l,r));return l}},8779:(e,t,r)=>{var n=r(1352),o=r(8684);e.exports=Object.keys||function(e){return n(e,o)}},7446:(e,t)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);t.f=o?function(e){var t=n(this,e);return!!t&&t.enumerable}:r},7530:(e,t,r)=>{var n=r(8240),o=r(6112),i=r(1378);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,r={};try{(e=n(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(r,[]),t=r instanceof Array}catch(e){}return function(r,n){return o(r),i(n),t?e(r,n):r.__proto__=n,r}}():void 0)},999:(e,t,r)=>{"use strict";var n=r(2371),o=r(375);e.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},7999:(e,t,r)=>{var n=r(2086),o=r(9413),i=r(930),a=r(8759),c=n.TypeError;e.exports=function(e,t){var r,n;if("string"===t&&i(r=e.toString)&&!a(n=o(r,e)))return n;if(i(r=e.valueOf)&&!a(n=o(r,e)))return n;if("string"!==t&&i(r=e.toString)&&!a(n=o(r,e)))return n;throw c("Can't convert object to primitive value")}},6095:(e,t,r)=>{var n=r(563),o=r(8240),i=r(62),a=r(6952),c=r(6112),s=o([].concat);e.exports=n("Reflect","ownKeys")||function(e){var t=i.f(c(e)),r=a.f;return r?s(t,r(e)):t}},9775:(e,t,r)=>{var n=r(2086);e.exports=n},1007:(e,t,r)=>{var n=r(2086),o=r(930),i=r(9606),a=r(2585),c=r(3648),s=r(9277),u=r(3278),l=r(4398).CONFIGURABLE,p=u.get,f=u.enforce,h=String(String).split("String");(e.exports=function(e,t,r,s){var u,p=!!s&&!!s.unsafe,d=!!s&&!!s.enumerable,y=!!s&&!!s.noTargetGet,g=s&&void 0!==s.name?s.name:t;o(r)&&("Symbol("===String(g).slice(0,7)&&(g="["+String(g).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!i(r,"name")||l&&r.name!==g)&&a(r,"name",g),(u=f(r)).source||(u.source=h.join("string"==typeof g?g:""))),e!==n?(p?!y&&e[t]&&(d=!0):delete e[t],d?e[t]=r:a(e,t,r)):d?e[t]=r:c(t,r)})(Function.prototype,"toString",(function(){return o(this)&&p(this).source||s(this)}))},1189:(e,t,r)=>{var n=r(2086),o=r(9413),i=r(6112),a=r(930),c=r(2306),s=r(4861),u=n.TypeError;e.exports=function(e,t){var r=e.exec;if(a(r)){var n=o(r,e,t);return null!==n&&i(n),n}if("RegExp"===c(e))return o(s,e,t);throw u("RegExp#exec called on incompatible receiver")}},4861:(e,t,r)=>{"use strict";var n,o,i=r(9413),a=r(8240),c=r(4059),s=r(4276),u=r(4930),l=r(9197),p=r(4710),f=r(3278).get,h=r(2582),d=r(2910),y=l("native-string-replace",String.prototype.replace),g=RegExp.prototype.exec,v=g,b=a("".charAt),m=a("".indexOf),S=a("".replace),x=a("".slice),w=(o=/b*/g,i(g,n=/a/,"a"),i(g,o,"a"),0!==n.lastIndex||0!==o.lastIndex),P=u.BROKEN_CARET,k=void 0!==/()??/.exec("")[1];(w||k||P||h||d)&&(v=function(e){var t,r,n,o,a,u,l,h=this,d=f(h),O=c(e),T=d.raw;if(T)return T.lastIndex=h.lastIndex,t=i(v,T,O),h.lastIndex=T.lastIndex,t;var A=d.groups,C=P&&h.sticky,R=i(s,h),E=h.source,M=0,I=O;if(C&&(R=S(R,"y",""),-1===m(R,"g")&&(R+="g"),I=x(O,h.lastIndex),h.lastIndex>0&&(!h.multiline||h.multiline&&"\n"!==b(O,h.lastIndex-1))&&(E="(?: "+E+")",I=" "+I,M++),r=new RegExp("^(?:"+E+")",R)),k&&(r=new RegExp("^"+E+"$(?!\\s)",R)),w&&(n=h.lastIndex),o=i(g,C?r:h,I),C?o?(o.input=x(o.input,M),o[0]=x(o[0],M),o.index=h.lastIndex,h.lastIndex+=o[0].length):h.lastIndex=0:w&&o&&(h.lastIndex=h.global?o.index+o[0].length:n),k&&o&&o.length>1&&i(y,o[0],r,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(o[a]=void 0)})),o&&A)for(o.groups=u=p(null),a=0;a<A.length;a++)u[(l=A[a])[0]]=o[l[1]];return o}),e.exports=v},4276:(e,t,r)=>{"use strict";var n=r(6112);e.exports=function(){var e=n(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.dotAll&&(t+="s"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},4930:(e,t,r)=>{var n=r(3677),o=r(2086).RegExp,i=n((function(){var e=o("a","y");return e.lastIndex=2,null!=e.exec("abcd")})),a=i||n((function(){return!o("a","y").sticky})),c=i||n((function(){var e=o("^r","gy");return e.lastIndex=2,null!=e.exec("str")}));e.exports={BROKEN_CARET:c,MISSED_STICKY:a,UNSUPPORTED_Y:i}},2582:(e,t,r)=>{var n=r(3677),o=r(2086).RegExp;e.exports=n((function(){var e=o(".","s");return!(e.dotAll&&e.exec("\n")&&"s"===e.flags)}))},2910:(e,t,r)=>{var n=r(3677),o=r(2086).RegExp;e.exports=n((function(){var e=o("(?<a>b)","g");return"b"!==e.exec("b").groups.a||"bc"!=="b".replace(e,"$<a>c")}))},9586:(e,t,r)=>{var n=r(2086).TypeError;e.exports=function(e){if(null==e)throw n("Can't call method on "+e);return e}},3648:(e,t,r)=>{var n=r(2086),o=Object.defineProperty;e.exports=function(e,t){try{o(n,e,{value:t,configurable:!0,writable:!0})}catch(r){n[e]=t}return t}},7420:(e,t,r)=>{"use strict";var n=r(563),o=r(7826),i=r(211),a=r(5283),c=i("species");e.exports=function(e){var t=n(e),r=o.f;a&&t&&!t[c]&&r(t,c,{configurable:!0,get:function(){return this}})}},914:(e,t,r)=>{var n=r(7826).f,o=r(9606),i=r(211)("toStringTag");e.exports=function(e,t,r){e&&!r&&(e=e.prototype),e&&!o(e,i)&&n(e,i,{configurable:!0,value:t})}},8944:(e,t,r)=>{var n=r(9197),o=r(5422),i=n("keys");e.exports=function(e){return i[e]||(i[e]=o(e))}},4489:(e,t,r)=>{var n=r(2086),o=r(3648),i="__core-js_shared__",a=n[i]||o(i,{});e.exports=a},9197:(e,t,r)=>{var n=r(3296),o=r(4489);(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.20.1",mode:n?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},3448:(e,t,r)=>{var n=r(8240),o=r(9502),i=r(4059),a=r(9586),c=n("".charAt),s=n("".charCodeAt),u=n("".slice),l=function(e){return function(t,r){var n,l,p=i(a(t)),f=o(r),h=p.length;return f<0||f>=h?e?"":void 0:(n=s(p,f))<55296||n>56319||f+1===h||(l=s(p,f+1))<56320||l>57343?e?c(p,f):n:e?u(p,f,f+2):l-56320+(n-55296<<10)+65536}};e.exports={codeAt:l(!1),charAt:l(!0)}},4274:(e,t,r)=>{var n=r(4398).PROPER,o=r(3677),i=r(9439);e.exports=function(e){return o((function(){return!!i[e]()||"
"!=="
"[e]()||n&&i[e].name!==e}))}},4080:(e,t,r)=>{var n=r(8240),o=r(9586),i=r(4059),a=r(9439),c=n("".replace),s="["+a+"]",u=RegExp("^"+s+s+"*"),l=RegExp(s+s+"*$"),p=function(e){return function(t){var r=i(o(t));return 1&e&&(r=c(r,u,"")),2&e&&(r=c(r,l,"")),r}};e.exports={start:p(1),end:p(2),trim:p(3)}},7740:(e,t,r)=>{var n=r(9502),o=Math.max,i=Math.min;e.exports=function(e,t){var r=n(e);return r<0?o(r+t,0):i(r,t)}},4088:(e,t,r)=>{var n=r(5974),o=r(9586);e.exports=function(e){return n(o(e))}},9502:e=>{var t=Math.ceil,r=Math.floor;e.exports=function(e){var n=+e;return n!=n||0===n?0:(n>0?r:t)(n)}},4005:(e,t,r)=>{var n=r(9502),o=Math.min;e.exports=function(e){return e>0?o(n(e),9007199254740991):0}},3060:(e,t,r)=>{var n=r(2086),o=r(9586),i=n.Object;e.exports=function(e){return i(o(e))}},1288:(e,t,r)=>{var n=r(2086),o=r(9413),i=r(8759),a=r(2071),c=r(2964),s=r(7999),u=r(211),l=n.TypeError,p=u("toPrimitive");e.exports=function(e,t){if(!i(e)||a(e))return e;var r,n=c(e,p);if(n){if(void 0===t&&(t="default"),r=o(n,e,t),!i(r)||a(r))return r;throw l("Can't convert object to primitive value")}return void 0===t&&(t="number"),s(e,t)}},2258:(e,t,r)=>{var n=r(1288),o=r(2071);e.exports=function(e){var t=n(e,"string");return o(t)?t:t+""}},2371:(e,t,r)=>{var n={};n[r(211)("toStringTag")]="z",e.exports="[object z]"===String(n)},4059:(e,t,r)=>{var n=r(2086),o=r(375),i=n.String;e.exports=function(e){if("Symbol"===o(e))throw TypeError("Cannot convert a Symbol value to a string");return i(e)}},9268:(e,t,r)=>{var n=r(2086).String;e.exports=function(e){try{return n(e)}catch(e){return"Object"}}},5422:(e,t,r)=>{var n=r(8240),o=0,i=Math.random(),a=n(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+a(++o+i,36)}},1876:(e,t,r)=>{var n=r(3193);e.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},9251:(e,t,r)=>{var n=r(211);t.f=n},211:(e,t,r)=>{var n=r(2086),o=r(9197),i=r(9606),a=r(5422),c=r(3193),s=r(1876),u=o("wks"),l=n.Symbol,p=l&&l.for,f=s?l:l&&l.withoutSetter||a;e.exports=function(e){if(!i(u,e)||!c&&"string"!=typeof u[e]){var t="Symbol."+e;c&&i(l,e)?u[e]=l[e]:u[e]=s&&p?p(t):f(t)}return u[e]}},9439:e=>{e.exports="\t\n\v\f\r \u2028\u2029\ufeff"},5610:(e,t,r)=>{var n=r(1695),o=r(1842);n({target:"Array",stat:!0,forced:!r(8939)((function(e){Array.from(e)}))},{from:o})},7471:(e,t,r)=>{"use strict";var n=r(1695),o=r(8240),i=r(6198).indexOf,a=r(2802),c=o([].indexOf),s=!!c&&1/c([1],1,-0)<0,u=a("indexOf");n({target:"Array",proto:!0,forced:s||!u},{indexOf:function(e){var t=arguments.length>1?arguments[1]:void 0;return s?c(this,e,t)||0:i(this,e,t)}})},5769:(e,t,r)=>{"use strict";var n=r(4088),o=r(8669),i=r(7719),a=r(3278),c=r(7826).f,s=r(8432),u=r(3296),l=r(5283),p="Array Iterator",f=a.set,h=a.getterFor(p);e.exports=s(Array,"Array",(function(e,t){f(this,{type:p,target:n(e),index:0,kind:t})}),(function(){var e=h(this),t=e.target,r=e.kind,n=e.index++;return!t||n>=t.length?(e.target=void 0,{value:void 0,done:!0}):"keys"==r?{value:n,done:!1}:"values"==r?{value:t[n],done:!1}:{value:[n,t[n]],done:!1}}),"values");var d=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!u&&l&&"values"!==d.name)try{c(d,"name",{value:"values"})}catch(e){}},5613:(e,t,r)=>{"use strict";var n=r(1695),o=r(8240),i=r(5974),a=r(4088),c=r(2802),s=o([].join),u=i!=Object,l=c("join",",");n({target:"Array",proto:!0,forced:u||!l},{join:function(e){return s(a(this),void 0===e?",":e)}})},2410:(e,t,r)=>{"use strict";var n=r(1695),o=r(2086),i=r(6526),a=r(1956),c=r(8759),s=r(7740),u=r(2871),l=r(4088),p=r(9720),f=r(211),h=r(9955),d=r(745),y=h("slice"),g=f("species"),v=o.Array,b=Math.max;n({target:"Array",proto:!0,forced:!y},{slice:function(e,t){var r,n,o,f=l(this),h=u(f),y=s(e,h),m=s(void 0===t?h:t,h);if(i(f)&&(r=f.constructor,(a(r)&&(r===v||i(r.prototype))||c(r)&&null===(r=r[g]))&&(r=void 0),r===v||void 0===r))return d(f,y,m);for(n=new(void 0===r?v:r)(b(m-y,0)),o=0;y<m;y++,o++)y in f&&p(n,o,f[y]);return n.length=o,n}})},3352:(e,t,r)=>{var n=r(5283),o=r(4398).EXISTS,i=r(8240),a=r(7826).f,c=Function.prototype,s=i(c.toString),u=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,l=i(u.exec);n&&!o&&a(c,"name",{configurable:!0,get:function(){try{return l(u,s(this))[1]}catch(e){return""}}})},2274:(e,t,r)=>{var n=r(1695),o=r(3677),i=r(3060),a=r(2130),c=r(7209);n({target:"Object",stat:!0,forced:o((function(){a(1)})),sham:!c},{getPrototypeOf:function(e){return a(i(e))}})},2571:(e,t,r)=>{var n=r(1695),o=r(3060),i=r(8779);n({target:"Object",stat:!0,forced:r(3677)((function(){i(1)}))},{keys:function(e){return i(o(e))}})},987:(e,t,r)=>{r(1695)({target:"Object",stat:!0},{setPrototypeOf:r(7530)})},3238:(e,t,r)=>{var n=r(2371),o=r(1007),i=r(999);n||o(Object.prototype,"toString",i,{unsafe:!0})},3214:(e,t,r)=>{var n=r(1695),o=r(563),i=r(7258),a=r(2395),c=r(1449),s=r(6112),u=r(8759),l=r(4710),p=r(3677),f=o("Reflect","construct"),h=Object.prototype,d=[].push,y=p((function(){function e(){}return!(f((function(){}),[],e)instanceof e)})),g=!p((function(){f((function(){}))})),v=y||g;n({target:"Reflect",stat:!0,forced:v,sham:v},{construct:function(e,t){c(e),s(t);var r=arguments.length<3?e:c(arguments[2]);if(g&&!y)return f(e,t,r);if(e==r){switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3])}var n=[null];return i(d,n,t),new(i(a,e,n))}var o=r.prototype,p=l(u(o)?o:h),v=i(e,p,t);return u(v)?v:p}})},2759:(e,t,r)=>{var n=r(5283),o=r(2086),i=r(8240),a=r(7189),c=r(5070),s=r(2585),u=r(7826).f,l=r(62).f,p=r(5516),f=r(7994),h=r(4059),d=r(4276),y=r(4930),g=r(1007),v=r(3677),b=r(9606),m=r(3278).enforce,S=r(7420),x=r(211),w=r(2582),P=r(2910),k=x("match"),O=o.RegExp,T=O.prototype,A=o.SyntaxError,C=i(d),R=i(T.exec),E=i("".charAt),M=i("".replace),I=i("".indexOf),W=i("".slice),j=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,L=/a/g,G=/a/g,F=new O(L)!==L,B=y.MISSED_STICKY,H=y.UNSUPPORTED_Y,N=n&&(!F||B||w||P||v((function(){return G[k]=!1,O(L)!=L||O(G)==G||"/a/i"!=O(L,"i")})));if(a("RegExp",N)){for(var D=function(e,t){var r,n,o,i,a,u,l=p(T,this),d=f(e),y=void 0===t,g=[],v=e;if(!l&&d&&y&&e.constructor===D)return e;if((d||p(T,e))&&(e=e.source,y&&(t="flags"in v?v.flags:C(v))),e=void 0===e?"":h(e),t=void 0===t?"":h(t),v=e,w&&"dotAll"in L&&(n=!!t&&I(t,"s")>-1)&&(t=M(t,/s/g,"")),r=t,B&&"sticky"in L&&(o=!!t&&I(t,"y")>-1)&&H&&(t=M(t,/y/g,"")),P&&(i=function(e){for(var t,r=e.length,n=0,o="",i=[],a={},c=!1,s=!1,u=0,l="";n<=r;n++){if("\\"===(t=E(e,n)))t+=E(e,++n);else if("]"===t)c=!1;else if(!c)switch(!0){case"["===t:c=!0;break;case"("===t:R(j,W(e,n+1))&&(n+=2,s=!0),o+=t,u++;continue;case">"===t&&s:if(""===l||b(a,l))throw new A("Invalid capture group name");a[l]=!0,i[i.length]=[l,u],s=!1,l="";continue}s?l+=t:o+=t}return[o,i]}(e),e=i[0],g=i[1]),a=c(O(e,t),l?this:T,D),(n||o||g.length)&&(u=m(a),n&&(u.dotAll=!0,u.raw=D(function(e){for(var t,r=e.length,n=0,o="",i=!1;n<=r;n++)"\\"!==(t=E(e,n))?i||"."!==t?("["===t?i=!0:"]"===t&&(i=!1),o+=t):o+="[\\s\\S]":o+=t+E(e,++n);return o}(e),r)),o&&(u.sticky=!0),g.length&&(u.groups=g)),e!==v)try{s(a,"source",""===v?"(?:)":v)}catch(e){}return a},_=function(e){e in D||u(D,e,{configurable:!0,get:function(){return O[e]},set:function(t){O[e]=t}})},z=l(O),U=0;z.length>U;)_(z[U++]);T.constructor=D,D.prototype=T,g(o,"RegExp",D)}S("RegExp")},2077:(e,t,r)=>{"use strict";var n=r(1695),o=r(4861);n({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},895:(e,t,r)=>{"use strict";var n=r(8240),o=r(4398).PROPER,i=r(1007),a=r(6112),c=r(5516),s=r(4059),u=r(3677),l=r(4276),p="toString",f=RegExp.prototype,h=f.toString,d=n(l),y=u((function(){return"/a/b"!=h.call({source:"a",flags:"b"})})),g=o&&h.name!=p;(y||g)&&i(RegExp.prototype,p,(function(){var e=a(this),t=s(e.source),r=e.flags;return"/"+t+"/"+s(void 0===r&&c(f,e)&&!("flags"in f)?d(e):r)}),{unsafe:!0})},7460:(e,t,r)=>{"use strict";var n=r(3448).charAt,o=r(4059),i=r(3278),a=r(8432),c="String Iterator",s=i.set,u=i.getterFor(c);a(String,"String",(function(e){s(this,{type:c,string:o(e),index:0})}),(function(){var e,t=u(this),r=t.string,o=t.index;return o>=r.length?{value:void 0,done:!0}:(e=n(r,o),t.index+=e.length,{value:e,done:!1})}))},911:(e,t,r)=>{"use strict";var n=r(7258),o=r(9413),i=r(8240),a=r(2331),c=r(3677),s=r(6112),u=r(930),l=r(9502),p=r(4005),f=r(4059),h=r(9586),d=r(9966),y=r(2964),g=r(8509),v=r(1189),b=r(211)("replace"),m=Math.max,S=Math.min,x=i([].concat),w=i([].push),P=i("".indexOf),k=i("".slice),O="$0"==="a".replace(/./,"$0"),T=!!/./[b]&&""===/./[b]("a","$0");a("replace",(function(e,t,r){var i=T?"$":"$0";return[function(e,r){var n=h(this),i=null==e?void 0:y(e,b);return i?o(i,e,n,r):o(t,f(n),e,r)},function(e,o){var a=s(this),c=f(e);if("string"==typeof o&&-1===P(o,i)&&-1===P(o,"$<")){var h=r(t,a,c,o);if(h.done)return h.value}var y=u(o);y||(o=f(o));var b=a.global;if(b){var O=a.unicode;a.lastIndex=0}for(var T=[];;){var A=v(a,c);if(null===A)break;if(w(T,A),!b)break;""===f(A[0])&&(a.lastIndex=d(c,p(a.lastIndex),O))}for(var C,R="",E=0,M=0;M<T.length;M++){for(var I=f((A=T[M])[0]),W=m(S(l(A.index),c.length),0),j=[],L=1;L<A.length;L++)w(j,void 0===(C=A[L])?C:String(C));var G=A.groups;if(y){var F=x([I],j,W,c);void 0!==G&&w(F,G);var B=f(n(o,void 0,F))}else B=g(I,c,W,j,G,o);W>=E&&(R+=k(c,E,W)+B,E=W+I.length)}return R+k(c,E)}]}),!!c((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")}))||!O||T)},266:(e,t,r)=>{"use strict";var n=r(1695),o=r(4080).trim;n({target:"String",proto:!0,forced:r(4274)("trim")},{trim:function(){return o(this)}})},2189:(e,t,r)=>{"use strict";var n=r(1695),o=r(5283),i=r(2086),a=r(8240),c=r(9606),s=r(930),u=r(5516),l=r(4059),p=r(7826).f,f=r(8474),h=i.Symbol,d=h&&h.prototype;if(o&&s(h)&&(!("description"in d)||void 0!==h().description)){var y={},g=function(){var e=arguments.length<1||void 0===arguments[0]?void 0:l(arguments[0]),t=u(d,this)?new h(e):void 0===e?h():h(e);return""===e&&(y[t]=!0),t};f(g,h),g.prototype=d,d.constructor=g;var v="Symbol(test)"==String(h("test")),b=a(d.toString),m=a(d.valueOf),S=/^Symbol\((.*)\)[^)]+$/,x=a("".replace),w=a("".slice);p(d,"description",{configurable:!0,get:function(){var e=m(this),t=b(e);if(c(y,e))return"";var r=v?w(t,7,-1):x(t,S,"$1");return""===r?void 0:r}}),n({global:!0,forced:!0},{Symbol:g})}},1047:(e,t,r)=>{r(4145)("iterator")},5901:(e,t,r)=>{"use strict";var n=r(1695),o=r(2086),i=r(563),a=r(7258),c=r(9413),s=r(8240),u=r(3296),l=r(5283),p=r(3193),f=r(3677),h=r(9606),d=r(6526),y=r(930),g=r(8759),v=r(5516),b=r(2071),m=r(6112),S=r(3060),x=r(4088),w=r(2258),P=r(4059),k=r(5736),O=r(4710),T=r(8779),A=r(62),C=r(3226),R=r(6952),E=r(4399),M=r(7826),I=r(7446),W=r(745),j=r(1007),L=r(9197),G=r(8944),F=r(7153),B=r(5422),H=r(211),N=r(9251),D=r(4145),_=r(914),z=r(3278),U=r(8062).forEach,V=G("hidden"),K="Symbol",J=H("toPrimitive"),Y=z.set,Z=z.getterFor(K),q=Object.prototype,X=o.Symbol,$=X&&X.prototype,Q=o.TypeError,ee=o.QObject,te=i("JSON","stringify"),re=E.f,ne=M.f,oe=C.f,ie=I.f,ae=s([].push),ce=L("symbols"),se=L("op-symbols"),ue=L("string-to-symbol-registry"),le=L("symbol-to-string-registry"),pe=L("wks"),fe=!ee||!ee.prototype||!ee.prototype.findChild,he=l&&f((function(){return 7!=O(ne({},"a",{get:function(){return ne(this,"a",{value:7}).a}})).a}))?function(e,t,r){var n=re(q,t);n&&delete q[t],ne(e,t,r),n&&e!==q&&ne(q,t,n)}:ne,de=function(e,t){var r=ce[e]=O($);return Y(r,{type:K,tag:e,description:t}),l||(r.description=t),r},ye=function(e,t,r){e===q&&ye(se,t,r),m(e);var n=w(t);return m(r),h(ce,n)?(r.enumerable?(h(e,V)&&e[V][n]&&(e[V][n]=!1),r=O(r,{enumerable:k(0,!1)})):(h(e,V)||ne(e,V,k(1,{})),e[V][n]=!0),he(e,n,r)):ne(e,n,r)},ge=function(e,t){m(e);var r=x(t),n=T(r).concat(Se(r));return U(n,(function(t){l&&!c(ve,r,t)||ye(e,t,r[t])})),e},ve=function(e){var t=w(e),r=c(ie,this,t);return!(this===q&&h(ce,t)&&!h(se,t))&&(!(r||!h(this,t)||!h(ce,t)||h(this,V)&&this[V][t])||r)},be=function(e,t){var r=x(e),n=w(t);if(r!==q||!h(ce,n)||h(se,n)){var o=re(r,n);return!o||!h(ce,n)||h(r,V)&&r[V][n]||(o.enumerable=!0),o}},me=function(e){var t=oe(x(e)),r=[];return U(t,(function(e){h(ce,e)||h(F,e)||ae(r,e)})),r},Se=function(e){var t=e===q,r=oe(t?se:x(e)),n=[];return U(r,(function(e){!h(ce,e)||t&&!h(q,e)||ae(n,ce[e])})),n};(p||(j($=(X=function(){if(v($,this))throw Q("Symbol is not a constructor");var e=arguments.length&&void 0!==arguments[0]?P(arguments[0]):void 0,t=B(e),r=function(e){this===q&&c(r,se,e),h(this,V)&&h(this[V],t)&&(this[V][t]=!1),he(this,t,k(1,e))};return l&&fe&&he(q,t,{configurable:!0,set:r}),de(t,e)}).prototype,"toString",(function(){return Z(this).tag})),j(X,"withoutSetter",(function(e){return de(B(e),e)})),I.f=ve,M.f=ye,E.f=be,A.f=C.f=me,R.f=Se,N.f=function(e){return de(H(e),e)},l&&(ne($,"description",{configurable:!0,get:function(){return Z(this).description}}),u||j(q,"propertyIsEnumerable",ve,{unsafe:!0}))),n({global:!0,wrap:!0,forced:!p,sham:!p},{Symbol:X}),U(T(pe),(function(e){D(e)})),n({target:K,stat:!0,forced:!p},{for:function(e){var t=P(e);if(h(ue,t))return ue[t];var r=X(t);return ue[t]=r,le[r]=t,r},keyFor:function(e){if(!b(e))throw Q(e+" is not a symbol");if(h(le,e))return le[e]},useSetter:function(){fe=!0},useSimple:function(){fe=!1}}),n({target:"Object",stat:!0,forced:!p,sham:!l},{create:function(e,t){return void 0===t?O(e):ge(O(e),t)},defineProperty:ye,defineProperties:ge,getOwnPropertyDescriptor:be}),n({target:"Object",stat:!0,forced:!p},{getOwnPropertyNames:me,getOwnPropertySymbols:Se}),n({target:"Object",stat:!0,forced:f((function(){R.f(1)}))},{getOwnPropertySymbols:function(e){return R.f(S(e))}}),te)&&n({target:"JSON",stat:!0,forced:!p||f((function(){var e=X();return"[null]"!=te([e])||"{}"!=te({a:e})||"{}"!=te(Object(e))}))},{stringify:function(e,t,r){var n=W(arguments),o=t;if((g(t)||void 0!==e)&&!b(e))return d(t)||(t=function(e,t){if(y(o)&&(t=c(o,this,e,t)),!b(t))return t}),n[1]=t,a(te,null,n)}});if(!$[J]){var xe=$.valueOf;j($,J,(function(e){return c(xe,this)}))}_(X,K),F[V]=!0},4078:(e,t,r)=>{var n=r(2086),o=r(933),i=r(3526),a=r(5769),c=r(2585),s=r(211),u=s("iterator"),l=s("toStringTag"),p=a.values,f=function(e,t){if(e){if(e[u]!==p)try{c(e,u,p)}catch(t){e[u]=p}if(e[l]||c(e,l,t),o[t])for(var r in a)if(e[r]!==a[r])try{c(e,r,a[r])}catch(t){e[r]=a[r]}}};for(var h in o)f(n[h]&&n[h].prototype,h);f(i,"DOMTokenList")}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var i=t[n]={exports:{}};return e[n](i,i.exports,r),i.exports}r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}();var n=r(7697);Crawler=n})();
|