auto-commit for 9f0f8e53-0005-474a-b8c0-62af81dd2fd1

This commit is contained in:
emergent-agent-e1
2025-10-24 02:50:33 +00:00
parent cac3637e68
commit a80510af07
1119 changed files with 1119 additions and 0 deletions
@@ -0,0 +1 @@
{"dependencies":[{"name":"./sha2.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":14,"column":18,"index":531},"end":{"line":14,"column":38,"index":551}}],"key":"6/wC6kPCuE9AQ+btrgtq2UN1TnM=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.sha224 = exports.SHA224 = exports.sha256 = exports.SHA256 = void 0;\n /**\n * SHA2-256 a.k.a. sha256. In JS, it is the fastest hash, even faster than Blake3.\n *\n * To break sha256 using birthday attack, attackers need to try 2^128 hashes.\n * BTC network is doing 2^70 hashes/sec (2^95 hashes/year) as per 2025.\n *\n * Check out [FIPS 180-4](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.180-4.pdf).\n * @module\n * @deprecated\n */\n const sha2_ts_1 = require(_dependencyMap[0], \"./sha2.js\");\n /** @deprecated Use import from `noble/hashes/sha2` module */\n exports.SHA256 = sha2_ts_1.SHA256;\n /** @deprecated Use import from `noble/hashes/sha2` module */\n exports.sha256 = sha2_ts_1.sha256;\n /** @deprecated Use import from `noble/hashes/sha2` module */\n exports.SHA224 = sha2_ts_1.SHA224;\n /** @deprecated Use import from `noble/hashes/sha2` module */\n exports.sha224 = sha2_ts_1.sha224;\n});","lineCount":27,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"sha224"],[7,16,3,14],[7,19,3,17,"exports"],[7,26,3,24],[7,27,3,25,"SHA224"],[7,33,3,31],[7,36,3,34,"exports"],[7,43,3,41],[7,44,3,42,"sha256"],[7,50,3,48],[7,53,3,51,"exports"],[7,60,3,58],[7,61,3,59,"SHA256"],[7,67,3,65],[7,70,3,68],[7,75,3,73],[7,76,3,74],[8,2,4,0],[9,0,5,0],[10,0,6,0],[11,0,7,0],[12,0,8,0],[13,0,9,0],[14,0,10,0],[15,0,11,0],[16,0,12,0],[17,0,13,0],[18,2,14,0],[18,8,14,6,"sha2_ts_1"],[18,17,14,15],[18,20,14,18,"require"],[18,27,14,25],[18,28,14,25,"_dependencyMap"],[18,42,14,25],[18,58,14,37],[18,59,14,38],[19,2,15,0],[20,2,16,0,"exports"],[20,9,16,7],[20,10,16,8,"SHA256"],[20,16,16,14],[20,19,16,17,"sha2_ts_1"],[20,28,16,26],[20,29,16,27,"SHA256"],[20,35,16,33],[21,2,17,0],[22,2,18,0,"exports"],[22,9,18,7],[22,10,18,8,"sha256"],[22,16,18,14],[22,19,18,17,"sha2_ts_1"],[22,28,18,26],[22,29,18,27,"sha256"],[22,35,18,33],[23,2,19,0],[24,2,20,0,"exports"],[24,9,20,7],[24,10,20,8,"SHA224"],[24,16,20,14],[24,19,20,17,"sha2_ts_1"],[24,28,20,26],[24,29,20,27,"SHA224"],[24,35,20,33],[25,2,21,0],[26,2,22,0,"exports"],[26,9,22,7],[26,10,22,8,"sha224"],[26,16,22,14],[26,19,22,17,"sha2_ts_1"],[26,28,22,26],[26,29,22,27,"sha224"],[26,35,22,33],[27,0,22,34],[27,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./extractPath.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":25,"index":143},"end":{"line":4,"column":52,"index":170}}],"key":"M/x5i2tCq4z1S2kCVUuh5HHvWJw=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.keyExtractSuri = keyExtractSuri;\n const extractPath_js_1 = require(_dependencyMap[0], \"./extractPath.js\");\n const RE_CAPTURE = /^((0x[a-fA-F0-9]+|[\\p{L}\\d]+(?: [\\p{L}\\d]+)*))((\\/\\/?[^/]+)*)(\\/\\/\\/(.*))?$/u;\n /**\n * @description Extracts the phrase, path and password from a SURI format for specifying secret keys `<secret>/<soft-key>//<hard-key>///<password>` (the `///password` may be omitted, and `/<soft-key>` and `//<hard-key>` maybe repeated and mixed).\n */\n function keyExtractSuri(suri) {\n // Normalize Unicode to NFC to avoid accent-related mismatches\n const normalizedSuri = suri.normalize('NFC');\n // eslint-disable-next-line @typescript-eslint/prefer-regexp-exec\n const matches = normalizedSuri.match(RE_CAPTURE);\n if (matches === null) {\n throw new Error('Unable to match provided value to a secret URI');\n }\n const [, phrase,, derivePath,,, password] = matches;\n const {\n path\n } = (0, extractPath_js_1.keyExtractPath)(derivePath);\n return {\n derivePath,\n password,\n path,\n phrase\n };\n }\n});","lineCount":32,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"keyExtractSuri"],[7,24,3,22],[7,27,3,25,"keyExtractSuri"],[7,41,3,39],[8,2,4,0],[8,8,4,6,"extractPath_js_1"],[8,24,4,22],[8,27,4,25,"require"],[8,34,4,32],[8,35,4,32,"_dependencyMap"],[8,49,4,32],[8,72,4,51],[8,73,4,52],[9,2,5,0],[9,8,5,6,"RE_CAPTURE"],[9,18,5,16],[9,21,5,19],[9,99,5,97],[10,2,6,0],[11,0,7,0],[12,0,8,0],[13,2,9,0],[13,11,9,9,"keyExtractSuri"],[13,25,9,23,"keyExtractSuri"],[13,26,9,24,"suri"],[13,30,9,28],[13,32,9,30],[14,4,10,4],[15,4,11,4],[15,10,11,10,"normalizedSuri"],[15,24,11,24],[15,27,11,27,"suri"],[15,31,11,31],[15,32,11,32,"normalize"],[15,41,11,41],[15,42,11,42],[15,47,11,47],[15,48,11,48],[16,4,12,4],[17,4,13,4],[17,10,13,10,"matches"],[17,17,13,17],[17,20,13,20,"normalizedSuri"],[17,34,13,34],[17,35,13,35,"match"],[17,40,13,40],[17,41,13,41,"RE_CAPTURE"],[17,51,13,51],[17,52,13,52],[18,4,14,4],[18,8,14,8,"matches"],[18,15,14,15],[18,20,14,20],[18,24,14,24],[18,26,14,26],[19,6,15,8],[19,12,15,14],[19,16,15,18,"Error"],[19,21,15,23],[19,22,15,24],[19,70,15,72],[19,71,15,73],[20,4,16,4],[21,4,17,4],[21,10,17,10],[21,13,17,13,"phrase"],[21,19,17,19],[21,22,17,23,"derivePath"],[21,32,17,33],[21,36,17,39,"password"],[21,44,17,47],[21,45,17,48],[21,48,17,51,"matches"],[21,55,17,58],[22,4,18,4],[22,10,18,10],[23,6,18,12,"path"],[24,4,18,17],[24,5,18,18],[24,8,18,21],[24,9,18,22],[24,10,18,23],[24,12,18,25,"extractPath_js_1"],[24,28,18,41],[24,29,18,42,"keyExtractPath"],[24,43,18,56],[24,45,18,58,"derivePath"],[24,55,18,68],[24,56,18,69],[25,4,19,4],[25,11,19,11],[26,6,20,8,"derivePath"],[26,16,20,18],[27,6,21,8,"password"],[27,14,21,16],[28,6,22,8,"path"],[28,10,22,12],[29,6,23,8,"phrase"],[30,4,24,4],[30,5,24,5],[31,2,25,0],[32,0,25,1],[32,3]],"functionMap":{"names":["<global>","keyExtractSuri"],"mappings":"AAA;ACQ;CDgB"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./from","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":13,"index":114},"end":{"line":4,"column":30,"index":131}}],"key":"ms1vqx9ZrEE3SKZhaN5GkxjoCgA=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.pairs = void 0;\n var from_1 = require(_dependencyMap[0], \"./from\");\n function pairs(obj, scheduler) {\n return from_1.from(Object.entries(obj), scheduler);\n }\n exports.pairs = pairs;\n});","lineCount":13,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"pairs"],[7,15,3,13],[7,18,3,16],[7,23,3,21],[7,24,3,22],[8,2,4,0],[8,6,4,4,"from_1"],[8,12,4,10],[8,15,4,13,"require"],[8,22,4,20],[8,23,4,20,"_dependencyMap"],[8,37,4,20],[8,50,4,29],[8,51,4,30],[9,2,5,0],[9,11,5,9,"pairs"],[9,16,5,14,"pairs"],[9,17,5,15,"obj"],[9,20,5,18],[9,22,5,20,"scheduler"],[9,31,5,29],[9,33,5,31],[10,4,6,4],[10,11,6,11,"from_1"],[10,17,6,17],[10,18,6,18,"from"],[10,22,6,22],[10,23,6,23,"Object"],[10,29,6,29],[10,30,6,30,"entries"],[10,37,6,37],[10,38,6,38,"obj"],[10,41,6,41],[10,42,6,42],[10,44,6,44,"scheduler"],[10,53,6,53],[10,54,6,54],[11,2,7,0],[12,2,8,0,"exports"],[12,9,8,7],[12,10,8,8,"pairs"],[12,15,8,13],[12,18,8,16,"pairs"],[12,23,8,21],[13,0,8,22],[13,3]],"functionMap":{"names":["<global>","pairs"],"mappings":"AAA;ACI;CDE"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"../Observable","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":19,"index":131},"end":{"line":4,"column":43,"index":155}}],"key":"aLqSh2nqZQ/SY46BefsTfEUSJoQ=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.fromSubscribable = void 0;\n var Observable_1 = require(_dependencyMap[0], \"../Observable\");\n function fromSubscribable(subscribable) {\n return new Observable_1.Observable(function (subscriber) {\n return subscribable.subscribe(subscriber);\n });\n }\n exports.fromSubscribable = fromSubscribable;\n});","lineCount":15,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"fromSubscribable"],[7,26,3,24],[7,29,3,27],[7,34,3,32],[7,35,3,33],[8,2,4,0],[8,6,4,4,"Observable_1"],[8,18,4,16],[8,21,4,19,"require"],[8,28,4,26],[8,29,4,26,"_dependencyMap"],[8,43,4,26],[8,63,4,42],[8,64,4,43],[9,2,5,0],[9,11,5,9,"fromSubscribable"],[9,27,5,25,"fromSubscribable"],[9,28,5,26,"subscribable"],[9,40,5,38],[9,42,5,40],[10,4,6,4],[10,11,6,11],[10,15,6,15,"Observable_1"],[10,27,6,27],[10,28,6,28,"Observable"],[10,38,6,38],[10,39,6,39],[10,49,6,49,"subscriber"],[10,59,6,59],[10,61,6,61],[11,6,6,63],[11,13,6,70,"subscribable"],[11,25,6,82],[11,26,6,83,"subscribe"],[11,35,6,92],[11,36,6,93,"subscriber"],[11,46,6,103],[11,47,6,104],[12,4,6,106],[12,5,6,107],[12,6,6,108],[13,2,7,0],[14,2,8,0,"exports"],[14,9,8,7],[14,10,8,8,"fromSubscribable"],[14,26,8,24],[14,29,8,27,"fromSubscribable"],[14,45,8,43],[15,0,8,44],[15,3]],"functionMap":{"names":["<global>","fromSubscribable","Observable_1.Observable$argument_0"],"mappings":"AAA;ACI;uCCC,oED;CDC"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.arrayZip = arrayZip;\n /**\n * @name arrayZip\n * @description Combines 2 distinct key/value arrays into a single [K, V] array\n */\n function arrayZip(keys, values) {\n const count = keys.length;\n const result = new Array(count);\n for (let i = 0; i < count; i++) {\n result[i] = [keys[i], values[i]];\n }\n return result;\n }\n});","lineCount":20,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"arrayZip"],[7,18,3,16],[7,21,3,19,"arrayZip"],[7,29,3,27],[8,2,4,0],[9,0,5,0],[10,0,6,0],[11,0,7,0],[12,2,8,0],[12,11,8,9,"arrayZip"],[12,19,8,17,"arrayZip"],[12,20,8,18,"keys"],[12,24,8,22],[12,26,8,24,"values"],[12,32,8,30],[12,34,8,32],[13,4,9,4],[13,10,9,10,"count"],[13,15,9,15],[13,18,9,18,"keys"],[13,22,9,22],[13,23,9,23,"length"],[13,29,9,29],[14,4,10,4],[14,10,10,10,"result"],[14,16,10,16],[14,19,10,19],[14,23,10,23,"Array"],[14,28,10,28],[14,29,10,29,"count"],[14,34,10,34],[14,35,10,35],[15,4,11,4],[15,9,11,9],[15,13,11,13,"i"],[15,14,11,14],[15,17,11,17],[15,18,11,18],[15,20,11,20,"i"],[15,21,11,21],[15,24,11,24,"count"],[15,29,11,29],[15,31,11,31,"i"],[15,32,11,32],[15,34,11,34],[15,36,11,36],[16,6,12,8,"result"],[16,12,12,14],[16,13,12,15,"i"],[16,14,12,16],[16,15,12,17],[16,18,12,20],[16,19,12,21,"keys"],[16,23,12,25],[16,24,12,26,"i"],[16,25,12,27],[16,26,12,28],[16,28,12,30,"values"],[16,34,12,36],[16,35,12,37,"i"],[16,36,12,38],[16,37,12,39],[16,38,12,40],[17,4,13,4],[18,4,14,4],[18,11,14,11,"result"],[18,17,14,17],[19,2,15,0],[20,0,15,1],[20,3]],"functionMap":{"names":["<global>","arrayZip"],"mappings":"AAA;ACO;CDO"},"hasCjsExports":true},"type":"js/module"}]}