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":[{"name":"../abstract/Int.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":49,"index":49}}],"key":"yV3Vh8PGUBHwW3OSefoTkwjUA/c=","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 Object.defineProperty(exports, \"UInt\", {\n enumerable: true,\n get: function () {\n return UInt;\n }\n });\n var _abstractIntJs = require(_dependencyMap[0], \"../abstract/Int.js\");\n /**\n * @name UInt\n * @description\n * A generic unsigned integer codec. For Substrate all numbers are Little Endian encoded,\n * this handles the encoding and decoding of those numbers. Upon construction\n * the bitLength is provided and any additional use keeps the number to this\n * length. This extends `BN`, so all methods available on a normal `BN` object\n * is available here.\n * @noInheritDoc\n */\n class UInt extends _abstractIntJs.AbstractInt {\n static with(bitLength, typeName) {\n return class extends UInt {\n constructor(registry, value) {\n super(registry, value, bitLength);\n }\n toRawType() {\n return typeName || super.toRawType();\n }\n };\n }\n }\n});","lineCount":36,"map":[[7,2,12,0,"Object"],[7,8,12,0],[7,9,12,0,"defineProperty"],[7,23,12,0],[7,24,12,0,"exports"],[7,31,12,0],[8,4,12,0,"enumerable"],[8,14,12,0],[9,4,12,0,"get"],[9,7,12,0],[9,18,12,0,"get"],[9,19,12,0],[10,6,12,0],[10,13,12,0,"UInt"],[10,17,12,0],[11,4,12,0],[12,2,12,0],[13,2,1,0],[13,6,1,0,"_abstractIntJs"],[13,20,1,0],[13,23,1,0,"require"],[13,30,1,0],[13,31,1,0,"_dependencyMap"],[13,45,1,0],[14,2,2,0],[15,0,3,0],[16,0,4,0],[17,0,5,0],[18,0,6,0],[19,0,7,0],[20,0,8,0],[21,0,9,0],[22,0,10,0],[23,0,11,0],[24,2,12,7],[24,8,12,13,"UInt"],[24,12,12,17],[24,21,12,26,"AbstractInt"],[24,35,12,37],[24,36,12,37,"AbstractInt"],[24,47,12,37],[24,48,12,38],[25,4,13,4],[25,11,13,11,"with"],[25,15,13,15,"with"],[25,16,13,16,"bitLength"],[25,25,13,25],[25,27,13,27,"typeName"],[25,35,13,35],[25,37,13,37],[26,6,14,8],[26,13,14,15],[26,27,14,29,"UInt"],[26,31,14,33],[26,32,14,34],[27,8,15,12,"constructor"],[27,19,15,23,"constructor"],[27,20,15,24,"registry"],[27,28,15,32],[27,30,15,34,"value"],[27,35,15,39],[27,37,15,41],[28,10,16,16],[28,15,16,21],[28,16,16,22,"registry"],[28,24,16,30],[28,26,16,32,"value"],[28,31,16,37],[28,33,16,39,"bitLength"],[28,42,16,48],[28,43,16,49],[29,8,17,12],[30,8,18,12,"toRawType"],[30,17,18,21,"toRawType"],[30,18,18,21],[30,20,18,24],[31,10,19,16],[31,17,19,23,"typeName"],[31,25,19,31],[31,29,19,35],[31,34,19,40],[31,35,19,41,"toRawType"],[31,44,19,50],[31,45,19,51],[31,46,19,52],[32,8,20,12],[33,6,21,8],[33,7,21,9],[34,4,22,4],[35,2,23,0],[36,0,23,1],[36,3]],"functionMap":{"names":["<global>","UInt","_with","<anonymous>","constructor","toRawType"],"mappings":"AAA;OCW;ICC;eCC;YCC;aDE;YEC;aFE;SDC;KDC;CDC"},"hasCjsExports":false},"type":"js/module"}]}
@@ -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.arrayUnzip = arrayUnzip;\n /**\n * @name arrayUnzip\n * @description Splits a single [K, V][] into [K[], V[]]\n */\n function arrayUnzip(entries) {\n const count = entries.length;\n const keys = new Array(count);\n const values = new Array(count);\n for (let i = 0; i < count; i++) {\n [keys[i], values[i]] = entries[i];\n }\n return [keys, values];\n }\n});","lineCount":21,"map":[[7,2,5,0,"exports"],[7,9,5,0],[7,10,5,0,"arrayUnzip"],[7,20,5,0],[7,23,5,0,"arrayUnzip"],[7,33,5,0],[8,2,1,0],[9,0,2,0],[10,0,3,0],[11,0,4,0],[12,2,5,7],[12,11,5,16,"arrayUnzip"],[12,21,5,26,"arrayUnzip"],[12,22,5,27,"entries"],[12,29,5,34],[12,31,5,36],[13,4,6,4],[13,10,6,10,"count"],[13,15,6,15],[13,18,6,18,"entries"],[13,25,6,25],[13,26,6,26,"length"],[13,32,6,32],[14,4,7,4],[14,10,7,10,"keys"],[14,14,7,14],[14,17,7,17],[14,21,7,21,"Array"],[14,26,7,26],[14,27,7,27,"count"],[14,32,7,32],[14,33,7,33],[15,4,8,4],[15,10,8,10,"values"],[15,16,8,16],[15,19,8,19],[15,23,8,23,"Array"],[15,28,8,28],[15,29,8,29,"count"],[15,34,8,34],[15,35,8,35],[16,4,9,4],[16,9,9,9],[16,13,9,13,"i"],[16,14,9,14],[16,17,9,17],[16,18,9,18],[16,20,9,20,"i"],[16,21,9,21],[16,24,9,24,"count"],[16,29,9,29],[16,31,9,31,"i"],[16,32,9,32],[16,34,9,34],[16,36,9,36],[17,6,10,8],[17,7,10,9,"keys"],[17,11,10,13],[17,12,10,14,"i"],[17,13,10,15],[17,14,10,16],[17,16,10,18,"values"],[17,22,10,24],[17,23,10,25,"i"],[17,24,10,26],[17,25,10,27],[17,26,10,28],[17,29,10,31,"entries"],[17,36,10,38],[17,37,10,39,"i"],[17,38,10,40],[17,39,10,41],[18,4,11,4],[19,4,12,4],[19,11,12,11],[19,12,12,12,"keys"],[19,16,12,16],[19,18,12,18,"values"],[19,24,12,24],[19,25,12,25],[20,2,13,0],[21,0,13,1],[21,3]],"functionMap":{"names":["<global>","arrayUnzip"],"mappings":"AAA;OCI;CDQ"},"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