{"dependencies":[{"name":"@babel/runtime/helpers/slicedToArray","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"5y7e5+zC7teYEEC6niD9f5zII1M=","exportNames":["*"],"imports":1}},{"name":"rxjs","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":15,"index":149},"end":{"line":5,"column":30,"index":164}}],"key":"atDzfUGaJNRNtwyVumomzH/5ygw=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":19,"index":185},"end":{"line":6,"column":46,"index":212}}],"key":"H94lp+EitftSFqDHaenrSs5zKB0=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _slicedToArray = require(_dependencyMap[0], \"@babel/runtime/helpers/slicedToArray\").default;\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.query = void 0;\n exports.queryMulti = queryMulti;\n var rxjs_1 = require(_dependencyMap[1], \"rxjs\");\n var index_js_1 = require(_dependencyMap[2], \"../util/index.js\");\n function rewardDestinationCompat(rewardDestination) {\n // We ensure the type is an Option by checking if isSome is a boolean. When isSome doesn't exist it will always return undefined.\n return typeof rewardDestination.isSome === 'boolean' ? rewardDestination.unwrapOr(null) : rewardDestination;\n }\n function filterClaimedRewards(api, cl) {\n return api.registry.createType('Vec', cl.filter(function (c) {\n return c !== -1;\n }));\n }\n function filterRewards(stashIds, eras, claimedRewards, stakersOverview) {\n var claimedData = {};\n var overviewData = {};\n var ids = stashIds.map(function (i) {\n return i.toString();\n });\n claimedRewards.forEach(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n keys = _ref2[0],\n rewards = _ref2[1];\n var id = keys.args[1].toString();\n var era = keys.args[0].toNumber();\n if (ids.includes(id)) {\n if (claimedData[id]) {\n claimedData[id].set(era, rewards.toArray());\n } else {\n claimedData[id] = new Map();\n claimedData[id].set(era, rewards.toArray());\n }\n }\n });\n stakersOverview.forEach(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n keys = _ref4[0],\n overview = _ref4[1];\n var id = keys.args[1].toString();\n var era = keys.args[0].toNumber();\n if (ids.includes(id) && overview.isSome) {\n if (overviewData[id]) {\n overviewData[id].set(era, overview.unwrap().pageCount);\n } else {\n overviewData[id] = new Map();\n overviewData[id].set(era, overview.unwrap().pageCount);\n }\n }\n });\n return stashIds.map(function (id) {\n var rewardsPerEra = claimedData[id.toString()];\n var overviewPerEra = overviewData[id.toString()];\n return eras.map(function (era) {\n if (rewardsPerEra && rewardsPerEra.has(era) && overviewPerEra && overviewPerEra.has(era)) {\n var rewards = rewardsPerEra.get(era);\n var pageCount = overviewPerEra.get(era);\n return rewards.length === pageCount.toNumber() ? era : -1;\n }\n return -1;\n });\n });\n }\n function parseDetails(api, stashId, controllerIdOpt, nominatorsOpt, rewardDestinationOpts, validatorPrefs, exposure, stakingLedgerOpt, exposureMeta, claimedRewards, exposureEraStakers) {\n return {\n accountId: stashId,\n claimedRewardsEras: filterClaimedRewards(api, claimedRewards),\n controllerId: (controllerIdOpt == null ? void 0 : controllerIdOpt.unwrapOr(null)) || null,\n exposureEraStakers: exposureEraStakers,\n exposureMeta: exposureMeta,\n exposurePaged: exposure,\n nominators: nominatorsOpt.isSome ? nominatorsOpt.unwrap().targets : [],\n rewardDestination: rewardDestinationCompat(rewardDestinationOpts),\n stakingLedger: stakingLedgerOpt.unwrapOrDefault(),\n stashId: stashId,\n validatorPrefs: validatorPrefs\n };\n }\n function getLedgers(api, optIds, _ref5) {\n var _ref5$withLedger = _ref5.withLedger,\n withLedger = _ref5$withLedger === void 0 ? false : _ref5$withLedger;\n var ids = optIds.filter(function (o) {\n return withLedger && !!o && o.isSome;\n }).map(function (o) {\n return o.unwrap();\n });\n var emptyLed = api.registry.createType('Option');\n return (ids.length ? (0, rxjs_1.combineLatest)(ids.map(function (s) {\n return api.query.staking.ledger(s);\n })) : (0, rxjs_1.of)([])).pipe((0, rxjs_1.map)(function (optLedgers) {\n var offset = -1;\n return optIds.map(function (o) {\n return o && o.isSome ? optLedgers[++offset] || emptyLed : emptyLed;\n });\n }));\n }\n function getStashInfo(api, stashIds, activeEra, _ref6, page) {\n var withClaimedRewardsEras = _ref6.withClaimedRewardsEras,\n withController = _ref6.withController,\n withDestination = _ref6.withDestination,\n withExposure = _ref6.withExposure,\n withExposureErasStakersLegacy = _ref6.withExposureErasStakersLegacy,\n withExposureMeta = _ref6.withExposureMeta,\n withLedger = _ref6.withLedger,\n withNominations = _ref6.withNominations,\n withPrefs = _ref6.withPrefs;\n var emptyNoms = api.registry.createType('Option');\n var emptyRewa = api.registry.createType('RewardDestination');\n var emptyExpoEraStakers = api.registry.createType('Exposure');\n var emptyPrefs = api.registry.createType('ValidatorPrefs');\n // The reason we don't explicitly make the actual types is for compatibility. If the chain doesn't have the noted type it will fail\n // on construction. Therefore we just make an empty option.\n var emptyExpo = api.registry.createType('Option');\n var emptyExpoMeta = api.registry.createType('Option');\n var emptyClaimedRewards = [-1];\n var depth = Number(api.consts.staking.historyDepth.toNumber());\n var eras = new Array(depth).fill(0).map(function (_, idx) {\n if (idx === 0) {\n return activeEra.toNumber() - 1;\n }\n return activeEra.toNumber() - idx - 1;\n });\n return (0, rxjs_1.combineLatest)([withController || withLedger ? (0, rxjs_1.combineLatest)(stashIds.map(function (s) {\n return api.query.staking.bonded(s);\n })) : (0, rxjs_1.of)(stashIds.map(function () {\n return null;\n })), withNominations ? (0, rxjs_1.combineLatest)(stashIds.map(function (s) {\n return api.query.staking.nominators(s);\n })) : (0, rxjs_1.of)(stashIds.map(function () {\n return emptyNoms;\n })), withDestination ? (0, rxjs_1.combineLatest)(stashIds.map(function (s) {\n return api.query.staking.payee(s);\n })) : (0, rxjs_1.of)(stashIds.map(function () {\n return emptyRewa;\n })), withPrefs ? (0, rxjs_1.combineLatest)(stashIds.map(function (s) {\n return api.query.staking.validators(s);\n })) : (0, rxjs_1.of)(stashIds.map(function () {\n return emptyPrefs;\n })), withExposure && api.query.staking.erasStakersPaged ? (0, rxjs_1.combineLatest)(stashIds.map(function (s) {\n return api.query.staking.erasStakersPaged(activeEra, s, page);\n })) : (0, rxjs_1.of)(stashIds.map(function () {\n return emptyExpo;\n })), withExposureMeta && api.query.staking.erasStakersOverview ? (0, rxjs_1.combineLatest)(stashIds.map(function (s) {\n return api.query.staking.erasStakersOverview(activeEra, s);\n })) : (0, rxjs_1.of)(stashIds.map(function () {\n return emptyExpoMeta;\n })), withClaimedRewardsEras && api.query.staking.claimedRewards ? (0, rxjs_1.combineLatest)([api.query.staking.claimedRewards.entries(), api.query.staking.erasStakersOverview.entries()]).pipe((0, rxjs_1.map)(function (_ref7) {\n var _ref8 = _slicedToArray(_ref7, 2),\n rewardsStorageVec = _ref8[0],\n overviewStorageVec = _ref8[1];\n return filterRewards(stashIds, eras, rewardsStorageVec, overviewStorageVec);\n })) : (0, rxjs_1.of)(stashIds.map(function () {\n return emptyClaimedRewards;\n })), withExposureErasStakersLegacy && api.query.staking.erasStakers ? (0, rxjs_1.combineLatest)(stashIds.map(function (s) {\n return api.query.staking.erasStakers(activeEra, s);\n })) : (0, rxjs_1.of)(stashIds.map(function () {\n return emptyExpoEraStakers;\n }))]);\n }\n function getBatch(api, activeEra, stashIds, flags, page) {\n return getStashInfo(api, stashIds, activeEra, flags, page).pipe((0, rxjs_1.switchMap)(function (_ref9) {\n var _ref0 = _slicedToArray(_ref9, 8),\n controllerIdOpt = _ref0[0],\n nominatorsOpt = _ref0[1],\n rewardDestination = _ref0[2],\n validatorPrefs = _ref0[3],\n exposure = _ref0[4],\n exposureMeta = _ref0[5],\n claimedRewardsEras = _ref0[6],\n exposureEraStakers = _ref0[7];\n return getLedgers(api, controllerIdOpt, flags).pipe((0, rxjs_1.map)(function (stakingLedgerOpts) {\n return stashIds.map(function (stashId, index) {\n return parseDetails(api, stashId, controllerIdOpt[index], nominatorsOpt[index], rewardDestination[index], validatorPrefs[index], exposure[index], stakingLedgerOpts[index], exposureMeta[index], claimedRewardsEras[index], exposureEraStakers[index]);\n });\n }));\n }));\n }\n /**\n * @name query\n * @param { Uint8Array | string } accountId The stash account to query.\n * @param { StakingQueryFlags } flags Flags to customize the query.\n * @param { u32 } page (Optional) pagination parameter.\n * @description Retrieves staking details for a given stash account.\n * @example\n * ```javascript\n * const stakingInfo = await api.derive.staking.query(\n * ALICE,\n * {}\n * );\n * ```\n */\n exports.query = (0, index_js_1.firstMemo)(function (api, accountId, flags, page) {\n return api.derive.staking.queryMulti([accountId], flags, page);\n });\n /**\n * @name queryMulti\n * @param { (Uint8Array | string)[] } accountIds List of stash accounts to query.\n * @param { StakingQueryFlags } flags Flags to customize the query.\n * @param { u32 } page (Optional) pagination parameter.\n * @description Retrieves staking details for multiple stash accounts.\n * @example\n * ```javascript\n * const stakingInfos = await api.derive.staking.queryMulti([stashId1, stashId2], {});\n * ```\n */\n function queryMulti(instanceId, api) {\n return (0, index_js_1.memo)(instanceId, function (accountIds, flags, page) {\n return api.derive.session.indexes().pipe((0, rxjs_1.switchMap)(function (_ref1) {\n var activeEra = _ref1.activeEra;\n var stashIds = accountIds.map(function (a) {\n return api.registry.createType('AccountId', a);\n });\n var p = page || 0;\n return stashIds.length ? getBatch(api, activeEra, stashIds, flags, p) : (0, rxjs_1.of)([]);\n }));\n });\n }\n});","lineCount":224,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13],[4,6,1,13,"_slicedToArray"],[4,20,1,13],[4,23,1,13,"require"],[4,30,1,13],[4,31,1,13,"_dependencyMap"],[4,45,1,13],[4,90,1,13,"default"],[4,97,1,13],[5,2,2,0,"Object"],[5,8,2,6],[5,9,2,7,"defineProperty"],[5,23,2,21],[5,24,2,22,"exports"],[5,31,2,29],[5,33,2,31],[5,45,2,43],[5,47,2,45],[6,4,2,47,"value"],[6,9,2,52],[6,11,2,54],[7,2,2,59],[7,3,2,60],[7,4,2,61],[8,2,3,0,"exports"],[8,9,3,7],[8,10,3,8,"query"],[8,15,3,13],[8,18,3,16],[8,23,3,21],[8,24,3,22],[9,2,4,0,"exports"],[9,9,4,7],[9,10,4,8,"queryMulti"],[9,20,4,18],[9,23,4,21,"queryMulti"],[9,33,4,31],[10,2,5,0],[10,6,5,6,"rxjs_1"],[10,12,5,12],[10,15,5,15,"require"],[10,22,5,22],[10,23,5,22,"_dependencyMap"],[10,37,5,22],[10,48,5,29],[10,49,5,30],[11,2,6,0],[11,6,6,6,"index_js_1"],[11,16,6,16],[11,19,6,19,"require"],[11,26,6,26],[11,27,6,26,"_dependencyMap"],[11,41,6,26],[11,64,6,45],[11,65,6,46],[12,2,7,0],[12,11,7,9,"rewardDestinationCompat"],[12,34,7,32,"rewardDestinationCompat"],[12,35,7,33,"rewardDestination"],[12,52,7,50],[12,54,7,52],[13,4,8,4],[14,4,9,4],[14,11,9,11],[14,18,9,18,"rewardDestination"],[14,35,9,35],[14,36,9,36,"isSome"],[14,42,9,42],[14,47,9,47],[14,56,9,56],[14,59,10,10,"rewardDestination"],[14,76,10,27],[14,77,10,28,"unwrapOr"],[14,85,10,36],[14,86,10,37],[14,90,10,41],[14,91,10,42],[14,94,11,10,"rewardDestination"],[14,111,11,27],[15,2,12,0],[16,2,13,0],[16,11,13,9,"filterClaimedRewards"],[16,31,13,29,"filterClaimedRewards"],[16,32,13,30,"api"],[16,35,13,33],[16,37,13,35,"cl"],[16,39,13,37],[16,41,13,39],[17,4,14,4],[17,11,14,11,"api"],[17,14,14,14],[17,15,14,15,"registry"],[17,23,14,23],[17,24,14,24,"createType"],[17,34,14,34],[17,35,14,35],[17,45,14,45],[17,47,14,47,"cl"],[17,49,14,49],[17,50,14,50,"filter"],[17,56,14,56],[17,57,14,57],[17,67,14,58,"c"],[17,68,14,59],[18,6,14,59],[18,13,14,64,"c"],[18,14,14,65],[18,19,14,70],[18,20,14,71],[18,21,14,72],[19,4,14,72],[19,6,14,73],[19,7,14,74],[20,2,15,0],[21,2,16,0],[21,11,16,9,"filterRewards"],[21,24,16,22,"filterRewards"],[21,25,16,23,"stashIds"],[21,33,16,31],[21,35,16,33,"eras"],[21,39,16,37],[21,41,16,39,"claimedRewards"],[21,55,16,53],[21,57,16,55,"stakersOverview"],[21,72,16,70],[21,74,16,72],[22,4,17,4],[22,8,17,10,"claimedData"],[22,19,17,21],[22,22,17,24],[22,23,17,25],[22,24,17,26],[23,4,18,4],[23,8,18,10,"overviewData"],[23,20,18,22],[23,23,18,25],[23,24,18,26],[23,25,18,27],[24,4,19,4],[24,8,19,10,"ids"],[24,11,19,13],[24,14,19,16,"stashIds"],[24,22,19,24],[24,23,19,25,"map"],[24,26,19,28],[24,27,19,29],[24,37,19,30,"i"],[24,38,19,31],[25,6,19,31],[25,13,19,36,"i"],[25,14,19,37],[25,15,19,38,"toString"],[25,23,19,46],[25,24,19,47],[25,25,19,48],[26,4,19,48],[26,6,19,49],[27,4,20,4,"claimedRewards"],[27,18,20,18],[27,19,20,19,"forEach"],[27,26,20,26],[27,27,20,27],[27,37,20,27,"_ref"],[27,41,20,27],[27,43,20,48],[28,6,20,48],[28,10,20,48,"_ref2"],[28,15,20,48],[28,18,20,48,"_slicedToArray"],[28,32,20,48],[28,33,20,48,"_ref"],[28,37,20,48],[29,8,20,29,"keys"],[29,12,20,33],[29,15,20,33,"_ref2"],[29,20,20,33],[30,8,20,35,"rewards"],[30,15,20,42],[30,18,20,42,"_ref2"],[30,23,20,42],[31,6,21,8],[31,10,21,14,"id"],[31,12,21,16],[31,15,21,19,"keys"],[31,19,21,23],[31,20,21,24,"args"],[31,24,21,28],[31,25,21,29],[31,26,21,30],[31,27,21,31],[31,28,21,32,"toString"],[31,36,21,40],[31,37,21,41],[31,38,21,42],[32,6,22,8],[32,10,22,14,"era"],[32,13,22,17],[32,16,22,20,"keys"],[32,20,22,24],[32,21,22,25,"args"],[32,25,22,29],[32,26,22,30],[32,27,22,31],[32,28,22,32],[32,29,22,33,"toNumber"],[32,37,22,41],[32,38,22,42],[32,39,22,43],[33,6,23,8],[33,10,23,12,"ids"],[33,13,23,15],[33,14,23,16,"includes"],[33,22,23,24],[33,23,23,25,"id"],[33,25,23,27],[33,26,23,28],[33,28,23,30],[34,8,24,12],[34,12,24,16,"claimedData"],[34,23,24,27],[34,24,24,28,"id"],[34,26,24,30],[34,27,24,31],[34,29,24,33],[35,10,25,16,"claimedData"],[35,21,25,27],[35,22,25,28,"id"],[35,24,25,30],[35,25,25,31],[35,26,25,32,"set"],[35,29,25,35],[35,30,25,36,"era"],[35,33,25,39],[35,35,25,41,"rewards"],[35,42,25,48],[35,43,25,49,"toArray"],[35,50,25,56],[35,51,25,57],[35,52,25,58],[35,53,25,59],[36,8,26,12],[36,9,26,13],[36,15,27,17],[37,10,28,16,"claimedData"],[37,21,28,27],[37,22,28,28,"id"],[37,24,28,30],[37,25,28,31],[37,28,28,34],[37,32,28,38,"Map"],[37,35,28,41],[37,36,28,42],[37,37,28,43],[38,10,29,16,"claimedData"],[38,21,29,27],[38,22,29,28,"id"],[38,24,29,30],[38,25,29,31],[38,26,29,32,"set"],[38,29,29,35],[38,30,29,36,"era"],[38,33,29,39],[38,35,29,41,"rewards"],[38,42,29,48],[38,43,29,49,"toArray"],[38,50,29,56],[38,51,29,57],[38,52,29,58],[38,53,29,59],[39,8,30,12],[40,6,31,8],[41,4,32,4],[41,5,32,5],[41,6,32,6],[42,4,33,4,"stakersOverview"],[42,19,33,19],[42,20,33,20,"forEach"],[42,27,33,27],[42,28,33,28],[42,38,33,28,"_ref3"],[42,43,33,28],[42,45,33,50],[43,6,33,50],[43,10,33,50,"_ref4"],[43,15,33,50],[43,18,33,50,"_slicedToArray"],[43,32,33,50],[43,33,33,50,"_ref3"],[43,38,33,50],[44,8,33,30,"keys"],[44,12,33,34],[44,15,33,34,"_ref4"],[44,20,33,34],[45,8,33,36,"overview"],[45,16,33,44],[45,19,33,44,"_ref4"],[45,24,33,44],[46,6,34,8],[46,10,34,14,"id"],[46,12,34,16],[46,15,34,19,"keys"],[46,19,34,23],[46,20,34,24,"args"],[46,24,34,28],[46,25,34,29],[46,26,34,30],[46,27,34,31],[46,28,34,32,"toString"],[46,36,34,40],[46,37,34,41],[46,38,34,42],[47,6,35,8],[47,10,35,14,"era"],[47,13,35,17],[47,16,35,20,"keys"],[47,20,35,24],[47,21,35,25,"args"],[47,25,35,29],[47,26,35,30],[47,27,35,31],[47,28,35,32],[47,29,35,33,"toNumber"],[47,37,35,41],[47,38,35,42],[47,39,35,43],[48,6,36,8],[48,10,36,12,"ids"],[48,13,36,15],[48,14,36,16,"includes"],[48,22,36,24],[48,23,36,25,"id"],[48,25,36,27],[48,26,36,28],[48,30,36,32,"overview"],[48,38,36,40],[48,39,36,41,"isSome"],[48,45,36,47],[48,47,36,49],[49,8,37,12],[49,12,37,16,"overviewData"],[49,24,37,28],[49,25,37,29,"id"],[49,27,37,31],[49,28,37,32],[49,30,37,34],[50,10,38,16,"overviewData"],[50,22,38,28],[50,23,38,29,"id"],[50,25,38,31],[50,26,38,32],[50,27,38,33,"set"],[50,30,38,36],[50,31,38,37,"era"],[50,34,38,40],[50,36,38,42,"overview"],[50,44,38,50],[50,45,38,51,"unwrap"],[50,51,38,57],[50,52,38,58],[50,53,38,59],[50,54,38,60,"pageCount"],[50,63,38,69],[50,64,38,70],[51,8,39,12],[51,9,39,13],[51,15,40,17],[52,10,41,16,"overviewData"],[52,22,41,28],[52,23,41,29,"id"],[52,25,41,31],[52,26,41,32],[52,29,41,35],[52,33,41,39,"Map"],[52,36,41,42],[52,37,41,43],[52,38,41,44],[53,10,42,16,"overviewData"],[53,22,42,28],[53,23,42,29,"id"],[53,25,42,31],[53,26,42,32],[53,27,42,33,"set"],[53,30,42,36],[53,31,42,37,"era"],[53,34,42,40],[53,36,42,42,"overview"],[53,44,42,50],[53,45,42,51,"unwrap"],[53,51,42,57],[53,52,42,58],[53,53,42,59],[53,54,42,60,"pageCount"],[53,63,42,69],[53,64,42,70],[54,8,43,12],[55,6,44,8],[56,4,45,4],[56,5,45,5],[56,6,45,6],[57,4,46,4],[57,11,46,11,"stashIds"],[57,19,46,19],[57,20,46,20,"map"],[57,23,46,23],[57,24,46,24],[57,34,46,25,"id"],[57,36,46,27],[57,38,46,32],[58,6,47,8],[58,10,47,14,"rewardsPerEra"],[58,23,47,27],[58,26,47,30,"claimedData"],[58,37,47,41],[58,38,47,42,"id"],[58,40,47,44],[58,41,47,45,"toString"],[58,49,47,53],[58,50,47,54],[58,51,47,55],[58,52,47,56],[59,6,48,8],[59,10,48,14,"overviewPerEra"],[59,24,48,28],[59,27,48,31,"overviewData"],[59,39,48,43],[59,40,48,44,"id"],[59,42,48,46],[59,43,48,47,"toString"],[59,51,48,55],[59,52,48,56],[59,53,48,57],[59,54,48,58],[60,6,49,8],[60,13,49,15,"eras"],[60,17,49,19],[60,18,49,20,"map"],[60,21,49,23],[60,22,49,24],[60,32,49,25,"era"],[60,35,49,28],[60,37,49,33],[61,8,50,12],[61,12,50,16,"rewardsPerEra"],[61,25,50,29],[61,29,50,33,"rewardsPerEra"],[61,42,50,46],[61,43,50,47,"has"],[61,46,50,50],[61,47,50,51,"era"],[61,50,50,54],[61,51,50,55],[61,55,50,59,"overviewPerEra"],[61,69,50,73],[61,73,50,77,"overviewPerEra"],[61,87,50,91],[61,88,50,92,"has"],[61,91,50,95],[61,92,50,96,"era"],[61,95,50,99],[61,96,50,100],[61,98,50,102],[62,10,51,16],[62,14,51,22,"rewards"],[62,21,51,29],[62,24,51,32,"rewardsPerEra"],[62,37,51,45],[62,38,51,46,"get"],[62,41,51,49],[62,42,51,50,"era"],[62,45,51,53],[62,46,51,54],[63,10,52,16],[63,14,52,22,"pageCount"],[63,23,52,31],[63,26,52,34,"overviewPerEra"],[63,40,52,48],[63,41,52,49,"get"],[63,44,52,52],[63,45,52,53,"era"],[63,48,52,56],[63,49,52,57],[64,10,53,16],[64,17,53,23,"rewards"],[64,24,53,30],[64,25,53,31,"length"],[64,31,53,37],[64,36,53,42,"pageCount"],[64,45,53,51],[64,46,53,52,"toNumber"],[64,54,53,60],[64,55,53,61],[64,56,53,62],[64,59,54,22,"era"],[64,62,54,25],[64,65,55,22],[64,66,55,23],[64,67,55,24],[65,8,56,12],[66,8,57,12],[66,15,57,19],[66,16,57,20],[66,17,57,21],[67,6,58,8],[67,7,58,9],[67,8,58,10],[68,4,59,4],[68,5,59,5],[68,6,59,6],[69,2,60,0],[70,2,61,0],[70,11,61,9,"parseDetails"],[70,23,61,21,"parseDetails"],[70,24,61,22,"api"],[70,27,61,25],[70,29,61,27,"stashId"],[70,36,61,34],[70,38,61,36,"controllerIdOpt"],[70,53,61,51],[70,55,61,53,"nominatorsOpt"],[70,68,61,66],[70,70,61,68,"rewardDestinationOpts"],[70,91,61,89],[70,93,61,91,"validatorPrefs"],[70,107,61,105],[70,109,61,107,"exposure"],[70,117,61,115],[70,119,61,117,"stakingLedgerOpt"],[70,135,61,133],[70,137,61,135,"exposureMeta"],[70,149,61,147],[70,151,61,149,"claimedRewards"],[70,165,61,163],[70,167,61,165,"exposureEraStakers"],[70,185,61,183],[70,187,61,185],[71,4,62,4],[71,11,62,11],[72,6,63,8,"accountId"],[72,15,63,17],[72,17,63,19,"stashId"],[72,24,63,26],[73,6,64,8,"claimedRewardsEras"],[73,24,64,26],[73,26,64,28,"filterClaimedRewards"],[73,46,64,48],[73,47,64,49,"api"],[73,50,64,52],[73,52,64,54,"claimedRewards"],[73,66,64,68],[73,67,64,69],[74,6,65,8,"controllerId"],[74,18,65,20],[74,20,65,22],[74,21,65,22,"controllerIdOpt"],[74,36,65,37],[74,56,65,22,"controllerIdOpt"],[74,71,65,37],[74,72,65,39,"unwrapOr"],[74,80,65,47],[74,81,65,48],[74,85,65,52],[74,86,65,53],[74,91,65,57],[74,95,65,61],[75,6,66,8,"exposureEraStakers"],[75,24,66,26],[75,26,66,8,"exposureEraStakers"],[75,44,66,26],[76,6,67,8,"exposureMeta"],[76,18,67,20],[76,20,67,8,"exposureMeta"],[76,32,67,20],[77,6,68,8,"exposurePaged"],[77,19,68,21],[77,21,68,23,"exposure"],[77,29,68,31],[78,6,69,8,"nominators"],[78,16,69,18],[78,18,69,20,"nominatorsOpt"],[78,31,69,33],[78,32,69,34,"isSome"],[78,38,69,40],[78,41,70,14,"nominatorsOpt"],[78,54,70,27],[78,55,70,28,"unwrap"],[78,61,70,34],[78,62,70,35],[78,63,70,36],[78,64,70,37,"targets"],[78,71,70,44],[78,74,71,14],[78,76,71,16],[79,6,72,8,"rewardDestination"],[79,23,72,25],[79,25,72,27,"rewardDestinationCompat"],[79,48,72,50],[79,49,72,51,"rewardDestinationOpts"],[79,70,72,72],[79,71,72,73],[80,6,73,8,"stakingLedger"],[80,19,73,21],[80,21,73,23,"stakingLedgerOpt"],[80,37,73,39],[80,38,73,40,"unwrapOrDefault"],[80,53,73,55],[80,54,73,56],[80,55,73,57],[81,6,74,8,"stashId"],[81,13,74,15],[81,15,74,8,"stashId"],[81,22,74,15],[82,6,75,8,"validatorPrefs"],[82,20,75,22],[82,22,75,8,"validatorPrefs"],[83,4,76,4],[83,5,76,5],[84,2,77,0],[85,2,78,0],[85,11,78,9,"getLedgers"],[85,21,78,19,"getLedgers"],[85,22,78,20,"api"],[85,25,78,23],[85,27,78,25,"optIds"],[85,33,78,31],[85,35,78,31,"_ref5"],[85,40,78,31],[85,42,78,57],[86,4,78,57],[86,8,78,57,"_ref5$withLedger"],[86,24,78,57],[86,27,78,57,"_ref5"],[86,32,78,57],[86,33,78,35,"withLedger"],[86,43,78,45],[87,6,78,35,"withLedger"],[87,16,78,45],[87,19,78,45,"_ref5$withLedger"],[87,35,78,45],[87,49,78,48],[87,54,78,53],[87,57,78,53,"_ref5$withLedger"],[87,73,78,53],[88,4,79,4],[88,8,79,10,"ids"],[88,11,79,13],[88,14,79,16,"optIds"],[88,20,79,22],[88,21,80,9,"filter"],[88,27,80,15],[88,28,80,16],[88,38,80,17,"o"],[88,39,80,18],[89,6,80,18],[89,13,80,23,"withLedger"],[89,23,80,33],[89,27,80,37],[89,28,80,38],[89,29,80,39,"o"],[89,30,80,40],[89,34,80,44,"o"],[89,35,80,45],[89,36,80,46,"isSome"],[89,42,80,52],[90,4,80,52],[90,6,80,53],[90,7,81,9,"map"],[90,10,81,12],[90,11,81,13],[90,21,81,14,"o"],[90,22,81,15],[91,6,81,15],[91,13,81,20,"o"],[91,14,81,21],[91,15,81,22,"unwrap"],[91,21,81,28],[91,22,81,29],[91,23,81,30],[92,4,81,30],[92,6,81,31],[93,4,82,4],[93,8,82,10,"emptyLed"],[93,16,82,18],[93,19,82,21,"api"],[93,22,82,24],[93,23,82,25,"registry"],[93,31,82,33],[93,32,82,34,"createType"],[93,42,82,44],[93,43,82,45],[93,66,82,68],[93,67,82,69],[94,4,83,4],[94,11,83,11],[94,12,83,12,"ids"],[94,15,83,15],[94,16,83,16,"length"],[94,22,83,22],[94,25,84,10],[94,26,84,11],[94,27,84,12],[94,29,84,14,"rxjs_1"],[94,35,84,20],[94,36,84,21,"combineLatest"],[94,49,84,34],[94,51,84,36,"ids"],[94,54,84,39],[94,55,84,40,"map"],[94,58,84,43],[94,59,84,44],[94,69,84,45,"s"],[94,70,84,46],[95,6,84,46],[95,13,84,51,"api"],[95,16,84,54],[95,17,84,55,"query"],[95,22,84,60],[95,23,84,61,"staking"],[95,30,84,68],[95,31,84,69,"ledger"],[95,37,84,75],[95,38,84,76,"s"],[95,39,84,77],[95,40,84,78],[96,4,84,78],[96,6,84,79],[96,7,84,80],[96,10,85,10],[96,11,85,11],[96,12,85,12],[96,14,85,14,"rxjs_1"],[96,20,85,20],[96,21,85,21,"of"],[96,23,85,23],[96,25,85,25],[96,27,85,27],[96,28,85,28],[96,30,85,30,"pipe"],[96,34,85,34],[96,35,85,35],[96,36,85,36],[96,37,85,37],[96,39,85,39,"rxjs_1"],[96,45,85,45],[96,46,85,46,"map"],[96,49,85,49],[96,51,85,51],[96,61,85,52,"optLedgers"],[96,71,85,62],[96,73,85,67],[97,6,86,8],[97,10,86,12,"offset"],[97,16,86,18],[97,19,86,21],[97,20,86,22],[97,21,86,23],[98,6,87,8],[98,13,87,15,"optIds"],[98,19,87,21],[98,20,87,22,"map"],[98,23,87,25],[98,24,87,26],[98,34,87,27,"o"],[98,35,87,28],[99,8,87,28],[99,15,87,33,"o"],[99,16,87,34],[99,20,87,38,"o"],[99,21,87,39],[99,22,87,40,"isSome"],[99,28,87,46],[99,31,88,14,"optLedgers"],[99,41,88,24],[99,42,88,25],[99,44,88,27,"offset"],[99,50,88,33],[99,51,88,34],[99,55,88,38,"emptyLed"],[99,63,88,46],[99,66,89,14,"emptyLed"],[99,74,89,22],[100,6,89,22],[100,8,89,23],[101,4,90,4],[101,5,90,5],[101,6,90,6],[101,7,90,7],[102,2,91,0],[103,2,92,0],[103,11,92,9,"getStashInfo"],[103,23,92,21,"getStashInfo"],[103,24,92,22,"api"],[103,27,92,25],[103,29,92,27,"stashIds"],[103,37,92,35],[103,39,92,37,"activeEra"],[103,48,92,46],[103,50,92,46,"_ref6"],[103,55,92,46],[103,57,92,212,"page"],[103,61,92,216],[103,63,92,218],[104,4,92,218],[104,8,92,50,"withClaimedRewardsEras"],[104,30,92,72],[104,33,92,72,"_ref6"],[104,38,92,72],[104,39,92,50,"withClaimedRewardsEras"],[104,61,92,72],[105,6,92,74,"withController"],[105,20,92,88],[105,23,92,88,"_ref6"],[105,28,92,88],[105,29,92,74,"withController"],[105,43,92,88],[106,6,92,90,"withDestination"],[106,21,92,105],[106,24,92,105,"_ref6"],[106,29,92,105],[106,30,92,90,"withDestination"],[106,45,92,105],[107,6,92,107,"withExposure"],[107,18,92,119],[107,21,92,119,"_ref6"],[107,26,92,119],[107,27,92,107,"withExposure"],[107,39,92,119],[108,6,92,121,"withExposureErasStakersLegacy"],[108,35,92,150],[108,38,92,150,"_ref6"],[108,43,92,150],[108,44,92,121,"withExposureErasStakersLegacy"],[108,73,92,150],[109,6,92,152,"withExposureMeta"],[109,22,92,168],[109,25,92,168,"_ref6"],[109,30,92,168],[109,31,92,152,"withExposureMeta"],[109,47,92,168],[110,6,92,170,"withLedger"],[110,16,92,180],[110,19,92,180,"_ref6"],[110,24,92,180],[110,25,92,170,"withLedger"],[110,35,92,180],[111,6,92,182,"withNominations"],[111,21,92,197],[111,24,92,197,"_ref6"],[111,29,92,197],[111,30,92,182,"withNominations"],[111,45,92,197],[112,6,92,199,"withPrefs"],[112,15,92,208],[112,18,92,208,"_ref6"],[112,23,92,208],[112,24,92,199,"withPrefs"],[112,33,92,208],[113,4,93,4],[113,8,93,10,"emptyNoms"],[113,17,93,19],[113,20,93,22,"api"],[113,23,93,25],[113,24,93,26,"registry"],[113,32,93,34],[113,33,93,35,"createType"],[113,43,93,45],[113,44,93,46],[113,65,93,67],[113,66,93,68],[114,4,94,4],[114,8,94,10,"emptyRewa"],[114,17,94,19],[114,20,94,22,"api"],[114,23,94,25],[114,24,94,26,"registry"],[114,32,94,34],[114,33,94,35,"createType"],[114,43,94,45],[114,44,94,46],[114,63,94,65],[114,64,94,66],[115,4,95,4],[115,8,95,10,"emptyExpoEraStakers"],[115,27,95,29],[115,30,95,32,"api"],[115,33,95,35],[115,34,95,36,"registry"],[115,42,95,44],[115,43,95,45,"createType"],[115,53,95,55],[115,54,95,56],[115,64,95,66],[115,65,95,67],[116,4,96,4],[116,8,96,10,"emptyPrefs"],[116,18,96,20],[116,21,96,23,"api"],[116,24,96,26],[116,25,96,27,"registry"],[116,33,96,35],[116,34,96,36,"createType"],[116,44,96,46],[116,45,96,47],[116,61,96,63],[116,62,96,64],[117,4,97,4],[118,4,98,4],[119,4,99,4],[119,8,99,10,"emptyExpo"],[119,17,99,19],[119,20,99,22,"api"],[119,23,99,25],[119,24,99,26,"registry"],[119,32,99,34],[119,33,99,35,"createType"],[119,43,99,45],[119,44,99,46],[119,58,99,60],[119,59,99,61],[120,4,100,4],[120,8,100,10,"emptyExpoMeta"],[120,21,100,23],[120,24,100,26,"api"],[120,27,100,29],[120,28,100,30,"registry"],[120,36,100,38],[120,37,100,39,"createType"],[120,47,100,49],[120,48,100,50],[120,62,100,64],[120,63,100,65],[121,4,101,4],[121,8,101,10,"emptyClaimedRewards"],[121,27,101,29],[121,30,101,32],[121,31,101,33],[121,32,101,34],[121,33,101,35],[121,34,101,36],[122,4,102,4],[122,8,102,10,"depth"],[122,13,102,15],[122,16,102,18,"Number"],[122,22,102,24],[122,23,102,25,"api"],[122,26,102,28],[122,27,102,29,"consts"],[122,33,102,35],[122,34,102,36,"staking"],[122,41,102,43],[122,42,102,44,"historyDepth"],[122,54,102,56],[122,55,102,57,"toNumber"],[122,63,102,65],[122,64,102,66],[122,65,102,67],[122,66,102,68],[123,4,103,4],[123,8,103,10,"eras"],[123,12,103,14],[123,15,103,17],[123,19,103,21,"Array"],[123,24,103,26],[123,25,103,27,"depth"],[123,30,103,32],[123,31,103,33],[123,32,103,34,"fill"],[123,36,103,38],[123,37,103,39],[123,38,103,40],[123,39,103,41],[123,40,103,42,"map"],[123,43,103,45],[123,44,103,46],[123,54,103,47,"_"],[123,55,103,48],[123,57,103,50,"idx"],[123,60,103,53],[123,62,103,58],[124,6,104,8],[124,10,104,12,"idx"],[124,13,104,15],[124,18,104,20],[124,19,104,21],[124,21,104,23],[125,8,105,12],[125,15,105,19,"activeEra"],[125,24,105,28],[125,25,105,29,"toNumber"],[125,33,105,37],[125,34,105,38],[125,35,105,39],[125,38,105,42],[125,39,105,43],[126,6,106,8],[127,6,107,8],[127,13,107,15,"activeEra"],[127,22,107,24],[127,23,107,25,"toNumber"],[127,31,107,33],[127,32,107,34],[127,33,107,35],[127,36,107,38,"idx"],[127,39,107,41],[127,42,107,44],[127,43,107,45],[128,4,108,4],[128,5,108,5],[128,6,108,6],[129,4,109,4],[129,11,109,11],[129,12,109,12],[129,13,109,13],[129,15,109,15,"rxjs_1"],[129,21,109,21],[129,22,109,22,"combineLatest"],[129,35,109,35],[129,37,109,37],[129,38,110,8,"withController"],[129,52,110,22],[129,56,110,26,"withLedger"],[129,66,110,36],[129,69,111,14],[129,70,111,15],[129,71,111,16],[129,73,111,18,"rxjs_1"],[129,79,111,24],[129,80,111,25,"combineLatest"],[129,93,111,38],[129,95,111,40,"stashIds"],[129,103,111,48],[129,104,111,49,"map"],[129,107,111,52],[129,108,111,53],[129,118,111,54,"s"],[129,119,111,55],[130,6,111,55],[130,13,111,60,"api"],[130,16,111,63],[130,17,111,64,"query"],[130,22,111,69],[130,23,111,70,"staking"],[130,30,111,77],[130,31,111,78,"bonded"],[130,37,111,84],[130,38,111,85,"s"],[130,39,111,86],[130,40,111,87],[131,4,111,87],[131,6,111,88],[131,7,111,89],[131,10,112,14],[131,11,112,15],[131,12,112,16],[131,14,112,18,"rxjs_1"],[131,20,112,24],[131,21,112,25,"of"],[131,23,112,27],[131,25,112,29,"stashIds"],[131,33,112,37],[131,34,112,38,"map"],[131,37,112,41],[131,38,112,42],[132,6,112,42],[132,13,112,48],[132,17,112,52],[133,4,112,52],[133,6,112,53],[133,7,112,54],[133,9,113,8,"withNominations"],[133,24,113,23],[133,27,114,14],[133,28,114,15],[133,29,114,16],[133,31,114,18,"rxjs_1"],[133,37,114,24],[133,38,114,25,"combineLatest"],[133,51,114,38],[133,53,114,40,"stashIds"],[133,61,114,48],[133,62,114,49,"map"],[133,65,114,52],[133,66,114,53],[133,76,114,54,"s"],[133,77,114,55],[134,6,114,55],[134,13,114,60,"api"],[134,16,114,63],[134,17,114,64,"query"],[134,22,114,69],[134,23,114,70,"staking"],[134,30,114,77],[134,31,114,78,"nominators"],[134,41,114,88],[134,42,114,89,"s"],[134,43,114,90],[134,44,114,91],[135,4,114,91],[135,6,114,92],[135,7,114,93],[135,10,115,14],[135,11,115,15],[135,12,115,16],[135,14,115,18,"rxjs_1"],[135,20,115,24],[135,21,115,25,"of"],[135,23,115,27],[135,25,115,29,"stashIds"],[135,33,115,37],[135,34,115,38,"map"],[135,37,115,41],[135,38,115,42],[136,6,115,42],[136,13,115,48,"emptyNoms"],[136,22,115,57],[137,4,115,57],[137,6,115,58],[137,7,115,59],[137,9,116,8,"withDestination"],[137,24,116,23],[137,27,117,14],[137,28,117,15],[137,29,117,16],[137,31,117,18,"rxjs_1"],[137,37,117,24],[137,38,117,25,"combineLatest"],[137,51,117,38],[137,53,117,40,"stashIds"],[137,61,117,48],[137,62,117,49,"map"],[137,65,117,52],[137,66,117,53],[137,76,117,54,"s"],[137,77,117,55],[138,6,117,55],[138,13,117,60,"api"],[138,16,117,63],[138,17,117,64,"query"],[138,22,117,69],[138,23,117,70,"staking"],[138,30,117,77],[138,31,117,78,"payee"],[138,36,117,83],[138,37,117,84,"s"],[138,38,117,85],[138,39,117,86],[139,4,117,86],[139,6,117,87],[139,7,117,88],[139,10,118,14],[139,11,118,15],[139,12,118,16],[139,14,118,18,"rxjs_1"],[139,20,118,24],[139,21,118,25,"of"],[139,23,118,27],[139,25,118,29,"stashIds"],[139,33,118,37],[139,34,118,38,"map"],[139,37,118,41],[139,38,118,42],[140,6,118,42],[140,13,118,48,"emptyRewa"],[140,22,118,57],[141,4,118,57],[141,6,118,58],[141,7,118,59],[141,9,119,8,"withPrefs"],[141,18,119,17],[141,21,120,14],[141,22,120,15],[141,23,120,16],[141,25,120,18,"rxjs_1"],[141,31,120,24],[141,32,120,25,"combineLatest"],[141,45,120,38],[141,47,120,40,"stashIds"],[141,55,120,48],[141,56,120,49,"map"],[141,59,120,52],[141,60,120,53],[141,70,120,54,"s"],[141,71,120,55],[142,6,120,55],[142,13,120,60,"api"],[142,16,120,63],[142,17,120,64,"query"],[142,22,120,69],[142,23,120,70,"staking"],[142,30,120,77],[142,31,120,78,"validators"],[142,41,120,88],[142,42,120,89,"s"],[142,43,120,90],[142,44,120,91],[143,4,120,91],[143,6,120,92],[143,7,120,93],[143,10,121,14],[143,11,121,15],[143,12,121,16],[143,14,121,18,"rxjs_1"],[143,20,121,24],[143,21,121,25,"of"],[143,23,121,27],[143,25,121,29,"stashIds"],[143,33,121,37],[143,34,121,38,"map"],[143,37,121,41],[143,38,121,42],[144,6,121,42],[144,13,121,48,"emptyPrefs"],[144,23,121,58],[145,4,121,58],[145,6,121,59],[145,7,121,60],[145,9,122,8,"withExposure"],[145,21,122,20],[145,25,122,24,"api"],[145,28,122,27],[145,29,122,28,"query"],[145,34,122,33],[145,35,122,34,"staking"],[145,42,122,41],[145,43,122,42,"erasStakersPaged"],[145,59,122,58],[145,62,123,14],[145,63,123,15],[145,64,123,16],[145,66,123,18,"rxjs_1"],[145,72,123,24],[145,73,123,25,"combineLatest"],[145,86,123,38],[145,88,123,40,"stashIds"],[145,96,123,48],[145,97,123,49,"map"],[145,100,123,52],[145,101,123,53],[145,111,123,54,"s"],[145,112,123,55],[146,6,123,55],[146,13,123,60,"api"],[146,16,123,63],[146,17,123,64,"query"],[146,22,123,69],[146,23,123,70,"staking"],[146,30,123,77],[146,31,123,78,"erasStakersPaged"],[146,47,123,94],[146,48,123,95,"activeEra"],[146,57,123,104],[146,59,123,106,"s"],[146,60,123,107],[146,62,123,109,"page"],[146,66,123,113],[146,67,123,114],[147,4,123,114],[147,6,123,115],[147,7,123,116],[147,10,124,14],[147,11,124,15],[147,12,124,16],[147,14,124,18,"rxjs_1"],[147,20,124,24],[147,21,124,25,"of"],[147,23,124,27],[147,25,124,29,"stashIds"],[147,33,124,37],[147,34,124,38,"map"],[147,37,124,41],[147,38,124,42],[148,6,124,42],[148,13,124,48,"emptyExpo"],[148,22,124,57],[149,4,124,57],[149,6,124,58],[149,7,124,59],[149,9,125,8,"withExposureMeta"],[149,25,125,24],[149,29,125,28,"api"],[149,32,125,31],[149,33,125,32,"query"],[149,38,125,37],[149,39,125,38,"staking"],[149,46,125,45],[149,47,125,46,"erasStakersOverview"],[149,66,125,65],[149,69,126,14],[149,70,126,15],[149,71,126,16],[149,73,126,18,"rxjs_1"],[149,79,126,24],[149,80,126,25,"combineLatest"],[149,93,126,38],[149,95,126,40,"stashIds"],[149,103,126,48],[149,104,126,49,"map"],[149,107,126,52],[149,108,126,53],[149,118,126,54,"s"],[149,119,126,55],[150,6,126,55],[150,13,126,60,"api"],[150,16,126,63],[150,17,126,64,"query"],[150,22,126,69],[150,23,126,70,"staking"],[150,30,126,77],[150,31,126,78,"erasStakersOverview"],[150,50,126,97],[150,51,126,98,"activeEra"],[150,60,126,107],[150,62,126,109,"s"],[150,63,126,110],[150,64,126,111],[151,4,126,111],[151,6,126,112],[151,7,126,113],[151,10,127,14],[151,11,127,15],[151,12,127,16],[151,14,127,18,"rxjs_1"],[151,20,127,24],[151,21,127,25,"of"],[151,23,127,27],[151,25,127,29,"stashIds"],[151,33,127,37],[151,34,127,38,"map"],[151,37,127,41],[151,38,127,42],[152,6,127,42],[152,13,127,48,"emptyExpoMeta"],[152,26,127,61],[153,4,127,61],[153,6,127,62],[153,7,127,63],[153,9,128,8,"withClaimedRewardsEras"],[153,31,128,30],[153,35,128,34,"api"],[153,38,128,37],[153,39,128,38,"query"],[153,44,128,43],[153,45,128,44,"staking"],[153,52,128,51],[153,53,128,52,"claimedRewards"],[153,67,128,66],[153,70,129,14],[153,71,129,15],[153,72,129,16],[153,74,129,18,"rxjs_1"],[153,80,129,24],[153,81,129,25,"combineLatest"],[153,94,129,38],[153,96,129,40],[153,97,130,16,"api"],[153,100,130,19],[153,101,130,20,"query"],[153,106,130,25],[153,107,130,26,"staking"],[153,114,130,33],[153,115,130,34,"claimedRewards"],[153,129,130,48],[153,130,130,49,"entries"],[153,137,130,56],[153,138,130,57],[153,139,130,58],[153,141,131,16,"api"],[153,144,131,19],[153,145,131,20,"query"],[153,150,131,25],[153,151,131,26,"staking"],[153,158,131,33],[153,159,131,34,"erasStakersOverview"],[153,178,131,53],[153,179,131,54,"entries"],[153,186,131,61],[153,187,131,62],[153,188,131,63],[153,189,132,13],[153,190,132,14],[153,191,132,15,"pipe"],[153,195,132,19],[153,196,132,20],[153,197,132,21],[153,198,132,22],[153,200,132,24,"rxjs_1"],[153,206,132,30],[153,207,132,31,"map"],[153,210,132,34],[153,212,132,36],[153,222,132,36,"_ref7"],[153,227,132,36],[154,6,132,36],[154,10,132,36,"_ref8"],[154,15,132,36],[154,18,132,36,"_slicedToArray"],[154,32,132,36],[154,33,132,36,"_ref7"],[154,38,132,36],[155,8,132,38,"rewardsStorageVec"],[155,25,132,55],[155,28,132,55,"_ref8"],[155,33,132,55],[156,8,132,57,"overviewStorageVec"],[156,26,132,75],[156,29,132,75,"_ref8"],[156,34,132,75],[157,6,132,75],[157,13,132,81,"filterRewards"],[157,26,132,94],[157,27,132,95,"stashIds"],[157,35,132,103],[157,37,132,105,"eras"],[157,41,132,109],[157,43,132,111,"rewardsStorageVec"],[157,60,132,128],[157,62,132,130,"overviewStorageVec"],[157,80,132,148],[157,81,132,149],[158,4,132,149],[158,6,132,150],[158,7,132,151],[158,10,133,14],[158,11,133,15],[158,12,133,16],[158,14,133,18,"rxjs_1"],[158,20,133,24],[158,21,133,25,"of"],[158,23,133,27],[158,25,133,29,"stashIds"],[158,33,133,37],[158,34,133,38,"map"],[158,37,133,41],[158,38,133,42],[159,6,133,42],[159,13,133,48,"emptyClaimedRewards"],[159,32,133,67],[160,4,133,67],[160,6,133,68],[160,7,133,69],[160,9,134,8,"withExposureErasStakersLegacy"],[160,38,134,37],[160,42,134,41,"api"],[160,45,134,44],[160,46,134,45,"query"],[160,51,134,50],[160,52,134,51,"staking"],[160,59,134,58],[160,60,134,59,"erasStakers"],[160,71,134,70],[160,74,135,14],[160,75,135,15],[160,76,135,16],[160,78,135,18,"rxjs_1"],[160,84,135,24],[160,85,135,25,"combineLatest"],[160,98,135,38],[160,100,135,40,"stashIds"],[160,108,135,48],[160,109,135,49,"map"],[160,112,135,52],[160,113,135,53],[160,123,135,54,"s"],[160,124,135,55],[161,6,135,55],[161,13,135,60,"api"],[161,16,135,63],[161,17,135,64,"query"],[161,22,135,69],[161,23,135,70,"staking"],[161,30,135,77],[161,31,135,78,"erasStakers"],[161,42,135,89],[161,43,135,90,"activeEra"],[161,52,135,99],[161,54,135,101,"s"],[161,55,135,102],[161,56,135,103],[162,4,135,103],[162,6,135,104],[162,7,135,105],[162,10,136,14],[162,11,136,15],[162,12,136,16],[162,14,136,18,"rxjs_1"],[162,20,136,24],[162,21,136,25,"of"],[162,23,136,27],[162,25,136,29,"stashIds"],[162,33,136,37],[162,34,136,38,"map"],[162,37,136,41],[162,38,136,42],[163,6,136,42],[163,13,136,48,"emptyExpoEraStakers"],[163,32,136,67],[164,4,136,67],[164,6,136,68],[164,7,136,69],[164,8,137,5],[164,9,137,6],[165,2,138,0],[166,2,139,0],[166,11,139,9,"getBatch"],[166,19,139,17,"getBatch"],[166,20,139,18,"api"],[166,23,139,21],[166,25,139,23,"activeEra"],[166,34,139,32],[166,36,139,34,"stashIds"],[166,44,139,42],[166,46,139,44,"flags"],[166,51,139,49],[166,53,139,51,"page"],[166,57,139,55],[166,59,139,57],[167,4,140,4],[167,11,140,11,"getStashInfo"],[167,23,140,23],[167,24,140,24,"api"],[167,27,140,27],[167,29,140,29,"stashIds"],[167,37,140,37],[167,39,140,39,"activeEra"],[167,48,140,48],[167,50,140,50,"flags"],[167,55,140,55],[167,57,140,57,"page"],[167,61,140,61],[167,62,140,62],[167,63,140,63,"pipe"],[167,67,140,67],[167,68,140,68],[167,69,140,69],[167,70,140,70],[167,72,140,72,"rxjs_1"],[167,78,140,78],[167,79,140,79,"switchMap"],[167,88,140,88],[167,90,140,90],[167,100,140,90,"_ref9"],[167,105,140,90],[168,6,140,90],[168,10,140,90,"_ref0"],[168,15,140,90],[168,18,140,90,"_slicedToArray"],[168,32,140,90],[168,33,140,90,"_ref9"],[168,38,140,90],[169,8,140,92,"controllerIdOpt"],[169,23,140,107],[169,26,140,107,"_ref0"],[169,31,140,107],[170,8,140,109,"nominatorsOpt"],[170,21,140,122],[170,24,140,122,"_ref0"],[170,29,140,122],[171,8,140,124,"rewardDestination"],[171,25,140,141],[171,28,140,141,"_ref0"],[171,33,140,141],[172,8,140,143,"validatorPrefs"],[172,22,140,157],[172,25,140,157,"_ref0"],[172,30,140,157],[173,8,140,159,"exposure"],[173,16,140,167],[173,19,140,167,"_ref0"],[173,24,140,167],[174,8,140,169,"exposureMeta"],[174,20,140,181],[174,23,140,181,"_ref0"],[174,28,140,181],[175,8,140,183,"claimedRewardsEras"],[175,26,140,201],[175,29,140,201,"_ref0"],[175,34,140,201],[176,8,140,203,"exposureEraStakers"],[176,26,140,221],[176,29,140,221,"_ref0"],[176,34,140,221],[177,6,140,221],[177,13,140,227,"getLedgers"],[177,23,140,237],[177,24,140,238,"api"],[177,27,140,241],[177,29,140,243,"controllerIdOpt"],[177,44,140,258],[177,46,140,260,"flags"],[177,51,140,265],[177,52,140,266],[177,53,140,267,"pipe"],[177,57,140,271],[177,58,140,272],[177,59,140,273],[177,60,140,274],[177,62,140,276,"rxjs_1"],[177,68,140,282],[177,69,140,283,"map"],[177,72,140,286],[177,74,140,288],[177,84,140,289,"stakingLedgerOpts"],[177,101,140,306],[178,8,140,306],[178,15,140,311,"stashIds"],[178,23,140,319],[178,24,140,320,"map"],[178,27,140,323],[178,28,140,324],[178,38,140,325,"stashId"],[178,45,140,332],[178,47,140,334,"index"],[178,52,140,339],[179,10,140,339],[179,17,140,344,"parseDetails"],[179,29,140,356],[179,30,140,357,"api"],[179,33,140,360],[179,35,140,362,"stashId"],[179,42,140,369],[179,44,140,371,"controllerIdOpt"],[179,59,140,386],[179,60,140,387,"index"],[179,65,140,392],[179,66,140,393],[179,68,140,395,"nominatorsOpt"],[179,81,140,408],[179,82,140,409,"index"],[179,87,140,414],[179,88,140,415],[179,90,140,417,"rewardDestination"],[179,107,140,434],[179,108,140,435,"index"],[179,113,140,440],[179,114,140,441],[179,116,140,443,"validatorPrefs"],[179,130,140,457],[179,131,140,458,"index"],[179,136,140,463],[179,137,140,464],[179,139,140,466,"exposure"],[179,147,140,474],[179,148,140,475,"index"],[179,153,140,480],[179,154,140,481],[179,156,140,483,"stakingLedgerOpts"],[179,173,140,500],[179,174,140,501,"index"],[179,179,140,506],[179,180,140,507],[179,182,140,509,"exposureMeta"],[179,194,140,521],[179,195,140,522,"index"],[179,200,140,527],[179,201,140,528],[179,203,140,530,"claimedRewardsEras"],[179,221,140,548],[179,222,140,549,"index"],[179,227,140,554],[179,228,140,555],[179,230,140,557,"exposureEraStakers"],[179,248,140,575],[179,249,140,576,"index"],[179,254,140,581],[179,255,140,582],[179,256,140,583],[180,8,140,583],[180,10,140,584],[181,6,140,584],[181,8,140,585],[181,9,140,586],[182,4,140,586],[182,6,140,587],[182,7,140,588],[183,2,141,0],[184,2,142,0],[185,0,143,0],[186,0,144,0],[187,0,145,0],[188,0,146,0],[189,0,147,0],[190,0,148,0],[191,0,149,0],[192,0,150,0],[193,0,151,0],[194,0,152,0],[195,0,153,0],[196,0,154,0],[197,0,155,0],[198,2,156,0,"exports"],[198,9,156,7],[198,10,156,8,"query"],[198,15,156,13],[198,18,156,16],[198,19,156,17],[198,20,156,18],[198,22,156,20,"index_js_1"],[198,32,156,30],[198,33,156,31,"firstMemo"],[198,42,156,40],[198,44,156,42],[198,54,156,43,"api"],[198,57,156,46],[198,59,156,48,"accountId"],[198,68,156,57],[198,70,156,59,"flags"],[198,75,156,64],[198,77,156,66,"page"],[198,81,156,70],[199,4,156,70],[199,11,156,75,"api"],[199,14,156,78],[199,15,156,79,"derive"],[199,21,156,85],[199,22,156,86,"staking"],[199,29,156,93],[199,30,156,94,"queryMulti"],[199,40,156,104],[199,41,156,105],[199,42,156,106,"accountId"],[199,51,156,115],[199,52,156,116],[199,54,156,118,"flags"],[199,59,156,123],[199,61,156,125,"page"],[199,65,156,129],[199,66,156,130],[200,2,156,130],[200,4,156,131],[201,2,157,0],[202,0,158,0],[203,0,159,0],[204,0,160,0],[205,0,161,0],[206,0,162,0],[207,0,163,0],[208,0,164,0],[209,0,165,0],[210,0,166,0],[211,0,167,0],[212,2,168,0],[212,11,168,9,"queryMulti"],[212,21,168,19,"queryMulti"],[212,22,168,20,"instanceId"],[212,32,168,30],[212,34,168,32,"api"],[212,37,168,35],[212,39,168,37],[213,4,169,4],[213,11,169,11],[213,12,169,12],[213,13,169,13],[213,15,169,15,"index_js_1"],[213,25,169,25],[213,26,169,26,"memo"],[213,30,169,30],[213,32,169,32,"instanceId"],[213,42,169,42],[213,44,169,44],[213,54,169,45,"accountIds"],[213,64,169,55],[213,66,169,57,"flags"],[213,71,169,62],[213,73,169,64,"page"],[213,77,169,68],[214,6,169,68],[214,13,169,73,"api"],[214,16,169,76],[214,17,169,77,"derive"],[214,23,169,83],[214,24,169,84,"session"],[214,31,169,91],[214,32,169,92,"indexes"],[214,39,169,99],[214,40,169,100],[214,41,169,101],[214,42,169,102,"pipe"],[214,46,169,106],[214,47,169,107],[214,48,169,108],[214,49,169,109],[214,51,169,111,"rxjs_1"],[214,57,169,117],[214,58,169,118,"switchMap"],[214,67,169,127],[214,69,169,129],[214,79,169,129,"_ref1"],[214,84,169,129],[214,86,169,148],[215,8,169,148],[215,12,169,132,"activeEra"],[215,21,169,141],[215,24,169,141,"_ref1"],[215,29,169,141],[215,30,169,132,"activeEra"],[215,39,169,141],[216,8,170,8],[216,12,170,14,"stashIds"],[216,20,170,22],[216,23,170,25,"accountIds"],[216,33,170,35],[216,34,170,36,"map"],[216,37,170,39],[216,38,170,40],[216,48,170,41,"a"],[216,49,170,42],[217,10,170,42],[217,17,170,47,"api"],[217,20,170,50],[217,21,170,51,"registry"],[217,29,170,59],[217,30,170,60,"createType"],[217,40,170,70],[217,41,170,71],[217,52,170,82],[217,54,170,84,"a"],[217,55,170,85],[217,56,170,86],[218,8,170,86],[218,10,170,87],[219,8,171,8],[219,12,171,14,"p"],[219,13,171,15],[219,16,171,18,"page"],[219,20,171,22],[219,24,171,26],[219,25,171,27],[220,8,172,8],[220,15,172,15,"stashIds"],[220,23,172,23],[220,24,172,24,"length"],[220,30,172,30],[220,33,173,14,"getBatch"],[220,41,173,22],[220,42,173,23,"api"],[220,45,173,26],[220,47,173,28,"activeEra"],[220,56,173,37],[220,58,173,39,"stashIds"],[220,66,173,47],[220,68,173,49,"flags"],[220,73,173,54],[220,75,173,56,"p"],[220,76,173,57],[220,77,173,58],[220,80,174,14],[220,81,174,15],[220,82,174,16],[220,84,174,18,"rxjs_1"],[220,90,174,24],[220,91,174,25,"of"],[220,93,174,27],[220,95,174,29],[220,97,174,31],[220,98,174,32],[221,6,175,4],[221,7,175,5],[221,8,175,6],[221,9,175,7],[222,4,175,7],[222,6,175,8],[223,2,176,0],[224,0,176,1],[224,3]],"functionMap":{"names":["","rewardDestinationCompat","filterClaimedRewards","cl.filter$argument_0","filterRewards","stashIds.map$argument_0","claimedRewards.forEach$argument_0","stakersOverview.forEach$argument_0","eras.map$argument_0","parseDetails","getLedgers","optIds.filter$argument_0","optIds.filter.map$argument_0","ids.map$argument_0","","optIds.map$argument_0","getStashInfo","Array.fill.map$argument_0","getBatch","queryMulti","accountIds.map$argument_0"],"mappings":"AAA;ACM;CDK;AEC;yDCC,eD;CFC;AIC;6BCG,mBD;2BEC;KFY;4BGC;KHY;wBCC;wBGG;SHS;KDC;CJC;ASC;CTgB;AUC;gBCE,oCD;aEC,iBF;4CGG,kCH;mDIC;0BCE;sBDE;KJC;CVC;AgBC;8CCW;KDK;qDXG,kCW;0CXC,UW;qDXE,sCW;0CXC,eW;qDXE,iCW;0CXC,eW;qDXE,sCW;0CXC,gBW;qDXE,6DW;0CXC,eW;qDXE,0DW;0CXC,mBW;oCFK,iHE;0CXC,yBW;qDXE,kDW;0CXC,yBW;ChBE;AkBC;0FJC,0OT,mQS,GI;ClBC;0Cce,wFd;AmBY;4CLC;wCMC,8CN;OKK;CnBC"},"hasCjsExports":true},"type":"js/module"}]}