auto-commit for 419f22ef-909a-4d7d-ab8a-e053a891ce1f

This commit is contained in:
emergent-agent-e1
2025-10-24 02:46:57 +00:00
parent 41853ac979
commit c0604aafc1
1555 changed files with 1555 additions and 0 deletions
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});","lineCount":3,"map":[[3,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"../u8a/index.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":50,"index":50}}],"key":"ni7N8kFqexhxzrkt71zvvxQnrBA=","exportNames":["*"],"imports":1}},{"name":"./toU8a.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":51},"end":{"line":2,"column":42,"index":93}}],"key":"3bOyH77e/8Wc8K55bqHxvmXdM0A=","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.compactAddLength = compactAddLength;\n var _u8aIndexJs = require(_dependencyMap[0], \"../u8a/index.js\");\n var _toU8aJs = require(_dependencyMap[1], \"./toU8a.js\");\n /**\n * @name compactAddLength\n * @description Adds a length prefix to the input value\n * @example\n * <BR>\n *\n * ```javascript\n * import { compactAddLength } from '@polkadot/util';\n *\n * console.log(compactAddLength(new Uint8Array([0xde, 0xad, 0xbe, 0xef]))); // Uint8Array([4 << 2, 0xde, 0xad, 0xbe, 0xef])\n * ```\n */\n function compactAddLength(input) {\n return (0, _u8aIndexJs.u8aConcatStrict)([(0, _toU8aJs.compactToU8a)(input.length), input]);\n }\n});","lineCount":25,"map":[[7,2,15,0,"exports"],[7,9,15,0],[7,10,15,0,"compactAddLength"],[7,26,15,0],[7,29,15,0,"compactAddLength"],[7,45,15,0],[8,2,1,0],[8,6,1,0,"_u8aIndexJs"],[8,17,1,0],[8,20,1,0,"require"],[8,27,1,0],[8,28,1,0,"_dependencyMap"],[8,42,1,0],[9,2,2,0],[9,6,2,0,"_toU8aJs"],[9,14,2,0],[9,17,2,0,"require"],[9,24,2,0],[9,25,2,0,"_dependencyMap"],[9,39,2,0],[10,2,3,0],[11,0,4,0],[12,0,5,0],[13,0,6,0],[14,0,7,0],[15,0,8,0],[16,0,9,0],[17,0,10,0],[18,0,11,0],[19,0,12,0],[20,0,13,0],[21,0,14,0],[22,2,15,7],[22,11,15,16,"compactAddLength"],[22,27,15,32,"compactAddLength"],[22,28,15,33,"input"],[22,33,15,38],[22,35,15,40],[23,4,16,4],[23,11,16,11],[23,15,16,11,"u8aConcatStrict"],[23,26,16,26],[23,27,16,26,"u8aConcatStrict"],[23,42,16,26],[23,44,16,27],[23,45,17,8],[23,49,17,8,"compactToU8a"],[23,57,17,20],[23,58,17,20,"compactToU8a"],[23,70,17,20],[23,72,17,21,"input"],[23,77,17,26],[23,78,17,27,"length"],[23,84,17,33],[23,85,17,34],[23,87,18,8,"input"],[23,92,18,13],[23,93,19,5],[23,94,19,6],[24,2,20,0],[25,0,20,1],[25,3]],"functionMap":{"names":["<global>","compactAddLength"],"mappings":"AAA;OCc;CDK"},"hasCjsExports":false},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":15},"end":{"line":3,"column":31,"index":46}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"./NavigationRouteContext.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":47},"end":{"line":4,"column":69,"index":116}}],"key":"AWXnpGNA5UkH1qQUM7hLv2L9KzI=","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 function _interopNamespace(e) {\n if (e && e.__esModule) return e;\n var n = {};\n if (e) Object.keys(e).forEach(function (k) {\n var d = Object.getOwnPropertyDescriptor(e, k);\n Object.defineProperty(n, k, d.get ? d : {\n enumerable: true,\n get: function () {\n return e[k];\n }\n });\n });\n n.default = e;\n return n;\n }\n exports.useRoute = useRoute;\n var _react = require(_dependencyMap[0], \"react\");\n var React = _interopNamespace(_react);\n var _NavigationRouteContextJs = require(_dependencyMap[1], \"./NavigationRouteContext.js\");\n /**\n * Hook to access the route prop of the parent screen anywhere.\n *\n * @returns Route prop of the parent screen.\n */\n function useRoute() {\n const route = React.useContext(_NavigationRouteContextJs.NavigationRouteContext);\n if (route === undefined) {\n throw new Error(\"Couldn't find a route object. Is your component inside a screen in a navigator?\");\n }\n return route;\n }\n});","lineCount":38,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13,"Object"],[4,8,1,13],[4,9,1,13,"defineProperty"],[4,23,1,13],[4,24,1,13,"exports"],[4,31,1,13],[5,4,1,13,"value"],[5,9,1,13],[6,2,1,13],[7,2,1,13],[7,11,1,13,"_interopNamespace"],[7,29,1,13,"e"],[7,30,1,13],[8,4,1,13],[8,8,1,13,"e"],[8,9,1,13],[8,13,1,13,"e"],[8,14,1,13],[8,15,1,13,"__esModule"],[8,25,1,13],[8,34,1,13,"e"],[8,35,1,13],[9,4,1,13],[9,8,1,13,"n"],[9,9,1,13],[10,4,1,13],[10,8,1,13,"e"],[10,9,1,13],[10,11,1,13,"Object"],[10,17,1,13],[10,18,1,13,"keys"],[10,22,1,13],[10,23,1,13,"e"],[10,24,1,13],[10,26,1,13,"forEach"],[10,33,1,13],[10,44,1,13,"k"],[10,45,1,13],[11,6,1,13],[11,10,1,13,"d"],[11,11,1,13],[11,14,1,13,"Object"],[11,20,1,13],[11,21,1,13,"getOwnPropertyDescriptor"],[11,45,1,13],[11,46,1,13,"e"],[11,47,1,13],[11,49,1,13,"k"],[11,50,1,13],[12,6,1,13,"Object"],[12,12,1,13],[12,13,1,13,"defineProperty"],[12,27,1,13],[12,28,1,13,"n"],[12,29,1,13],[12,31,1,13,"k"],[12,32,1,13],[12,34,1,13,"d"],[12,35,1,13],[12,36,1,13,"get"],[12,39,1,13],[12,42,1,13,"d"],[12,43,1,13],[13,8,1,13,"enumerable"],[13,18,1,13],[14,8,1,13,"get"],[14,11,1,13],[14,22,1,13,"get"],[14,23,1,13],[15,10,1,13],[15,17,1,13,"e"],[15,18,1,13],[15,19,1,13,"k"],[15,20,1,13],[16,8,1,13],[17,6,1,13],[18,4,1,13],[19,4,1,13,"n"],[19,5,1,13],[19,6,1,13,"default"],[19,13,1,13],[19,16,1,13,"e"],[19,17,1,13],[20,4,1,13],[20,11,1,13,"n"],[20,12,1,13],[21,2,1,13],[22,2,10,0,"exports"],[22,9,10,0],[22,10,10,0,"useRoute"],[22,18,10,0],[22,21,10,0,"useRoute"],[22,29,10,0],[23,2,3,0],[23,6,3,0,"_react"],[23,12,3,0],[23,15,3,0,"require"],[23,22,3,0],[23,23,3,0,"_dependencyMap"],[23,37,3,0],[24,2,3,0],[24,6,3,0,"React"],[24,11,3,0],[24,14,3,0,"_interopNamespace"],[24,31,3,0],[24,32,3,0,"_react"],[24,38,3,0],[25,2,4,0],[25,6,4,0,"_NavigationRouteContextJs"],[25,31,4,0],[25,34,4,0,"require"],[25,41,4,0],[25,42,4,0,"_dependencyMap"],[25,56,4,0],[26,2,5,0],[27,0,6,0],[28,0,7,0],[29,0,8,0],[30,0,9,0],[31,2,10,7],[31,11,10,16,"useRoute"],[31,19,10,24,"useRoute"],[31,20,10,24],[31,22,10,27],[32,4,11,2],[32,10,11,8,"route"],[32,15,11,13],[32,18,11,16,"React"],[32,23,11,21],[32,24,11,22,"useContext"],[32,34,11,32],[32,35,11,33,"NavigationRouteContext"],[32,60,11,55],[32,61,11,55,"NavigationRouteContext"],[32,83,11,55],[32,84,11,56],[33,4,12,2],[33,8,12,6,"route"],[33,13,12,11],[33,18,12,16,"undefined"],[33,27,12,25],[33,29,12,27],[34,6,13,4],[34,12,13,10],[34,16,13,14,"Error"],[34,21,13,19],[34,22,13,20],[34,103,13,101],[34,104,13,102],[35,4,14,2],[36,4,15,2],[36,11,15,9,"route"],[36,16,15,14],[37,2,16,0],[38,0,16,1],[38,3]],"functionMap":{"names":["<global>","useRoute"],"mappings":"AAA;OCS;CDM"},"hasCjsExports":false},"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});","lineCount":3,"map":[[2,2,1,0],[2,14,1,12],[3,0,1,13],[3,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]}