mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 11:11:01 +00:00
1 line
51 KiB
Plaintext
1 line
51 KiB
Plaintext
{"dependencies":[{"name":"expo/dom","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":50,"column":14,"index":1848},"end":{"line":50,"column":33,"index":1867}}],"key":"CuyNnp1KdWlbZ+zIjWoiQo+JAVo=","exportNames":["*"]}},{"name":"expo-linking","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":51,"column":29,"index":1898},"end":{"line":51,"column":52,"index":1921}}],"key":"F3IRuZxT1cyHB74rJR7WrB3Q6GA=","exportNames":["*"]}},{"name":"react-native","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":52,"column":23,"index":1947},"end":{"line":52,"column":46,"index":1970}}],"key":"lGv6jwyWtmgghjjYvCX5yhM2Jt0=","exportNames":["*"]}},{"name":"./router-store","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":53,"column":23,"index":1995},"end":{"line":53,"column":48,"index":2020}}],"key":"FDUP7b4ICUkRq/4sHupz6lgRq68=","exportNames":["*"]}},{"name":"../domComponents/emitDomEvent","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":54,"column":23,"index":2045},"end":{"line":54,"column":63,"index":2085}}],"key":"ytOKgRKkGsnNX3Cjp8ZQVtQ04/A=","exportNames":["*"]}},{"name":"../getRoutesRedirects","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":55,"column":29,"index":2116},"end":{"line":55,"column":61,"index":2148}}],"key":"yKsaMnGrawCxqUEp+aBM/Yxeh5A=","exportNames":["*"]}},{"name":"../link/href","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":56,"column":15,"index":2165},"end":{"line":56,"column":38,"index":2188}}],"key":"8/z9CS+pCHEIoFsTmjKT/GkrtVA=","exportNames":["*"]}},{"name":"../matchers","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":57,"column":19,"index":2209},"end":{"line":57,"column":41,"index":2231}}],"key":"lD+VV93WPi10A3qv5+9m649ytvA=","exportNames":["*"]}},{"name":"../utils/url","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":58,"column":14,"index":2247},"end":{"line":58,"column":37,"index":2270}}],"key":"cr4Bw7JAHaE1T5Tb4Y1vtviexXs=","exportNames":["*"]}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = {\n enumerable: true,\n get: function () {\n return m[k];\n }\n };\n }\n Object.defineProperty(o, k2, desc);\n } : function (o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n });\n var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {\n Object.defineProperty(o, \"default\", {\n enumerable: true,\n value: v\n });\n } : function (o, v) {\n o[\"default\"] = v;\n });\n var __importStar = this && this.__importStar || function () {\n var ownKeys = function (o) {\n ownKeys = Object.getOwnPropertyNames || function (o) {\n var ar = [];\n for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;\n return ar;\n };\n return ownKeys(o);\n };\n return function (mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== \"default\") __createBinding(result, mod, k[i]);\n __setModuleDefault(result, mod);\n return result;\n };\n }();\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.routingQueue = void 0;\n exports.navigate = navigate;\n exports.reload = reload;\n exports.prefetch = prefetch;\n exports.push = push;\n exports.dismiss = dismiss;\n exports.dismissTo = dismissTo;\n exports.replace = replace;\n exports.dismissAll = dismissAll;\n exports.goBack = goBack;\n exports.canGoBack = canGoBack;\n exports.canDismiss = canDismiss;\n exports.setParams = setParams;\n exports.linkTo = linkTo;\n var dom_1 = require(_dependencyMap[0], \"expo/dom\");\n var Linking = __importStar(require(_dependencyMap[1], \"expo-linking\"));\n var react_native_1 = require(_dependencyMap[2], \"react-native\");\n var router_store_1 = require(_dependencyMap[3], \"./router-store\");\n var emitDomEvent_1 = require(_dependencyMap[4], \"../domComponents/emitDomEvent\");\n var getRoutesRedirects_1 = require(_dependencyMap[5], \"../getRoutesRedirects\");\n var href_1 = require(_dependencyMap[6], \"../link/href\");\n var matchers_1 = require(_dependencyMap[7], \"../matchers\");\n var url_1 = require(_dependencyMap[8], \"../utils/url\");\n function assertIsReady() {\n if (!router_store_1.store.navigationRef.isReady()) {\n throw new Error('Attempted to navigate before mounting the Root Layout component. Ensure the Root Layout component is rendering a Slot, or other navigator on the first render.');\n }\n }\n exports.routingQueue = {\n queue: [],\n subscribers: new Set(),\n subscribe(callback) {\n exports.routingQueue.subscribers.add(callback);\n return () => {\n exports.routingQueue.subscribers.delete(callback);\n };\n },\n snapshot() {\n return exports.routingQueue.queue;\n },\n add(action) {\n // Reset the identity of the queue.\n if (exports.routingQueue.queue.length === 0) {\n exports.routingQueue.queue = [];\n }\n exports.routingQueue.queue.push(action);\n for (var callback of exports.routingQueue.subscribers) {\n callback();\n }\n },\n run() {\n var queue = exports.routingQueue.queue;\n if (queue.length === 0 || !router_store_1.store.navigationRef) {\n return;\n }\n exports.routingQueue.queue = [];\n for (var action of queue) {\n router_store_1.store.navigationRef.dispatch(action);\n }\n }\n };\n function navigate(url, options) {\n return linkTo((0, href_1.resolveHref)(url), {\n ...options,\n event: 'NAVIGATE'\n });\n }\n function reload() {\n // TODO(EvanBacon): add `reload` support.\n throw new Error('The reload method is not implemented in the client-side router yet.');\n }\n function prefetch(href, options) {\n return linkTo((0, href_1.resolveHref)(href), {\n ...options,\n event: 'PRELOAD'\n });\n }\n function push(url, options) {\n return linkTo((0, href_1.resolveHref)(url), {\n ...options,\n event: 'PUSH'\n });\n }\n function dismiss() {\n var count = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 1;\n if ((0, emitDomEvent_1.emitDomDismiss)(count)) {\n return;\n }\n exports.routingQueue.add({\n type: 'POP',\n payload: {\n count\n }\n });\n }\n function dismissTo(href, options) {\n return linkTo((0, href_1.resolveHref)(href), {\n ...options,\n event: 'POP_TO'\n });\n }\n function replace(url, options) {\n return linkTo((0, href_1.resolveHref)(url), {\n ...options,\n event: 'REPLACE'\n });\n }\n function dismissAll() {\n if ((0, emitDomEvent_1.emitDomDismissAll)()) {\n return;\n }\n exports.routingQueue.add({\n type: 'POP_TO_TOP'\n });\n }\n function goBack() {\n if ((0, emitDomEvent_1.emitDomGoBack)()) {\n return;\n }\n assertIsReady();\n exports.routingQueue.add({\n type: 'GO_BACK'\n });\n }\n function canGoBack() {\n if (dom_1.IS_DOM) {\n throw new Error('canGoBack imperative method is not supported. Pass the property to the DOM component instead.');\n }\n // Return a default value here if the navigation hasn't mounted yet.\n // This can happen if the user calls `canGoBack` from the Root Layout route\n // before mounting a navigator. This behavior exists due to React Navigation being dynamically\n // constructed at runtime. We can get rid of this in the future if we use\n // the static configuration internally.\n if (!router_store_1.store.navigationRef.isReady()) {\n return false;\n }\n return router_store_1.store.navigationRef?.current?.canGoBack() ?? false;\n }\n function canDismiss() {\n if (dom_1.IS_DOM) {\n throw new Error('canDismiss imperative method is not supported. Pass the property to the DOM component instead.');\n }\n var state = router_store_1.store.state;\n // Keep traversing down the state tree until we find a stack navigator that we can pop\n while (state) {\n if (state.type === 'stack' && state.routes.length > 1) {\n return true;\n }\n if (state.index === undefined) return false;\n state = state.routes?.[state.index]?.state;\n }\n return false;\n }\n function setParams() {\n var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n if ((0, emitDomEvent_1.emitDomSetParams)(params)) {\n return;\n }\n assertIsReady();\n return (router_store_1.store.navigationRef?.current?.setParams)(params);\n }\n function linkTo(originalHref) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n originalHref = typeof originalHref == 'string' ? originalHref : (0, href_1.resolveHref)(originalHref);\n var href = originalHref;\n if ((0, emitDomEvent_1.emitDomLinkEvent)(href, options)) {\n return;\n }\n if ((0, url_1.shouldLinkExternally)(href)) {\n if (href.startsWith('//') && react_native_1.Platform.OS !== 'web') {\n href = `https:${href}`;\n }\n Linking.openURL(href);\n return;\n }\n assertIsReady();\n var navigationRef = router_store_1.store.navigationRef.current;\n if (navigationRef == null) {\n throw new Error(\"Couldn't find a navigation object. Is your component inside NavigationContainer?\");\n }\n if (!router_store_1.store.linking) {\n throw new Error('Attempted to link to route when no routes are present');\n }\n if (href === '..' || href === '../') {\n navigationRef.goBack();\n return;\n }\n var rootState = navigationRef.getRootState();\n href = (0, href_1.resolveHrefStringWithSegments)(href, router_store_1.store.getRouteInfo(), options);\n href = (0, getRoutesRedirects_1.applyRedirects)(href, router_store_1.store.redirects);\n // If the href is undefined, it means that the redirect has already been handled the navigation\n if (!href) {\n return;\n }\n var state = router_store_1.store.linking.getStateFromPath(href, router_store_1.store.linking.config);\n if (!state || state.routes.length === 0) {\n console.error('Could not generate a valid navigation state for the given path: ' + href);\n return;\n }\n exports.routingQueue.add(getNavigateAction(state, rootState, options.event, options.withAnchor, options.dangerouslySingular));\n }\n function getNavigateAction(actionState, navigationState) {\n var type = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'NAVIGATE';\n var withAnchor = arguments.length > 3 ? arguments[3] : undefined;\n var singular = arguments.length > 4 ? arguments[4] : undefined;\n /**\n * We need to find the deepest navigator where the action and current state diverge, If they do not diverge, the\n * lowest navigator is the target.\n *\n * By default React Navigation will target the current navigator, but this doesn't work for all actions\n * For example:\n * - /deeply/nested/route -> /top-level-route the target needs to be the top-level navigator\n * - /stack/nestedStack/page -> /stack1/nestedStack/other-page needs to target the nestedStack navigator\n *\n * This matching needs to done by comparing the route names and the dynamic path, for example\n * - /1/page -> /2/anotherPage needs to target the /[id] navigator\n *\n * Other parameters such as search params and hash are not evaluated.\n */\n var actionStateRoute;\n // Traverse the state tree comparing the current state and the action state until we find where they diverge\n while (actionState && navigationState) {\n var stateRoute = navigationState.routes[navigationState.index];\n actionStateRoute = actionState.routes[actionState.routes.length - 1];\n var childState = actionStateRoute.state;\n var nextNavigationState = stateRoute.state;\n var dynamicName = (0, matchers_1.matchDynamicName)(actionStateRoute.name);\n var didActionAndCurrentStateDiverge = actionStateRoute.name !== stateRoute.name || !childState || !nextNavigationState || dynamicName &&\n // @ts-expect-error: TODO(@kitten): This isn't properly typed, so the index access fails\n actionStateRoute.params?.[dynamicName.name] !== stateRoute.params?.[dynamicName.name];\n if (didActionAndCurrentStateDiverge) {\n break;\n }\n actionState = childState;\n navigationState = nextNavigationState;\n }\n /*\n * We found the target navigator, but the payload is in the incorrect format\n * We need to convert the action state to a payload that can be dispatched\n */\n var rootPayload = {\n params: {}\n };\n var payload = rootPayload;\n var params = payload.params;\n // The root level of payload is a bit weird, its params are in the child object\n while (actionStateRoute) {\n Object.assign(params, {\n ...payload.params,\n ...actionStateRoute.params\n });\n // Assign the screen name to the payload\n payload.screen = actionStateRoute.name;\n // Merge the params, ensuring that we create a new object\n payload.params = {\n ...params\n };\n // Params don't include the screen, thats a separate attribute\n delete payload.params['screen'];\n // Continue down the payload tree\n // Initially these values are separate, but React Nav merges them after the first layer\n payload = payload.params;\n params = payload;\n actionStateRoute = actionStateRoute.state?.routes[actionStateRoute.state?.routes.length - 1];\n }\n if (type === 'PUSH' && navigationState.type !== 'stack') {\n type = 'NAVIGATE';\n } else if (navigationState.type === 'expo-tab') {\n type = 'JUMP_TO';\n } else if (type === 'REPLACE' && navigationState.type === 'drawer') {\n type = 'JUMP_TO';\n }\n if (withAnchor !== undefined) {\n if (rootPayload.params.initial) {\n if (process.env.NODE_ENV !== 'production') {\n console.warn(`The parameter 'initial' is a reserved parameter name in React Navigation`);\n }\n }\n /*\n * The logic for initial can seen backwards depending on your perspective\n * True: The initialRouteName is not loaded. The incoming screen is the initial screen (default)\n * False: The initialRouteName is loaded. THe incoming screen is placed after the initialRouteName\n *\n * withAnchor flips the perspective.\n * True: You want the initialRouteName to load.\n * False: You do not want the initialRouteName to load.\n */\n rootPayload.params.initial = !withAnchor;\n }\n return {\n type,\n target: navigationState.key,\n payload: {\n // key: rootPayload.key,\n name: rootPayload.screen,\n params: rootPayload.params,\n singular\n }\n };\n }\n});","lineCount":348,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0],[4,6,2,4,"__createBinding"],[4,21,2,19],[4,24,2,23],[4,28,2,27],[4,32,2,31],[4,36,2,35],[4,37,2,36,"__createBinding"],[4,52,2,51],[4,57,2,57,"Object"],[4,63,2,63],[4,64,2,64,"create"],[4,70,2,70],[4,73,2,74],[4,83,2,83,"o"],[4,84,2,84],[4,86,2,86,"m"],[4,87,2,87],[4,89,2,89,"k"],[4,90,2,90],[4,92,2,92,"k2"],[4,94,2,94],[4,96,2,96],[5,4,3,4],[5,8,3,8,"k2"],[5,10,3,10],[5,15,3,15,"undefined"],[5,24,3,24],[5,26,3,26,"k2"],[5,28,3,28],[5,31,3,31,"k"],[5,32,3,32],[6,4,4,4],[6,8,4,8,"desc"],[6,12,4,12],[6,15,4,15,"Object"],[6,21,4,21],[6,22,4,22,"getOwnPropertyDescriptor"],[6,46,4,46],[6,47,4,47,"m"],[6,48,4,48],[6,50,4,50,"k"],[6,51,4,51],[6,52,4,52],[7,4,5,4],[7,8,5,8],[7,9,5,9,"desc"],[7,13,5,13],[7,18,5,18],[7,23,5,23],[7,27,5,27,"desc"],[7,31,5,31],[7,34,5,34],[7,35,5,35,"m"],[7,36,5,36],[7,37,5,37,"__esModule"],[7,47,5,47],[7,50,5,50,"desc"],[7,54,5,54],[7,55,5,55,"writable"],[7,63,5,63],[7,67,5,67,"desc"],[7,71,5,71],[7,72,5,72,"configurable"],[7,84,5,84],[7,85,5,85],[7,87,5,87],[8,6,6,6,"desc"],[8,10,6,10],[8,13,6,13],[9,8,6,15,"enumerable"],[9,18,6,25],[9,20,6,27],[9,24,6,31],[10,8,6,33,"get"],[10,11,6,36],[10,13,6,38],[10,22,6,38,"get"],[10,23,6,38],[10,25,6,49],[11,10,6,51],[11,17,6,58,"m"],[11,18,6,59],[11,19,6,60,"k"],[11,20,6,61],[11,21,6,62],[12,8,6,64],[13,6,6,66],[13,7,6,67],[14,4,7,4],[15,4,8,4,"Object"],[15,10,8,10],[15,11,8,11,"defineProperty"],[15,25,8,25],[15,26,8,26,"o"],[15,27,8,27],[15,29,8,29,"k2"],[15,31,8,31],[15,33,8,33,"desc"],[15,37,8,37],[15,38,8,38],[16,2,9,0],[16,3,9,1],[16,6,9,6],[16,16,9,15,"o"],[16,17,9,16],[16,19,9,18,"m"],[16,20,9,19],[16,22,9,21,"k"],[16,23,9,22],[16,25,9,24,"k2"],[16,27,9,26],[16,29,9,28],[17,4,10,4],[17,8,10,8,"k2"],[17,10,10,10],[17,15,10,15,"undefined"],[17,24,10,24],[17,26,10,26,"k2"],[17,28,10,28],[17,31,10,31,"k"],[17,32,10,32],[18,4,11,4,"o"],[18,5,11,5],[18,6,11,6,"k2"],[18,8,11,8],[18,9,11,9],[18,12,11,12,"m"],[18,13,11,13],[18,14,11,14,"k"],[18,15,11,15],[18,16,11,16],[19,2,12,0],[19,3,12,2],[19,4,12,3],[20,2,13,0],[20,6,13,4,"__setModuleDefault"],[20,24,13,22],[20,27,13,26],[20,31,13,30],[20,35,13,34],[20,39,13,38],[20,40,13,39,"__setModuleDefault"],[20,58,13,57],[20,63,13,63,"Object"],[20,69,13,69],[20,70,13,70,"create"],[20,76,13,76],[20,79,13,80],[20,89,13,89,"o"],[20,90,13,90],[20,92,13,92,"v"],[20,93,13,93],[20,95,13,95],[21,4,14,4,"Object"],[21,10,14,10],[21,11,14,11,"defineProperty"],[21,25,14,25],[21,26,14,26,"o"],[21,27,14,27],[21,29,14,29],[21,38,14,38],[21,40,14,40],[22,6,14,42,"enumerable"],[22,16,14,52],[22,18,14,54],[22,22,14,58],[23,6,14,60,"value"],[23,11,14,65],[23,13,14,67,"v"],[24,4,14,69],[24,5,14,70],[24,6,14,71],[25,2,15,0],[25,3,15,1],[25,6,15,5],[25,16,15,14,"o"],[25,17,15,15],[25,19,15,17,"v"],[25,20,15,18],[25,22,15,20],[26,4,16,4,"o"],[26,5,16,5],[26,6,16,6],[26,15,16,15],[26,16,16,16],[26,19,16,19,"v"],[26,20,16,20],[27,2,17,0],[27,3,17,1],[27,4,17,2],[28,2,18,0],[28,6,18,4,"__importStar"],[28,18,18,16],[28,21,18,20],[28,25,18,24],[28,29,18,28],[28,33,18,32],[28,34,18,33,"__importStar"],[28,46,18,45],[28,50,18,51],[28,62,18,63],[29,4,19,4],[29,8,19,8,"ownKeys"],[29,15,19,15],[29,18,19,18],[29,27,19,18,"ownKeys"],[29,28,19,27,"o"],[29,29,19,28],[29,31,19,30],[30,6,20,8,"ownKeys"],[30,13,20,15],[30,16,20,18,"Object"],[30,22,20,24],[30,23,20,25,"getOwnPropertyNames"],[30,42,20,44],[30,46,20,48],[30,56,20,58,"o"],[30,57,20,59],[30,59,20,61],[31,8,21,12],[31,12,21,16,"ar"],[31,14,21,18],[31,17,21,21],[31,19,21,23],[32,8,22,12],[32,13,22,17],[32,17,22,21,"k"],[32,18,22,22],[32,22,22,26,"o"],[32,23,22,27],[32,25,22,29],[32,29,22,33,"Object"],[32,35,22,39],[32,36,22,40,"prototype"],[32,45,22,49],[32,46,22,50,"hasOwnProperty"],[32,60,22,64],[32,61,22,65,"call"],[32,65,22,69],[32,66,22,70,"o"],[32,67,22,71],[32,69,22,73,"k"],[32,70,22,74],[32,71,22,75],[32,73,22,77,"ar"],[32,75,22,79],[32,76,22,80,"ar"],[32,78,22,82],[32,79,22,83,"length"],[32,85,22,89],[32,86,22,90],[32,89,22,93,"k"],[32,90,22,94],[33,8,23,12],[33,15,23,19,"ar"],[33,17,23,21],[34,6,24,8],[34,7,24,9],[35,6,25,8],[35,13,25,15,"ownKeys"],[35,20,25,22],[35,21,25,23,"o"],[35,22,25,24],[35,23,25,25],[36,4,26,4],[36,5,26,5],[37,4,27,4],[37,11,27,11],[37,21,27,21,"mod"],[37,24,27,24],[37,26,27,26],[38,6,28,8],[38,10,28,12,"mod"],[38,13,28,15],[38,17,28,19,"mod"],[38,20,28,22],[38,21,28,23,"__esModule"],[38,31,28,33],[38,33,28,35],[38,40,28,42,"mod"],[38,43,28,45],[39,6,29,8],[39,10,29,12,"result"],[39,16,29,18],[39,19,29,21],[39,20,29,22],[39,21,29,23],[40,6,30,8],[40,10,30,12,"mod"],[40,13,30,15],[40,17,30,19],[40,21,30,23],[40,23,30,25],[40,28,30,30],[40,32,30,34,"k"],[40,33,30,35],[40,36,30,38,"ownKeys"],[40,43,30,45],[40,44,30,46,"mod"],[40,47,30,49],[40,48,30,50],[40,50,30,52,"i"],[40,51,30,53],[40,54,30,56],[40,55,30,57],[40,57,30,59,"i"],[40,58,30,60],[40,61,30,63,"k"],[40,62,30,64],[40,63,30,65,"length"],[40,69,30,71],[40,71,30,73,"i"],[40,72,30,74],[40,74,30,76],[40,76,30,78],[40,80,30,82,"k"],[40,81,30,83],[40,82,30,84,"i"],[40,83,30,85],[40,84,30,86],[40,89,30,91],[40,98,30,100],[40,100,30,102,"__createBinding"],[40,115,30,117],[40,116,30,118,"result"],[40,122,30,124],[40,124,30,126,"mod"],[40,127,30,129],[40,129,30,131,"k"],[40,130,30,132],[40,131,30,133,"i"],[40,132,30,134],[40,133,30,135],[40,134,30,136],[41,6,31,8,"__setModuleDefault"],[41,24,31,26],[41,25,31,27,"result"],[41,31,31,33],[41,33,31,35,"mod"],[41,36,31,38],[41,37,31,39],[42,6,32,8],[42,13,32,15,"result"],[42,19,32,21],[43,4,33,4],[43,5,33,5],[44,2,34,0],[44,3,34,1],[44,4,34,3],[44,5,34,4],[45,2,35,0,"Object"],[45,8,35,6],[45,9,35,7,"defineProperty"],[45,23,35,21],[45,24,35,22,"exports"],[45,31,35,29],[45,33,35,31],[45,45,35,43],[45,47,35,45],[46,4,35,47,"value"],[46,9,35,52],[46,11,35,54],[47,2,35,59],[47,3,35,60],[47,4,35,61],[48,2,36,0,"exports"],[48,9,36,7],[48,10,36,8,"routingQueue"],[48,22,36,20],[48,25,36,23],[48,30,36,28],[48,31,36,29],[49,2,37,0,"exports"],[49,9,37,7],[49,10,37,8,"navigate"],[49,18,37,16],[49,21,37,19,"navigate"],[49,29,37,27],[50,2,38,0,"exports"],[50,9,38,7],[50,10,38,8,"reload"],[50,16,38,14],[50,19,38,17,"reload"],[50,25,38,23],[51,2,39,0,"exports"],[51,9,39,7],[51,10,39,8,"prefetch"],[51,18,39,16],[51,21,39,19,"prefetch"],[51,29,39,27],[52,2,40,0,"exports"],[52,9,40,7],[52,10,40,8,"push"],[52,14,40,12],[52,17,40,15,"push"],[52,21,40,19],[53,2,41,0,"exports"],[53,9,41,7],[53,10,41,8,"dismiss"],[53,17,41,15],[53,20,41,18,"dismiss"],[53,27,41,25],[54,2,42,0,"exports"],[54,9,42,7],[54,10,42,8,"dismissTo"],[54,19,42,17],[54,22,42,20,"dismissTo"],[54,31,42,29],[55,2,43,0,"exports"],[55,9,43,7],[55,10,43,8,"replace"],[55,17,43,15],[55,20,43,18,"replace"],[55,27,43,25],[56,2,44,0,"exports"],[56,9,44,7],[56,10,44,8,"dismissAll"],[56,20,44,18],[56,23,44,21,"dismissAll"],[56,33,44,31],[57,2,45,0,"exports"],[57,9,45,7],[57,10,45,8,"goBack"],[57,16,45,14],[57,19,45,17,"goBack"],[57,25,45,23],[58,2,46,0,"exports"],[58,9,46,7],[58,10,46,8,"canGoBack"],[58,19,46,17],[58,22,46,20,"canGoBack"],[58,31,46,29],[59,2,47,0,"exports"],[59,9,47,7],[59,10,47,8,"canDismiss"],[59,20,47,18],[59,23,47,21,"canDismiss"],[59,33,47,31],[60,2,48,0,"exports"],[60,9,48,7],[60,10,48,8,"setParams"],[60,19,48,17],[60,22,48,20,"setParams"],[60,31,48,29],[61,2,49,0,"exports"],[61,9,49,7],[61,10,49,8,"linkTo"],[61,16,49,14],[61,19,49,17,"linkTo"],[61,25,49,23],[62,2,50,0],[62,6,50,6,"dom_1"],[62,11,50,11],[62,14,50,14,"require"],[62,21,50,21],[62,22,50,21,"_dependencyMap"],[62,36,50,21],[62,51,50,32],[62,52,50,33],[63,2,51,0],[63,6,51,6,"Linking"],[63,13,51,13],[63,16,51,16,"__importStar"],[63,28,51,28],[63,29,51,29,"require"],[63,36,51,36],[63,37,51,36,"_dependencyMap"],[63,51,51,36],[63,70,51,51],[63,71,51,52],[63,72,51,53],[64,2,52,0],[64,6,52,6,"react_native_1"],[64,20,52,20],[64,23,52,23,"require"],[64,30,52,30],[64,31,52,30,"_dependencyMap"],[64,45,52,30],[64,64,52,45],[64,65,52,46],[65,2,53,0],[65,6,53,6,"router_store_1"],[65,20,53,20],[65,23,53,23,"require"],[65,30,53,30],[65,31,53,30,"_dependencyMap"],[65,45,53,30],[65,66,53,47],[65,67,53,48],[66,2,54,0],[66,6,54,6,"emitDomEvent_1"],[66,20,54,20],[66,23,54,23,"require"],[66,30,54,30],[66,31,54,30,"_dependencyMap"],[66,45,54,30],[66,81,54,62],[66,82,54,63],[67,2,55,0],[67,6,55,6,"getRoutesRedirects_1"],[67,26,55,26],[67,29,55,29,"require"],[67,36,55,36],[67,37,55,36,"_dependencyMap"],[67,51,55,36],[67,79,55,60],[67,80,55,61],[68,2,56,0],[68,6,56,6,"href_1"],[68,12,56,12],[68,15,56,15,"require"],[68,22,56,22],[68,23,56,22,"_dependencyMap"],[68,37,56,22],[68,56,56,37],[68,57,56,38],[69,2,57,0],[69,6,57,6,"matchers_1"],[69,16,57,16],[69,19,57,19,"require"],[69,26,57,26],[69,27,57,26,"_dependencyMap"],[69,41,57,26],[69,59,57,40],[69,60,57,41],[70,2,58,0],[70,6,58,6,"url_1"],[70,11,58,11],[70,14,58,14,"require"],[70,21,58,21],[70,22,58,21,"_dependencyMap"],[70,36,58,21],[70,55,58,36],[70,56,58,37],[71,2,59,0],[71,11,59,9,"assertIsReady"],[71,24,59,22,"assertIsReady"],[71,25,59,22],[71,27,59,25],[72,4,60,4],[72,8,60,8],[72,9,60,9,"router_store_1"],[72,23,60,23],[72,24,60,24,"store"],[72,29,60,29],[72,30,60,30,"navigationRef"],[72,43,60,43],[72,44,60,44,"isReady"],[72,51,60,51],[72,52,60,52],[72,53,60,53],[72,55,60,55],[73,6,61,8],[73,12,61,14],[73,16,61,18,"Error"],[73,21,61,23],[73,22,61,24],[73,182,61,184],[73,183,61,185],[74,4,62,4],[75,2,63,0],[76,2,64,0,"exports"],[76,9,64,7],[76,10,64,8,"routingQueue"],[76,22,64,20],[76,25,64,23],[77,4,65,4,"queue"],[77,9,65,9],[77,11,65,11],[77,13,65,13],[78,4,66,4,"subscribers"],[78,15,66,15],[78,17,66,17],[78,21,66,21,"Set"],[78,24,66,24],[78,25,66,25],[78,26,66,26],[79,4,67,4,"subscribe"],[79,13,67,13,"subscribe"],[79,14,67,14,"callback"],[79,22,67,22],[79,24,67,24],[80,6,68,8,"exports"],[80,13,68,15],[80,14,68,16,"routingQueue"],[80,26,68,28],[80,27,68,29,"subscribers"],[80,38,68,40],[80,39,68,41,"add"],[80,42,68,44],[80,43,68,45,"callback"],[80,51,68,53],[80,52,68,54],[81,6,69,8],[81,13,69,15],[81,19,69,21],[82,8,70,12,"exports"],[82,15,70,19],[82,16,70,20,"routingQueue"],[82,28,70,32],[82,29,70,33,"subscribers"],[82,40,70,44],[82,41,70,45,"delete"],[82,47,70,51],[82,48,70,52,"callback"],[82,56,70,60],[82,57,70,61],[83,6,71,8],[83,7,71,9],[84,4,72,4],[84,5,72,5],[85,4,73,4,"snapshot"],[85,12,73,12,"snapshot"],[85,13,73,12],[85,15,73,15],[86,6,74,8],[86,13,74,15,"exports"],[86,20,74,22],[86,21,74,23,"routingQueue"],[86,33,74,35],[86,34,74,36,"queue"],[86,39,74,41],[87,4,75,4],[87,5,75,5],[88,4,76,4,"add"],[88,7,76,7,"add"],[88,8,76,8,"action"],[88,14,76,14],[88,16,76,16],[89,6,77,8],[90,6,78,8],[90,10,78,12,"exports"],[90,17,78,19],[90,18,78,20,"routingQueue"],[90,30,78,32],[90,31,78,33,"queue"],[90,36,78,38],[90,37,78,39,"length"],[90,43,78,45],[90,48,78,50],[90,49,78,51],[90,51,78,53],[91,8,79,12,"exports"],[91,15,79,19],[91,16,79,20,"routingQueue"],[91,28,79,32],[91,29,79,33,"queue"],[91,34,79,38],[91,37,79,41],[91,39,79,43],[92,6,80,8],[93,6,81,8,"exports"],[93,13,81,15],[93,14,81,16,"routingQueue"],[93,26,81,28],[93,27,81,29,"queue"],[93,32,81,34],[93,33,81,35,"push"],[93,37,81,39],[93,38,81,40,"action"],[93,44,81,46],[93,45,81,47],[94,6,82,8],[94,11,82,13],[94,15,82,19,"callback"],[94,23,82,27],[94,27,82,31,"exports"],[94,34,82,38],[94,35,82,39,"routingQueue"],[94,47,82,51],[94,48,82,52,"subscribers"],[94,59,82,63],[94,61,82,65],[95,8,83,12,"callback"],[95,16,83,20],[95,17,83,21],[95,18,83,22],[96,6,84,8],[97,4,85,4],[97,5,85,5],[98,4,86,4,"run"],[98,7,86,7,"run"],[98,8,86,7],[98,10,86,10],[99,6,87,8],[99,10,87,14,"queue"],[99,15,87,19],[99,18,87,22,"exports"],[99,25,87,29],[99,26,87,30,"routingQueue"],[99,38,87,42],[99,39,87,43,"queue"],[99,44,87,48],[100,6,88,8],[100,10,88,12,"queue"],[100,15,88,17],[100,16,88,18,"length"],[100,22,88,24],[100,27,88,29],[100,28,88,30],[100,32,88,34],[100,33,88,35,"router_store_1"],[100,47,88,49],[100,48,88,50,"store"],[100,53,88,55],[100,54,88,56,"navigationRef"],[100,67,88,69],[100,69,88,71],[101,8,89,12],[102,6,90,8],[103,6,91,8,"exports"],[103,13,91,15],[103,14,91,16,"routingQueue"],[103,26,91,28],[103,27,91,29,"queue"],[103,32,91,34],[103,35,91,37],[103,37,91,39],[104,6,92,8],[104,11,92,13],[104,15,92,19,"action"],[104,21,92,25],[104,25,92,29,"queue"],[104,30,92,34],[104,32,92,36],[105,8,93,12,"router_store_1"],[105,22,93,26],[105,23,93,27,"store"],[105,28,93,32],[105,29,93,33,"navigationRef"],[105,42,93,46],[105,43,93,47,"dispatch"],[105,51,93,55],[105,52,93,56,"action"],[105,58,93,62],[105,59,93,63],[106,6,94,8],[107,4,95,4],[108,2,96,0],[108,3,96,1],[109,2,97,0],[109,11,97,9,"navigate"],[109,19,97,17,"navigate"],[109,20,97,18,"url"],[109,23,97,21],[109,25,97,23,"options"],[109,32,97,30],[109,34,97,32],[110,4,98,4],[110,11,98,11,"linkTo"],[110,17,98,17],[110,18,98,18],[110,19,98,19],[110,20,98,20],[110,22,98,22,"href_1"],[110,28,98,28],[110,29,98,29,"resolveHref"],[110,40,98,40],[110,42,98,42,"url"],[110,45,98,45],[110,46,98,46],[110,48,98,48],[111,6,98,50],[111,9,98,53,"options"],[111,16,98,60],[112,6,98,62,"event"],[112,11,98,67],[112,13,98,69],[113,4,98,80],[113,5,98,81],[113,6,98,82],[114,2,99,0],[115,2,100,0],[115,11,100,9,"reload"],[115,17,100,15,"reload"],[115,18,100,15],[115,20,100,18],[116,4,101,4],[117,4,102,4],[117,10,102,10],[117,14,102,14,"Error"],[117,19,102,19],[117,20,102,20],[117,89,102,89],[117,90,102,90],[118,2,103,0],[119,2,104,0],[119,11,104,9,"prefetch"],[119,19,104,17,"prefetch"],[119,20,104,18,"href"],[119,24,104,22],[119,26,104,24,"options"],[119,33,104,31],[119,35,104,33],[120,4,105,4],[120,11,105,11,"linkTo"],[120,17,105,17],[120,18,105,18],[120,19,105,19],[120,20,105,20],[120,22,105,22,"href_1"],[120,28,105,28],[120,29,105,29,"resolveHref"],[120,40,105,40],[120,42,105,42,"href"],[120,46,105,46],[120,47,105,47],[120,49,105,49],[121,6,105,51],[121,9,105,54,"options"],[121,16,105,61],[122,6,105,63,"event"],[122,11,105,68],[122,13,105,70],[123,4,105,80],[123,5,105,81],[123,6,105,82],[124,2,106,0],[125,2,107,0],[125,11,107,9,"push"],[125,15,107,13,"push"],[125,16,107,14,"url"],[125,19,107,17],[125,21,107,19,"options"],[125,28,107,26],[125,30,107,28],[126,4,108,4],[126,11,108,11,"linkTo"],[126,17,108,17],[126,18,108,18],[126,19,108,19],[126,20,108,20],[126,22,108,22,"href_1"],[126,28,108,28],[126,29,108,29,"resolveHref"],[126,40,108,40],[126,42,108,42,"url"],[126,45,108,45],[126,46,108,46],[126,48,108,48],[127,6,108,50],[127,9,108,53,"options"],[127,16,108,60],[128,6,108,62,"event"],[128,11,108,67],[128,13,108,69],[129,4,108,76],[129,5,108,77],[129,6,108,78],[130,2,109,0],[131,2,110,0],[131,11,110,9,"dismiss"],[131,18,110,16,"dismiss"],[131,19,110,16],[131,21,110,28],[132,4,110,28],[132,8,110,17,"count"],[132,13,110,22],[132,16,110,22,"arguments"],[132,25,110,22],[132,26,110,22,"length"],[132,32,110,22],[132,40,110,22,"arguments"],[132,49,110,22],[132,57,110,22,"undefined"],[132,66,110,22],[132,69,110,22,"arguments"],[132,78,110,22],[132,84,110,25],[132,85,110,26],[133,4,111,4],[133,8,111,8],[133,9,111,9],[133,10,111,10],[133,12,111,12,"emitDomEvent_1"],[133,26,111,26],[133,27,111,27,"emitDomDismiss"],[133,41,111,41],[133,43,111,43,"count"],[133,48,111,48],[133,49,111,49],[133,51,111,51],[134,6,112,8],[135,4,113,4],[136,4,114,4,"exports"],[136,11,114,11],[136,12,114,12,"routingQueue"],[136,24,114,24],[136,25,114,25,"add"],[136,28,114,28],[136,29,114,29],[137,6,114,31,"type"],[137,10,114,35],[137,12,114,37],[137,17,114,42],[138,6,114,44,"payload"],[138,13,114,51],[138,15,114,53],[139,8,114,55,"count"],[140,6,114,61],[141,4,114,63],[141,5,114,64],[141,6,114,65],[142,2,115,0],[143,2,116,0],[143,11,116,9,"dismissTo"],[143,20,116,18,"dismissTo"],[143,21,116,19,"href"],[143,25,116,23],[143,27,116,25,"options"],[143,34,116,32],[143,36,116,34],[144,4,117,4],[144,11,117,11,"linkTo"],[144,17,117,17],[144,18,117,18],[144,19,117,19],[144,20,117,20],[144,22,117,22,"href_1"],[144,28,117,28],[144,29,117,29,"resolveHref"],[144,40,117,40],[144,42,117,42,"href"],[144,46,117,46],[144,47,117,47],[144,49,117,49],[145,6,117,51],[145,9,117,54,"options"],[145,16,117,61],[146,6,117,63,"event"],[146,11,117,68],[146,13,117,70],[147,4,117,79],[147,5,117,80],[147,6,117,81],[148,2,118,0],[149,2,119,0],[149,11,119,9,"replace"],[149,18,119,16,"replace"],[149,19,119,17,"url"],[149,22,119,20],[149,24,119,22,"options"],[149,31,119,29],[149,33,119,31],[150,4,120,4],[150,11,120,11,"linkTo"],[150,17,120,17],[150,18,120,18],[150,19,120,19],[150,20,120,20],[150,22,120,22,"href_1"],[150,28,120,28],[150,29,120,29,"resolveHref"],[150,40,120,40],[150,42,120,42,"url"],[150,45,120,45],[150,46,120,46],[150,48,120,48],[151,6,120,50],[151,9,120,53,"options"],[151,16,120,60],[152,6,120,62,"event"],[152,11,120,67],[152,13,120,69],[153,4,120,79],[153,5,120,80],[153,6,120,81],[154,2,121,0],[155,2,122,0],[155,11,122,9,"dismissAll"],[155,21,122,19,"dismissAll"],[155,22,122,19],[155,24,122,22],[156,4,123,4],[156,8,123,8],[156,9,123,9],[156,10,123,10],[156,12,123,12,"emitDomEvent_1"],[156,26,123,26],[156,27,123,27,"emitDomDismissAll"],[156,44,123,44],[156,46,123,46],[156,47,123,47],[156,49,123,49],[157,6,124,8],[158,4,125,4],[159,4,126,4,"exports"],[159,11,126,11],[159,12,126,12,"routingQueue"],[159,24,126,24],[159,25,126,25,"add"],[159,28,126,28],[159,29,126,29],[160,6,126,31,"type"],[160,10,126,35],[160,12,126,37],[161,4,126,50],[161,5,126,51],[161,6,126,52],[162,2,127,0],[163,2,128,0],[163,11,128,9,"goBack"],[163,17,128,15,"goBack"],[163,18,128,15],[163,20,128,18],[164,4,129,4],[164,8,129,8],[164,9,129,9],[164,10,129,10],[164,12,129,12,"emitDomEvent_1"],[164,26,129,26],[164,27,129,27,"emitDomGoBack"],[164,40,129,40],[164,42,129,42],[164,43,129,43],[164,45,129,45],[165,6,130,8],[166,4,131,4],[167,4,132,4,"assertIsReady"],[167,17,132,17],[167,18,132,18],[167,19,132,19],[168,4,133,4,"exports"],[168,11,133,11],[168,12,133,12,"routingQueue"],[168,24,133,24],[168,25,133,25,"add"],[168,28,133,28],[168,29,133,29],[169,6,133,31,"type"],[169,10,133,35],[169,12,133,37],[170,4,133,47],[170,5,133,48],[170,6,133,49],[171,2,134,0],[172,2,135,0],[172,11,135,9,"canGoBack"],[172,20,135,18,"canGoBack"],[172,21,135,18],[172,23,135,21],[173,4,136,4],[173,8,136,8,"dom_1"],[173,13,136,13],[173,14,136,14,"IS_DOM"],[173,20,136,20],[173,22,136,22],[174,6,137,8],[174,12,137,14],[174,16,137,18,"Error"],[174,21,137,23],[174,22,137,24],[174,117,137,119],[174,118,137,120],[175,4,138,4],[176,4,139,4],[177,4,140,4],[178,4,141,4],[179,4,142,4],[180,4,143,4],[181,4,144,4],[181,8,144,8],[181,9,144,9,"router_store_1"],[181,23,144,23],[181,24,144,24,"store"],[181,29,144,29],[181,30,144,30,"navigationRef"],[181,43,144,43],[181,44,144,44,"isReady"],[181,51,144,51],[181,52,144,52],[181,53,144,53],[181,55,144,55],[182,6,145,8],[182,13,145,15],[182,18,145,20],[183,4,146,4],[184,4,147,4],[184,11,147,11,"router_store_1"],[184,25,147,25],[184,26,147,26,"store"],[184,31,147,31],[184,32,147,32,"navigationRef"],[184,45,147,45],[184,47,147,47,"current"],[184,54,147,54],[184,56,147,56,"canGoBack"],[184,65,147,65],[184,66,147,66],[184,67,147,67],[184,71,147,71],[184,76,147,76],[185,2,148,0],[186,2,149,0],[186,11,149,9,"canDismiss"],[186,21,149,19,"canDismiss"],[186,22,149,19],[186,24,149,22],[187,4,150,4],[187,8,150,8,"dom_1"],[187,13,150,13],[187,14,150,14,"IS_DOM"],[187,20,150,20],[187,22,150,22],[188,6,151,8],[188,12,151,14],[188,16,151,18,"Error"],[188,21,151,23],[188,22,151,24],[188,118,151,120],[188,119,151,121],[189,4,152,4],[190,4,153,4],[190,8,153,8,"state"],[190,13,153,13],[190,16,153,16,"router_store_1"],[190,30,153,30],[190,31,153,31,"store"],[190,36,153,36],[190,37,153,37,"state"],[190,42,153,42],[191,4,154,4],[192,4,155,4],[192,11,155,11,"state"],[192,16,155,16],[192,18,155,18],[193,6,156,8],[193,10,156,12,"state"],[193,15,156,17],[193,16,156,18,"type"],[193,20,156,22],[193,25,156,27],[193,32,156,34],[193,36,156,38,"state"],[193,41,156,43],[193,42,156,44,"routes"],[193,48,156,50],[193,49,156,51,"length"],[193,55,156,57],[193,58,156,60],[193,59,156,61],[193,61,156,63],[194,8,157,12],[194,15,157,19],[194,19,157,23],[195,6,158,8],[196,6,159,8],[196,10,159,12,"state"],[196,15,159,17],[196,16,159,18,"index"],[196,21,159,23],[196,26,159,28,"undefined"],[196,35,159,37],[196,37,160,12],[196,44,160,19],[196,49,160,24],[197,6,161,8,"state"],[197,11,161,13],[197,14,161,16,"state"],[197,19,161,21],[197,20,161,22,"routes"],[197,26,161,28],[197,29,161,31,"state"],[197,34,161,36],[197,35,161,37,"index"],[197,40,161,42],[197,41,161,43],[197,43,161,45,"state"],[197,48,161,50],[198,4,162,4],[199,4,163,4],[199,11,163,11],[199,16,163,16],[200,2,164,0],[201,2,165,0],[201,11,165,9,"setParams"],[201,20,165,18,"setParams"],[201,21,165,18],[201,23,165,32],[202,4,165,32],[202,8,165,19,"params"],[202,14,165,25],[202,17,165,25,"arguments"],[202,26,165,25],[202,27,165,25,"length"],[202,33,165,25],[202,41,165,25,"arguments"],[202,50,165,25],[202,58,165,25,"undefined"],[202,67,165,25],[202,70,165,25,"arguments"],[202,79,165,25],[202,85,165,28],[202,86,165,29],[202,87,165,30],[203,4,166,4],[203,8,166,8],[203,9,166,9],[203,10,166,10],[203,12,166,12,"emitDomEvent_1"],[203,26,166,26],[203,27,166,27,"emitDomSetParams"],[203,43,166,43],[203,45,166,45,"params"],[203,51,166,51],[203,52,166,52],[203,54,166,54],[204,6,167,8],[205,4,168,4],[206,4,169,4,"assertIsReady"],[206,17,169,17],[206,18,169,18],[206,19,169,19],[207,4,170,4],[207,11,170,11],[207,12,170,12,"router_store_1"],[207,26,170,26],[207,27,170,27,"store"],[207,32,170,32],[207,33,170,33,"navigationRef"],[207,46,170,46],[207,48,170,48,"current"],[207,55,170,55],[207,57,170,57,"setParams"],[207,66,170,66],[207,68,170,68,"params"],[207,74,170,74],[207,75,170,75],[208,2,171,0],[209,2,172,0],[209,11,172,9,"linkTo"],[209,17,172,15,"linkTo"],[209,18,172,16,"originalHref"],[209,30,172,28],[209,32,172,44],[210,4,172,44],[210,8,172,30,"options"],[210,15,172,37],[210,18,172,37,"arguments"],[210,27,172,37],[210,28,172,37,"length"],[210,34,172,37],[210,42,172,37,"arguments"],[210,51,172,37],[210,59,172,37,"undefined"],[210,68,172,37],[210,71,172,37,"arguments"],[210,80,172,37],[210,86,172,40],[210,87,172,41],[210,88,172,42],[211,4,173,4,"originalHref"],[211,16,173,16],[211,19,173,19],[211,26,173,26,"originalHref"],[211,38,173,38],[211,42,173,42],[211,50,173,50],[211,53,173,53,"originalHref"],[211,65,173,65],[211,68,173,68],[211,69,173,69],[211,70,173,70],[211,72,173,72,"href_1"],[211,78,173,78],[211,79,173,79,"resolveHref"],[211,90,173,90],[211,92,173,92,"originalHref"],[211,104,173,104],[211,105,173,105],[212,4,174,4],[212,8,174,8,"href"],[212,12,174,12],[212,15,174,15,"originalHref"],[212,27,174,27],[213,4,175,4],[213,8,175,8],[213,9,175,9],[213,10,175,10],[213,12,175,12,"emitDomEvent_1"],[213,26,175,26],[213,27,175,27,"emitDomLinkEvent"],[213,43,175,43],[213,45,175,45,"href"],[213,49,175,49],[213,51,175,51,"options"],[213,58,175,58],[213,59,175,59],[213,61,175,61],[214,6,176,8],[215,4,177,4],[216,4,178,4],[216,8,178,8],[216,9,178,9],[216,10,178,10],[216,12,178,12,"url_1"],[216,17,178,17],[216,18,178,18,"shouldLinkExternally"],[216,38,178,38],[216,40,178,40,"href"],[216,44,178,44],[216,45,178,45],[216,47,178,47],[217,6,179,8],[217,10,179,12,"href"],[217,14,179,16],[217,15,179,17,"startsWith"],[217,25,179,27],[217,26,179,28],[217,30,179,32],[217,31,179,33],[217,35,179,37,"react_native_1"],[217,49,179,51],[217,50,179,52,"Platform"],[217,58,179,60],[217,59,179,61,"OS"],[217,61,179,63],[217,66,179,68],[217,71,179,73],[217,73,179,75],[218,8,180,12,"href"],[218,12,180,16],[218,15,180,19],[218,24,180,28,"href"],[218,28,180,32],[218,30,180,34],[219,6,181,8],[220,6,182,8,"Linking"],[220,13,182,15],[220,14,182,16,"openURL"],[220,21,182,23],[220,22,182,24,"href"],[220,26,182,28],[220,27,182,29],[221,6,183,8],[222,4,184,4],[223,4,185,4,"assertIsReady"],[223,17,185,17],[223,18,185,18],[223,19,185,19],[224,4,186,4],[224,8,186,10,"navigationRef"],[224,21,186,23],[224,24,186,26,"router_store_1"],[224,38,186,40],[224,39,186,41,"store"],[224,44,186,46],[224,45,186,47,"navigationRef"],[224,58,186,60],[224,59,186,61,"current"],[224,66,186,68],[225,4,187,4],[225,8,187,8,"navigationRef"],[225,21,187,21],[225,25,187,25],[225,29,187,29],[225,31,187,31],[226,6,188,8],[226,12,188,14],[226,16,188,18,"Error"],[226,21,188,23],[226,22,188,24],[226,104,188,106],[226,105,188,107],[227,4,189,4],[228,4,190,4],[228,8,190,8],[228,9,190,9,"router_store_1"],[228,23,190,23],[228,24,190,24,"store"],[228,29,190,29],[228,30,190,30,"linking"],[228,37,190,37],[228,39,190,39],[229,6,191,8],[229,12,191,14],[229,16,191,18,"Error"],[229,21,191,23],[229,22,191,24],[229,77,191,79],[229,78,191,80],[230,4,192,4],[231,4,193,4],[231,8,193,8,"href"],[231,12,193,12],[231,17,193,17],[231,21,193,21],[231,25,193,25,"href"],[231,29,193,29],[231,34,193,34],[231,39,193,39],[231,41,193,41],[232,6,194,8,"navigationRef"],[232,19,194,21],[232,20,194,22,"goBack"],[232,26,194,28],[232,27,194,29],[232,28,194,30],[233,6,195,8],[234,4,196,4],[235,4,197,4],[235,8,197,10,"rootState"],[235,17,197,19],[235,20,197,22,"navigationRef"],[235,33,197,35],[235,34,197,36,"getRootState"],[235,46,197,48],[235,47,197,49],[235,48,197,50],[236,4,198,4,"href"],[236,8,198,8],[236,11,198,11],[236,12,198,12],[236,13,198,13],[236,15,198,15,"href_1"],[236,21,198,21],[236,22,198,22,"resolveHrefStringWithSegments"],[236,51,198,51],[236,53,198,53,"href"],[236,57,198,57],[236,59,198,59,"router_store_1"],[236,73,198,73],[236,74,198,74,"store"],[236,79,198,79],[236,80,198,80,"getRouteInfo"],[236,92,198,92],[236,93,198,93],[236,94,198,94],[236,96,198,96,"options"],[236,103,198,103],[236,104,198,104],[237,4,199,4,"href"],[237,8,199,8],[237,11,199,11],[237,12,199,12],[237,13,199,13],[237,15,199,15,"getRoutesRedirects_1"],[237,35,199,35],[237,36,199,36,"applyRedirects"],[237,50,199,50],[237,52,199,52,"href"],[237,56,199,56],[237,58,199,58,"router_store_1"],[237,72,199,72],[237,73,199,73,"store"],[237,78,199,78],[237,79,199,79,"redirects"],[237,88,199,88],[237,89,199,89],[238,4,200,4],[239,4,201,4],[239,8,201,8],[239,9,201,9,"href"],[239,13,201,13],[239,15,201,15],[240,6,202,8],[241,4,203,4],[242,4,204,4],[242,8,204,10,"state"],[242,13,204,15],[242,16,204,18,"router_store_1"],[242,30,204,32],[242,31,204,33,"store"],[242,36,204,38],[242,37,204,39,"linking"],[242,44,204,46],[242,45,204,47,"getStateFromPath"],[242,61,204,63],[242,62,204,64,"href"],[242,66,204,68],[242,68,204,70,"router_store_1"],[242,82,204,84],[242,83,204,85,"store"],[242,88,204,90],[242,89,204,91,"linking"],[242,96,204,98],[242,97,204,99,"config"],[242,103,204,105],[242,104,204,106],[243,4,205,4],[243,8,205,8],[243,9,205,9,"state"],[243,14,205,14],[243,18,205,18,"state"],[243,23,205,23],[243,24,205,24,"routes"],[243,30,205,30],[243,31,205,31,"length"],[243,37,205,37],[243,42,205,42],[243,43,205,43],[243,45,205,45],[244,6,206,8,"console"],[244,13,206,15],[244,14,206,16,"error"],[244,19,206,21],[244,20,206,22],[244,86,206,88],[244,89,206,91,"href"],[244,93,206,95],[244,94,206,96],[245,6,207,8],[246,4,208,4],[247,4,209,4,"exports"],[247,11,209,11],[247,12,209,12,"routingQueue"],[247,24,209,24],[247,25,209,25,"add"],[247,28,209,28],[247,29,209,29,"getNavigateAction"],[247,46,209,46],[247,47,209,47,"state"],[247,52,209,52],[247,54,209,54,"rootState"],[247,63,209,63],[247,65,209,65,"options"],[247,72,209,72],[247,73,209,73,"event"],[247,78,209,78],[247,80,209,80,"options"],[247,87,209,87],[247,88,209,88,"withAnchor"],[247,98,209,98],[247,100,209,100,"options"],[247,107,209,107],[247,108,209,108,"dangerouslySingular"],[247,127,209,127],[247,128,209,128],[247,129,209,129],[248,2,210,0],[249,2,211,0],[249,11,211,9,"getNavigateAction"],[249,28,211,26,"getNavigateAction"],[249,29,211,27,"actionState"],[249,40,211,38],[249,42,211,40,"navigationState"],[249,57,211,55],[249,59,211,98],[250,4,211,98],[250,8,211,57,"type"],[250,12,211,61],[250,15,211,61,"arguments"],[250,24,211,61],[250,25,211,61,"length"],[250,31,211,61],[250,39,211,61,"arguments"],[250,48,211,61],[250,56,211,61,"undefined"],[250,65,211,61],[250,68,211,61,"arguments"],[250,77,211,61],[250,83,211,64],[250,93,211,74],[251,4,211,74],[251,8,211,76,"withAnchor"],[251,18,211,86],[251,21,211,86,"arguments"],[251,30,211,86],[251,31,211,86,"length"],[251,37,211,86],[251,44,211,86,"arguments"],[251,53,211,86],[251,59,211,86,"undefined"],[251,68,211,86],[252,4,211,86],[252,8,211,88,"singular"],[252,16,211,96],[252,19,211,96,"arguments"],[252,28,211,96],[252,29,211,96,"length"],[252,35,211,96],[252,42,211,96,"arguments"],[252,51,211,96],[252,57,211,96,"undefined"],[252,66,211,96],[253,4,212,4],[254,0,213,0],[255,0,214,0],[256,0,215,0],[257,0,216,0],[258,0,217,0],[259,0,218,0],[260,0,219,0],[261,0,220,0],[262,0,221,0],[263,0,222,0],[264,0,223,0],[265,0,224,0],[266,0,225,0],[267,4,226,4],[267,8,226,8,"actionStateRoute"],[267,24,226,24],[268,4,227,4],[269,4,228,4],[269,11,228,11,"actionState"],[269,22,228,22],[269,26,228,26,"navigationState"],[269,41,228,41],[269,43,228,43],[270,6,229,8],[270,10,229,14,"stateRoute"],[270,20,229,24],[270,23,229,27,"navigationState"],[270,38,229,42],[270,39,229,43,"routes"],[270,45,229,49],[270,46,229,50,"navigationState"],[270,61,229,65],[270,62,229,66,"index"],[270,67,229,71],[270,68,229,72],[271,6,230,8,"actionStateRoute"],[271,22,230,24],[271,25,230,27,"actionState"],[271,36,230,38],[271,37,230,39,"routes"],[271,43,230,45],[271,44,230,46,"actionState"],[271,55,230,57],[271,56,230,58,"routes"],[271,62,230,64],[271,63,230,65,"length"],[271,69,230,71],[271,72,230,74],[271,73,230,75],[271,74,230,76],[272,6,231,8],[272,10,231,14,"childState"],[272,20,231,24],[272,23,231,27,"actionStateRoute"],[272,39,231,43],[272,40,231,44,"state"],[272,45,231,49],[273,6,232,8],[273,10,232,14,"nextNavigationState"],[273,29,232,33],[273,32,232,36,"stateRoute"],[273,42,232,46],[273,43,232,47,"state"],[273,48,232,52],[274,6,233,8],[274,10,233,14,"dynamicName"],[274,21,233,25],[274,24,233,28],[274,25,233,29],[274,26,233,30],[274,28,233,32,"matchers_1"],[274,38,233,42],[274,39,233,43,"matchDynamicName"],[274,55,233,59],[274,57,233,61,"actionStateRoute"],[274,73,233,77],[274,74,233,78,"name"],[274,78,233,82],[274,79,233,83],[275,6,234,8],[275,10,234,14,"didActionAndCurrentStateDiverge"],[275,41,234,45],[275,44,234,48,"actionStateRoute"],[275,60,234,64],[275,61,234,65,"name"],[275,65,234,69],[275,70,234,74,"stateRoute"],[275,80,234,84],[275,81,234,85,"name"],[275,85,234,89],[275,89,235,12],[275,90,235,13,"childState"],[275,100,235,23],[275,104,236,12],[275,105,236,13,"nextNavigationState"],[275,124,236,32],[275,128,237,13,"dynamicName"],[275,139,237,24],[276,6,238,16],[277,6,239,16,"actionStateRoute"],[277,22,239,32],[277,23,239,33,"params"],[277,29,239,39],[277,32,239,42,"dynamicName"],[277,43,239,53],[277,44,239,54,"name"],[277,48,239,58],[277,49,239,59],[277,54,239,64,"stateRoute"],[277,64,239,74],[277,65,239,75,"params"],[277,71,239,81],[277,74,239,84,"dynamicName"],[277,85,239,95],[277,86,239,96,"name"],[277,90,239,100],[277,91,239,102],[278,6,240,8],[278,10,240,12,"didActionAndCurrentStateDiverge"],[278,41,240,43],[278,43,240,45],[279,8,241,12],[280,6,242,8],[281,6,243,8,"actionState"],[281,17,243,19],[281,20,243,22,"childState"],[281,30,243,32],[282,6,244,8,"navigationState"],[282,21,244,23],[282,24,244,26,"nextNavigationState"],[282,43,244,45],[283,4,245,4],[284,4,246,4],[285,0,247,0],[286,0,248,0],[287,0,249,0],[288,4,250,4],[288,8,250,10,"rootPayload"],[288,19,250,21],[288,22,250,24],[289,6,250,26,"params"],[289,12,250,32],[289,14,250,34],[289,15,250,35],[290,4,250,37],[290,5,250,38],[291,4,251,4],[291,8,251,8,"payload"],[291,15,251,15],[291,18,251,18,"rootPayload"],[291,29,251,29],[292,4,252,4],[292,8,252,8,"params"],[292,14,252,14],[292,17,252,17,"payload"],[292,24,252,24],[292,25,252,25,"params"],[292,31,252,31],[293,4,253,4],[294,4,254,4],[294,11,254,11,"actionStateRoute"],[294,27,254,27],[294,29,254,29],[295,6,255,8,"Object"],[295,12,255,14],[295,13,255,15,"assign"],[295,19,255,21],[295,20,255,22,"params"],[295,26,255,28],[295,28,255,30],[296,8,255,32],[296,11,255,35,"payload"],[296,18,255,42],[296,19,255,43,"params"],[296,25,255,49],[297,8,255,51],[297,11,255,54,"actionStateRoute"],[297,27,255,70],[297,28,255,71,"params"],[298,6,255,78],[298,7,255,79],[298,8,255,80],[299,6,256,8],[300,6,257,8,"payload"],[300,13,257,15],[300,14,257,16,"screen"],[300,20,257,22],[300,23,257,25,"actionStateRoute"],[300,39,257,41],[300,40,257,42,"name"],[300,44,257,46],[301,6,258,8],[302,6,259,8,"payload"],[302,13,259,15],[302,14,259,16,"params"],[302,20,259,22],[302,23,259,25],[303,8,259,27],[303,11,259,30,"params"],[304,6,259,37],[304,7,259,38],[305,6,260,8],[306,6,261,8],[306,13,261,15,"payload"],[306,20,261,22],[306,21,261,23,"params"],[306,27,261,29],[306,28,261,30],[306,36,261,38],[306,37,261,39],[307,6,262,8],[308,6,263,8],[309,6,264,8,"payload"],[309,13,264,15],[309,16,264,18,"payload"],[309,23,264,25],[309,24,264,26,"params"],[309,30,264,32],[310,6,265,8,"params"],[310,12,265,14],[310,15,265,17,"payload"],[310,22,265,24],[311,6,266,8,"actionStateRoute"],[311,22,266,24],[311,25,266,27,"actionStateRoute"],[311,41,266,43],[311,42,266,44,"state"],[311,47,266,49],[311,49,266,51,"routes"],[311,55,266,57],[311,56,266,58,"actionStateRoute"],[311,72,266,74],[311,73,266,75,"state"],[311,78,266,80],[311,80,266,82,"routes"],[311,86,266,88],[311,87,266,89,"length"],[311,93,266,95],[311,96,266,98],[311,97,266,99],[311,98,266,100],[312,4,267,4],[313,4,268,4],[313,8,268,8,"type"],[313,12,268,12],[313,17,268,17],[313,23,268,23],[313,27,268,27,"navigationState"],[313,42,268,42],[313,43,268,43,"type"],[313,47,268,47],[313,52,268,52],[313,59,268,59],[313,61,268,61],[314,6,269,8,"type"],[314,10,269,12],[314,13,269,15],[314,23,269,25],[315,4,270,4],[315,5,270,5],[315,11,271,9],[315,15,271,13,"navigationState"],[315,30,271,28],[315,31,271,29,"type"],[315,35,271,33],[315,40,271,38],[315,50,271,48],[315,52,271,50],[316,6,272,8,"type"],[316,10,272,12],[316,13,272,15],[316,22,272,24],[317,4,273,4],[317,5,273,5],[317,11,274,9],[317,15,274,13,"type"],[317,19,274,17],[317,24,274,22],[317,33,274,31],[317,37,274,35,"navigationState"],[317,52,274,50],[317,53,274,51,"type"],[317,57,274,55],[317,62,274,60],[317,70,274,68],[317,72,274,70],[318,6,275,8,"type"],[318,10,275,12],[318,13,275,15],[318,22,275,24],[319,4,276,4],[320,4,277,4],[320,8,277,8,"withAnchor"],[320,18,277,18],[320,23,277,23,"undefined"],[320,32,277,32],[320,34,277,34],[321,6,278,8],[321,10,278,12,"rootPayload"],[321,21,278,23],[321,22,278,24,"params"],[321,28,278,30],[321,29,278,31,"initial"],[321,36,278,38],[321,38,278,40],[322,8,279,12],[322,12,279,16,"process"],[322,19,279,23],[322,20,279,24,"env"],[322,23,279,27],[322,24,279,28,"NODE_ENV"],[322,32,279,36],[322,37,279,41],[322,49,279,53],[322,51,279,55],[323,10,280,16,"console"],[323,17,280,23],[323,18,280,24,"warn"],[323,22,280,28],[323,23,280,29],[323,97,280,103],[323,98,280,104],[324,8,281,12],[325,6,282,8],[326,6,283,8],[327,0,284,0],[328,0,285,0],[329,0,286,0],[330,0,287,0],[331,0,288,0],[332,0,289,0],[333,0,290,0],[334,0,291,0],[335,6,292,8,"rootPayload"],[335,17,292,19],[335,18,292,20,"params"],[335,24,292,26],[335,25,292,27,"initial"],[335,32,292,34],[335,35,292,37],[335,36,292,38,"withAnchor"],[335,46,292,48],[336,4,293,4],[337,4,294,4],[337,11,294,11],[338,6,295,8,"type"],[338,10,295,12],[339,6,296,8,"target"],[339,12,296,14],[339,14,296,16,"navigationState"],[339,29,296,31],[339,30,296,32,"key"],[339,33,296,35],[340,6,297,8,"payload"],[340,13,297,15],[340,15,297,17],[341,8,298,12],[342,8,299,12,"name"],[342,12,299,16],[342,14,299,18,"rootPayload"],[342,25,299,29],[342,26,299,30,"screen"],[342,32,299,36],[343,8,300,12,"params"],[343,14,300,18],[343,16,300,20,"rootPayload"],[343,27,300,31],[343,28,300,32,"params"],[343,34,300,38],[344,8,301,12,"singular"],[345,6,302,8],[346,4,303,4],[346,5,303,5],[347,2,304,0],[348,0,304,1],[348,3]],"functionMap":{"names":["<global>","<anonymous>","desc.get","ownKeys","assertIsReady","exports.routingQueue.subscribe","exports.routingQueue.snapshot","exports.routingQueue.add","exports.routingQueue.run","navigate","reload","prefetch","push","dismiss","dismissTo","replace","dismissAll","goBack","canGoBack","canDismiss","setParams","linkTo","getNavigateAction"],"mappings":"AAA;0ECC;sCCI,2BD;CDG,KC;CDG;gFCC;CDE,IC;CDE;mDCC;kBEC;gDFC;SEI;KFE;CDQ;AIyB;CJI;IKI;eJE;SIE;KLC;IMC;KNE;IOC;KPS;IQC;KRS;ASE;CTE;AUC;CVG;AWC;CXE;AYC;CZE;AaC;CbK;AcC;CdE;AeC;CfE;AgBC;ChBK;AiBC;CjBM;AkBC;ClBa;AmBC;CnBe;AoBC;CpBM;AqBC;CrBsC;AsBC;CtB6F"}},"type":"js/module"}]} |