haraka 0.0.33 → 3.3.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/.claude/settings.local.json +28 -0
- package/.githooks/pre-commit +41 -0
- package/.prettierignore +6 -0
- package/.qlty/.gitignore +7 -0
- package/.qlty/configs/.shellcheckrc +1 -0
- package/.qlty/qlty.toml +15 -0
- package/CHANGELOG.md +1894 -0
- package/CLAUDE.md +40 -0
- package/CONTRIBUTORS.md +34 -0
- package/Dockerfile +50 -0
- package/GEMINI.md +38 -0
- package/LICENSE +22 -0
- package/Plugins.md +227 -0
- package/README.md +119 -4
- package/SECURITY.md +178 -0
- package/TODO +22 -0
- package/address.js +53 -0
- package/bin/haraka +593 -0
- package/bin/haraka_grep +32 -0
- package/config/aliases +2 -0
- package/config/auth_flat_file.ini +7 -0
- package/config/auth_vpopmaild.ini +9 -0
- package/config/connection.ini +79 -0
- package/config/delay_deny.ini +7 -0
- package/config/dhparams.pem +8 -0
- package/config/host_list +3 -0
- package/config/host_list_regex +6 -0
- package/config/http.ini +11 -0
- package/config/lmtp.ini +7 -0
- package/config/log.ini +11 -0
- package/config/me +1 -0
- package/config/outbound.bounce_message +18 -0
- package/config/outbound.bounce_message_html +36 -0
- package/config/outbound.bounce_message_image +106 -0
- package/config/outbound.ini +24 -0
- package/config/plugins +67 -0
- package/config/smtp.ini +37 -0
- package/config/smtp_bridge.ini +4 -0
- package/config/smtp_forward.ini +31 -0
- package/config/smtp_proxy.ini +27 -0
- package/config/tarpit.timeout +1 -0
- package/config/tls.ini +83 -0
- package/config/tls_cert.pem +23 -0
- package/config/tls_key.pem +28 -0
- package/config/watch.ini +12 -0
- package/config/xclient.hosts +2 -0
- package/connection.js +1863 -0
- package/contrib/Haraka.cf +6 -0
- package/contrib/Haraka.pm +35 -0
- package/contrib/bad_smtp_server.pl +25 -0
- package/contrib/bsd-rc.d/haraka +61 -0
- package/contrib/debian-init.d/haraka +87 -0
- package/contrib/haraka.init +96 -0
- package/contrib/haraka.service +23 -0
- package/contrib/plugin2npm.sh +81 -0
- package/contrib/ubuntu-upstart/haraka.conf +27 -0
- package/coverage/coverage-final.json +2 -0
- package/coverage/coverage-summary.json +33 -0
- package/coverage/tmp/coverage-79131-1779241025146-0.json +1 -0
- package/coverage/tmp/coverage-79132-1779240999690-0.json +1 -0
- package/coverage/tmp/coverage-79172-1779241000095-0.json +1 -0
- package/coverage/tmp/coverage-79210-1779241000156-0.json +1 -0
- package/coverage/tmp/coverage-79211-1779241000209-0.json +1 -0
- package/coverage/tmp/coverage-79212-1779241000266-0.json +1 -0
- package/coverage/tmp/coverage-79213-1779241000441-0.json +1 -0
- package/coverage/tmp/coverage-79214-1779241000626-0.json +1 -0
- package/coverage/tmp/coverage-79215-1779241000795-0.json +1 -0
- package/coverage/tmp/coverage-79216-1779241000965-0.json +1 -0
- package/coverage/tmp/coverage-79218-1779241001013-0.json +1 -0
- package/coverage/tmp/coverage-79219-1779241001179-0.json +1 -0
- package/coverage/tmp/coverage-79220-1779241006249-0.json +1 -0
- package/coverage/tmp/coverage-79227-1779241011453-0.json +1 -0
- package/coverage/tmp/coverage-79229-1779241011537-0.json +1 -0
- package/coverage/tmp/coverage-79230-1779241011647-0.json +1 -0
- package/coverage/tmp/coverage-79231-1779241011765-0.json +1 -0
- package/coverage/tmp/coverage-79232-1779241011841-0.json +1 -0
- package/coverage/tmp/coverage-79233-1779241011909-0.json +1 -0
- package/coverage/tmp/coverage-79234-1779241011984-0.json +1 -0
- package/coverage/tmp/coverage-79235-1779241012055-0.json +1 -0
- package/coverage/tmp/coverage-79236-1779241012230-0.json +1 -0
- package/coverage/tmp/coverage-79237-1779241012300-0.json +1 -0
- package/coverage/tmp/coverage-79238-1779241012368-0.json +1 -0
- package/coverage/tmp/coverage-79239-1779241012438-0.json +1 -0
- package/coverage/tmp/coverage-79240-1779241012511-0.json +1 -0
- package/coverage/tmp/coverage-79241-1779241012582-0.json +1 -0
- package/coverage/tmp/coverage-79242-1779241012652-0.json +1 -0
- package/coverage/tmp/coverage-79243-1779241012814-0.json +1 -0
- package/coverage/tmp/coverage-79244-1779241012931-0.json +1 -0
- package/coverage/tmp/coverage-79245-1779241013007-0.json +1 -0
- package/coverage/tmp/coverage-79246-1779241013106-0.json +1 -0
- package/coverage/tmp/coverage-79247-1779241013178-0.json +1 -0
- package/coverage/tmp/coverage-79248-1779241013244-0.json +1 -0
- package/coverage/tmp/coverage-79249-1779241013409-0.json +1 -0
- package/coverage/tmp/coverage-79250-1779241013697-0.json +1 -0
- package/coverage/tmp/coverage-79251-1779241013847-0.json +1 -0
- package/coverage/tmp/coverage-79252-1779241014288-0.json +1 -0
- package/coverage/tmp/coverage-79253-1779241014378-0.json +1 -0
- package/coverage/tmp/coverage-79254-1779241014428-0.json +1 -0
- package/coverage/tmp/coverage-79255-1779241021774-0.json +1 -0
- package/coverage/tmp/coverage-80382-1779241021949-0.json +1 -0
- package/coverage/tmp/coverage-80383-1779241025019-0.json +1 -0
- package/coverage/tmp/coverage-80384-1779241025133-0.json +1 -0
- package/docs/Body.md +1 -0
- package/docs/Config.md +1 -0
- package/docs/Connection.md +153 -0
- package/docs/CoreConfig.md +96 -0
- package/docs/CustomReturnCodes.md +3 -0
- package/docs/HAProxy.md +62 -0
- package/docs/Header.md +1 -0
- package/docs/Logging.md +129 -0
- package/docs/Outbound.md +210 -0
- package/docs/Plugins.md +372 -0
- package/docs/Results.md +7 -0
- package/docs/Transaction.md +135 -0
- package/docs/Tutorial.md +183 -0
- package/docs/deprecated/access.md +3 -0
- package/docs/deprecated/backscatterer.md +9 -0
- package/docs/deprecated/connect.rdns_access.md +53 -0
- package/docs/deprecated/data.headers.md +3 -0
- package/docs/deprecated/data.nomsgid.md +7 -0
- package/docs/deprecated/data.noreceived.md +11 -0
- package/docs/deprecated/data.rfc5322_header_checks.md +11 -0
- package/docs/deprecated/dkim_sign.md +97 -0
- package/docs/deprecated/dkim_verify.md +28 -0
- package/docs/deprecated/dnsbl.md +80 -0
- package/docs/deprecated/dnswl.md +73 -0
- package/docs/deprecated/lookup_rdns.strict.md +67 -0
- package/docs/deprecated/mail_from.access.md +52 -0
- package/docs/deprecated/mail_from.blocklist.md +18 -0
- package/docs/deprecated/mail_from.nobounces.md +8 -0
- package/docs/deprecated/rcpt_to.access.md +53 -0
- package/docs/deprecated/rcpt_to.blocklist.md +18 -0
- package/docs/deprecated/rcpt_to.routes.md +3 -0
- package/docs/deprecated/rdns.regexp.md +30 -0
- package/docs/plugins/aliases.md +3 -0
- package/docs/plugins/auth/auth_bridge.md +34 -0
- package/docs/plugins/auth/auth_ldap.md +4 -0
- package/docs/plugins/auth/auth_proxy.md +36 -0
- package/docs/plugins/auth/auth_vpopmaild.md +33 -0
- package/docs/plugins/auth/flat_file.md +40 -0
- package/docs/plugins/block_me.md +18 -0
- package/docs/plugins/data.signatures.md +11 -0
- package/docs/plugins/delay_deny.md +23 -0
- package/docs/plugins/max_unrecognized_commands.md +6 -0
- package/docs/plugins/prevent_credential_leaks.md +22 -0
- package/docs/plugins/process_title.md +42 -0
- package/docs/plugins/queue/deliver.md +3 -0
- package/docs/plugins/queue/discard.md +32 -0
- package/docs/plugins/queue/lmtp.md +24 -0
- package/docs/plugins/queue/qmail-queue.md +16 -0
- package/docs/plugins/queue/quarantine.md +87 -0
- package/docs/plugins/queue/smtp_bridge.md +32 -0
- package/docs/plugins/queue/smtp_forward.md +127 -0
- package/docs/plugins/queue/smtp_proxy.md +68 -0
- package/docs/plugins/queue/test.md +7 -0
- package/docs/plugins/rcpt_to.in_host_list.md +34 -0
- package/docs/plugins/rcpt_to.max_count.md +3 -0
- package/docs/plugins/record_envelope_addresses.md +20 -0
- package/docs/plugins/relay.md +3 -0
- package/docs/plugins/reseed_rng.md +16 -0
- package/docs/plugins/status.md +41 -0
- package/docs/plugins/tarpit.md +50 -0
- package/docs/plugins/tls.md +235 -0
- package/docs/plugins/toobusy.md +27 -0
- package/docs/plugins/xclient.md +10 -0
- package/docs/tutorials/Migrating_from_v1_to_v2.md +96 -0
- package/docs/tutorials/SettingUpOutbound.md +62 -0
- package/eslint.config.mjs +2 -0
- package/haraka.js +74 -0
- package/haraka.sh +2 -0
- package/http/html/404.html +58 -0
- package/http/html/index.html +47 -0
- package/http/package.json +21 -0
- package/line_socket.js +24 -0
- package/logger.js +322 -0
- package/outbound/client_pool.js +59 -0
- package/outbound/config.js +134 -0
- package/outbound/hmail.js +1504 -0
- package/outbound/index.js +349 -0
- package/outbound/qfile.js +93 -0
- package/outbound/queue.js +399 -0
- package/outbound/tls.js +85 -0
- package/outbound/todo.js +17 -0
- package/package.json +99 -4
- package/plugins/.eslintrc.yaml +3 -0
- package/plugins/auth/auth_base.js +261 -0
- package/plugins/auth/auth_bridge.js +20 -0
- package/plugins/auth/auth_proxy.js +227 -0
- package/plugins/auth/auth_vpopmaild.js +162 -0
- package/plugins/auth/flat_file.js +44 -0
- package/plugins/block_me.js +88 -0
- package/plugins/data.signatures.js +30 -0
- package/plugins/delay_deny.js +153 -0
- package/plugins/prevent_credential_leaks.js +61 -0
- package/plugins/process_title.js +197 -0
- package/plugins/profile.js +11 -0
- package/plugins/queue/deliver.js +12 -0
- package/plugins/queue/discard.js +27 -0
- package/plugins/queue/lmtp.js +45 -0
- package/plugins/queue/qmail-queue.js +93 -0
- package/plugins/queue/quarantine.js +133 -0
- package/plugins/queue/smtp_bridge.js +45 -0
- package/plugins/queue/smtp_forward.js +371 -0
- package/plugins/queue/smtp_proxy.js +142 -0
- package/plugins/queue/test.js +15 -0
- package/plugins/rcpt_to.host_list_base.js +65 -0
- package/plugins/rcpt_to.in_host_list.js +56 -0
- package/plugins/record_envelope_addresses.js +17 -0
- package/plugins/reseed_rng.js +7 -0
- package/plugins/status.js +274 -0
- package/plugins/tarpit.js +45 -0
- package/plugins/tls.js +164 -0
- package/plugins/toobusy.js +47 -0
- package/plugins/xclient.js +124 -0
- package/plugins.js +604 -0
- package/queue/1772642154987_1775581346001_4_82235_TGwgfd_2_mattbook-m3.home.simerson.net +0 -0
- package/run_tests +11 -0
- package/server.js +827 -0
- package/smtp_client.js +504 -0
- package/test/.eslintrc.yaml +11 -0
- package/test/config/auth_flat_file.ini +5 -0
- package/test/config/block_me.recipient +1 -0
- package/test/config/block_me.senders +1 -0
- package/test/config/dhparams.pem +8 -0
- package/test/config/host_list +2 -0
- package/test/config/outbound_tls_cert.pem +1 -0
- package/test/config/outbound_tls_key.pem +1 -0
- package/test/config/plugins +7 -0
- package/test/config/smtp.ini +11 -0
- package/test/config/smtp_forward.ini +30 -0
- package/test/config/tls/example.com/_.example.com.key +28 -0
- package/test/config/tls/example.com/example.com.crt +25 -0
- package/test/config/tls/haraka.local.pem +51 -0
- package/test/config/tls.ini +45 -0
- package/test/config/tls_cert.pem +21 -0
- package/test/config/tls_key.pem +28 -0
- package/test/connection.js +817 -0
- package/test/fixtures/haproxy_allowed/config/connection.ini +3 -0
- package/test/fixtures/haproxy_disabled/config/connection.ini +3 -0
- package/test/fixtures/haproxy_untrusted/config/connection.ini +3 -0
- package/test/fixtures/line_socket.js +21 -0
- package/test/fixtures/todo_qfile.txt +0 -0
- package/test/fixtures/util_hmailitem.js +156 -0
- package/test/installation/config/test-plugin-flat +1 -0
- package/test/installation/config/test-plugin.ini +10 -0
- package/test/installation/config/tls.ini +1 -0
- package/test/installation/node_modules/load_first/index.js +5 -0
- package/test/installation/node_modules/load_first/package.json +11 -0
- package/test/installation/node_modules/test-plugin/config/test-plugin-flat +1 -0
- package/test/installation/node_modules/test-plugin/config/test-plugin.ini +9 -0
- package/test/installation/node_modules/test-plugin/package.json +5 -0
- package/test/installation/node_modules/test-plugin/test-plugin.js +5 -0
- package/test/installation/plugins/base_plugin.js +3 -0
- package/test/installation/plugins/folder_plugin/index.js +3 -0
- package/test/installation/plugins/folder_plugin/package.json +11 -0
- package/test/installation/plugins/inherits.js +7 -0
- package/test/installation/plugins/load_first.js +3 -0
- package/test/installation/plugins/plugin.js +1 -0
- package/test/installation/plugins/tls.js +3 -0
- package/test/logger.js +217 -0
- package/test/loud/config/dhparams.pem +0 -0
- package/test/loud/config/tls/goobered.pem +45 -0
- package/test/loud/config/tls.ini +43 -0
- package/test/mail_specimen/base64-root-part.txt +23 -0
- package/test/mail_specimen/varied-fold-lengths-preserve-data.txt +283 -0
- package/test/outbound/bounce_net_errors.js +133 -0
- package/test/outbound/bounce_rfc3464.js +226 -0
- package/test/outbound/hmail.js +210 -0
- package/test/outbound/index.js +385 -0
- package/test/outbound/qfile.js +124 -0
- package/test/outbound/queue.js +325 -0
- package/test/plugins/auth/auth_base.js +620 -0
- package/test/plugins/auth/auth_bridge.js +80 -0
- package/test/plugins/auth/auth_vpopmaild.js +81 -0
- package/test/plugins/auth/flat_file.js +123 -0
- package/test/plugins/block_me.js +141 -0
- package/test/plugins/data.signatures.js +111 -0
- package/test/plugins/delay_deny.js +262 -0
- package/test/plugins/prevent_credential_leaks.js +174 -0
- package/test/plugins/process_title.js +141 -0
- package/test/plugins/queue/deliver.js +98 -0
- package/test/plugins/queue/discard.js +78 -0
- package/test/plugins/queue/lmtp.js +137 -0
- package/test/plugins/queue/qmail-queue.js +98 -0
- package/test/plugins/queue/quarantine.js +80 -0
- package/test/plugins/queue/smtp_bridge.js +152 -0
- package/test/plugins/queue/smtp_forward.js +1023 -0
- package/test/plugins/queue/smtp_proxy.js +138 -0
- package/test/plugins/rcpt_to.host_list_base.js +102 -0
- package/test/plugins/rcpt_to.in_host_list.js +186 -0
- package/test/plugins/record_envelope_addresses.js +66 -0
- package/test/plugins/reseed_rng.js +34 -0
- package/test/plugins/status.js +207 -0
- package/test/plugins/tarpit.js +90 -0
- package/test/plugins/tls.js +86 -0
- package/test/plugins/toobusy.js +21 -0
- package/test/plugins/xclient.js +119 -0
- package/test/plugins.js +230 -0
- package/test/queue/1507509981169_1507509981169_0_61403_e0Y0Ym_1_fixed +0 -0
- package/test/queue/1507509981169_1507509981169_0_61403_e0Y0Ym_1_haraka +0 -0
- package/test/queue/1508269674999_1508269674999_0_34002_socVUF_1_haraka +0 -0
- package/test/queue/1508455115683_1508455115683_0_90253_9Q4o4V_1_haraka +0 -0
- package/test/queue/zero-length +0 -0
- package/test/server.js +1012 -0
- package/test/smtp_client.js +1303 -0
- package/test/tls_socket.js +321 -0
- package/test/transaction.js +554 -0
- package/tls_socket.js +771 -0
- package/transaction.js +267 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"result":[{"scriptId":"3","url":"node:internal/per_context/primordials","functions":[{"functionName":"SafeIterator","ranges":[{"startOffset":9212,"endOffset":9283,"count":4}],"isBlockCoverage":false},{"functionName":"next","ranges":[{"startOffset":9288,"endOffset":9337,"count":83}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":9342,"endOffset":9387,"count":2}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":10952,"endOffset":11019,"count":2}],"isBlockCoverage":false}]},{"scriptId":"6","url":"node:internal/bootstrap/realm","functions":[{"functionName":"internalBinding","ranges":[{"startOffset":6034,"endOffset":6296,"count":15}],"isBlockCoverage":false},{"functionName":"allowRequireByUsers","ranges":[{"startOffset":8483,"endOffset":8844,"count":1}],"isBlockCoverage":false},{"functionName":"canBeRequiredByUsers","ranges":[{"startOffset":9529,"endOffset":9604,"count":2}],"isBlockCoverage":false},{"functionName":"canBeRequiredWithoutScheme","ranges":[{"startOffset":9615,"endOffset":9709,"count":2}],"isBlockCoverage":false},{"functionName":"normalizeRequirableId","ranges":[{"startOffset":9720,"endOffset":10065,"count":1}],"isBlockCoverage":false},{"functionName":"getAllBuiltinModuleIds","ranges":[{"startOffset":10414,"endOffset":10636,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":10587,"endOffset":10605,"count":5}],"isBlockCoverage":false},{"functionName":"compileForPublicLoader","ranges":[{"startOffset":10708,"endOffset":11371,"count":1}],"isBlockCoverage":false},{"functionName":"compileForInternalLoader","ranges":[{"startOffset":12653,"endOffset":13475,"count":150}],"isBlockCoverage":false},{"functionName":"requireBuiltin","ranges":[{"startOffset":13670,"endOffset":14035,"count":150}],"isBlockCoverage":false},{"functionName":"requireWithFallbackInDeps","ranges":[{"startOffset":14151,"endOffset":14427,"count":2}],"isBlockCoverage":false}]},{"scriptId":"7","url":"node:internal/errors","functions":[{"functionName":"defaultPrepareStackTrace","ranges":[{"startOffset":2344,"endOffset":2811,"count":2}],"isBlockCoverage":false},{"functionName":"setInternalPrepareStackTrace","ranges":[{"startOffset":2813,"endOffset":2904,"count":1}],"isBlockCoverage":false},{"functionName":"prepareStackTraceCallback","ranges":[{"startOffset":3730,"endOffset":4861,"count":2}],"isBlockCoverage":false},{"functionName":"ErrorPrepareStackTrace","ranges":[{"startOffset":4947,"endOffset":5046,"count":2}],"isBlockCoverage":false},{"functionName":"lazyInternalUtilInspect","ranges":[{"startOffset":6562,"endOffset":6690,"count":2}],"isBlockCoverage":false},{"functionName":"lazyUtilColors","ranges":[{"startOffset":6708,"endOffset":6808,"count":1}],"isBlockCoverage":false},{"functionName":"<instance_members_initializer>","ranges":[{"startOffset":13756,"endOffset":13766,"count":1}],"isBlockCoverage":false},{"functionName":"NodeError","ranges":[{"startOffset":13777,"endOffset":14155,"count":1}],"isBlockCoverage":false},{"functionName":"wrappedFn","ranges":[{"startOffset":14753,"endOffset":14959,"count":46}],"isBlockCoverage":false},{"functionName":"beforeInspector","ranges":[{"startOffset":24350,"endOffset":24741,"count":1}],"isBlockCoverage":false},{"functionName":"afterInspector","ranges":[{"startOffset":24745,"endOffset":26031,"count":1}],"isBlockCoverage":false}]},{"scriptId":"8","url":"node:internal/assert","functions":[{"functionName":"assert","ranges":[{"startOffset":128,"endOffset":278,"count":5}],"isBlockCoverage":false}]},{"scriptId":"9","url":"node:internal/bootstrap/node","functions":[{"functionName":"get","ranges":[{"startOffset":3814,"endOffset":3864,"count":1}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":3870,"endOffset":3928,"count":2}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":4140,"endOffset":4536,"count":2}],"isBlockCoverage":false}]},{"scriptId":"11","url":"node:internal/async_hooks","functions":[{"functionName":"clearDefaultTriggerAsyncId","ranges":[{"startOffset":15565,"endOffset":15654,"count":1}],"isBlockCoverage":false}]},{"scriptId":"12","url":"node:internal/validators","functions":[{"functionName":"","ranges":[{"startOffset":2516,"endOffset":2897,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":4459,"endOffset":4571,"count":19}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":4813,"endOffset":5259,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":5976,"endOffset":6090,"count":3}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":6672,"endOffset":7691,"count":21}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":13187,"endOffset":13303,"count":1}],"isBlockCoverage":false}]},{"scriptId":"13","url":"node:internal/util","functions":[{"functionName":"isError","ranges":[{"startOffset":2312,"endOffset":2588,"count":1}],"isBlockCoverage":false},{"functionName":"assertTypeScript","ranges":[{"startOffset":6601,"endOffset":6790,"count":1}],"isBlockCoverage":false},{"functionName":"isUnderNodeModules","ranges":[{"startOffset":16196,"endOffset":16316,"count":1}],"isBlockCoverage":false},{"functionName":"defineReplaceableLazyAttribute","ranges":[{"startOffset":18866,"endOffset":19766,"count":1}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":19078,"endOffset":19314,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":19419,"endOffset":19490,"count":0}],"isBlockCoverage":false},{"functionName":"exposeLazyInterfaces","ranges":[{"startOffset":19768,"endOffset":19868,"count":1}],"isBlockCoverage":false},{"functionName":"setOwnProperty","ranges":[{"startOffset":21063,"endOffset":21253,"count":2}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":23201,"endOffset":23329,"count":4}],"isBlockCoverage":false},{"functionName":"setupCoverageHooks","ranges":[{"startOffset":23457,"endOffset":24134,"count":1}],"isBlockCoverage":false},{"functionName":"guessHandleType","ranges":[{"startOffset":25524,"endOffset":25621,"count":1}],"isBlockCoverage":false},{"functionName":"<instance_members_initializer>","ranges":[{"startOffset":25647,"endOffset":25756,"count":5}],"isBlockCoverage":false},{"functionName":"WeakReference","ranges":[{"startOffset":25760,"endOffset":25827,"count":5}],"isBlockCoverage":false}]},{"scriptId":"14","url":"node:internal/options","functions":[{"functionName":"getCLIOptionsFromBinding","ranges":[{"startOffset":722,"endOffset":809,"count":64}],"isBlockCoverage":false},{"functionName":"getEmbedderOptions","ranges":[{"startOffset":990,"endOffset":1085,"count":4}],"isBlockCoverage":false},{"functionName":"refreshOptions","ranges":[{"startOffset":4095,"endOffset":4151,"count":1}],"isBlockCoverage":false},{"functionName":"getOptionValue","ranges":[{"startOffset":4153,"endOffset":4241,"count":64}],"isBlockCoverage":false}]},{"scriptId":"18","url":"node:internal/util/inspect","functions":[{"functionName":"inspect","ranges":[{"startOffset":9785,"endOffset":11811,"count":1}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":11922,"endOffset":11967,"count":1}],"isBlockCoverage":false},{"functionName":"isInstanceof","ranges":[{"startOffset":18131,"endOffset":18249,"count":1}],"isBlockCoverage":false},{"functionName":"getConstructorName","ranges":[{"startOffset":19763,"endOffset":21522,"count":1}],"isBlockCoverage":false},{"functionName":"getKeys","ranges":[{"startOffset":24332,"endOffset":25323,"count":1}],"isBlockCoverage":false},{"functionName":"filter","ranges":[{"startOffset":25163,"endOffset":25219,"count":0}],"isBlockCoverage":false},{"functionName":"formatValue","ranges":[{"startOffset":26222,"endOffset":29022,"count":1}],"isBlockCoverage":false},{"functionName":"formatRaw","ranges":[{"startOffset":29024,"endOffset":40805,"count":1}],"isBlockCoverage":false},{"functionName":"getStackString","ranges":[{"startOffset":48070,"endOffset":48563,"count":1}],"isBlockCoverage":false},{"functionName":"getStackFrames","ranges":[{"startOffset":48565,"endOffset":50106,"count":1}],"isBlockCoverage":false},{"functionName":"improveStack","ranges":[{"startOffset":50205,"endOffset":51593,"count":1}],"isBlockCoverage":false},{"functionName":"formatError","ranges":[{"startOffset":54156,"endOffset":57854,"count":1}],"isBlockCoverage":false},{"functionName":"format","ranges":[{"startOffset":83746,"endOffset":83827,"count":1}],"isBlockCoverage":false},{"functionName":"formatWithOptionsInternal","ranges":[{"startOffset":84391,"endOffset":88415,"count":1}],"isBlockCoverage":false}]},{"scriptId":"19","url":"node:internal/util/debuglog","functions":[{"functionName":"initializeDebugEnv","ranges":[{"startOffset":832,"endOffset":1305,"count":1}],"isBlockCoverage":false},{"functionName":"testEnabled","ranges":[{"startOffset":1199,"endOffset":1256,"count":0}],"isBlockCoverage":false},{"functionName":"testEnabled","ranges":[{"startOffset":1287,"endOffset":1298,"count":3}],"isBlockCoverage":false},{"functionName":"emitWarningIfNeeded","ranges":[{"startOffset":1379,"endOffset":1718,"count":1}],"isBlockCoverage":false},{"functionName":"noop","ranges":[{"startOffset":1733,"endOffset":1741,"count":3}],"isBlockCoverage":false},{"functionName":"debuglogImpl","ranges":[{"startOffset":1862,"endOffset":2420,"count":2}],"isBlockCoverage":false},{"functionName":"debug","ranges":[{"startOffset":2045,"endOffset":2338,"count":0}],"isBlockCoverage":false},{"functionName":"debuglog","ranges":[{"startOffset":2640,"endOffset":3993,"count":1}],"isBlockCoverage":false},{"functionName":"init","ranges":[{"startOffset":2671,"endOffset":2767,"count":2}],"isBlockCoverage":false},{"functionName":"debug","ranges":[{"startOffset":2782,"endOffset":3373,"count":2}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":3061,"endOffset":3104,"count":0}],"isBlockCoverage":false},{"functionName":"test","ranges":[{"startOffset":3403,"endOffset":3472,"count":0}],"isBlockCoverage":false},{"functionName":"logger","ranges":[{"startOffset":3491,"endOffset":3816,"count":2}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":3887,"endOffset":3921,"count":0}],"isBlockCoverage":false},{"functionName":"ensureTimerFlagsAreUpdated","ranges":[{"startOffset":9994,"endOffset":10147,"count":1}],"isBlockCoverage":false},{"functionName":"internalEndTimer","ranges":[{"startOffset":10534,"endOffset":10862,"count":1}],"isBlockCoverage":false},{"functionName":"init","ranges":[{"startOffset":11250,"endOffset":11748,"count":1}],"isBlockCoverage":false},{"functionName":"startTimer","ranges":[{"startOffset":11807,"endOffset":11957,"count":1}],"isBlockCoverage":false}]},{"scriptId":"22","url":"node:events","functions":[{"functionName":"EventEmitter","ranges":[{"startOffset":5832,"endOffset":5901,"count":1}],"isBlockCoverage":false},{"functionName":"checkListener","ranges":[{"startOffset":7398,"endOffset":7476,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":9274,"endOffset":9922,"count":1}],"isBlockCoverage":false},{"functionName":"emit","ranges":[{"startOffset":12719,"endOffset":15061,"count":4}],"isBlockCoverage":false},{"functionName":"_addListener","ranges":[{"startOffset":15064,"endOffset":17110,"count":1}],"isBlockCoverage":false},{"functionName":"addListener","ranges":[{"startOffset":17288,"endOffset":17380,"count":1}],"isBlockCoverage":false}]},{"scriptId":"24","url":"node:buffer","functions":[{"functionName":"createPool","ranges":[{"startOffset":4304,"endOffset":4492,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":4560,"endOffset":4744,"count":1}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":9108,"endOffset":9136,"count":1}],"isBlockCoverage":false},{"functionName":"from","ranges":[{"startOffset":9516,"endOffset":10481,"count":1}],"isBlockCoverage":false},{"functionName":"allocUnsafeSlow","ranges":[{"startOffset":13460,"endOffset":13576,"count":1}],"isBlockCoverage":false},{"functionName":"fromStringFast","ranges":[{"startOffset":14231,"endOffset":14883,"count":1}],"isBlockCoverage":false},{"functionName":"createFromString","ranges":[{"startOffset":14885,"endOffset":15130,"count":1}],"isBlockCoverage":false},{"functionName":"fromString","ranges":[{"startOffset":15132,"endOffset":15492,"count":1}],"isBlockCoverage":false},{"functionName":"base64ByteLength","ranges":[{"startOffset":19674,"endOffset":19942,"count":1}],"isBlockCoverage":false},{"functionName":"byteLength","ranges":[{"startOffset":21444,"endOffset":21495,"count":1}],"isBlockCoverage":false},{"functionName":"getEncodingOps","ranges":[{"startOffset":22612,"endOffset":24436,"count":1}],"isBlockCoverage":false}]},{"scriptId":"25","url":"node:internal/buffer","functions":[{"functionName":"markAsUntransferable","ranges":[{"startOffset":32055,"endOffset":32372,"count":1}],"isBlockCoverage":false},{"functionName":"createUnsafeBuffer","ranges":[{"startOffset":32682,"endOffset":32968,"count":2}],"isBlockCoverage":false}]},{"scriptId":"27","url":"node:internal/v8/startup_snapshot","functions":[{"functionName":"isBuildingSnapshot","ranges":[{"startOffset":433,"endOffset":504,"count":5}],"isBlockCoverage":false},{"functionName":"runDeserializeCallbacks","ranges":[{"startOffset":831,"endOffset":1004,"count":1}],"isBlockCoverage":false}]},{"scriptId":"28","url":"node:internal/worker/js_transferable","functions":[{"functionName":"markTransferMode","ranges":[{"startOffset":2696,"endOffset":3094,"count":1}],"isBlockCoverage":false}]},{"scriptId":"29","url":"node:internal/webidl","functions":[{"functionName":"createSequenceConverter","ranges":[{"startOffset":8886,"endOffset":9722,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":8941,"endOffset":9719,"count":0}],"isBlockCoverage":false},{"functionName":"createInterfaceConverter","ranges":[{"startOffset":9772,"endOffset":10195,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":9826,"endOffset":10192,"count":0}],"isBlockCoverage":false}]},{"scriptId":"30","url":"node:internal/process/per_thread","functions":[{"functionName":"toggleTraceCategoryState","ranges":[{"startOffset":15587,"endOffset":15870,"count":1}],"isBlockCoverage":false}]},{"scriptId":"31","url":"node:diagnostics_channel","functions":[{"functionName":"set","ranges":[{"startOffset":1244,"endOffset":1361,"count":5}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":1365,"endOffset":1413,"count":5}],"isBlockCoverage":false},{"functionName":"Channel","ranges":[{"startOffset":4722,"endOffset":4967,"count":5}],"isBlockCoverage":false},{"functionName":"get hasSubscribers","ranges":[{"startOffset":5435,"endOffset":5479,"count":5}],"isBlockCoverage":false},{"functionName":"channel","ranges":[{"startOffset":5626,"endOffset":5892,"count":5}],"isBlockCoverage":false},{"functionName":"tracingChannelFrom","ranges":[{"startOffset":6450,"endOffset":6975,"count":5}],"isBlockCoverage":false},{"functionName":"TracingChannel","ranges":[{"startOffset":7002,"endOffset":7275,"count":1}],"isBlockCoverage":false},{"functionName":"get hasSubscribers","ranges":[{"startOffset":7279,"endOffset":7494,"count":1}],"isBlockCoverage":false},{"functionName":"tracingChannel","ranges":[{"startOffset":10789,"endOffset":10877,"count":1}],"isBlockCoverage":false}]},{"scriptId":"33","url":"node:internal/process/promises","functions":[{"functionName":"","ranges":[{"startOffset":1335,"endOffset":1447,"count":1}],"isBlockCoverage":false}]},{"scriptId":"37","url":"node:internal/process/execution","functions":[{"functionName":"tryGetCwd","ranges":[{"startOffset":1182,"endOffset":1512,"count":2}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":4971,"endOffset":6522,"count":1}],"isBlockCoverage":false},{"functionName":"decorateCJSErrorWithTSMessage","ranges":[{"startOffset":6985,"endOffset":7310,"count":1}],"isBlockCoverage":false},{"functionName":"evalTypeScript","ranges":[{"startOffset":8166,"endOffset":10303,"count":1}],"isBlockCoverage":false},{"functionName":"evalFunction","ranges":[{"startOffset":9717,"endOffset":10164,"count":0}],"isBlockCoverage":false},{"functionName":"compileScript","ranges":[{"startOffset":13653,"endOffset":14540,"count":1}],"isBlockCoverage":false},{"functionName":"importModuleDynamically","ranges":[{"startOffset":13745,"endOffset":14086,"count":0}],"isBlockCoverage":false},{"functionName":"shouldUseModuleEntryPoint","ranges":[{"startOffset":14740,"endOffset":14958,"count":1}],"isBlockCoverage":false},{"functionName":"createModule","ranges":[{"startOffset":15107,"endOffset":15379,"count":1}],"isBlockCoverage":false}]},{"scriptId":"38","url":"node:path","functions":[{"functionName":"isPosixPathSeparator","ranges":[{"startOffset":2121,"endOffset":2198,"count":255}],"isBlockCoverage":false},{"functionName":"normalizeString","ranges":[{"startOffset":2933,"endOffset":4873,"count":8}],"isBlockCoverage":false},{"functionName":"resolve","ranges":[{"startOffset":39344,"endOffset":40673,"count":7}],"isBlockCoverage":false},{"functionName":"normalize","ranges":[{"startOffset":40739,"endOffset":41352,"count":1}],"isBlockCoverage":false},{"functionName":"join","ranges":[{"startOffset":41644,"endOffset":42008,"count":1}],"isBlockCoverage":false},{"functionName":"dirname","ranges":[{"startOffset":44666,"endOffset":45342,"count":2}],"isBlockCoverage":false}]},{"scriptId":"39","url":"node:internal/url","functions":[{"functionName":"<instance_members_initializer>","ranges":[{"startOffset":3976,"endOffset":4379,"count":1}],"isBlockCoverage":false},{"functionName":"<instance_members_initializer>","ranges":[{"startOffset":22567,"endOffset":22636,"count":1}],"isBlockCoverage":false},{"functionName":"URL","ranges":[{"startOffset":23180,"endOffset":24085,"count":1}],"isBlockCoverage":false},{"functionName":"#ensureSearchParamsUpdated","ranges":[{"startOffset":25519,"endOffset":25958,"count":1}],"isBlockCoverage":false},{"functionName":"#updateContext","ranges":[{"startOffset":26206,"endOffset":27851,"count":1}],"isBlockCoverage":false},{"functionName":"get href","ranges":[{"startOffset":28044,"endOffset":28229,"count":1}],"isBlockCoverage":false},{"functionName":"pathToFileURL","ranges":[{"startOffset":50226,"endOffset":52077,"count":1}],"isBlockCoverage":false}]},{"scriptId":"44","url":"node:internal/modules/typescript","functions":[{"functionName":"","ranges":[{"startOffset":995,"endOffset":1132,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":1318,"endOffset":1438,"count":1}],"isBlockCoverage":false},{"functionName":"parseTypeScript","ranges":[{"startOffset":1620,"endOffset":2723,"count":1}],"isBlockCoverage":false},{"functionName":"decorateErrorWithSnippet","ranges":[{"startOffset":2946,"endOffset":3161,"count":1}],"isBlockCoverage":false},{"functionName":"processTypeScriptCode","ranges":[{"startOffset":4780,"endOffset":5095,"count":1}],"isBlockCoverage":false},{"functionName":"getCachedCodeType","ranges":[{"startOffset":5289,"endOffset":5503,"count":1}],"isBlockCoverage":false},{"functionName":"stripTypeScriptModuleTypes","ranges":[{"startOffset":5786,"endOffset":7442,"count":1}],"isBlockCoverage":false}]},{"scriptId":"45","url":"node:internal/vm","functions":[{"functionName":"makeContextifyScript","ranges":[{"startOffset":6766,"endOffset":7942,"count":1}],"isBlockCoverage":false}]},{"scriptId":"47","url":"node:internal/source_map/source_map_cache","functions":[{"functionName":"setSourceMapsSupport","ranges":[{"startOffset":2182,"endOffset":2951,"count":1}],"isBlockCoverage":false}]},{"scriptId":"50","url":"node:internal/encoding","functions":[{"functionName":"validateDecoder","ranges":[{"startOffset":1722,"endOffset":1847,"count":19}],"isBlockCoverage":false},{"functionName":"getEncodingFromLabel","ranges":[{"startOffset":9643,"endOffset":9822,"count":1}],"isBlockCoverage":false},{"functionName":"TextEncoder","ranges":[{"startOffset":9846,"endOffset":9892,"count":1}],"isBlockCoverage":false},{"functionName":"TextDecoder","ranges":[{"startOffset":11925,"endOffset":13100,"count":1}],"isBlockCoverage":false},{"functionName":"decode","ranges":[{"startOffset":13776,"endOffset":16506,"count":19}],"isBlockCoverage":false}]},{"scriptId":"54","url":"node:internal/process/permission","functions":[{"functionName":"availableFlags","ranges":[{"startOffset":883,"endOffset":1104,"count":1}],"isBlockCoverage":false}]},{"scriptId":"55","url":"node:internal/modules/helpers","functions":[{"functionName":"","ranges":[{"startOffset":1421,"endOffset":1446,"count":1}],"isBlockCoverage":false},{"functionName":"initializeCjsConditions","ranges":[{"startOffset":2252,"endOffset":2815,"count":1}],"isBlockCoverage":false},{"functionName":"loadBuiltinModule","ranges":[{"startOffset":3355,"endOffset":3721,"count":1}],"isBlockCoverage":false},{"functionName":"addBuiltinLibsToObject","ranges":[{"startOffset":6642,"endOffset":8581,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":7141,"endOffset":8577,"count":72}],"isBlockCoverage":false},{"functionName":"setReal","ranges":[{"startOffset":7735,"endOffset":7905,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":7983,"endOffset":8493,"count":1}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":8249,"endOffset":8258,"count":0}],"isBlockCoverage":false},{"functionName":"hasStartedUserCJSExecution","ranges":[{"startOffset":15586,"endOffset":15660,"count":1}],"isBlockCoverage":false},{"functionName":"hasStartedUserESMExecution","ranges":[{"startOffset":15745,"endOffset":15819,"count":1}],"isBlockCoverage":false}]},{"scriptId":"58","url":"node:internal/console/constructor","functions":[{"functionName":"value","ranges":[{"startOffset":6143,"endOffset":6722,"count":1}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":6352,"endOffset":6416,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":6428,"endOffset":6458,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":6588,"endOffset":6652,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":6664,"endOffset":6694,"count":0}],"isBlockCoverage":false},{"functionName":"initializeGlobalConsole","ranges":[{"startOffset":20685,"endOffset":21675,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":21570,"endOffset":21671,"count":0}],"isBlockCoverage":false}]},{"scriptId":"60","url":"node:internal/event_target","functions":[{"functionName":"defineEventHandler","ranges":[{"startOffset":30237,"endOffset":31711,"count":1}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":30397,"endOffset":30537,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":30636,"endOffset":31478,"count":0}],"isBlockCoverage":false}]},{"scriptId":"65","url":"node:internal/bootstrap/switches/is_main_thread","functions":[{"functionName":"createWritableStdioStream","ranges":[{"startOffset":1428,"endOffset":3030,"count":1}],"isBlockCoverage":false},{"functionName":"write","ranges":[{"startOffset":2845,"endOffset":2892,"count":0}],"isBlockCoverage":false},{"functionName":"addCleanup","ranges":[{"startOffset":3643,"endOffset":3734,"count":1}],"isBlockCoverage":false},{"functionName":"getStderr","ranges":[{"startOffset":4430,"endOffset":5121,"count":2}],"isBlockCoverage":false},{"functionName":"cleanupStderr","ranges":[{"startOffset":4787,"endOffset":4965,"count":0}],"isBlockCoverage":false}]},{"scriptId":"66","url":"node:internal/process/signal","functions":[{"functionName":"isSignal","ranges":[{"startOffset":238,"endOffset":334,"count":1}],"isBlockCoverage":false},{"functionName":"startListeningIfSignal","ranges":[{"startOffset":398,"endOffset":908,"count":1}],"isBlockCoverage":false}]},{"scriptId":"68","url":"node:internal/modules/cjs/loader","functions":[{"functionName":"","ranges":[{"startOffset":5438,"endOffset":5481,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":6206,"endOffset":6265,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":6354,"endOffset":6392,"count":1}],"isBlockCoverage":false},{"functionName":"wrapModuleLoad","ranges":[{"startOffset":6648,"endOffset":7335,"count":1}],"isBlockCoverage":false},{"functionName":"updateChildren","ranges":[{"startOffset":8563,"endOffset":8765,"count":2}],"isBlockCoverage":false},{"functionName":"reportModuleToWatchMode","ranges":[{"startOffset":8901,"endOffset":9057,"count":1}],"isBlockCoverage":false},{"functionName":"Module","ranges":[{"startOffset":9609,"endOffset":9913,"count":2}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":11922,"endOffset":11947,"count":1}],"isBlockCoverage":false},{"functionName":"initializeCJS","ranges":[{"startOffset":12686,"endOffset":13285,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":12943,"endOffset":12967,"count":73}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":26227,"endOffset":27415,"count":1}],"isBlockCoverage":false},{"functionName":"wrapResolveFilename","ranges":[{"startOffset":31709,"endOffset":31943,"count":1}],"isBlockCoverage":false},{"functionName":"defaultResolveImplForCJSLoading","ranges":[{"startOffset":32203,"endOffset":32883,"count":1}],"isBlockCoverage":false},{"functionName":"resolveForCJSWithHooks","ranges":[{"startOffset":33473,"endOffset":36171,"count":1}],"isBlockCoverage":false},{"functionName":"defaultResolve","ranges":[{"startOffset":34278,"endOffset":35628,"count":0}],"isBlockCoverage":false},{"functionName":"loadBuiltinWithHooks","ranges":[{"startOffset":38524,"endOffset":39538,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":40319,"endOffset":45845,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":46410,"endOffset":49436,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":52193,"endOffset":52494,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":71005,"endOffset":71970,"count":1}],"isBlockCoverage":false}]},{"scriptId":"72","url":"node:internal/modules/esm/utils","functions":[{"functionName":"initializeDefaultConditions","ranges":[{"startOffset":1713,"endOffset":2205,"count":1}],"isBlockCoverage":false},{"functionName":"initializeESM","ranges":[{"startOffset":10889,"endOffset":11301,"count":1}],"isBlockCoverage":false}]},{"scriptId":"76","url":"node:internal/modules/esm/get_format","functions":[{"functionName":"initializeExtensionFormatMap","ranges":[{"startOffset":568,"endOffset":923,"count":1}],"isBlockCoverage":false}]},{"scriptId":"80","url":"node:internal/dns/utils","functions":[{"functionName":"initializeDns","ranges":[{"startOffset":5863,"endOffset":6320,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":6260,"endOffset":6316,"count":0}],"isBlockCoverage":false}]},{"scriptId":"82","url":"node:internal/process/pre_execution","functions":[{"functionName":"prepareMainThreadExecution","ranges":[{"startOffset":853,"endOffset":1134,"count":1}],"isBlockCoverage":false},{"functionName":"prepareExecution","ranges":[{"startOffset":2844,"endOffset":5303,"count":1}],"isBlockCoverage":false},{"functionName":"setupVmModules","ranges":[{"startOffset":5305,"endOffset":5804,"count":1}],"isBlockCoverage":false},{"functionName":"setupHttpProxy","ranges":[{"startOffset":5806,"endOffset":6780,"count":1}],"isBlockCoverage":false},{"functionName":"initializeModuleLoaders","ranges":[{"startOffset":6782,"endOffset":8101,"count":1}],"isBlockCoverage":false},{"functionName":"refreshRuntimeOptions","ranges":[{"startOffset":8103,"endOffset":8159,"count":1}],"isBlockCoverage":false},{"functionName":"patchProcessObject","ranges":[{"startOffset":8609,"endOffset":10946,"count":1}],"isBlockCoverage":false},{"functionName":"addReadOnlyProcessAlias","ranges":[{"startOffset":10948,"endOffset":11229,"count":13}],"isBlockCoverage":false},{"functionName":"setupWarningHandler","ranges":[{"startOffset":11231,"endOffset":11751,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":11635,"endOffset":11737,"count":0}],"isBlockCoverage":false},{"functionName":"setupWebsocket","ranges":[{"startOffset":11792,"endOffset":11947,"count":1}],"isBlockCoverage":false},{"functionName":"setupEventsource","ranges":[{"startOffset":12015,"endOffset":12140,"count":1}],"isBlockCoverage":false},{"functionName":"setupNavigator","ranges":[{"startOffset":12244,"endOffset":12645,"count":1}],"isBlockCoverage":false},{"functionName":"setupSQLite","ranges":[{"startOffset":12647,"endOffset":12854,"count":1}],"isBlockCoverage":false},{"functionName":"initializeConfigFileSupport","ranges":[{"startOffset":12856,"endOffset":13077,"count":1}],"isBlockCoverage":false},{"functionName":"setupQuic","ranges":[{"startOffset":13079,"endOffset":13278,"count":1}],"isBlockCoverage":false},{"functionName":"setupWebStorage","ranges":[{"startOffset":13280,"endOffset":13685,"count":1}],"isBlockCoverage":false},{"functionName":"setupCodeCoverage","ranges":[{"startOffset":13687,"endOffset":14208,"count":1}],"isBlockCoverage":false},{"functionName":"setupStacktracePrinterOnSigint","ranges":[{"startOffset":14210,"endOffset":14376,"count":1}],"isBlockCoverage":false},{"functionName":"initializeReport","ranges":[{"startOffset":14378,"endOffset":14627,"count":1}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":14523,"endOffset":14618,"count":0}],"isBlockCoverage":false},{"functionName":"setupDebugEnv","ranges":[{"startOffset":14629,"endOffset":14860,"count":1}],"isBlockCoverage":false},{"functionName":"initializeReportSignalHandlers","ranges":[{"startOffset":14922,"endOffset":15110,"count":1}],"isBlockCoverage":false},{"functionName":"initializeHeapSnapshotSignalHandlers","ranges":[{"startOffset":15112,"endOffset":15846,"count":1}],"isBlockCoverage":false},{"functionName":"doWriteHeapSnapshot","ranges":[{"startOffset":15420,"endOffset":15574,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":15766,"endOffset":15838,"count":0}],"isBlockCoverage":false},{"functionName":"setupTraceCategoryState","ranges":[{"startOffset":15848,"endOffset":16107,"count":1}],"isBlockCoverage":false},{"functionName":"setupInspectorHooks","ranges":[{"startOffset":16109,"endOffset":16691,"count":1}],"isBlockCoverage":false},{"functionName":"setupNetworkInspection","ranges":[{"startOffset":16693,"endOffset":17006,"count":1}],"isBlockCoverage":false},{"functionName":"initializeDeprecations","ranges":[{"startOffset":17201,"endOffset":19103,"count":1}],"isBlockCoverage":false},{"functionName":"setupChildProcessIpcChannel","ranges":[{"startOffset":19105,"endOffset":19622,"count":1}],"isBlockCoverage":false},{"functionName":"initializeClusterIPC","ranges":[{"startOffset":19624,"endOffset":19894,"count":1}],"isBlockCoverage":false},{"functionName":"setupDiagnosticsChannel","ranges":[{"startOffset":19896,"endOffset":20219,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":20189,"endOffset":20215,"count":0}],"isBlockCoverage":false},{"functionName":"initializePermission","ranges":[{"startOffset":20221,"endOffset":22017,"count":1}],"isBlockCoverage":false},{"functionName":"binding","ranges":[{"startOffset":20350,"endOffset":20437,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":21862,"endOffset":22009,"count":7}],"isBlockCoverage":false},{"functionName":"initializeSourceMapsHandlers","ranges":[{"startOffset":22019,"endOffset":22525,"count":1}],"isBlockCoverage":false},{"functionName":"initializeFrozenIntrinsics","ranges":[{"startOffset":22527,"endOffset":22714,"count":1}],"isBlockCoverage":false},{"functionName":"loadPreloadModules","ranges":[{"startOffset":22821,"endOffset":23169,"count":1}],"isBlockCoverage":false},{"functionName":"markBootstrapComplete","ranges":[{"startOffset":23171,"endOffset":23265,"count":1}],"isBlockCoverage":false}]},{"scriptId":"83","url":"node:internal/bootstrap/switches/does_own_process_state","functions":[{"functionName":"","ranges":[{"startOffset":3373,"endOffset":3408,"count":1}],"isBlockCoverage":false},{"functionName":"wrappedCwd","ranges":[{"startOffset":3731,"endOffset":3834,"count":2}],"isBlockCoverage":false}]},{"scriptId":"84","url":"node:internal/main/eval_string","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":2570,"count":1}],"isBlockCoverage":false},{"functionName":"setReal","ranges":[{"startOffset":1669,"endOffset":1839,"count":0}],"isBlockCoverage":false}]},{"scriptId":"85","url":"node:module","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":1121,"count":1}],"isBlockCoverage":false}]},{"scriptId":"86","url":"node:internal/source_map/source_map","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":12150,"count":1}],"isBlockCoverage":false},{"functionName":"StringCharIterator","ranges":[{"startOffset":4032,"endOffset":4108,"count":0}],"isBlockCoverage":false},{"functionName":"next","ranges":[{"startOffset":4147,"endOffset":4225,"count":0}],"isBlockCoverage":false},{"functionName":"peek","ranges":[{"startOffset":4264,"endOffset":4340,"count":0}],"isBlockCoverage":false},{"functionName":"hasNext","ranges":[{"startOffset":4380,"endOffset":4444,"count":0}],"isBlockCoverage":false},{"functionName":"<instance_members_initializer>","ranges":[{"startOffset":4615,"endOffset":6191,"count":0}],"isBlockCoverage":false},{"functionName":"findEntry","ranges":[{"startOffset":6439,"endOffset":7303,"count":0}],"isBlockCoverage":false},{"functionName":"findOrigin","ranges":[{"startOffset":7572,"endOffset":8247,"count":0}],"isBlockCoverage":false},{"functionName":"#parseMap","ranges":[{"startOffset":8278,"endOffset":10093,"count":0}],"isBlockCoverage":false},{"functionName":"isSeparator","ranges":[{"startOffset":10151,"endOffset":10220,"count":0}],"isBlockCoverage":false},{"functionName":"decodeVLQ","ranges":[{"startOffset":10311,"endOffset":11244,"count":0}],"isBlockCoverage":false},{"functionName":"cloneSourceMapV3","ranges":[{"startOffset":11312,"endOffset":11624,"count":0}],"isBlockCoverage":false},{"functionName":"compareSourceMapEntry","ranges":[{"startOffset":11821,"endOffset":12100,"count":0}],"isBlockCoverage":false}]},{"scriptId":"90","url":"node:internal/deps/amaro/dist/index","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":3360702,"count":1}],"isBlockCoverage":false},{"functionName":"__commonJS","ranges":[{"startOffset":302,"endOffset":441,"count":1}],"isBlockCoverage":true},{"functionName":"__require","ranges":[{"startOffset":315,"endOffset":441,"count":1}],"isBlockCoverage":true},{"functionName":"__export","ranges":[{"startOffset":458,"endOffset":569,"count":1}],"isBlockCoverage":true},{"functionName":"__copyProps","ranges":[{"startOffset":589,"endOffset":935,"count":2},{"startOffset":658,"endOffset":687,"count":0},{"startOffset":742,"endOffset":916,"count":65}],"isBlockCoverage":true},{"functionName":"get","ranges":[{"startOffset":827,"endOffset":842,"count":1}],"isBlockCoverage":true},{"functionName":"__toESM","ranges":[{"startOffset":951,"endOffset":1460,"count":1},{"startOffset":1032,"endOffset":1036,"count":0},{"startOffset":1442,"endOffset":1450,"count":0}],"isBlockCoverage":true},{"functionName":"__toCommonJS","ranges":[{"startOffset":1481,"endOffset":1552,"count":1}],"isBlockCoverage":true},{"functionName":"lib/wasm.js","ranges":[{"startOffset":1604,"endOffset":3359908,"count":1},{"startOffset":3862,"endOffset":3918,"count":0},{"startOffset":6424,"endOffset":6601,"count":0}],"isBlockCoverage":true},{"functionName":"getObject","ranges":[{"startOffset":1898,"endOffset":1953,"count":149}],"isBlockCoverage":true},{"functionName":"addHeapObject","ranges":[{"startOffset":1991,"endOffset":2190,"count":62},{"startOffset":2058,"endOffset":2085,"count":18}],"isBlockCoverage":true},{"functionName":"handleError","ranges":[{"startOffset":2195,"endOffset":2360,"count":1},{"startOffset":2283,"endOffset":2354,"count":0}],"isBlockCoverage":true},{"functionName":"getUint8ArrayMemory0","ranges":[{"startOffset":2512,"endOffset":2757,"count":26},{"startOffset":2589,"endOffset":2632,"count":25},{"startOffset":2634,"endOffset":2713,"count":1}],"isBlockCoverage":true},{"functionName":"getStringFromWasm0","ranges":[{"startOffset":2762,"endOffset":2918,"count":18}],"isBlockCoverage":true},{"functionName":"getCachedStringFromWasm0","ranges":[{"startOffset":2923,"endOffset":3096,"count":0}],"isBlockCoverage":false},{"functionName":"dropObject","ranges":[{"startOffset":3101,"endOffset":3214,"count":48},{"startOffset":3149,"endOffset":3156,"count":0}],"isBlockCoverage":true},{"functionName":"takeObject","ranges":[{"startOffset":3219,"endOffset":3326,"count":48}],"isBlockCoverage":true},{"functionName":"isLikeNone","ranges":[{"startOffset":3331,"endOffset":3402,"count":10},{"startOffset":3382,"endOffset":3395,"count":8}],"isBlockCoverage":true},{"functionName":"getDataViewMemory0","ranges":[{"startOffset":3445,"endOffset":3793,"count":21},{"startOffset":3518,"endOffset":3567,"count":20},{"startOffset":3568,"endOffset":3674,"count":20},{"startOffset":3620,"endOffset":3674,"count":0},{"startOffset":3676,"endOffset":3751,"count":1}],"isBlockCoverage":true},{"functionName":"register","ranges":[{"startOffset":3876,"endOffset":3889,"count":0}],"isBlockCoverage":false},{"functionName":"unregister","ranges":[{"startOffset":3903,"endOffset":3916,"count":0}],"isBlockCoverage":false},{"functionName":"CLOSURE_DTORS","ranges":[{"startOffset":3946,"endOffset":4030,"count":0}],"isBlockCoverage":false},{"functionName":"makeMutClosure","ranges":[{"startOffset":4037,"endOffset":4642,"count":0}],"isBlockCoverage":false},{"functionName":"debugString","ranges":[{"startOffset":4647,"endOffset":6182,"count":0}],"isBlockCoverage":false},{"functionName":"encodeString","ranges":[{"startOffset":6342,"endOffset":6423,"count":0}],"isBlockCoverage":false},{"functionName":"encodeString","ranges":[{"startOffset":6426,"endOffset":6601,"count":0}],"isBlockCoverage":false},{"functionName":"passStringToWasm0","ranges":[{"startOffset":6607,"endOffset":7662,"count":8},{"startOffset":6688,"endOffset":6932,"count":0},{"startOffset":7100,"endOffset":7219,"count":634},{"startOffset":7171,"endOffset":7177,"count":0},{"startOffset":7246,"endOffset":7606,"count":0}],"isBlockCoverage":true},{"functionName":"module2.exports.transform","ranges":[{"startOffset":7695,"endOffset":7837,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.transformSync","ranges":[{"startOffset":7875,"endOffset":8444,"count":1},{"startOffset":8331,"endOffset":8371,"count":0}],"isBlockCoverage":true},{"functionName":"__wbg_adapter_50","ranges":[{"startOffset":8450,"endOffset":8566,"count":0}],"isBlockCoverage":false},{"functionName":"__wbg_adapter_95","ranges":[{"startOffset":8571,"endOffset":8714,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_buffer_609cc3eee51ed158","ranges":[{"startOffset":8767,"endOffset":8864,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_call_672a4d21634d4a24","ranges":[{"startOffset":8916,"endOffset":9097,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_call_7cccdd69e0791ae2","ranges":[{"startOffset":9149,"endOffset":9353,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_done_769e5ede4b31c67b","ranges":[{"startOffset":9405,"endOffset":9485,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_entries_3265d4158b33e5dc","ranges":[{"startOffset":9540,"endOffset":9646,"count":1}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbg_get_67b2ba62fc30de12","ranges":[{"startOffset":9697,"endOffset":9886,"count":1}],"isBlockCoverage":true},{"functionName":"","ranges":[{"startOffset":9735,"endOffset":9867,"count":1}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbg_get_b9b93047fe3cf45b","ranges":[{"startOffset":9937,"endOffset":10045,"count":12}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbg_getwithrefkey_1dc361bd10053bfe","ranges":[{"startOffset":10106,"endOffset":10219,"count":7}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbg_instanceof_ArrayBuffer_e14585432e3737fc","ranges":[{"startOffset":10289,"endOffset":10494,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_instanceof_Map_f3469ce2244d2430","ranges":[{"startOffset":10556,"endOffset":10753,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_instanceof_Uint8Array_17156bcf118086a9","ranges":[{"startOffset":10822,"endOffset":11026,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_isArray_a1eab7e0d067391b","ranges":[{"startOffset":11081,"endOffset":11171,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_isSafeInteger_343e2beeeece1bb0","ranges":[{"startOffset":11232,"endOffset":11329,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_iterator_9a24c88df860dc65","ranges":[{"startOffset":11385,"endOffset":11471,"count":1}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbg_length_a446193dc22c12f8","ranges":[{"startOffset":11525,"endOffset":11607,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_length_e2d2a49132c1b256","ranges":[{"startOffset":11661,"endOffset":11743,"count":1}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbg_new_23a2665fac83c611","ranges":[{"startOffset":11794,"endOffset":12252,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_new_405e22f390576ce2","ranges":[{"startOffset":12303,"endOffset":12386,"count":1}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbg_new_78feb108b6472713","ranges":[{"startOffset":12437,"endOffset":12519,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_new_a12002a7f91c75be","ranges":[{"startOffset":12570,"endOffset":12676,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_newnoargs_105ed471475aaf50","ranges":[{"startOffset":12733,"endOffset":12883,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_next_25feadfc0913fea9","ranges":[{"startOffset":12935,"endOffset":13030,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_next_6574e1a8a62d1055","ranges":[{"startOffset":13082,"endOffset":13242,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_queueMicrotask_97d92b4fcc8a61c5","ranges":[{"startOffset":13304,"endOffset":13365,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_queueMicrotask_d3219def82552485","ranges":[{"startOffset":13427,"endOffset":13532,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_resolve_4851785c9c5f573d","ranges":[{"startOffset":13587,"endOffset":13694,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_set_37837023f3d740e8","ranges":[{"startOffset":13745,"endOffset":13833,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_set_3f1d0b984ed272ed","ranges":[{"startOffset":13884,"endOffset":13978,"count":8}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbg_set_65595bdd868b3009","ranges":[{"startOffset":14029,"endOffset":14119,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_static_accessor_GLOBAL_88a902d13a557d07","ranges":[{"startOffset":14189,"endOffset":14327,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_static_accessor_GLOBAL_THIS_56578be7e9f832b0","ranges":[{"startOffset":14402,"endOffset":14548,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_static_accessor_SELF_37c5d418e4bf5819","ranges":[{"startOffset":14616,"endOffset":14750,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_static_accessor_WINDOW_5de37043a91a9c40","ranges":[{"startOffset":14820,"endOffset":14958,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_then_44b73946d2fb3e7d","ranges":[{"startOffset":15010,"endOffset":15128,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_toString_5285597960676b7b","ranges":[{"startOffset":15184,"endOffset":15285,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbg_value_cd1ffa7b1ab794f1","ranges":[{"startOffset":15338,"endOffset":15434,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbindgen_bigint_from_i64","ranges":[{"startOffset":15485,"endOffset":15564,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbindgen_bigint_from_u64","ranges":[{"startOffset":15615,"endOffset":15714,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbindgen_bigint_get_as_i64","ranges":[{"startOffset":15767,"endOffset":16052,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbindgen_boolean_get","ranges":[{"startOffset":16099,"endOffset":16230,"count":6},{"startOffset":16190,"endOffset":16201,"count":5},{"startOffset":16194,"endOffset":16197,"count":4},{"startOffset":16198,"endOffset":16201,"count":1},{"startOffset":16202,"endOffset":16205,"count":1}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_cb_drop","ranges":[{"startOffset":16273,"endOffset":16459,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbindgen_closure_wrapper5029","ranges":[{"startOffset":16514,"endOffset":16650,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbindgen_debug_string","ranges":[{"startOffset":16698,"endOffset":17031,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbindgen_error_new","ranges":[{"startOffset":17076,"endOffset":17198,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbindgen_in","ranges":[{"startOffset":17236,"endOffset":17336,"count":2}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_is_bigint","ranges":[{"startOffset":17381,"endOffset":17476,"count":1}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_is_falsy","ranges":[{"startOffset":17520,"endOffset":17596,"count":1}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_is_function","ranges":[{"startOffset":17643,"endOffset":17740,"count":1}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_is_object","ranges":[{"startOffset":17785,"endOffset":17919,"count":2}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_is_string","ranges":[{"startOffset":17964,"endOffset":18059,"count":1}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_is_undefined","ranges":[{"startOffset":18107,"endOffset":18193,"count":7}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_jsval_eq","ranges":[{"startOffset":18237,"endOffset":18338,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbindgen_jsval_loose_eq","ranges":[{"startOffset":18388,"endOffset":18488,"count":8}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_memory","ranges":[{"startOffset":18530,"endOffset":18612,"count":0}],"isBlockCoverage":false},{"functionName":"module2.exports.__wbindgen_number_get","ranges":[{"startOffset":18658,"endOffset":18940,"count":1},{"startOffset":18758,"endOffset":18763,"count":0},{"startOffset":18846,"endOffset":18851,"count":0}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_number_new","ranges":[{"startOffset":18986,"endOffset":19065,"count":4}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_object_clone_ref","ranges":[{"startOffset":19117,"endOffset":19207,"count":15}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_object_drop_ref","ranges":[{"startOffset":19258,"endOffset":19304,"count":31}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_string_get","ranges":[{"startOffset":19350,"endOffset":19746,"count":8},{"startOffset":19456,"endOffset":19464,"count":0},{"startOffset":19499,"endOffset":19502,"count":0}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_string_new","ranges":[{"startOffset":19792,"endOffset":19903,"count":18}],"isBlockCoverage":true},{"functionName":"module2.exports.__wbindgen_throw","ranges":[{"startOffset":19944,"endOffset":20027,"count":0}],"isBlockCoverage":false},{"functionName":"transformSync","ranges":[{"startOffset":3359993,"endOffset":3360012,"count":1}],"isBlockCoverage":true},{"functionName":"transformSync","ranges":[{"startOffset":3360419,"endOffset":3360594,"count":1},{"startOffset":3360487,"endOffset":3360492,"count":0}],"isBlockCoverage":true}]},{"scriptId":"92","url":"node:internal/util/colors","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":1321,"count":1}],"isBlockCoverage":false},{"functionName":"lazyInternalTTY","ranges":[{"startOffset":32,"endOffset":127,"count":0}],"isBlockCoverage":false},{"functionName":"shouldColorize","ranges":[{"startOffset":257,"endOffset":517,"count":2},{"startOffset":329,"endOffset":388,"count":0},{"startOffset":414,"endOffset":512,"count":0}],"isBlockCoverage":true},{"functionName":"refresh","ranges":[{"startOffset":521,"endOffset":1289,"count":1},{"startOffset":588,"endOffset":971,"count":0}],"isBlockCoverage":true}]},{"scriptId":"93","url":"node:internal/fs/sync_write_stream","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":1101,"count":1}],"isBlockCoverage":false},{"functionName":"SyncWriteStream","ranges":[{"startOffset":230,"endOffset":485,"count":1},{"startOffset":456,"endOffset":462,"count":0}],"isBlockCoverage":true},{"functionName":"SyncWriteStream._write","ranges":[{"startOffset":641,"endOffset":781,"count":0}],"isBlockCoverage":false},{"functionName":"SyncWriteStream._destroy","ranges":[{"startOffset":821,"endOffset":986,"count":0}],"isBlockCoverage":false}]},{"scriptId":"94","url":"node:stream","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":5099,"count":1}],"isBlockCoverage":false},{"functionName":"fn","ranges":[{"startOffset":2556,"endOffset":2716,"count":0}],"isBlockCoverage":false},{"functionName":"fn","ranges":[{"startOffset":3218,"endOffset":3356,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":4404,"endOffset":4436,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":4534,"endOffset":4575,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":4668,"endOffset":4709,"count":0}],"isBlockCoverage":false},{"functionName":"_uint8ArrayToBuffer","ranges":[{"startOffset":4890,"endOffset":5097,"count":0}],"isBlockCoverage":false}]},{"scriptId":"95","url":"node:internal/streams/operators","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":8832,"count":1}],"isBlockCoverage":false},{"functionName":"map","ranges":[{"startOffset":721,"endOffset":3732,"count":0}],"isBlockCoverage":false},{"functionName":"some","ranges":[{"startOffset":3734,"endOffset":3882,"count":0}],"isBlockCoverage":false},{"functionName":"every","ranges":[{"startOffset":3884,"endOffset":4120,"count":0}],"isBlockCoverage":false},{"functionName":"find","ranges":[{"startOffset":4122,"endOffset":4264,"count":0}],"isBlockCoverage":false},{"functionName":"forEach","ranges":[{"startOffset":4266,"endOffset":4544,"count":0}],"isBlockCoverage":false},{"functionName":"filter","ranges":[{"startOffset":4546,"endOffset":4781,"count":0}],"isBlockCoverage":false},{"functionName":"ReduceAwareErrMissingArgs","ranges":[{"startOffset":4997,"endOffset":5111,"count":0}],"isBlockCoverage":false},{"functionName":"reduce","ranges":[{"startOffset":5115,"endOffset":6460,"count":0}],"isBlockCoverage":false},{"functionName":"toArray","ranges":[{"startOffset":6462,"endOffset":6891,"count":0}],"isBlockCoverage":false},{"functionName":"flatMap","ranges":[{"startOffset":6893,"endOffset":7087,"count":0}],"isBlockCoverage":false},{"functionName":"toIntegerOrInfinity","ranges":[{"startOffset":7089,"endOffset":7411,"count":0}],"isBlockCoverage":false},{"functionName":"drop","ranges":[{"startOffset":7413,"endOffset":7961,"count":0}],"isBlockCoverage":false},{"functionName":"take","ranges":[{"startOffset":7963,"endOffset":8633,"count":0}],"isBlockCoverage":false}]},{"scriptId":"96","url":"node:internal/abort_controller","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":16475,"count":1}],"isBlockCoverage":false},{"functionName":"lazyMessageChannel","ranges":[{"startOffset":1723,"endOffset":1856,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":2000,"endOffset":2249,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":2363,"endOffset":2776,"count":0}],"isBlockCoverage":false},{"functionName":"customInspect","ranges":[{"startOffset":3131,"endOffset":3390,"count":0}],"isBlockCoverage":false},{"functionName":"validateThisAbortSignal","ranges":[{"startOffset":3392,"endOffset":3517,"count":0}],"isBlockCoverage":false},{"functionName":"setWeakAbortSignalTimeout","ranges":[{"startOffset":4099,"endOffset":4499,"count":0}],"isBlockCoverage":false},{"functionName":"AbortSignal","ranges":[{"startOffset":4759,"endOffset":5270,"count":0}],"isBlockCoverage":false},{"functionName":"get aborted","ranges":[{"startOffset":5307,"endOffset":5390,"count":0}],"isBlockCoverage":false},{"functionName":"get reason","ranges":[{"startOffset":5423,"endOffset":5502,"count":0}],"isBlockCoverage":false},{"functionName":"throwIfAborted","ranges":[{"startOffset":5506,"endOffset":5622,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":5626,"endOffset":5755,"count":0}],"isBlockCoverage":false},{"functionName":"abort","ranges":[{"startOffset":5833,"endOffset":5993,"count":0}],"isBlockCoverage":false},{"functionName":"timeout","ranges":[{"startOffset":6071,"endOffset":6351,"count":0}],"isBlockCoverage":false},{"functionName":"any","ranges":[{"startOffset":6438,"endOffset":9063,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":9067,"endOffset":9835,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":9839,"endOffset":10193,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":10197,"endOffset":10804,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":10808,"endOffset":11060,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":11064,"endOffset":11512,"count":0}],"isBlockCoverage":false},{"functionName":"ClonedAbortSignal","ranges":[{"startOffset":11693,"endOffset":11793,"count":0}],"isBlockCoverage":false},{"functionName":"ClonedAbortSignal.<computed>","ranges":[{"startOffset":11838,"endOffset":11846,"count":0}],"isBlockCoverage":false},{"functionName":"abortSignal","ranges":[{"startOffset":12216,"endOffset":14011,"count":0}],"isBlockCoverage":false},{"functionName":"runAbort","ranges":[{"startOffset":14065,"endOffset":14193,"count":0}],"isBlockCoverage":false},{"functionName":"<instance_members_initializer>","ranges":[{"startOffset":14221,"endOffset":14228,"count":0}],"isBlockCoverage":false},{"functionName":"get signal","ranges":[{"startOffset":14270,"endOffset":14370,"count":0}],"isBlockCoverage":false},{"functionName":"abort","ranges":[{"startOffset":14413,"endOffset":14572,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":14576,"endOffset":14703,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":14714,"endOffset":14894,"count":0}],"isBlockCoverage":false},{"functionName":"transferableAbortSignal","ranges":[{"startOffset":15044,"endOffset":15255,"count":0}],"isBlockCoverage":false},{"functionName":"transferableAbortController","ranges":[{"startOffset":15357,"endOffset":15446,"count":0}],"isBlockCoverage":false},{"functionName":"aborted","ranges":[{"startOffset":15540,"endOffset":16026,"count":0}],"isBlockCoverage":false}]},{"scriptId":"97","url":"node:internal/streams/end-of-stream","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":8882,"count":1}],"isBlockCoverage":false},{"functionName":"isRequest","ranges":[{"startOffset":916,"endOffset":1011,"count":0}],"isBlockCoverage":false},{"functionName":"nop","ranges":[{"startOffset":1025,"endOffset":1033,"count":0}],"isBlockCoverage":false},{"functionName":"bindAsyncResource","ranges":[{"startOffset":1036,"endOffset":1268,"count":0}],"isBlockCoverage":false},{"functionName":"eos","ranges":[{"startOffset":1270,"endOffset":7468,"count":0}],"isBlockCoverage":false},{"functionName":"eosWeb","ranges":[{"startOffset":7470,"endOffset":8379,"count":0}],"isBlockCoverage":false},{"functionName":"finished","ranges":[{"startOffset":8381,"endOffset":8839,"count":0}],"isBlockCoverage":false}]},{"scriptId":"98","url":"node:internal/streams/compose","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":5515,"count":1}],"isBlockCoverage":false},{"functionName":"compose","ranges":[{"startOffset":596,"endOffset":5513,"count":0}],"isBlockCoverage":false}]},{"scriptId":"99","url":"node:internal/streams/pipeline","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":12720,"count":1}],"isBlockCoverage":false},{"functionName":"destroyer","ranges":[{"startOffset":1093,"endOffset":1522,"count":0}],"isBlockCoverage":false},{"functionName":"popCallback","ranges":[{"startOffset":1524,"endOffset":1852,"count":0}],"isBlockCoverage":false},{"functionName":"makeAsyncIterable","ranges":[{"startOffset":1854,"endOffset":2140,"count":0}],"isBlockCoverage":false},{"functionName":"fromReadable","ranges":[{"startOffset":2142,"endOffset":2292,"count":0}],"isBlockCoverage":false},{"functionName":"pumpToNode","ranges":[{"startOffset":2294,"endOffset":3338,"count":0}],"isBlockCoverage":false},{"functionName":"pumpToWeb","ranges":[{"startOffset":3340,"endOffset":3938,"count":0}],"isBlockCoverage":false},{"functionName":"pipeline","ranges":[{"startOffset":3940,"endOffset":4033,"count":0}],"isBlockCoverage":false},{"functionName":"pipelineImpl","ranges":[{"startOffset":4035,"endOffset":10841,"count":0}],"isBlockCoverage":false},{"functionName":"pipe","ranges":[{"startOffset":10843,"endOffset":12673,"count":0}],"isBlockCoverage":false}]},{"scriptId":"100","url":"node:internal/streams/destroy","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":7355,"count":1}],"isBlockCoverage":false},{"functionName":"checkError","ranges":[{"startOffset":488,"endOffset":799,"count":0}],"isBlockCoverage":false},{"functionName":"destroy","ranges":[{"startOffset":909,"endOffset":1786,"count":0}],"isBlockCoverage":false},{"functionName":"_destroy","ranges":[{"startOffset":1788,"endOffset":2412,"count":0}],"isBlockCoverage":false},{"functionName":"emitErrorCloseNT","ranges":[{"startOffset":2414,"endOffset":2501,"count":0}],"isBlockCoverage":false},{"functionName":"emitCloseNT","ranges":[{"startOffset":2503,"endOffset":2823,"count":0}],"isBlockCoverage":false},{"functionName":"emitErrorNT","ranges":[{"startOffset":2825,"endOffset":3172,"count":0}],"isBlockCoverage":false},{"functionName":"undestroy","ranges":[{"startOffset":3174,"endOffset":3864,"count":0}],"isBlockCoverage":false},{"functionName":"errorOrDestroy","ranges":[{"startOffset":3866,"endOffset":5005,"count":0}],"isBlockCoverage":false},{"functionName":"construct","ranges":[{"startOffset":5007,"endOffset":5423,"count":0}],"isBlockCoverage":false},{"functionName":"constructNT","ranges":[{"startOffset":5425,"endOffset":6164,"count":0}],"isBlockCoverage":false},{"functionName":"isRequest","ranges":[{"startOffset":6166,"endOffset":6262,"count":0}],"isBlockCoverage":false},{"functionName":"emitCloseLegacy","ranges":[{"startOffset":6264,"endOffset":6324,"count":0}],"isBlockCoverage":false},{"functionName":"emitErrorCloseLegacy","ranges":[{"startOffset":6326,"endOffset":6446,"count":0}],"isBlockCoverage":false},{"functionName":"destroyer","ranges":[{"startOffset":6481,"endOffset":7263,"count":0}],"isBlockCoverage":false}]},{"scriptId":"101","url":"node:internal/streams/duplex","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":6547,"count":1}],"isBlockCoverage":false},{"functionName":"Duplex","ranges":[{"startOffset":2315,"endOffset":4278,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":5426,"endOffset":5638,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":5644,"endOffset":5905,"count":0}],"isBlockCoverage":false},{"functionName":"lazyWebStreams","ranges":[{"startOffset":5979,"endOffset":6143,"count":0}],"isBlockCoverage":false},{"functionName":"Duplex.fromWeb","ranges":[{"startOffset":6162,"endOffset":6280,"count":0}],"isBlockCoverage":false},{"functionName":"Duplex.toWeb","ranges":[{"startOffset":6298,"endOffset":6405,"count":0}],"isBlockCoverage":false},{"functionName":"Duplex.from","ranges":[{"startOffset":6438,"endOffset":6545,"count":0}],"isBlockCoverage":false}]},{"scriptId":"102","url":"node:internal/streams/legacy","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":3328,"count":1}],"isBlockCoverage":false},{"functionName":"Stream","ranges":[{"startOffset":130,"endOffset":178,"count":1}],"isBlockCoverage":true},{"functionName":"Stream.pipe","ranges":[{"startOffset":292,"endOffset":2171,"count":0}],"isBlockCoverage":false},{"functionName":"eventNames","ranges":[{"startOffset":2204,"endOffset":2470,"count":0}],"isBlockCoverage":false},{"functionName":"prependListener","ranges":[{"startOffset":2473,"endOffset":3280,"count":0}],"isBlockCoverage":false}]},{"scriptId":"103","url":"node:internal/streams/readable","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":51947,"count":1}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":1874,"endOffset":1899,"count":0}],"isBlockCoverage":false},{"functionName":"nop","ranges":[{"startOffset":2887,"endOffset":2895,"count":0}],"isBlockCoverage":false},{"functionName":"makeBitMapDescriptor","ranges":[{"startOffset":3791,"endOffset":4013,"count":19}],"isBlockCoverage":true},{"functionName":"get","ranges":[{"startOffset":3866,"endOffset":3910,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":3916,"endOffset":4005,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":6187,"endOffset":6275,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":6281,"endOffset":6447,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":6524,"endOffset":6624,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":6630,"endOffset":6860,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":6929,"endOffset":7017,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":7023,"endOffset":7189,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":7259,"endOffset":7349,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":7355,"endOffset":7524,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":7593,"endOffset":7696,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":7702,"endOffset":7969,"count":0}],"isBlockCoverage":false},{"functionName":"ReadableState","ranges":[{"startOffset":7982,"endOffset":9948,"count":0}],"isBlockCoverage":false},{"functionName":"onConstructed","ranges":[{"startOffset":9992,"endOffset":10109,"count":0}],"isBlockCoverage":false},{"functionName":"Readable","ranges":[{"startOffset":10112,"endOffset":11146,"count":0}],"isBlockCoverage":false},{"functionName":"Readable._destroy","ranges":[{"startOffset":11283,"endOffset":11315,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.<computed>","ranges":[{"startOffset":11366,"endOffset":11404,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.<computed>","ranges":[{"startOffset":11448,"endOffset":11709,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.push","ranges":[{"startOffset":11938,"endOffset":12207,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.unshift","ranges":[{"startOffset":12303,"endOffset":12570,"count":0}],"isBlockCoverage":false},{"functionName":"readableAddChunkUnshiftByteMode","ranges":[{"startOffset":12574,"endOffset":13630,"count":0}],"isBlockCoverage":false},{"functionName":"readableAddChunkUnshiftObjectMode","ranges":[{"startOffset":13632,"endOffset":13872,"count":0}],"isBlockCoverage":false},{"functionName":"readableAddChunkUnshiftValue","ranges":[{"startOffset":13874,"endOffset":14207,"count":0}],"isBlockCoverage":false},{"functionName":"readableAddChunkPushByteMode","ranges":[{"startOffset":14209,"endOffset":15591,"count":0}],"isBlockCoverage":false},{"functionName":"readableAddChunkPushObjectMode","ranges":[{"startOffset":15593,"endOffset":16190,"count":0}],"isBlockCoverage":false},{"functionName":"canPushMore","ranges":[{"startOffset":16192,"endOffset":16522,"count":0}],"isBlockCoverage":false},{"functionName":"addChunk","ranges":[{"startOffset":16524,"endOffset":17468,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.isPaused","ranges":[{"startOffset":17500,"endOffset":17655,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.setEncoding","ranges":[{"startOffset":17719,"endOffset":18289,"count":0}],"isBlockCoverage":false},{"functionName":"computeNewHighWaterMark","ranges":[{"startOffset":18350,"endOffset":18701,"count":0}],"isBlockCoverage":false},{"functionName":"howMuchToRead","ranges":[{"startOffset":18814,"endOffset":19295,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.read","ranges":[{"startOffset":19392,"endOffset":24067,"count":0}],"isBlockCoverage":false},{"functionName":"onEofChunk","ranges":[{"startOffset":24070,"endOffset":25024,"count":0}],"isBlockCoverage":false},{"functionName":"emitReadable","ranges":[{"startOffset":25225,"endOffset":25556,"count":0}],"isBlockCoverage":false},{"functionName":"emitReadable_","ranges":[{"startOffset":25558,"endOffset":26230,"count":0}],"isBlockCoverage":false},{"functionName":"maybeReadMore","ranges":[{"startOffset":26580,"endOffset":26798,"count":0}],"isBlockCoverage":false},{"functionName":"maybeReadMore_","ranges":[{"startOffset":26800,"endOffset":28629,"count":0}],"isBlockCoverage":false},{"functionName":"Readable._read","ranges":[{"startOffset":28900,"endOffset":28966,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.pipe","ranges":[{"startOffset":28995,"endOffset":33581,"count":0}],"isBlockCoverage":false},{"functionName":"pipeOnDrain","ranges":[{"startOffset":33584,"endOffset":34261,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.unpipe","ranges":[{"startOffset":34292,"endOffset":34993,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.on","ranges":[{"startOffset":35119,"endOffset":36128,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.removeListener","ranges":[{"startOffset":36223,"endOffset":36930,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.removeAllListeners","ranges":[{"startOffset":37033,"endOffset":37627,"count":0}],"isBlockCoverage":false},{"functionName":"updateReadableListening","ranges":[{"startOffset":37630,"endOffset":38332,"count":0}],"isBlockCoverage":false},{"functionName":"nReadingNextTick","ranges":[{"startOffset":38334,"endOffset":38422,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.resume","ranges":[{"startOffset":38576,"endOffset":39081,"count":0}],"isBlockCoverage":false},{"functionName":"resume","ranges":[{"startOffset":39084,"endOffset":39257,"count":0}],"isBlockCoverage":false},{"functionName":"resume_","ranges":[{"startOffset":39259,"endOffset":39573,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.pause","ranges":[{"startOffset":39602,"endOffset":39914,"count":0}],"isBlockCoverage":false},{"functionName":"flow","ranges":[{"startOffset":39917,"endOffset":40068,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.wrap","ranges":[{"startOffset":40252,"endOffset":41273,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.<computed>","ranges":[{"startOffset":41318,"endOffset":41370,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.iterator","ranges":[{"startOffset":41403,"endOffset":41546,"count":0}],"isBlockCoverage":false},{"functionName":"streamToAsyncIterator","ranges":[{"startOffset":41549,"endOffset":41798,"count":0}],"isBlockCoverage":false},{"functionName":"createAsyncIterator","ranges":[{"startOffset":41800,"endOffset":42876,"count":0}],"isBlockCoverage":false},{"functionName":"compose","ranges":[{"startOffset":42925,"endOffset":43425,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":43645,"endOffset":44034,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":44040,"endOffset":44170,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":44252,"endOffset":44316,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":44398,"endOffset":44606,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":44694,"endOffset":44760,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":44841,"endOffset":44901,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":44983,"endOffset":45043,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":45054,"endOffset":45163,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":45239,"endOffset":45293,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":45373,"endOffset":45461,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":45539,"endOffset":45624,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":45693,"endOffset":45777,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":45822,"endOffset":45906,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":45977,"endOffset":46064,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":46070,"endOffset":46359,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":46434,"endOffset":46522,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":46663,"endOffset":46708,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":46788,"endOffset":46846,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":46852,"endOffset":47013,"count":0}],"isBlockCoverage":false},{"functionName":"fromList","ranges":[{"startOffset":47319,"endOffset":49772,"count":0}],"isBlockCoverage":false},{"functionName":"endReadable","ranges":[{"startOffset":49774,"endOffset":50000,"count":0}],"isBlockCoverage":false},{"functionName":"endReadableNT","ranges":[{"startOffset":50002,"endOffset":50895,"count":0}],"isBlockCoverage":false},{"functionName":"endWritableNT","ranges":[{"startOffset":50897,"endOffset":51057,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.from","ranges":[{"startOffset":51075,"endOffset":51144,"count":0}],"isBlockCoverage":false},{"functionName":"lazyWebStreams","ranges":[{"startOffset":51209,"endOffset":51373,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.fromWeb","ranges":[{"startOffset":51394,"endOffset":51528,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.toWeb","ranges":[{"startOffset":51548,"endOffset":51682,"count":0}],"isBlockCoverage":false},{"functionName":"Readable.wrap","ranges":[{"startOffset":51701,"endOffset":51945,"count":0}],"isBlockCoverage":false}]},{"scriptId":"104","url":"node:internal/streams/add-abort-signal","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":1725,"count":1}],"isBlockCoverage":false},{"functionName":"validateAbortSignal","ranges":[{"startOffset":554,"endOffset":713,"count":0}],"isBlockCoverage":false},{"functionName":"addAbortSignal","ranges":[{"startOffset":748,"endOffset":1059,"count":0}],"isBlockCoverage":false},{"functionName":"module.exports.addAbortSignalNoValidate","ranges":[{"startOffset":1104,"endOffset":1723,"count":0}],"isBlockCoverage":false}]},{"scriptId":"105","url":"node:internal/streams/state","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":1440,"count":1}],"isBlockCoverage":false},{"functionName":"highWaterMarkFrom","ranges":[{"startOffset":395,"endOffset":562,"count":1},{"startOffset":493,"endOffset":516,"count":0},{"startOffset":532,"endOffset":552,"count":0}],"isBlockCoverage":true},{"functionName":"getDefaultHighWaterMark","ranges":[{"startOffset":564,"endOffset":694,"count":1},{"startOffset":631,"endOffset":663,"count":0}],"isBlockCoverage":true},{"functionName":"setDefaultHighWaterMark","ranges":[{"startOffset":696,"endOffset":907,"count":0}],"isBlockCoverage":false},{"functionName":"getHighWaterMark","ranges":[{"startOffset":909,"endOffset":1342,"count":1},{"startOffset":1056,"endOffset":1268,"count":0}],"isBlockCoverage":true}]},{"scriptId":"106","url":"node:string_decoder","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":4518,"count":1}],"isBlockCoverage":false},{"functionName":"StringDecoder","ranges":[{"startOffset":1929,"endOffset":2215,"count":0}],"isBlockCoverage":false},{"functionName":"write","ranges":[{"startOffset":2538,"endOffset":2923,"count":0}],"isBlockCoverage":false},{"functionName":"end","ranges":[{"startOffset":3200,"endOffset":3385,"count":0}],"isBlockCoverage":false},{"functionName":"text","ranges":[{"startOffset":3596,"endOffset":3753,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":3891,"endOffset":4104,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":4196,"endOffset":4259,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":4352,"endOffset":4467,"count":0}],"isBlockCoverage":false}]},{"scriptId":"107","url":"node:internal/streams/from","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":4321,"count":1}],"isBlockCoverage":false},{"functionName":"from","ranges":[{"startOffset":241,"endOffset":4296,"count":0}],"isBlockCoverage":false}]},{"scriptId":"108","url":"node:internal/streams/writable","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":33559,"count":1}],"isBlockCoverage":false},{"functionName":"nop","ranges":[{"startOffset":2745,"endOffset":2762,"count":0}],"isBlockCoverage":false},{"functionName":"makeBitMapDescriptor","ranges":[{"startOffset":3818,"endOffset":4040,"count":20}],"isBlockCoverage":true},{"functionName":"get","ranges":[{"startOffset":3893,"endOffset":3937,"count":1}],"isBlockCoverage":true},{"functionName":"set","ranges":[{"startOffset":3943,"endOffset":4032,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":7004,"endOffset":7082,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":7088,"endOffset":7254,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":7324,"endOffset":7424,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":7430,"endOffset":7703,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":7780,"endOffset":7880,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":7886,"endOffset":8116,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":8257,"endOffset":8334,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":8340,"endOffset":8504,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":8691,"endOffset":8791,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":8797,"endOffset":8994,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":9064,"endOffset":9142,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":9148,"endOffset":9315,"count":0}],"isBlockCoverage":false},{"functionName":"WritableState","ranges":[{"startOffset":9328,"endOffset":11606,"count":1},{"startOffset":9596,"endOffset":9624,"count":0},{"startOffset":9641,"endOffset":9671,"count":0},{"startOffset":9677,"endOffset":9705,"count":0},{"startOffset":9996,"endOffset":10032,"count":0},{"startOffset":10224,"endOffset":10252,"count":0},{"startOffset":10375,"endOffset":10405,"count":0},{"startOffset":10662,"endOffset":10668,"count":0},{"startOffset":10700,"endOffset":10729,"count":0},{"startOffset":10730,"endOffset":10760,"count":0},{"startOffset":10809,"endOffset":11018,"count":0}],"isBlockCoverage":true},{"functionName":"WritableState.onwrite","ranges":[{"startOffset":11343,"endOffset":11370,"count":0}],"isBlockCoverage":false},{"functionName":"resetBuffer","ranges":[{"startOffset":11608,"endOffset":11772,"count":1}],"isBlockCoverage":true},{"functionName":"getBuffer","ranges":[{"startOffset":11810,"endOffset":11939,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":12035,"endOffset":12146,"count":0}],"isBlockCoverage":false},{"functionName":"onConstructed","ranges":[{"startOffset":12195,"endOffset":12381,"count":0}],"isBlockCoverage":false},{"functionName":"Writable","ranges":[{"startOffset":12384,"endOffset":13490,"count":1},{"startOffset":12452,"endOffset":12481,"count":0},{"startOffset":12876,"endOffset":12904,"count":0},{"startOffset":12958,"endOffset":12988,"count":0},{"startOffset":13043,"endOffset":13075,"count":0},{"startOffset":13128,"endOffset":13156,"count":0},{"startOffset":13213,"endOffset":13249,"count":0},{"startOffset":13281,"endOffset":13318,"count":0},{"startOffset":13386,"endOffset":13488,"count":0}],"isBlockCoverage":true},{"functionName":"","ranges":[{"startOffset":13420,"endOffset":13482,"count":0}],"isBlockCoverage":false},{"functionName":"value","ranges":[{"startOffset":13572,"endOffset":13776,"count":1},{"startOffset":13661,"endOffset":13771,"count":0}],"isBlockCoverage":true},{"functionName":"Writable.pipe","ranges":[{"startOffset":13877,"endOffset":13945,"count":0}],"isBlockCoverage":false},{"functionName":"_write","ranges":[{"startOffset":13948,"endOffset":15346,"count":0}],"isBlockCoverage":false},{"functionName":"Writable.write","ranges":[{"startOffset":15375,"endOffset":15566,"count":0}],"isBlockCoverage":false},{"functionName":"Writable.cork","ranges":[{"startOffset":15595,"endOffset":15693,"count":0}],"isBlockCoverage":false},{"functionName":"Writable.uncork","ranges":[{"startOffset":15724,"endOffset":15962,"count":0}],"isBlockCoverage":false},{"functionName":"setDefaultEncoding","ranges":[{"startOffset":16005,"endOffset":16330,"count":0}],"isBlockCoverage":false},{"functionName":"writeOrBuffer","ranges":[{"startOffset":16520,"endOffset":17724,"count":0}],"isBlockCoverage":false},{"functionName":"doWrite","ranges":[{"startOffset":17726,"endOffset":18163,"count":0}],"isBlockCoverage":false},{"functionName":"onwriteError","ranges":[{"startOffset":18165,"endOffset":18550,"count":0}],"isBlockCoverage":false},{"functionName":"onwrite","ranges":[{"startOffset":18552,"endOffset":21158,"count":0}],"isBlockCoverage":false},{"functionName":"afterWriteTick","ranges":[{"startOffset":21160,"endOffset":21347,"count":0}],"isBlockCoverage":false},{"functionName":"afterWrite","ranges":[{"startOffset":21349,"endOffset":21857,"count":0}],"isBlockCoverage":false},{"functionName":"errorBuffer","ranges":[{"startOffset":21929,"endOffset":22480,"count":0}],"isBlockCoverage":false},{"functionName":"clearBuffer","ranges":[{"startOffset":22546,"endOffset":24216,"count":0}],"isBlockCoverage":false},{"functionName":"Writable._write","ranges":[{"startOffset":24246,"endOffset":24415,"count":0}],"isBlockCoverage":false},{"functionName":"Writable.end","ranges":[{"startOffset":24479,"endOffset":26119,"count":0}],"isBlockCoverage":false},{"functionName":"needFinish","ranges":[{"startOffset":26122,"endOffset":26551,"count":0}],"isBlockCoverage":false},{"functionName":"onFinish","ranges":[{"startOffset":26553,"endOffset":27185,"count":0}],"isBlockCoverage":false},{"functionName":"prefinish","ranges":[{"startOffset":27187,"endOffset":27711,"count":0}],"isBlockCoverage":false},{"functionName":"finishMaybe","ranges":[{"startOffset":27713,"endOffset":28212,"count":0}],"isBlockCoverage":false},{"functionName":"finish","ranges":[{"startOffset":28214,"endOffset":28857,"count":0}],"isBlockCoverage":false},{"functionName":"callFinishedCallbacks","ranges":[{"startOffset":28859,"endOffset":29177,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":29261,"endOffset":29364,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":29412,"endOffset":29518,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":29524,"endOffset":29774,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":29821,"endOffset":30224,"count":0}],"isBlockCoverage":false},{"functionName":"set","ranges":[{"startOffset":30230,"endOffset":30364,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":30419,"endOffset":30537,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":30594,"endOffset":30714,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":30767,"endOffset":30862,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":30914,"endOffset":31030,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":31086,"endOffset":31239,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":31299,"endOffset":31388,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":31441,"endOffset":31534,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":31587,"endOffset":31669,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":31738,"endOffset":31835,"count":0}],"isBlockCoverage":false},{"functionName":"get","ranges":[{"startOffset":31894,"endOffset":32151,"count":0}],"isBlockCoverage":false},{"functionName":"Writable.destroy","ranges":[{"startOffset":32229,"endOffset":32509,"count":0}],"isBlockCoverage":false},{"functionName":"Writable._destroy","ranges":[{"startOffset":32597,"endOffset":32629,"count":0}],"isBlockCoverage":false},{"functionName":"Writable.<computed>","ranges":[{"startOffset":32680,"endOffset":32718,"count":0}],"isBlockCoverage":false},{"functionName":"lazyWebStreams","ranges":[{"startOffset":32783,"endOffset":32947,"count":0}],"isBlockCoverage":false},{"functionName":"Writable.fromWeb","ranges":[{"startOffset":32968,"endOffset":33102,"count":0}],"isBlockCoverage":false},{"functionName":"Writable.toWeb","ranges":[{"startOffset":33122,"endOffset":33229,"count":0}],"isBlockCoverage":false},{"functionName":"Writable.<computed>","ranges":[{"startOffset":33273,"endOffset":33557,"count":0}],"isBlockCoverage":false}]},{"scriptId":"109","url":"node:stream/promises","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":917,"count":1}],"isBlockCoverage":false},{"functionName":"pipeline","ranges":[{"startOffset":318,"endOffset":869,"count":0}],"isBlockCoverage":false}]},{"scriptId":"110","url":"node:internal/streams/transform","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":7123,"count":1}],"isBlockCoverage":false},{"functionName":"Transform","ranges":[{"startOffset":3920,"endOffset":5500,"count":0}],"isBlockCoverage":false},{"functionName":"final","ranges":[{"startOffset":5502,"endOffset":5946,"count":0}],"isBlockCoverage":false},{"functionName":"prefinish","ranges":[{"startOffset":5948,"endOffset":6029,"count":0}],"isBlockCoverage":false},{"functionName":"Transform._transform","ranges":[{"startOffset":6101,"endOffset":6196,"count":0}],"isBlockCoverage":false},{"functionName":"Transform._write","ranges":[{"startOffset":6228,"endOffset":6965,"count":0}],"isBlockCoverage":false},{"functionName":"Transform._read","ranges":[{"startOffset":6996,"endOffset":7121,"count":0}],"isBlockCoverage":false}]},{"scriptId":"111","url":"node:internal/streams/passthrough","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":1762,"count":1}],"isBlockCoverage":false},{"functionName":"PassThrough","ranges":[{"startOffset":1529,"endOffset":1671,"count":0}],"isBlockCoverage":false},{"functionName":"PassThrough._transform","ranges":[{"startOffset":1708,"endOffset":1760,"count":0}],"isBlockCoverage":false}]},{"scriptId":"112","url":"node:internal/streams/duplexpair","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":1373,"count":1}],"isBlockCoverage":false},{"functionName":"<instance_members_initializer>","ranges":[{"startOffset":255,"endOffset":272,"count":0}],"isBlockCoverage":false},{"functionName":"DuplexSide","ranges":[{"startOffset":277,"endOffset":379,"count":0}],"isBlockCoverage":false},{"functionName":"","ranges":[{"startOffset":383,"endOffset":613,"count":0}],"isBlockCoverage":false},{"functionName":"_read","ranges":[{"startOffset":617,"endOffset":742,"count":0}],"isBlockCoverage":false},{"functionName":"_write","ranges":[{"startOffset":746,"endOffset":1035,"count":0}],"isBlockCoverage":false},{"functionName":"_final","ranges":[{"startOffset":1039,"endOffset":1134,"count":0}],"isBlockCoverage":false},{"functionName":"duplexPair","ranges":[{"startOffset":1138,"endOffset":1343,"count":0}],"isBlockCoverage":false}]}],"timestamp":674286.794542}
|