mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 10:01:02 +00:00
1 line
17 KiB
Plaintext
1 line
17 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/classCallCheck","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"yg7e6laZwmpbIvId5jovq9ugXp8=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/createClass","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"Z6pzkVZ2fvxBLkFTgVVOy4UDj30=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/callSuper","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"378KbBHdmndC3iMXZ2Ix8oB3LeE=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/inherits","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"y0uNg4LxF1CLscQChxzgo5dfjvA=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/classPrivateFieldLooseBase","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"jktBven9cFmiXr10q2uuMiBaNBg=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/classPrivateFieldLooseKey","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"YYsVumDWjUPySlBONhl8so2wff4=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":15,"index":119},"end":{"line":4,"column":40,"index":144}}],"key":"u0mzEw2nilnHoUWtEdZl0JKHutA=","exportNames":["*"],"imports":1}},{"name":"../abstract/Array.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":19,"index":165},"end":{"line":5,"column":50,"index":196}}],"key":"6mEu3EU+b/IJjH94vVSmYQCsVqQ=","exportNames":["*"],"imports":1}},{"name":"../utils/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":19,"index":217},"end":{"line":6,"column":47,"index":245}}],"key":"j8ZYB2+3ieHcvBXwesUJUzLi2Jo=","exportNames":["*"],"imports":1}},{"name":"./Vec.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":7,"column":17,"index":264},"end":{"line":7,"column":36,"index":283}}],"key":"uvcsToCu7tZRMk57ZZc026/tlnY=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _classCallCheck = require(_dependencyMap[0], \"@babel/runtime/helpers/classCallCheck\").default;\n var _createClass = require(_dependencyMap[1], \"@babel/runtime/helpers/createClass\").default;\n var _callSuper = require(_dependencyMap[2], \"@babel/runtime/helpers/callSuper\").default;\n var _inherits = require(_dependencyMap[3], \"@babel/runtime/helpers/inherits\").default;\n var _classPrivateFieldLooseBase = require(_dependencyMap[4], \"@babel/runtime/helpers/classPrivateFieldLooseBase\").default;\n var _classPrivateFieldLooseKey = require(_dependencyMap[5], \"@babel/runtime/helpers/classPrivateFieldLooseKey\").default;\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.VecFixed = void 0;\n var util_1 = require(_dependencyMap[6], \"@polkadot/util\");\n var Array_js_1 = require(_dependencyMap[7], \"../abstract/Array.js\");\n var index_js_1 = require(_dependencyMap[8], \"../utils/index.js\");\n var Vec_js_1 = require(_dependencyMap[9], \"./Vec.js\");\n /**\n * @name VecFixed\n * @description\n * This manages codec arrays of a fixed length\n */\n var _Type = /*#__PURE__*/_classPrivateFieldLooseKey(\"Type\");\n var VecFixed = /*#__PURE__*/function (_Array_js_1$AbstractA) {\n function VecFixed(registry, Type, length) {\n var _this;\n var value = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : [];\n var _ref = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {},\n definition = _ref.definition,\n _ref$setDefinition = _ref.setDefinition,\n setDefinition = _ref$setDefinition === void 0 ? util_1.identity : _ref$setDefinition;\n _classCallCheck(this, VecFixed);\n _this = _callSuper(this, VecFixed, [registry, length]);\n Object.defineProperty(_this, _Type, {\n writable: true,\n value: void 0\n });\n _classPrivateFieldLooseBase(_this, _Type)[_Type] = definition || setDefinition((0, index_js_1.typeToConstructor)(registry, Type));\n _this.initialU8aLength = ((0, util_1.isU8a)(value) ? (0, index_js_1.decodeU8aVec)(registry, _this, value, 0, _classPrivateFieldLooseBase(_this, _Type)[_Type]) : (0, Vec_js_1.decodeVec)(registry, _this, value, 0, _classPrivateFieldLooseBase(_this, _Type)[_Type]))[1];\n return _this;\n }\n _inherits(VecFixed, _Array_js_1$AbstractA);\n return _createClass(VecFixed, [{\n key: \"Type\",\n get:\n /**\n * @description The type for the items\n */\n function () {\n return new (_classPrivateFieldLooseBase(this, _Type)[_Type])(this.registry).toRawType();\n }\n /**\n * @description The length of the value when encoded as a Uint8Array\n */\n }, {\n key: \"encodedLength\",\n get: function () {\n var total = 0;\n for (var i = 0, count = this.length; i < count; i++) {\n total += this[i].encodedLength;\n }\n return total;\n }\n /**\n * @description Returns a breakdown of the hex encoding for this Codec\n */\n }, {\n key: \"inspect\",\n value: function inspect() {\n return {\n inner: this.inspectInner()\n };\n }\n }, {\n key: \"toU8a\",\n value: function toU8a() {\n // we override, we don't add the length prefix for ourselves, and at the same time we\n // ignore isBare on entries, since they should be properly encoded at all times\n var encoded = this.toU8aInner();\n return encoded.length ? (0, util_1.u8aConcatStrict)(encoded) : new Uint8Array([]);\n }\n /**\n * @description Returns the base runtime type name for this instance\n */\n }, {\n key: \"toRawType\",\n value: function toRawType() {\n return `[${this.Type};${this.length}]`;\n }\n }], [{\n key: \"with\",\n value: function _with(Type, length) {\n var definition;\n // eslint-disable-next-line no-return-assign\n var setDefinition = d => definition = d;\n return /*#__PURE__*/function (_VecFixed2) {\n function _class(registry, value) {\n _classCallCheck(this, _class);\n return _callSuper(this, _class, [registry, Type, length, value, {\n definition,\n setDefinition\n }]);\n }\n _inherits(_class, _VecFixed2);\n return _createClass(_class);\n }(VecFixed);\n }\n }]);\n }(Array_js_1.AbstractArray);\n exports.VecFixed = VecFixed;\n});","lineCount":111,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13],[4,6,1,13,"_classCallCheck"],[4,21,1,13],[4,24,1,13,"require"],[4,31,1,13],[4,32,1,13,"_dependencyMap"],[4,46,1,13],[4,92,1,13,"default"],[4,99,1,13],[5,2,1,13],[5,6,1,13,"_createClass"],[5,18,1,13],[5,21,1,13,"require"],[5,28,1,13],[5,29,1,13,"_dependencyMap"],[5,43,1,13],[5,86,1,13,"default"],[5,93,1,13],[6,2,1,13],[6,6,1,13,"_callSuper"],[6,16,1,13],[6,19,1,13,"require"],[6,26,1,13],[6,27,1,13,"_dependencyMap"],[6,41,1,13],[6,82,1,13,"default"],[6,89,1,13],[7,2,1,13],[7,6,1,13,"_inherits"],[7,15,1,13],[7,18,1,13,"require"],[7,25,1,13],[7,26,1,13,"_dependencyMap"],[7,40,1,13],[7,80,1,13,"default"],[7,87,1,13],[8,2,1,13],[8,6,1,13,"_classPrivateFieldLooseBase"],[8,33,1,13],[8,36,1,13,"require"],[8,43,1,13],[8,44,1,13,"_dependencyMap"],[8,58,1,13],[8,116,1,13,"default"],[8,123,1,13],[9,2,1,13],[9,6,1,13,"_classPrivateFieldLooseKey"],[9,32,1,13],[9,35,1,13,"require"],[9,42,1,13],[9,43,1,13,"_dependencyMap"],[9,57,1,13],[9,114,1,13,"default"],[9,121,1,13],[10,2,2,0,"Object"],[10,8,2,6],[10,9,2,7,"defineProperty"],[10,23,2,21],[10,24,2,22,"exports"],[10,31,2,29],[10,33,2,31],[10,45,2,43],[10,47,2,45],[11,4,2,47,"value"],[11,9,2,52],[11,11,2,54],[12,2,2,59],[12,3,2,60],[12,4,2,61],[13,2,3,0,"exports"],[13,9,3,7],[13,10,3,8,"VecFixed"],[13,18,3,16],[13,21,3,19],[13,26,3,24],[13,27,3,25],[14,2,4,0],[14,6,4,6,"util_1"],[14,12,4,12],[14,15,4,15,"require"],[14,22,4,22],[14,23,4,22,"_dependencyMap"],[14,37,4,22],[14,58,4,39],[14,59,4,40],[15,2,5,0],[15,6,5,6,"Array_js_1"],[15,16,5,16],[15,19,5,19,"require"],[15,26,5,26],[15,27,5,26,"_dependencyMap"],[15,41,5,26],[15,68,5,49],[15,69,5,50],[16,2,6,0],[16,6,6,6,"index_js_1"],[16,16,6,16],[16,19,6,19,"require"],[16,26,6,26],[16,27,6,26,"_dependencyMap"],[16,41,6,26],[16,65,6,46],[16,66,6,47],[17,2,7,0],[17,6,7,6,"Vec_js_1"],[17,14,7,14],[17,17,7,17,"require"],[17,24,7,24],[17,25,7,24,"_dependencyMap"],[17,39,7,24],[17,54,7,35],[17,55,7,36],[18,2,8,0],[19,0,9,0],[20,0,10,0],[21,0,11,0],[22,0,12,0],[23,2,8,0],[23,6,8,0,"_Type"],[23,11,8,0],[23,27,8,0,"_classPrivateFieldLooseKey"],[23,53,8,0],[24,2,8,0],[24,6,13,6,"VecFixed"],[24,14,13,14],[24,40,13,14,"_Array_js_1$AbstractA"],[24,61,13,14],[25,4,15,4],[25,13,15,4,"VecFixed"],[25,22,15,16,"registry"],[25,30,15,24],[25,32,15,26,"Type"],[25,36,15,30],[25,38,15,32,"length"],[25,44,15,38],[25,46,15,106],[26,6,15,106],[26,10,15,106,"_this"],[26,15,15,106],[27,6,15,106],[27,10,15,40,"value"],[27,15,15,45],[27,18,15,45,"arguments"],[27,27,15,45],[27,28,15,45,"length"],[27,34,15,45],[27,42,15,45,"arguments"],[27,51,15,45],[27,59,15,45,"undefined"],[27,68,15,45],[27,71,15,45,"arguments"],[27,80,15,45],[27,86,15,48],[27,88,15,50],[28,6,15,50],[28,10,15,50,"_ref"],[28,14,15,50],[28,17,15,50,"arguments"],[28,26,15,50],[28,27,15,50,"length"],[28,33,15,50],[28,41,15,50,"arguments"],[28,50,15,50],[28,58,15,50,"undefined"],[28,67,15,50],[28,70,15,50,"arguments"],[28,79,15,50],[28,85,15,102],[28,86,15,103],[28,87,15,104],[29,8,15,54,"definition"],[29,18,15,64],[29,21,15,64,"_ref"],[29,25,15,64],[29,26,15,54,"definition"],[29,36,15,64],[30,8,15,64,"_ref$setDefinition"],[30,26,15,64],[30,29,15,64,"_ref"],[30,33,15,64],[30,34,15,66,"setDefinition"],[30,47,15,79],[31,8,15,66,"setDefinition"],[31,21,15,79],[31,24,15,79,"_ref$setDefinition"],[31,42,15,79],[31,56,15,82,"util_1"],[31,62,15,88],[31,63,15,89,"identity"],[31,71,15,97],[31,74,15,97,"_ref$setDefinition"],[31,92,15,97],[32,6,15,97,"_classCallCheck"],[32,21,15,97],[32,28,15,97,"VecFixed"],[32,36,15,97],[33,6,16,8,"_this"],[33,11,16,8],[33,14,16,8,"_callSuper"],[33,24,16,8],[33,31,16,8,"VecFixed"],[33,39,16,8],[33,42,16,14,"registry"],[33,50,16,22],[33,52,16,24,"length"],[33,58,16,30],[34,6,16,32,"Object"],[34,12,16,32],[34,13,16,32,"defineProperty"],[34,27,16,32],[34,28,16,32,"_this"],[34,33,16,32],[34,35,16,32,"_Type"],[34,40,16,32],[35,8,16,32,"writable"],[35,16,16,32],[36,8,16,32,"value"],[36,13,16,32],[37,6,16,32],[38,6,17,8,"_classPrivateFieldLooseBase"],[38,33,17,8],[38,34,17,8,"_this"],[38,39,17,8],[38,41,17,8,"_Type"],[38,46,17,8],[38,48,17,8,"_Type"],[38,53,17,8],[38,57,17,21,"definition"],[38,67,17,31],[38,71,17,35,"setDefinition"],[38,84,17,48],[38,85,17,49],[38,86,17,50],[38,87,17,51],[38,89,17,53,"index_js_1"],[38,99,17,63],[38,100,17,64,"typeToConstructor"],[38,117,17,81],[38,119,17,83,"registry"],[38,127,17,91],[38,129,17,93,"Type"],[38,133,17,97],[38,134,17,98],[38,135,17,99],[39,6,18,8,"_this"],[39,11,18,8],[39,12,18,13,"initialU8aLength"],[39,28,18,29],[39,31,18,32],[39,32,18,33],[39,33,18,34],[39,34,18,35],[39,36,18,37,"util_1"],[39,42,18,43],[39,43,18,44,"isU8a"],[39,48,18,49],[39,50,18,51,"value"],[39,55,18,56],[39,56,18,57],[39,59,19,14],[39,60,19,15],[39,61,19,16],[39,63,19,18,"index_js_1"],[39,73,19,28],[39,74,19,29,"decodeU8aVec"],[39,86,19,41],[39,88,19,43,"registry"],[39,96,19,51],[39,98,19,51,"_this"],[39,103,19,51],[39,105,19,59,"value"],[39,110,19,64],[39,112,19,66],[39,113,19,67],[39,115,19,67,"_classPrivateFieldLooseBase"],[39,142,19,67],[39,143,19,67,"_this"],[39,148,19,67],[39,150,19,67,"_Type"],[39,155,19,67],[39,157,19,67,"_Type"],[39,162,19,67],[39,163,19,79],[39,164,19,80],[39,167,20,14],[39,168,20,15],[39,169,20,16],[39,171,20,18,"Vec_js_1"],[39,179,20,26],[39,180,20,27,"decodeVec"],[39,189,20,36],[39,191,20,38,"registry"],[39,199,20,46],[39,201,20,46,"_this"],[39,206,20,46],[39,208,20,54,"value"],[39,213,20,59],[39,215,20,61],[39,216,20,62],[39,218,20,62,"_classPrivateFieldLooseBase"],[39,245,20,62],[39,246,20,62,"_this"],[39,251,20,62],[39,253,20,62,"_Type"],[39,258,20,62],[39,260,20,62,"_Type"],[39,265,20,62],[39,266,20,74],[39,267,20,75],[39,269,20,77],[39,270,20,78],[39,271,20,79],[40,6,20,80],[40,13,20,80,"_this"],[40,18,20,80],[41,4,21,4],[42,4,21,5,"_inherits"],[42,13,21,5],[42,14,21,5,"VecFixed"],[42,22,21,5],[42,24,21,5,"_Array_js_1$AbstractA"],[42,45,21,5],[43,4,21,5],[43,11,21,5,"_createClass"],[43,23,21,5],[43,24,21,5,"VecFixed"],[43,32,21,5],[44,6,21,5,"key"],[44,9,21,5],[45,6,21,5,"get"],[45,9,21,5],[46,6,32,4],[47,0,33,0],[48,0,34,0],[49,6,35,4],[49,15,35,4,"get"],[49,16,35,4],[49,18,35,15],[50,8,36,8],[50,15,36,15],[50,20,36,15,"_classPrivateFieldLooseBase"],[50,47,36,15],[50,48,36,19],[50,52,36,23],[50,54,36,23,"_Type"],[50,59,36,23],[50,61,36,23,"_Type"],[50,66,36,23],[50,69,36,30],[50,73,36,34],[50,74,36,35,"registry"],[50,82,36,43],[50,83,36,44],[50,84,36,45,"toRawType"],[50,93,36,54],[50,94,36,55],[50,95,36,56],[51,6,37,4],[52,6,38,4],[53,0,39,0],[54,0,40,0],[55,4,38,4],[56,6,38,4,"key"],[56,9,38,4],[57,6,38,4,"get"],[57,9,38,4],[57,11,41,4],[57,20,41,4,"get"],[57,21,41,4],[57,23,41,24],[58,8,42,8],[58,12,42,12,"total"],[58,17,42,17],[58,20,42,20],[58,21,42,21],[59,8,43,8],[59,13,43,13],[59,17,43,17,"i"],[59,18,43,18],[59,21,43,21],[59,22,43,22],[59,24,43,24,"count"],[59,29,43,29],[59,32,43,32],[59,36,43,36],[59,37,43,37,"length"],[59,43,43,43],[59,45,43,45,"i"],[59,46,43,46],[59,49,43,49,"count"],[59,54,43,54],[59,56,43,56,"i"],[59,57,43,57],[59,59,43,59],[59,61,43,61],[60,10,44,12,"total"],[60,15,44,17],[60,19,44,21],[60,23,44,25],[60,24,44,26,"i"],[60,25,44,27],[60,26,44,28],[60,27,44,29,"encodedLength"],[60,40,44,42],[61,8,45,8],[62,8,46,8],[62,15,46,15,"total"],[62,20,46,20],[63,6,47,4],[64,6,48,4],[65,0,49,0],[66,0,50,0],[67,4,48,4],[68,6,48,4,"key"],[68,9,48,4],[69,6,48,4,"value"],[69,11,48,4],[69,13,51,4],[69,22,51,4,"inspect"],[69,29,51,11,"inspect"],[69,30,51,11],[69,32,51,14],[70,8,52,8],[70,15,52,15],[71,10,53,12,"inner"],[71,15,53,17],[71,17,53,19],[71,21,53,23],[71,22,53,24,"inspectInner"],[71,34,53,36],[71,35,53,37],[72,8,54,8],[72,9,54,9],[73,6,55,4],[74,4,55,5],[75,6,55,5,"key"],[75,9,55,5],[76,6,55,5,"value"],[76,11,55,5],[76,13,56,4],[76,22,56,4,"toU8a"],[76,27,56,9,"toU8a"],[76,28,56,9],[76,30,56,12],[77,8,57,8],[78,8,58,8],[79,8,59,8],[79,12,59,14,"encoded"],[79,19,59,21],[79,22,59,24],[79,26,59,28],[79,27,59,29,"toU8aInner"],[79,37,59,39],[79,38,59,40],[79,39,59,41],[80,8,60,8],[80,15,60,15,"encoded"],[80,22,60,22],[80,23,60,23,"length"],[80,29,60,29],[80,32,61,14],[80,33,61,15],[80,34,61,16],[80,36,61,18,"util_1"],[80,42,61,24],[80,43,61,25,"u8aConcatStrict"],[80,58,61,40],[80,60,61,42,"encoded"],[80,67,61,49],[80,68,61,50],[80,71,62,14],[80,75,62,18,"Uint8Array"],[80,85,62,28],[80,86,62,29],[80,88,62,31],[80,89,62,32],[81,6,63,4],[82,6,64,4],[83,0,65,0],[84,0,66,0],[85,4,64,4],[86,6,64,4,"key"],[86,9,64,4],[87,6,64,4,"value"],[87,11,64,4],[87,13,67,4],[87,22,67,4,"toRawType"],[87,31,67,13,"toRawType"],[87,32,67,13],[87,34,67,16],[88,8,68,8],[88,15,68,15],[88,19,68,19],[88,23,68,23],[88,24,68,24,"Type"],[88,28,68,28],[88,32,68,32],[88,36,68,36],[88,37,68,37,"length"],[88,43,68,43],[88,46,68,46],[89,6,69,4],[90,4,69,5],[91,6,69,5,"key"],[91,9,69,5],[92,6,69,5,"value"],[92,11,69,5],[92,13,22,4],[92,22,22,11,"with"],[92,27,22,15,"with"],[92,28,22,16,"Type"],[92,32,22,20],[92,34,22,22,"length"],[92,40,22,28],[92,42,22,30],[93,8,23,8],[93,12,23,12,"definition"],[93,22,23,22],[94,8,24,8],[95,8,25,8],[95,12,25,14,"setDefinition"],[95,25,25,27],[95,28,25,31,"d"],[95,29,25,32],[95,33,25,38,"definition"],[95,43,25,48],[95,46,25,51,"d"],[95,47,25,53],[96,8,26,8],[96,38,26,8,"_VecFixed2"],[96,48,26,8],[97,10,27,12],[97,19,27,12,"_class"],[97,26,27,24,"registry"],[97,34,27,32],[97,36,27,34,"value"],[97,41,27,39],[97,43,27,41],[98,12,27,41,"_classCallCheck"],[98,27,27,41],[98,34,27,41,"_class"],[98,40,27,41],[99,12,27,41],[99,19,27,41,"_callSuper"],[99,29,27,41],[99,36,27,41,"_class"],[99,42,27,41],[99,45,28,22,"registry"],[99,53,28,30],[99,55,28,32,"Type"],[99,59,28,36],[99,61,28,38,"length"],[99,67,28,44],[99,69,28,46,"value"],[99,74,28,51],[99,76,28,53],[100,14,28,55,"definition"],[100,24,28,65],[101,14,28,67,"setDefinition"],[102,12,28,81],[102,13,28,82],[103,10,29,12],[104,10,29,13,"_inherits"],[104,19,29,13],[104,20,29,13,"_class"],[104,26,29,13],[104,28,29,13,"_VecFixed2"],[104,38,29,13],[105,10,29,13],[105,17,29,13,"_createClass"],[105,29,29,13],[105,30,29,13,"_class"],[105,36,29,13],[106,8,29,13],[106,10,26,29,"VecFixed"],[106,18,26,37],[107,6,31,4],[108,4,31,5],[109,2,31,5],[109,4,13,23,"Array_js_1"],[109,14,13,33],[109,15,13,34,"AbstractArray"],[109,28,13,47],[110,2,71,0,"exports"],[110,9,71,7],[110,10,71,8,"VecFixed"],[110,18,71,16],[110,21,71,19,"VecFixed"],[110,29,71,27],[111,0,71,28],[111,3]],"functionMap":{"names":["<global>","VecFixed","constructor","_with","setDefinition","<anonymous>","get__Type","get__encodedLength","inspect","toU8a","toRawType"],"mappings":"AAA;ACY;ICE;KDM;IEC;8BCG,uBD;eEC;YHC;aGE;SFC;KFC;IKI;KLE;IMI;KNM;IOI;KPI;IQC;KRO;ISI;KTE;CDC"},"hasCjsExports":true},"type":"js/module"}]} |