mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 12:21:01 +00:00
1 line
26 KiB
Plaintext
1 line
26 KiB
Plaintext
{"dependencies":[{"name":"rxjs","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":57,"index":57}}],"key":"PnOMrhZAPWoeW3ygrvUJ7ff768Y=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":58},"end":{"line":2,"column":52,"index":110}}],"key":"ISHU1ovvPMrCldqRjtd1JhW9dyo=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":111},"end":{"line":3,"column":51,"index":162}}],"key":"GRJlO1cmIj14nBxcasNpiq30og4=","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._identity = _identity;\n exports.identity = identity;\n Object.defineProperty(exports, \"hasIdentity\", {\n enumerable: true,\n get: function () {\n return hasIdentity;\n }\n });\n exports.hasIdentityMulti = hasIdentityMulti;\n var _rxjs = require(_dependencyMap[0], \"rxjs\");\n var _polkadotUtil = require(_dependencyMap[1], \"@polkadot/util\");\n var _utilIndexJs = 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, _polkadotUtil.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.of)([identityOfOpt, undefined]);\n } else if (superOfOpt?.isSome) {\n const superOf = superOfOpt.unwrap();\n return (0, _rxjs.combineLatest)([api.derive.accounts._identity(superOf[0]).pipe((0, _rxjs.map)(([info]) => info)), (0, _rxjs.of)(superOf)]);\n }\n // nothing of value returned\n return (0, _rxjs.of)([undefined, undefined]);\n }\n function _identity(instanceId, api) {\n return (0, _utilIndexJs.memo)(instanceId, accountId => accountId && api.query.identity?.identityOf ? (0, _rxjs.combineLatest)([api.query.identity.identityOf(accountId), api.query.identity.superOf(accountId)]) : (0, _rxjs.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, _utilIndexJs.memo)(instanceId, accountId => api.derive.accounts._identity(accountId).pipe((0, _rxjs.switchMap)(([identityOfOpt, superOfOpt]) => getParent(api, identityOfOpt, superOfOpt)), (0, _rxjs.map)(([identityOfOpt, superOf]) => extractIdentity(identityOfOpt, superOf)), (0, _rxjs.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.of)(identity);\n }\n return api.query.identity.subsOf(targetAccount).pipe((0, _rxjs.map)(subsResponse => {\n const subs = subsResponse[1];\n return Object.assign({}, 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 const hasIdentity = /*#__PURE__*/(0, _utilIndexJs.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, _utilIndexJs.memo)(instanceId, accountIds => api.query.identity?.identityOf ? (0, _rxjs.combineLatest)([api.query.identity.identityOf.multi(accountIds), api.query.identity.superOf.multi(accountIds)]).pipe((0, _rxjs.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, _polkadotUtil.isHex)(value)) {\n display = value;\n }\n }\n return {\n display,\n hasIdentity: !!(display || parentId),\n parentId\n };\n }))) : (0, _rxjs.of)(accountIds.map(() => ({\n hasIdentity: false\n }))));\n }\n});","lineCount":159,"map":[[7,2,70,0,"exports"],[7,9,70,0],[7,10,70,0,"_identity"],[7,19,70,0],[7,22,70,0,"_identity"],[7,31,70,0],[8,2,94,0,"exports"],[8,9,94,0],[8,10,94,0,"identity"],[8,18,94,0],[8,21,94,0,"identity"],[8,29,94,0],[9,2,121,0,"Object"],[9,8,121,0],[9,9,121,0,"defineProperty"],[9,23,121,0],[9,24,121,0,"exports"],[9,31,121,0],[10,4,121,0,"enumerable"],[10,14,121,0],[11,4,121,0,"get"],[11,7,121,0],[11,18,121,0,"get"],[11,19,121,0],[12,6,121,0],[12,13,121,0,"hasIdentity"],[12,24,121,0],[13,4,121,0],[14,2,121,0],[15,2,133,0,"exports"],[15,9,133,0],[15,10,133,0,"hasIdentityMulti"],[15,26,133,0],[15,29,133,0,"hasIdentityMulti"],[15,45,133,0],[16,2,1,0],[16,6,1,0,"_rxjs"],[16,11,1,0],[16,14,1,0,"require"],[16,21,1,0],[16,22,1,0,"_dependencyMap"],[16,36,1,0],[17,2,2,0],[17,6,2,0,"_polkadotUtil"],[17,19,2,0],[17,22,2,0,"require"],[17,29,2,0],[17,30,2,0,"_dependencyMap"],[17,44,2,0],[18,2,3,0],[18,6,3,0,"_utilIndexJs"],[18,18,3,0],[18,21,3,0,"require"],[18,28,3,0],[18,29,3,0,"_dependencyMap"],[18,43,3,0],[19,2,4,0],[19,8,4,6,"UNDEF_HEX"],[19,17,4,15],[19,20,4,18],[20,4,4,20,"toHex"],[20,9,4,25],[20,11,4,27,"toHex"],[20,12,4,27],[20,17,4,33,"undefined"],[21,2,4,43],[21,3,4,44],[22,2,5,0],[22,11,5,9,"dataAsString"],[22,23,5,21,"dataAsString"],[22,24,5,22,"data"],[22,28,5,26],[22,30,5,28],[23,4,6,4],[23,8,6,8],[23,9,6,9,"data"],[23,13,6,13],[23,15,6,15],[24,6,7,8],[24,13,7,15,"data"],[24,17,7,19],[25,4,8,4],[26,4,9,4],[26,11,9,11,"data"],[26,15,9,15],[26,16,9,16,"isRaw"],[26,21,9,21],[26,24,10,10],[26,28,10,10,"u8aToString"],[26,41,10,21],[26,42,10,21,"u8aToString"],[26,53,10,21],[26,55,10,22,"data"],[26,59,10,26],[26,60,10,27,"asRaw"],[26,65,10,32],[26,66,10,33,"toU8a"],[26,71,10,38],[26,72,10,39],[26,76,10,43],[26,77,10,44],[26,78,10,45],[26,81,11,10,"data"],[26,85,11,14],[26,86,11,15,"isNone"],[26,92,11,21],[26,95,12,14,"undefined"],[26,104,12,23],[26,107,13,14,"data"],[26,111,13,18],[26,112,13,19,"toHex"],[26,117,13,24],[26,118,13,25],[26,119,13,26],[27,2,14,0],[28,2,15,0],[28,11,15,9,"extractOther"],[28,23,15,21,"extractOther"],[28,24,15,22,"additional"],[28,34,15,32],[28,36,15,34],[29,4,16,4],[29,11,16,11,"additional"],[29,21,16,21],[29,22,16,22,"reduce"],[29,28,16,28],[29,29,16,29],[29,30,16,30,"other"],[29,35,16,35],[29,37,16,37],[29,38,16,38,"_key"],[29,42,16,42],[29,44,16,44,"_value"],[29,50,16,50],[29,51,16,51],[29,56,16,56],[30,6,17,8],[30,12,17,14,"key"],[30,15,17,17],[30,18,17,20,"dataAsString"],[30,30,17,32],[30,31,17,33,"_key"],[30,35,17,37],[30,36,17,38],[31,6,18,8],[31,12,18,14,"value"],[31,17,18,19],[31,20,18,22,"dataAsString"],[31,32,18,34],[31,33,18,35,"_value"],[31,39,18,41],[31,40,18,42],[32,6,19,8],[32,10,19,12,"key"],[32,13,19,15],[32,17,19,19,"value"],[32,22,19,24],[32,24,19,26],[33,8,20,12,"other"],[33,13,20,17],[33,14,20,18,"key"],[33,17,20,21],[33,18,20,22],[33,21,20,25,"value"],[33,26,20,30],[34,6,21,8],[35,6,22,8],[35,13,22,15,"other"],[35,18,22,20],[36,4,23,4],[36,5,23,5],[36,7,23,7],[36,8,23,8],[36,9,23,9],[36,10,23,10],[37,2,24,0],[38,2,25,0],[38,11,25,9,"identityCompat"],[38,25,25,23,"identityCompat"],[38,26,25,24,"identityOfOpt"],[38,39,25,37],[38,41,25,39],[39,4,26,4],[39,10,26,10,"identity"],[39,18,26,18],[39,21,26,21,"identityOfOpt"],[39,34,26,34],[39,35,26,35,"unwrap"],[39,41,26,41],[39,42,26,42],[39,43,26,43],[40,4,27,4],[40,11,27,11,"Array"],[40,16,27,16],[40,17,27,17,"isArray"],[40,24,27,24],[40,25,27,25,"identity"],[40,33,27,33],[40,34,27,34],[40,37,28,10,"identity"],[40,45,28,18],[40,46,28,19],[40,47,28,20],[40,48,28,21],[40,51,29,10,"identity"],[40,59,29,18],[41,2,30,0],[42,2,31,0],[42,11,31,9,"extractIdentity"],[42,26,31,24,"extractIdentity"],[42,27,31,25,"identityOfOpt"],[42,40,31,38],[42,42,31,40,"superOf"],[42,49,31,47],[42,51,31,49],[43,4,32,4],[43,8,32,8],[43,9,32,9,"identityOfOpt"],[43,22,32,22],[43,24,32,24,"isSome"],[43,30,32,30],[43,32,32,32],[44,6,33,8],[44,13,33,15],[45,8,33,17,"judgements"],[45,18,33,27],[45,20,33,29],[46,6,33,32],[46,7,33,33],[47,4,34,4],[48,4,35,4],[48,10,35,10],[49,6,35,12,"info"],[49,10,35,16],[50,6,35,18,"judgements"],[51,4,35,29],[51,5,35,30],[51,8,35,33,"identityCompat"],[51,22,35,47],[51,23,35,48,"identityOfOpt"],[51,36,35,61],[51,37,35,62],[52,4,36,4],[52,10,36,10,"topDisplay"],[52,20,36,20],[52,23,36,23,"dataAsString"],[52,35,36,35],[52,36,36,36,"info"],[52,40,36,40],[52,41,36,41,"display"],[52,48,36,48],[52,49,36,49],[53,4,37,4],[53,11,37,11],[54,6,38,8,"discord"],[54,13,38,15],[54,15,38,17,"dataAsString"],[54,27,38,29],[54,28,38,30,"info"],[54,32,38,34],[54,33,38,35,"discord"],[54,40,38,42],[54,41,38,43],[55,6,39,8,"display"],[55,13,39,15],[55,15,39,18,"superOf"],[55,22,39,25],[55,26,39,29,"dataAsString"],[55,38,39,41],[55,39,39,42,"superOf"],[55,46,39,49],[55,47,39,50],[55,48,39,51],[55,49,39,52],[55,50,39,53],[55,54,39,58,"topDisplay"],[55,64,39,68],[56,6,40,8,"displayParent"],[56,19,40,21],[56,21,40,23,"superOf"],[56,28,40,30],[56,32,40,34,"topDisplay"],[56,42,40,44],[57,6,41,8,"email"],[57,11,41,13],[57,13,41,15,"dataAsString"],[57,25,41,27],[57,26,41,28,"info"],[57,30,41,32],[57,31,41,33,"email"],[57,36,41,38],[57,37,41,39],[58,6,42,8,"github"],[58,12,42,14],[58,14,42,16,"dataAsString"],[58,26,42,28],[58,27,42,29,"info"],[58,31,42,33],[58,32,42,34,"github"],[58,38,42,40],[58,39,42,41],[59,6,43,8,"image"],[59,11,43,13],[59,13,43,15,"dataAsString"],[59,25,43,27],[59,26,43,28,"info"],[59,30,43,32],[59,31,43,33,"image"],[59,36,43,38],[59,37,43,39],[60,6,44,8,"judgements"],[60,16,44,18],[61,6,45,8,"legal"],[61,11,45,13],[61,13,45,15,"dataAsString"],[61,25,45,27],[61,26,45,28,"info"],[61,30,45,32],[61,31,45,33,"legal"],[61,36,45,38],[61,37,45,39],[62,6,46,8,"matrix"],[62,12,46,14],[62,14,46,16,"dataAsString"],[62,26,46,28],[62,27,46,29,"info"],[62,31,46,33],[62,32,46,34,"matrix"],[62,38,46,40],[62,39,46,41],[63,6,47,8,"other"],[63,11,47,13],[63,13,47,15,"info"],[63,17,47,19],[63,18,47,20,"additional"],[63,28,47,30],[63,31,47,33,"extractOther"],[63,43,47,45],[63,44,47,46,"info"],[63,48,47,50],[63,49,47,51,"additional"],[63,59,47,61],[63,60,47,62],[63,63,47,65],[63,64,47,66],[63,65,47,67],[64,6,48,8,"parent"],[64,12,48,14],[64,14,48,16,"superOf"],[64,21,48,23],[64,24,48,26],[64,25,48,27],[64,26,48,28],[65,6,49,8,"pgp"],[65,9,49,11],[65,11,49,13,"info"],[65,15,49,17],[65,16,49,18,"pgpFingerprint"],[65,30,49,32],[65,31,49,33,"unwrapOr"],[65,39,49,41],[65,40,49,42,"UNDEF_HEX"],[65,49,49,51],[65,50,49,52],[65,51,49,53,"toHex"],[65,56,49,58],[65,57,49,59],[65,58,49,60],[66,6,50,8,"riot"],[66,10,50,12],[66,12,50,14,"dataAsString"],[66,24,50,26],[66,25,50,27,"info"],[66,29,50,31],[66,30,50,32,"riot"],[66,34,50,36],[66,35,50,37],[67,6,51,8,"twitter"],[67,13,51,15],[67,15,51,17,"dataAsString"],[67,27,51,29],[67,28,51,30,"info"],[67,32,51,34],[67,33,51,35,"twitter"],[67,40,51,42],[67,41,51,43],[68,6,52,8,"web"],[68,9,52,11],[68,11,52,13,"dataAsString"],[68,23,52,25],[68,24,52,26,"info"],[68,28,52,30],[68,29,52,31,"web"],[68,32,52,34],[69,4,53,4],[69,5,53,5],[70,2,54,0],[71,2,55,0],[71,11,55,9,"getParent"],[71,20,55,18,"getParent"],[71,21,55,19,"api"],[71,24,55,22],[71,26,55,24,"identityOfOpt"],[71,39,55,37],[71,41,55,39,"superOfOpt"],[71,51,55,49],[71,53,55,51],[72,4,56,4],[72,8,56,8,"identityOfOpt"],[72,21,56,21],[72,23,56,23,"isSome"],[72,29,56,29],[72,31,56,31],[73,6,57,8],[74,6,58,8],[74,13,58,15],[74,17,58,15,"of"],[74,22,58,17],[74,23,58,17,"of"],[74,25,58,17],[74,27,58,18],[74,28,58,19,"identityOfOpt"],[74,41,58,32],[74,43,58,34,"undefined"],[74,52,58,43],[74,53,58,44],[74,54,58,45],[75,4,59,4],[75,5,59,5],[75,11,60,9],[75,15,60,13,"superOfOpt"],[75,25,60,23],[75,27,60,25,"isSome"],[75,33,60,31],[75,35,60,33],[76,6,61,8],[76,12,61,14,"superOf"],[76,19,61,21],[76,22,61,24,"superOfOpt"],[76,32,61,34],[76,33,61,35,"unwrap"],[76,39,61,41],[76,40,61,42],[76,41,61,43],[77,6,62,8],[77,13,62,15],[77,17,62,15,"combineLatest"],[77,22,62,28],[77,23,62,28,"combineLatest"],[77,36,62,28],[77,38,62,29],[77,39,63,12,"api"],[77,42,63,15],[77,43,63,16,"derive"],[77,49,63,22],[77,50,63,23,"accounts"],[77,58,63,31],[77,59,63,32,"_identity"],[77,68,63,41],[77,69,63,42,"superOf"],[77,76,63,49],[77,77,63,50],[77,78,63,51],[77,79,63,52],[77,80,63,53],[77,81,63,54,"pipe"],[77,85,63,58],[77,86,63,59],[77,90,63,59,"map"],[77,95,63,62],[77,96,63,62,"map"],[77,99,63,62],[77,101,63,63],[77,102,63,64],[77,103,63,65,"info"],[77,107,63,69],[77,108,63,70],[77,113,63,75,"info"],[77,117,63,79],[77,118,63,80],[77,119,63,81],[77,121,64,12],[77,125,64,12,"of"],[77,130,64,14],[77,131,64,14,"of"],[77,133,64,14],[77,135,64,15,"superOf"],[77,142,64,22],[77,143,64,23],[77,144,65,9],[77,145,65,10],[78,4,66,4],[79,4,67,4],[80,4,68,4],[80,11,68,11],[80,15,68,11,"of"],[80,20,68,13],[80,21,68,13,"of"],[80,23,68,13],[80,25,68,14],[80,26,68,15,"undefined"],[80,35,68,24],[80,37,68,26,"undefined"],[80,46,68,35],[80,47,68,36],[80,48,68,37],[81,2,69,0],[82,2,70,7],[82,11,70,16,"_identity"],[82,20,70,25,"_identity"],[82,21,70,26,"instanceId"],[82,31,70,36],[82,33,70,38,"api"],[82,36,70,41],[82,38,70,43],[83,4,71,4],[83,11,71,11],[83,15,71,11,"memo"],[83,27,71,15],[83,28,71,15,"memo"],[83,32,71,15],[83,34,71,16,"instanceId"],[83,44,71,26],[83,46,71,29,"accountId"],[83,55,71,38],[83,59,71,43,"accountId"],[83,68,71,52],[83,72,71,56,"api"],[83,75,71,59],[83,76,71,60,"query"],[83,81,71,65],[83,82,71,66,"identity"],[83,90,71,74],[83,92,71,76,"identityOf"],[83,102,71,86],[83,105,72,10],[83,109,72,10,"combineLatest"],[83,114,72,23],[83,115,72,23,"combineLatest"],[83,128,72,23],[83,130,72,24],[83,131,73,12,"api"],[83,134,73,15],[83,135,73,16,"query"],[83,140,73,21],[83,141,73,22,"identity"],[83,149,73,30],[83,150,73,31,"identityOf"],[83,160,73,41],[83,161,73,42,"accountId"],[83,170,73,51],[83,171,73,52],[83,173,74,12,"api"],[83,176,74,15],[83,177,74,16,"query"],[83,182,74,21],[83,183,74,22,"identity"],[83,191,74,30],[83,192,74,31,"superOf"],[83,199,74,38],[83,200,74,39,"accountId"],[83,209,74,48],[83,210,74,49],[83,211,75,9],[83,212,75,10],[83,215,76,10],[83,219,76,10,"of"],[83,224,76,12],[83,225,76,12,"of"],[83,227,76,12],[83,229,76,13],[83,230,76,14,"undefined"],[83,239,76,23],[83,241,76,25,"undefined"],[83,250,76,34],[83,251,76,35],[83,252,76,36],[83,253,76,37],[84,2,77,0],[85,2,78,0],[86,0,79,0],[87,0,80,0],[88,0,81,0],[89,0,82,0],[90,0,83,0],[91,0,84,0],[92,0,85,0],[93,0,86,0],[94,0,87,0],[95,0,88,0],[96,0,89,0],[97,0,90,0],[98,0,91,0],[99,0,92,0],[100,0,93,0],[101,2,94,7],[101,11,94,16,"identity"],[101,19,94,24,"identity"],[101,20,94,25,"instanceId"],[101,30,94,35],[101,32,94,37,"api"],[101,35,94,40],[101,37,94,42],[102,4,95,4],[102,11,95,11],[102,15,95,11,"memo"],[102,27,95,15],[102,28,95,15,"memo"],[102,32,95,15],[102,34,95,16,"instanceId"],[102,44,95,26],[102,46,95,29,"accountId"],[102,55,95,38],[102,59,95,43,"api"],[102,62,95,46],[102,63,95,47,"derive"],[102,69,95,53],[102,70,95,54,"accounts"],[102,78,95,62],[102,79,95,63,"_identity"],[102,88,95,72],[102,89,95,73,"accountId"],[102,98,95,82],[102,99,95,83],[102,100,95,84,"pipe"],[102,104,95,88],[102,105,95,89],[102,109,95,89,"switchMap"],[102,114,95,98],[102,115,95,98,"switchMap"],[102,124,95,98],[102,126,95,99],[102,127,95,100],[102,128,95,101,"identityOfOpt"],[102,141,95,114],[102,143,95,116,"superOfOpt"],[102,153,95,126],[102,154,95,127],[102,159,95,132,"getParent"],[102,168,95,141],[102,169,95,142,"api"],[102,172,95,145],[102,174,95,147,"identityOfOpt"],[102,187,95,160],[102,189,95,162,"superOfOpt"],[102,199,95,172],[102,200,95,173],[102,201,95,174],[102,203,95,176],[102,207,95,176,"map"],[102,212,95,179],[102,213,95,179,"map"],[102,216,95,179],[102,218,95,180],[102,219,95,181],[102,220,95,182,"identityOfOpt"],[102,233,95,195],[102,235,95,197,"superOf"],[102,242,95,204],[102,243,95,205],[102,248,95,210,"extractIdentity"],[102,263,95,225],[102,264,95,226,"identityOfOpt"],[102,277,95,239],[102,279,95,241,"superOf"],[102,286,95,248],[102,287,95,249],[102,288,95,250],[102,290,95,252],[102,294,95,252,"switchMap"],[102,299,95,261],[102,300,95,261,"switchMap"],[102,309,95,261],[102,311,95,263,"identity"],[102,319,95,271],[102,323,95,276,"getSubIdentities"],[102,339,95,292],[102,340,95,293,"identity"],[102,348,95,301],[102,350,95,303,"api"],[102,353,95,306],[102,355,95,308,"accountId"],[102,364,95,317],[102,365,95,318],[102,366,95,319],[102,367,95,320],[102,368,95,321],[103,2,96,0],[104,2,97,0],[104,11,97,9,"getSubIdentities"],[104,27,97,25,"getSubIdentities"],[104,28,97,26,"identity"],[104,36,97,34],[104,38,97,36,"api"],[104,41,97,39],[104,43,97,41,"accountId"],[104,52,97,50],[104,54,97,52],[105,4,98,4],[105,10,98,10,"targetAccount"],[105,23,98,23],[105,26,98,26,"identity"],[105,34,98,34],[105,35,98,35,"parent"],[105,41,98,41],[105,45,98,45,"accountId"],[105,54,98,54],[106,4,99,4],[106,8,99,8],[106,9,99,9,"targetAccount"],[106,22,99,22],[106,26,99,26],[106,27,99,27,"api"],[106,30,99,30],[106,31,99,31,"query"],[106,36,99,36],[106,37,99,37,"identity"],[106,45,99,45],[106,47,99,47],[107,6,100,8],[108,6,101,8],[108,13,101,15],[108,17,101,15,"of"],[108,22,101,17],[108,23,101,17,"of"],[108,25,101,17],[108,27,101,18,"identity"],[108,35,101,26],[108,36,101,27],[109,4,102,4],[110,4,103,4],[110,11,103,11,"api"],[110,14,103,14],[110,15,103,15,"query"],[110,20,103,20],[110,21,103,21,"identity"],[110,29,103,29],[110,30,103,30,"subsOf"],[110,36,103,36],[110,37,103,37,"targetAccount"],[110,50,103,50],[110,51,103,51],[110,52,103,52,"pipe"],[110,56,103,56],[110,57,103,57],[110,61,103,57,"map"],[110,66,103,60],[110,67,103,60,"map"],[110,70,103,60],[110,72,103,62,"subsResponse"],[110,84,103,74],[110,88,103,79],[111,6,104,8],[111,12,104,14,"subs"],[111,16,104,18],[111,19,104,21,"subsResponse"],[111,31,104,33],[111,32,104,34],[111,33,104,35],[111,34,104,36],[112,6,105,8],[112,13,105,8,"Object"],[112,19,105,8],[112,20,105,8,"assign"],[112,26,105,8],[112,31,106,15,"identity"],[112,39,106,23],[113,8,107,12,"subs"],[114,6,107,16],[115,4,109,4],[115,5,109,5],[115,6,109,6],[115,7,109,7],[116,2,110,0],[117,2,111,0],[118,0,112,0],[119,0,113,0],[120,0,114,0],[121,0,115,0],[122,0,116,0],[123,0,117,0],[124,0,118,0],[125,0,119,0],[126,0,120,0],[127,2,121,7],[127,8,121,13,"hasIdentity"],[127,19,121,24],[127,22,121,27],[127,35,121,41],[127,39,121,41,"firstMemo"],[127,51,121,50],[127,52,121,50,"firstMemo"],[127,61,121,50],[127,63,121,51],[127,64,121,52,"api"],[127,67,121,55],[127,69,121,57,"accountId"],[127,78,121,66],[127,83,121,71,"api"],[127,86,121,74],[127,87,121,75,"derive"],[127,93,121,81],[127,94,121,82,"accounts"],[127,102,121,90],[127,103,121,91,"hasIdentityMulti"],[127,119,121,107],[127,120,121,108],[127,121,121,109,"accountId"],[127,130,121,118],[127,131,121,119],[127,132,121,120],[127,133,121,121],[128,2,122,0],[129,0,123,0],[130,0,124,0],[131,0,125,0],[132,0,126,0],[133,0,127,0],[134,0,128,0],[135,0,129,0],[136,0,130,0],[137,0,131,0],[138,0,132,0],[139,2,133,7],[139,11,133,16,"hasIdentityMulti"],[139,27,133,32,"hasIdentityMulti"],[139,28,133,33,"instanceId"],[139,38,133,43],[139,40,133,45,"api"],[139,43,133,48],[139,45,133,50],[140,4,134,4],[140,11,134,11],[140,15,134,11,"memo"],[140,27,134,15],[140,28,134,15,"memo"],[140,32,134,15],[140,34,134,16,"instanceId"],[140,44,134,26],[140,46,134,29,"accountIds"],[140,56,134,39],[140,60,134,44,"api"],[140,63,134,47],[140,64,134,48,"query"],[140,69,134,53],[140,70,134,54,"identity"],[140,78,134,62],[140,80,134,64,"identityOf"],[140,90,134,74],[140,93,135,10],[140,97,135,10,"combineLatest"],[140,102,135,23],[140,103,135,23,"combineLatest"],[140,116,135,23],[140,118,135,24],[140,119,136,12,"api"],[140,122,136,15],[140,123,136,16,"query"],[140,128,136,21],[140,129,136,22,"identity"],[140,137,136,30],[140,138,136,31,"identityOf"],[140,148,136,41],[140,149,136,42,"multi"],[140,154,136,47],[140,155,136,48,"accountIds"],[140,165,136,58],[140,166,136,59],[140,168,137,12,"api"],[140,171,137,15],[140,172,137,16,"query"],[140,177,137,21],[140,178,137,22,"identity"],[140,186,137,30],[140,187,137,31,"superOf"],[140,194,137,38],[140,195,137,39,"multi"],[140,200,137,44],[140,201,137,45,"accountIds"],[140,211,137,55],[140,212,137,56],[140,213,138,9],[140,214,138,10],[140,215,138,11,"pipe"],[140,219,138,15],[140,220,138,16],[140,224,138,16,"map"],[140,229,138,19],[140,230,138,19,"map"],[140,233,138,19],[140,235,138,20],[140,236,138,21],[140,237,138,22,"identities"],[140,247,138,32],[140,249,138,34,"supers"],[140,255,138,40],[140,256,138,41],[140,261,138,46,"identities"],[140,271,138,56],[140,272,138,57,"map"],[140,275,138,60],[140,276,138,61],[140,277,138,62,"identityOfOpt"],[140,290,138,75],[140,292,138,77,"index"],[140,297,138,82],[140,302,138,87],[141,6,139,12],[141,12,139,18,"superOfOpt"],[141,22,139,28],[141,25,139,31,"supers"],[141,31,139,37],[141,32,139,38,"index"],[141,37,139,43],[141,38,139,44],[142,6,140,12],[142,12,140,18,"parentId"],[142,20,140,26],[142,23,140,29,"superOfOpt"],[142,33,140,39],[142,37,140,43,"superOfOpt"],[142,47,140,53],[142,48,140,54,"isSome"],[142,54,140,60],[142,57,141,18,"superOfOpt"],[142,67,141,28],[142,68,141,29,"unwrap"],[142,74,141,35],[142,75,141,36],[142,76,141,37],[142,77,141,38],[142,78,141,39],[142,79,141,40],[142,80,141,41,"toString"],[142,88,141,49],[142,89,141,50],[142,90,141,51],[142,93,142,18,"undefined"],[142,102,142,27],[143,6,143,12],[143,10,143,16,"display"],[143,17,143,23],[144,6,144,12],[144,10,144,16,"identityOfOpt"],[144,23,144,29],[144,27,144,33,"identityOfOpt"],[144,40,144,46],[144,41,144,47,"isSome"],[144,47,144,53],[144,49,144,55],[145,8,145,16],[145,14,145,22,"value"],[145,19,145,27],[145,22,145,30,"dataAsString"],[145,34,145,42],[145,35,145,43,"identityCompat"],[145,49,145,57],[145,50,145,58,"identityOfOpt"],[145,63,145,71],[145,64,145,72],[145,65,145,73,"info"],[145,69,145,77],[145,70,145,78,"display"],[145,77,145,85],[145,78,145,86],[146,8,146,16],[146,12,146,20,"value"],[146,17,146,25],[146,21,146,29],[146,22,146,30],[146,26,146,30,"isHex"],[146,39,146,35],[146,40,146,35,"isHex"],[146,45,146,35],[146,47,146,36,"value"],[146,52,146,41],[146,53,146,42],[146,55,146,44],[147,10,147,20,"display"],[147,17,147,27],[147,20,147,30,"value"],[147,25,147,35],[148,8,148,16],[149,6,149,12],[150,6,150,12],[150,13,150,19],[151,8,150,21,"display"],[151,15,150,28],[152,8,150,30,"hasIdentity"],[152,19,150,41],[152,21,150,43],[152,22,150,44],[152,24,150,46,"display"],[152,31,150,53],[152,35,150,57,"parentId"],[152,43,150,65],[152,44,150,66],[153,8,150,68,"parentId"],[154,6,150,77],[154,7,150,78],[155,4,151,8],[155,5,151,9],[155,6,151,10],[155,7,151,11],[155,8,151,12],[155,11,152,10],[155,15,152,10,"of"],[155,20,152,12],[155,21,152,12,"of"],[155,23,152,12],[155,25,152,13,"accountIds"],[155,35,152,23],[155,36,152,24,"map"],[155,39,152,27],[155,40,152,28],[155,47,152,35],[156,6,152,37,"hasIdentity"],[156,17,152,48],[156,19,152,50],[157,4,152,56],[157,5,152,57],[157,6,152,58],[157,7,152,59],[157,8,152,60],[157,9,152,61],[158,2,153,0],[159,0,153,1],[159,3]],"functionMap":{"names":["<global>","UNDEF_HEX.toHex","dataAsString","extractOther","additional.reduce$argument_0","identityCompat","extractIdentity","getParent","map$argument_0","_identity","memo$argument_1","identity","switchMap$argument_0","getSubIdentities","firstMemo$argument_0","hasIdentityMulti","identities.map$argument_0","accountIds.map$argument_0"],"mappings":"AAA;2BCG,eD;AEC;CFS;AGC;6BCC;KDO;CHC;AKC;CLK;AMC;CNuB;AOC;+DCQ,gBD;CPM;OSC;4BCC;oCDK;CTC;OWiB;4BDC,uEE,0EF,OF,qEE,aE,wDF,EC;CXC;AaC;6DLM;KKM;CbC;mDcW,qEd;OeY;4BLC;oBFI,yCQ;SRa,CE;4BOC,8BP,EK;CfC"},"hasCjsExports":false},"type":"js/module"}]} |