mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 06:31:03 +00:00
1 line
26 KiB
Plaintext
1 line
26 KiB
Plaintext
{"dependencies":[{"name":"rxjs","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":7,"column":15,"index":227},"end":{"line":7,"column":30,"index":242}}],"key":"atDzfUGaJNRNtwyVumomzH/5ygw=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":8,"column":15,"index":259},"end":{"line":8,"column":40,"index":284}}],"key":"u0mzEw2nilnHoUWtEdZl0JKHutA=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":9,"column":19,"index":305},"end":{"line":9,"column":46,"index":332}}],"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 Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.hasIdentity = void 0;\n exports._identity = _identity;\n exports.identity = identity;\n exports.hasIdentityMulti = hasIdentityMulti;\n const rxjs_1 = require(_dependencyMap[0], \"rxjs\");\n const util_1 = require(_dependencyMap[1], \"@polkadot/util\");\n const index_js_1 = require(_dependencyMap[2], \"../util/index.js\");\n const UNDEF_HEX = {\n toHex: () => undefined\n };\n function dataAsString(data) {\n if (!data) {\n return data;\n }\n return data.isRaw ? (0, util_1.u8aToString)(data.asRaw.toU8a(true)) : data.isNone ? undefined : data.toHex();\n }\n function extractOther(additional) {\n return additional.reduce((other, [_key, _value]) => {\n const key = dataAsString(_key);\n const value = dataAsString(_value);\n if (key && value) {\n other[key] = value;\n }\n return other;\n }, {});\n }\n function identityCompat(identityOfOpt) {\n const identity = identityOfOpt.unwrap();\n return Array.isArray(identity) ? identity[0] : identity;\n }\n function extractIdentity(identityOfOpt, superOf) {\n if (!identityOfOpt?.isSome) {\n return {\n judgements: []\n };\n }\n const {\n info,\n judgements\n } = identityCompat(identityOfOpt);\n const topDisplay = dataAsString(info.display);\n return {\n discord: dataAsString(info.discord),\n display: superOf && dataAsString(superOf[1]) || topDisplay,\n displayParent: superOf && topDisplay,\n email: dataAsString(info.email),\n github: dataAsString(info.github),\n image: dataAsString(info.image),\n judgements,\n legal: dataAsString(info.legal),\n matrix: dataAsString(info.matrix),\n other: info.additional ? extractOther(info.additional) : {},\n parent: superOf?.[0],\n pgp: info.pgpFingerprint.unwrapOr(UNDEF_HEX).toHex(),\n riot: dataAsString(info.riot),\n twitter: dataAsString(info.twitter),\n web: dataAsString(info.web)\n };\n }\n function getParent(api, identityOfOpt, superOfOpt) {\n if (identityOfOpt?.isSome) {\n // this identity has something set\n return (0, rxjs_1.of)([identityOfOpt, undefined]);\n } else if (superOfOpt?.isSome) {\n const superOf = superOfOpt.unwrap();\n return (0, rxjs_1.combineLatest)([api.derive.accounts._identity(superOf[0]).pipe((0, rxjs_1.map)(([info]) => info)), (0, rxjs_1.of)(superOf)]);\n }\n // nothing of value returned\n return (0, rxjs_1.of)([undefined, undefined]);\n }\n function _identity(instanceId, api) {\n return (0, index_js_1.memo)(instanceId, accountId => accountId && api.query.identity?.identityOf ? (0, rxjs_1.combineLatest)([api.query.identity.identityOf(accountId), api.query.identity.superOf(accountId)]) : (0, rxjs_1.of)([undefined, undefined]));\n }\n /**\n * @name identity\n * @description Retrieves the on chain identity information for a given account.\n * @param {(AccountId | Uint8Array | string)} accoutId The account identifier to query the identity for.\n * @example\n * ```javascript\n * const ALICE = \"13xAUH\";\n *\n * api.derive.accounts.identity(ALICE, (identity) => {\n * console.log(\n * \"Account Identity:\",\n * Object.keys(identity).map((key) => `${key}: ${identity[key]}`)\n * );\n * });\n * ```\n */\n function identity(instanceId, api) {\n return (0, index_js_1.memo)(instanceId, accountId => api.derive.accounts._identity(accountId).pipe((0, rxjs_1.switchMap)(([identityOfOpt, superOfOpt]) => getParent(api, identityOfOpt, superOfOpt)), (0, rxjs_1.map)(([identityOfOpt, superOf]) => extractIdentity(identityOfOpt, superOf)), (0, rxjs_1.switchMap)(identity => getSubIdentities(identity, api, accountId))));\n }\n function getSubIdentities(identity, api, accountId) {\n const targetAccount = identity.parent || accountId;\n if (!targetAccount || !api.query.identity) {\n // No valid accountId return the identity as-is\n return (0, rxjs_1.of)(identity);\n }\n return api.query.identity.subsOf(targetAccount).pipe((0, rxjs_1.map)(subsResponse => {\n const subs = subsResponse[1];\n return {\n ...identity,\n subs\n };\n }));\n }\n /**\n * @name hasIdentity\n * @description Checks if a specific account has an identity registered on chain.\n * @param {(AccountId | Uint8Array | string)} accoutId The account identifier to query.\n * @example\n * ```javascript\n * const ALICE = \"13AU\";\n * console.log(await api.derive.accounts.hasIdentity(ALICE));\n * ```\n */\n exports.hasIdentity = (0, index_js_1.firstMemo)((api, accountId) => api.derive.accounts.hasIdentityMulti([accountId]));\n /**\n * @name hasIdentityMulti\n * @description Checks whether multiple accounts have on chain identities registered.\n * @param {(AccountId | Uint8Array | string)[]} accountIds Array of account identifiers to query.\n * @example\n * ```javascript\n * const ALICE = \"13AU\";\n * const BOB = \"16WW\";\n * console.log(await api.derive.accounts.hasIdentityMulti([ALICE, BOB]));\n * ```\n */\n function hasIdentityMulti(instanceId, api) {\n return (0, index_js_1.memo)(instanceId, accountIds => api.query.identity?.identityOf ? (0, rxjs_1.combineLatest)([api.query.identity.identityOf.multi(accountIds), api.query.identity.superOf.multi(accountIds)]).pipe((0, rxjs_1.map)(([identities, supers]) => identities.map((identityOfOpt, index) => {\n const superOfOpt = supers[index];\n const parentId = superOfOpt && superOfOpt.isSome ? superOfOpt.unwrap()[0].toString() : undefined;\n let display;\n if (identityOfOpt && identityOfOpt.isSome) {\n const value = dataAsString(identityCompat(identityOfOpt).info.display);\n if (value && !(0, util_1.isHex)(value)) {\n display = value;\n }\n }\n return {\n display,\n hasIdentity: !!(display || parentId),\n parentId\n };\n }))) : (0, rxjs_1.of)(accountIds.map(() => ({\n hasIdentity: false\n }))));\n }\n});","lineCount":155,"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,"hasIdentity"],[7,21,3,19],[7,24,3,22],[7,29,3,27],[7,30,3,28],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"_identity"],[8,19,4,17],[8,22,4,20,"_identity"],[8,31,4,29],[9,2,5,0,"exports"],[9,9,5,7],[9,10,5,8,"identity"],[9,18,5,16],[9,21,5,19,"identity"],[9,29,5,27],[10,2,6,0,"exports"],[10,9,6,7],[10,10,6,8,"hasIdentityMulti"],[10,26,6,24],[10,29,6,27,"hasIdentityMulti"],[10,45,6,43],[11,2,7,0],[11,8,7,6,"rxjs_1"],[11,14,7,12],[11,17,7,15,"require"],[11,24,7,22],[11,25,7,22,"_dependencyMap"],[11,39,7,22],[11,50,7,29],[11,51,7,30],[12,2,8,0],[12,8,8,6,"util_1"],[12,14,8,12],[12,17,8,15,"require"],[12,24,8,22],[12,25,8,22,"_dependencyMap"],[12,39,8,22],[12,60,8,39],[12,61,8,40],[13,2,9,0],[13,8,9,6,"index_js_1"],[13,18,9,16],[13,21,9,19,"require"],[13,28,9,26],[13,29,9,26,"_dependencyMap"],[13,43,9,26],[13,66,9,45],[13,67,9,46],[14,2,10,0],[14,8,10,6,"UNDEF_HEX"],[14,17,10,15],[14,20,10,18],[15,4,10,20,"toHex"],[15,9,10,25],[15,11,10,27,"toHex"],[15,12,10,27],[15,17,10,33,"undefined"],[16,2,10,43],[16,3,10,44],[17,2,11,0],[17,11,11,9,"dataAsString"],[17,23,11,21,"dataAsString"],[17,24,11,22,"data"],[17,28,11,26],[17,30,11,28],[18,4,12,4],[18,8,12,8],[18,9,12,9,"data"],[18,13,12,13],[18,15,12,15],[19,6,13,8],[19,13,13,15,"data"],[19,17,13,19],[20,4,14,4],[21,4,15,4],[21,11,15,11,"data"],[21,15,15,15],[21,16,15,16,"isRaw"],[21,21,15,21],[21,24,16,10],[21,25,16,11],[21,26,16,12],[21,28,16,14,"util_1"],[21,34,16,20],[21,35,16,21,"u8aToString"],[21,46,16,32],[21,48,16,34,"data"],[21,52,16,38],[21,53,16,39,"asRaw"],[21,58,16,44],[21,59,16,45,"toU8a"],[21,64,16,50],[21,65,16,51],[21,69,16,55],[21,70,16,56],[21,71,16,57],[21,74,17,10,"data"],[21,78,17,14],[21,79,17,15,"isNone"],[21,85,17,21],[21,88,18,14,"undefined"],[21,97,18,23],[21,100,19,14,"data"],[21,104,19,18],[21,105,19,19,"toHex"],[21,110,19,24],[21,111,19,25],[21,112,19,26],[22,2,20,0],[23,2,21,0],[23,11,21,9,"extractOther"],[23,23,21,21,"extractOther"],[23,24,21,22,"additional"],[23,34,21,32],[23,36,21,34],[24,4,22,4],[24,11,22,11,"additional"],[24,21,22,21],[24,22,22,22,"reduce"],[24,28,22,28],[24,29,22,29],[24,30,22,30,"other"],[24,35,22,35],[24,37,22,37],[24,38,22,38,"_key"],[24,42,22,42],[24,44,22,44,"_value"],[24,50,22,50],[24,51,22,51],[24,56,22,56],[25,6,23,8],[25,12,23,14,"key"],[25,15,23,17],[25,18,23,20,"dataAsString"],[25,30,23,32],[25,31,23,33,"_key"],[25,35,23,37],[25,36,23,38],[26,6,24,8],[26,12,24,14,"value"],[26,17,24,19],[26,20,24,22,"dataAsString"],[26,32,24,34],[26,33,24,35,"_value"],[26,39,24,41],[26,40,24,42],[27,6,25,8],[27,10,25,12,"key"],[27,13,25,15],[27,17,25,19,"value"],[27,22,25,24],[27,24,25,26],[28,8,26,12,"other"],[28,13,26,17],[28,14,26,18,"key"],[28,17,26,21],[28,18,26,22],[28,21,26,25,"value"],[28,26,26,30],[29,6,27,8],[30,6,28,8],[30,13,28,15,"other"],[30,18,28,20],[31,4,29,4],[31,5,29,5],[31,7,29,7],[31,8,29,8],[31,9,29,9],[31,10,29,10],[32,2,30,0],[33,2,31,0],[33,11,31,9,"identityCompat"],[33,25,31,23,"identityCompat"],[33,26,31,24,"identityOfOpt"],[33,39,31,37],[33,41,31,39],[34,4,32,4],[34,10,32,10,"identity"],[34,18,32,18],[34,21,32,21,"identityOfOpt"],[34,34,32,34],[34,35,32,35,"unwrap"],[34,41,32,41],[34,42,32,42],[34,43,32,43],[35,4,33,4],[35,11,33,11,"Array"],[35,16,33,16],[35,17,33,17,"isArray"],[35,24,33,24],[35,25,33,25,"identity"],[35,33,33,33],[35,34,33,34],[35,37,34,10,"identity"],[35,45,34,18],[35,46,34,19],[35,47,34,20],[35,48,34,21],[35,51,35,10,"identity"],[35,59,35,18],[36,2,36,0],[37,2,37,0],[37,11,37,9,"extractIdentity"],[37,26,37,24,"extractIdentity"],[37,27,37,25,"identityOfOpt"],[37,40,37,38],[37,42,37,40,"superOf"],[37,49,37,47],[37,51,37,49],[38,4,38,4],[38,8,38,8],[38,9,38,9,"identityOfOpt"],[38,22,38,22],[38,24,38,24,"isSome"],[38,30,38,30],[38,32,38,32],[39,6,39,8],[39,13,39,15],[40,8,39,17,"judgements"],[40,18,39,27],[40,20,39,29],[41,6,39,32],[41,7,39,33],[42,4,40,4],[43,4,41,4],[43,10,41,10],[44,6,41,12,"info"],[44,10,41,16],[45,6,41,18,"judgements"],[46,4,41,29],[46,5,41,30],[46,8,41,33,"identityCompat"],[46,22,41,47],[46,23,41,48,"identityOfOpt"],[46,36,41,61],[46,37,41,62],[47,4,42,4],[47,10,42,10,"topDisplay"],[47,20,42,20],[47,23,42,23,"dataAsString"],[47,35,42,35],[47,36,42,36,"info"],[47,40,42,40],[47,41,42,41,"display"],[47,48,42,48],[47,49,42,49],[48,4,43,4],[48,11,43,11],[49,6,44,8,"discord"],[49,13,44,15],[49,15,44,17,"dataAsString"],[49,27,44,29],[49,28,44,30,"info"],[49,32,44,34],[49,33,44,35,"discord"],[49,40,44,42],[49,41,44,43],[50,6,45,8,"display"],[50,13,45,15],[50,15,45,18,"superOf"],[50,22,45,25],[50,26,45,29,"dataAsString"],[50,38,45,41],[50,39,45,42,"superOf"],[50,46,45,49],[50,47,45,50],[50,48,45,51],[50,49,45,52],[50,50,45,53],[50,54,45,58,"topDisplay"],[50,64,45,68],[51,6,46,8,"displayParent"],[51,19,46,21],[51,21,46,23,"superOf"],[51,28,46,30],[51,32,46,34,"topDisplay"],[51,42,46,44],[52,6,47,8,"email"],[52,11,47,13],[52,13,47,15,"dataAsString"],[52,25,47,27],[52,26,47,28,"info"],[52,30,47,32],[52,31,47,33,"email"],[52,36,47,38],[52,37,47,39],[53,6,48,8,"github"],[53,12,48,14],[53,14,48,16,"dataAsString"],[53,26,48,28],[53,27,48,29,"info"],[53,31,48,33],[53,32,48,34,"github"],[53,38,48,40],[53,39,48,41],[54,6,49,8,"image"],[54,11,49,13],[54,13,49,15,"dataAsString"],[54,25,49,27],[54,26,49,28,"info"],[54,30,49,32],[54,31,49,33,"image"],[54,36,49,38],[54,37,49,39],[55,6,50,8,"judgements"],[55,16,50,18],[56,6,51,8,"legal"],[56,11,51,13],[56,13,51,15,"dataAsString"],[56,25,51,27],[56,26,51,28,"info"],[56,30,51,32],[56,31,51,33,"legal"],[56,36,51,38],[56,37,51,39],[57,6,52,8,"matrix"],[57,12,52,14],[57,14,52,16,"dataAsString"],[57,26,52,28],[57,27,52,29,"info"],[57,31,52,33],[57,32,52,34,"matrix"],[57,38,52,40],[57,39,52,41],[58,6,53,8,"other"],[58,11,53,13],[58,13,53,15,"info"],[58,17,53,19],[58,18,53,20,"additional"],[58,28,53,30],[58,31,53,33,"extractOther"],[58,43,53,45],[58,44,53,46,"info"],[58,48,53,50],[58,49,53,51,"additional"],[58,59,53,61],[58,60,53,62],[58,63,53,65],[58,64,53,66],[58,65,53,67],[59,6,54,8,"parent"],[59,12,54,14],[59,14,54,16,"superOf"],[59,21,54,23],[59,24,54,26],[59,25,54,27],[59,26,54,28],[60,6,55,8,"pgp"],[60,9,55,11],[60,11,55,13,"info"],[60,15,55,17],[60,16,55,18,"pgpFingerprint"],[60,30,55,32],[60,31,55,33,"unwrapOr"],[60,39,55,41],[60,40,55,42,"UNDEF_HEX"],[60,49,55,51],[60,50,55,52],[60,51,55,53,"toHex"],[60,56,55,58],[60,57,55,59],[60,58,55,60],[61,6,56,8,"riot"],[61,10,56,12],[61,12,56,14,"dataAsString"],[61,24,56,26],[61,25,56,27,"info"],[61,29,56,31],[61,30,56,32,"riot"],[61,34,56,36],[61,35,56,37],[62,6,57,8,"twitter"],[62,13,57,15],[62,15,57,17,"dataAsString"],[62,27,57,29],[62,28,57,30,"info"],[62,32,57,34],[62,33,57,35,"twitter"],[62,40,57,42],[62,41,57,43],[63,6,58,8,"web"],[63,9,58,11],[63,11,58,13,"dataAsString"],[63,23,58,25],[63,24,58,26,"info"],[63,28,58,30],[63,29,58,31,"web"],[63,32,58,34],[64,4,59,4],[64,5,59,5],[65,2,60,0],[66,2,61,0],[66,11,61,9,"getParent"],[66,20,61,18,"getParent"],[66,21,61,19,"api"],[66,24,61,22],[66,26,61,24,"identityOfOpt"],[66,39,61,37],[66,41,61,39,"superOfOpt"],[66,51,61,49],[66,53,61,51],[67,4,62,4],[67,8,62,8,"identityOfOpt"],[67,21,62,21],[67,23,62,23,"isSome"],[67,29,62,29],[67,31,62,31],[68,6,63,8],[69,6,64,8],[69,13,64,15],[69,14,64,16],[69,15,64,17],[69,17,64,19,"rxjs_1"],[69,23,64,25],[69,24,64,26,"of"],[69,26,64,28],[69,28,64,30],[69,29,64,31,"identityOfOpt"],[69,42,64,44],[69,44,64,46,"undefined"],[69,53,64,55],[69,54,64,56],[69,55,64,57],[70,4,65,4],[70,5,65,5],[70,11,66,9],[70,15,66,13,"superOfOpt"],[70,25,66,23],[70,27,66,25,"isSome"],[70,33,66,31],[70,35,66,33],[71,6,67,8],[71,12,67,14,"superOf"],[71,19,67,21],[71,22,67,24,"superOfOpt"],[71,32,67,34],[71,33,67,35,"unwrap"],[71,39,67,41],[71,40,67,42],[71,41,67,43],[72,6,68,8],[72,13,68,15],[72,14,68,16],[72,15,68,17],[72,17,68,19,"rxjs_1"],[72,23,68,25],[72,24,68,26,"combineLatest"],[72,37,68,39],[72,39,68,41],[72,40,69,12,"api"],[72,43,69,15],[72,44,69,16,"derive"],[72,50,69,22],[72,51,69,23,"accounts"],[72,59,69,31],[72,60,69,32,"_identity"],[72,69,69,41],[72,70,69,42,"superOf"],[72,77,69,49],[72,78,69,50],[72,79,69,51],[72,80,69,52],[72,81,69,53],[72,82,69,54,"pipe"],[72,86,69,58],[72,87,69,59],[72,88,69,60],[72,89,69,61],[72,91,69,63,"rxjs_1"],[72,97,69,69],[72,98,69,70,"map"],[72,101,69,73],[72,103,69,75],[72,104,69,76],[72,105,69,77,"info"],[72,109,69,81],[72,110,69,82],[72,115,69,87,"info"],[72,119,69,91],[72,120,69,92],[72,121,69,93],[72,123,70,12],[72,124,70,13],[72,125,70,14],[72,127,70,16,"rxjs_1"],[72,133,70,22],[72,134,70,23,"of"],[72,136,70,25],[72,138,70,27,"superOf"],[72,145,70,34],[72,146,70,35],[72,147,71,9],[72,148,71,10],[73,4,72,4],[74,4,73,4],[75,4,74,4],[75,11,74,11],[75,12,74,12],[75,13,74,13],[75,15,74,15,"rxjs_1"],[75,21,74,21],[75,22,74,22,"of"],[75,24,74,24],[75,26,74,26],[75,27,74,27,"undefined"],[75,36,74,36],[75,38,74,38,"undefined"],[75,47,74,47],[75,48,74,48],[75,49,74,49],[76,2,75,0],[77,2,76,0],[77,11,76,9,"_identity"],[77,20,76,18,"_identity"],[77,21,76,19,"instanceId"],[77,31,76,29],[77,33,76,31,"api"],[77,36,76,34],[77,38,76,36],[78,4,77,4],[78,11,77,11],[78,12,77,12],[78,13,77,13],[78,15,77,15,"index_js_1"],[78,25,77,25],[78,26,77,26,"memo"],[78,30,77,30],[78,32,77,32,"instanceId"],[78,42,77,42],[78,44,77,45,"accountId"],[78,53,77,54],[78,57,77,59,"accountId"],[78,66,77,68],[78,70,77,72,"api"],[78,73,77,75],[78,74,77,76,"query"],[78,79,77,81],[78,80,77,82,"identity"],[78,88,77,90],[78,90,77,92,"identityOf"],[78,100,77,102],[78,103,78,10],[78,104,78,11],[78,105,78,12],[78,107,78,14,"rxjs_1"],[78,113,78,20],[78,114,78,21,"combineLatest"],[78,127,78,34],[78,129,78,36],[78,130,79,12,"api"],[78,133,79,15],[78,134,79,16,"query"],[78,139,79,21],[78,140,79,22,"identity"],[78,148,79,30],[78,149,79,31,"identityOf"],[78,159,79,41],[78,160,79,42,"accountId"],[78,169,79,51],[78,170,79,52],[78,172,80,12,"api"],[78,175,80,15],[78,176,80,16,"query"],[78,181,80,21],[78,182,80,22,"identity"],[78,190,80,30],[78,191,80,31,"superOf"],[78,198,80,38],[78,199,80,39,"accountId"],[78,208,80,48],[78,209,80,49],[78,210,81,9],[78,211,81,10],[78,214,82,10],[78,215,82,11],[78,216,82,12],[78,218,82,14,"rxjs_1"],[78,224,82,20],[78,225,82,21,"of"],[78,227,82,23],[78,229,82,25],[78,230,82,26,"undefined"],[78,239,82,35],[78,241,82,37,"undefined"],[78,250,82,46],[78,251,82,47],[78,252,82,48],[78,253,82,49],[79,2,83,0],[80,2,84,0],[81,0,85,0],[82,0,86,0],[83,0,87,0],[84,0,88,0],[85,0,89,0],[86,0,90,0],[87,0,91,0],[88,0,92,0],[89,0,93,0],[90,0,94,0],[91,0,95,0],[92,0,96,0],[93,0,97,0],[94,0,98,0],[95,0,99,0],[96,2,100,0],[96,11,100,9,"identity"],[96,19,100,17,"identity"],[96,20,100,18,"instanceId"],[96,30,100,28],[96,32,100,30,"api"],[96,35,100,33],[96,37,100,35],[97,4,101,4],[97,11,101,11],[97,12,101,12],[97,13,101,13],[97,15,101,15,"index_js_1"],[97,25,101,25],[97,26,101,26,"memo"],[97,30,101,30],[97,32,101,32,"instanceId"],[97,42,101,42],[97,44,101,45,"accountId"],[97,53,101,54],[97,57,101,59,"api"],[97,60,101,62],[97,61,101,63,"derive"],[97,67,101,69],[97,68,101,70,"accounts"],[97,76,101,78],[97,77,101,79,"_identity"],[97,86,101,88],[97,87,101,89,"accountId"],[97,96,101,98],[97,97,101,99],[97,98,101,100,"pipe"],[97,102,101,104],[97,103,101,105],[97,104,101,106],[97,105,101,107],[97,107,101,109,"rxjs_1"],[97,113,101,115],[97,114,101,116,"switchMap"],[97,123,101,125],[97,125,101,127],[97,126,101,128],[97,127,101,129,"identityOfOpt"],[97,140,101,142],[97,142,101,144,"superOfOpt"],[97,152,101,154],[97,153,101,155],[97,158,101,160,"getParent"],[97,167,101,169],[97,168,101,170,"api"],[97,171,101,173],[97,173,101,175,"identityOfOpt"],[97,186,101,188],[97,188,101,190,"superOfOpt"],[97,198,101,200],[97,199,101,201],[97,200,101,202],[97,202,101,204],[97,203,101,205],[97,204,101,206],[97,206,101,208,"rxjs_1"],[97,212,101,214],[97,213,101,215,"map"],[97,216,101,218],[97,218,101,220],[97,219,101,221],[97,220,101,222,"identityOfOpt"],[97,233,101,235],[97,235,101,237,"superOf"],[97,242,101,244],[97,243,101,245],[97,248,101,250,"extractIdentity"],[97,263,101,265],[97,264,101,266,"identityOfOpt"],[97,277,101,279],[97,279,101,281,"superOf"],[97,286,101,288],[97,287,101,289],[97,288,101,290],[97,290,101,292],[97,291,101,293],[97,292,101,294],[97,294,101,296,"rxjs_1"],[97,300,101,302],[97,301,101,303,"switchMap"],[97,310,101,312],[97,312,101,315,"identity"],[97,320,101,323],[97,324,101,328,"getSubIdentities"],[97,340,101,344],[97,341,101,345,"identity"],[97,349,101,353],[97,351,101,355,"api"],[97,354,101,358],[97,356,101,360,"accountId"],[97,365,101,369],[97,366,101,370],[97,367,101,371],[97,368,101,372],[97,369,101,373],[98,2,102,0],[99,2,103,0],[99,11,103,9,"getSubIdentities"],[99,27,103,25,"getSubIdentities"],[99,28,103,26,"identity"],[99,36,103,34],[99,38,103,36,"api"],[99,41,103,39],[99,43,103,41,"accountId"],[99,52,103,50],[99,54,103,52],[100,4,104,4],[100,10,104,10,"targetAccount"],[100,23,104,23],[100,26,104,26,"identity"],[100,34,104,34],[100,35,104,35,"parent"],[100,41,104,41],[100,45,104,45,"accountId"],[100,54,104,54],[101,4,105,4],[101,8,105,8],[101,9,105,9,"targetAccount"],[101,22,105,22],[101,26,105,26],[101,27,105,27,"api"],[101,30,105,30],[101,31,105,31,"query"],[101,36,105,36],[101,37,105,37,"identity"],[101,45,105,45],[101,47,105,47],[102,6,106,8],[103,6,107,8],[103,13,107,15],[103,14,107,16],[103,15,107,17],[103,17,107,19,"rxjs_1"],[103,23,107,25],[103,24,107,26,"of"],[103,26,107,28],[103,28,107,30,"identity"],[103,36,107,38],[103,37,107,39],[104,4,108,4],[105,4,109,4],[105,11,109,11,"api"],[105,14,109,14],[105,15,109,15,"query"],[105,20,109,20],[105,21,109,21,"identity"],[105,29,109,29],[105,30,109,30,"subsOf"],[105,36,109,36],[105,37,109,37,"targetAccount"],[105,50,109,50],[105,51,109,51],[105,52,109,52,"pipe"],[105,56,109,56],[105,57,109,57],[105,58,109,58],[105,59,109,59],[105,61,109,61,"rxjs_1"],[105,67,109,67],[105,68,109,68,"map"],[105,71,109,71],[105,73,109,74,"subsResponse"],[105,85,109,86],[105,89,109,91],[106,6,110,8],[106,12,110,14,"subs"],[106,16,110,18],[106,19,110,21,"subsResponse"],[106,31,110,33],[106,32,110,34],[106,33,110,35],[106,34,110,36],[107,6,111,8],[107,13,111,15],[108,8,112,12],[108,11,112,15,"identity"],[108,19,112,23],[109,8,113,12,"subs"],[110,6,114,8],[110,7,114,9],[111,4,115,4],[111,5,115,5],[111,6,115,6],[111,7,115,7],[112,2,116,0],[113,2,117,0],[114,0,118,0],[115,0,119,0],[116,0,120,0],[117,0,121,0],[118,0,122,0],[119,0,123,0],[120,0,124,0],[121,0,125,0],[122,0,126,0],[123,2,127,0,"exports"],[123,9,127,7],[123,10,127,8,"hasIdentity"],[123,21,127,19],[123,24,127,22],[123,25,127,23],[123,26,127,24],[123,28,127,26,"index_js_1"],[123,38,127,36],[123,39,127,37,"firstMemo"],[123,48,127,46],[123,50,127,48],[123,51,127,49,"api"],[123,54,127,52],[123,56,127,54,"accountId"],[123,65,127,63],[123,70,127,68,"api"],[123,73,127,71],[123,74,127,72,"derive"],[123,80,127,78],[123,81,127,79,"accounts"],[123,89,127,87],[123,90,127,88,"hasIdentityMulti"],[123,106,127,104],[123,107,127,105],[123,108,127,106,"accountId"],[123,117,127,115],[123,118,127,116],[123,119,127,117],[123,120,127,118],[124,2,128,0],[125,0,129,0],[126,0,130,0],[127,0,131,0],[128,0,132,0],[129,0,133,0],[130,0,134,0],[131,0,135,0],[132,0,136,0],[133,0,137,0],[134,0,138,0],[135,2,139,0],[135,11,139,9,"hasIdentityMulti"],[135,27,139,25,"hasIdentityMulti"],[135,28,139,26,"instanceId"],[135,38,139,36],[135,40,139,38,"api"],[135,43,139,41],[135,45,139,43],[136,4,140,4],[136,11,140,11],[136,12,140,12],[136,13,140,13],[136,15,140,15,"index_js_1"],[136,25,140,25],[136,26,140,26,"memo"],[136,30,140,30],[136,32,140,32,"instanceId"],[136,42,140,42],[136,44,140,45,"accountIds"],[136,54,140,55],[136,58,140,60,"api"],[136,61,140,63],[136,62,140,64,"query"],[136,67,140,69],[136,68,140,70,"identity"],[136,76,140,78],[136,78,140,80,"identityOf"],[136,88,140,90],[136,91,141,10],[136,92,141,11],[136,93,141,12],[136,95,141,14,"rxjs_1"],[136,101,141,20],[136,102,141,21,"combineLatest"],[136,115,141,34],[136,117,141,36],[136,118,142,12,"api"],[136,121,142,15],[136,122,142,16,"query"],[136,127,142,21],[136,128,142,22,"identity"],[136,136,142,30],[136,137,142,31,"identityOf"],[136,147,142,41],[136,148,142,42,"multi"],[136,153,142,47],[136,154,142,48,"accountIds"],[136,164,142,58],[136,165,142,59],[136,167,143,12,"api"],[136,170,143,15],[136,171,143,16,"query"],[136,176,143,21],[136,177,143,22,"identity"],[136,185,143,30],[136,186,143,31,"superOf"],[136,193,143,38],[136,194,143,39,"multi"],[136,199,143,44],[136,200,143,45,"accountIds"],[136,210,143,55],[136,211,143,56],[136,212,144,9],[136,213,144,10],[136,214,144,11,"pipe"],[136,218,144,15],[136,219,144,16],[136,220,144,17],[136,221,144,18],[136,223,144,20,"rxjs_1"],[136,229,144,26],[136,230,144,27,"map"],[136,233,144,30],[136,235,144,32],[136,236,144,33],[136,237,144,34,"identities"],[136,247,144,44],[136,249,144,46,"supers"],[136,255,144,52],[136,256,144,53],[136,261,144,58,"identities"],[136,271,144,68],[136,272,144,69,"map"],[136,275,144,72],[136,276,144,73],[136,277,144,74,"identityOfOpt"],[136,290,144,87],[136,292,144,89,"index"],[136,297,144,94],[136,302,144,99],[137,6,145,12],[137,12,145,18,"superOfOpt"],[137,22,145,28],[137,25,145,31,"supers"],[137,31,145,37],[137,32,145,38,"index"],[137,37,145,43],[137,38,145,44],[138,6,146,12],[138,12,146,18,"parentId"],[138,20,146,26],[138,23,146,29,"superOfOpt"],[138,33,146,39],[138,37,146,43,"superOfOpt"],[138,47,146,53],[138,48,146,54,"isSome"],[138,54,146,60],[138,57,147,18,"superOfOpt"],[138,67,147,28],[138,68,147,29,"unwrap"],[138,74,147,35],[138,75,147,36],[138,76,147,37],[138,77,147,38],[138,78,147,39],[138,79,147,40],[138,80,147,41,"toString"],[138,88,147,49],[138,89,147,50],[138,90,147,51],[138,93,148,18,"undefined"],[138,102,148,27],[139,6,149,12],[139,10,149,16,"display"],[139,17,149,23],[140,6,150,12],[140,10,150,16,"identityOfOpt"],[140,23,150,29],[140,27,150,33,"identityOfOpt"],[140,40,150,46],[140,41,150,47,"isSome"],[140,47,150,53],[140,49,150,55],[141,8,151,16],[141,14,151,22,"value"],[141,19,151,27],[141,22,151,30,"dataAsString"],[141,34,151,42],[141,35,151,43,"identityCompat"],[141,49,151,57],[141,50,151,58,"identityOfOpt"],[141,63,151,71],[141,64,151,72],[141,65,151,73,"info"],[141,69,151,77],[141,70,151,78,"display"],[141,77,151,85],[141,78,151,86],[142,8,152,16],[142,12,152,20,"value"],[142,17,152,25],[142,21,152,29],[142,22,152,30],[142,23,152,31],[142,24,152,32],[142,26,152,34,"util_1"],[142,32,152,40],[142,33,152,41,"isHex"],[142,38,152,46],[142,40,152,48,"value"],[142,45,152,53],[142,46,152,54],[142,48,152,56],[143,10,153,20,"display"],[143,17,153,27],[143,20,153,30,"value"],[143,25,153,35],[144,8,154,16],[145,6,155,12],[146,6,156,12],[146,13,156,19],[147,8,156,21,"display"],[147,15,156,28],[148,8,156,30,"hasIdentity"],[148,19,156,41],[148,21,156,43],[148,22,156,44],[148,24,156,46,"display"],[148,31,156,53],[148,35,156,57,"parentId"],[148,43,156,65],[148,44,156,66],[149,8,156,68,"parentId"],[150,6,156,77],[150,7,156,78],[151,4,157,8],[151,5,157,9],[151,6,157,10],[151,7,157,11],[151,8,157,12],[151,11,158,10],[151,12,158,11],[151,13,158,12],[151,15,158,14,"rxjs_1"],[151,21,158,20],[151,22,158,21,"of"],[151,24,158,23],[151,26,158,25,"accountIds"],[151,36,158,35],[151,37,158,36,"map"],[151,40,158,39],[151,41,158,40],[151,48,158,47],[152,6,158,49,"hasIdentity"],[152,17,158,60],[152,19,158,62],[153,4,158,68],[153,5,158,69],[153,6,158,70],[153,7,158,71],[153,8,158,72],[153,9,158,73],[154,2,159,0],[155,0,159,1],[155,3]],"functionMap":{"names":["<global>","UNDEF_HEX.toHex","dataAsString","extractOther","additional.reduce$argument_0","identityCompat","extractIdentity","getParent","<anonymous>","_identity","identity","getSubIdentities","hasIdentityMulti","identities.map$argument_0","accountIds.map$argument_0"],"mappings":"AAA;2BCS,eD;AEC;CFS;AGC;6BCC;KDO;CHC;AKC;CLK;AMC;CNuB;AOC;2ECQ,gBD;CPM;ASC;4CDC;gDCK;CTC;AUiB;4CFC,wUE;CVC;AWC;yEHM;KGM;CXC;gDQW,qER;AYY;4CJC;yEKI;SLa;wCMC,8BN,EI;CZC"},"hasCjsExports":true},"type":"js/module"}]} |