mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 20:21:01 +00:00
1 line
168 KiB
Plaintext
1 line
168 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/asyncToGenerator","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"YisBBiy2Xm9DEVdFebZ2nbgAHBo=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/slicedToArray","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"5y7e5+zC7teYEEC6niD9f5zII1M=","exportNames":["*"],"imports":1}},{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":51,"index":51}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"react-native","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":52},"end":{"line":12,"column":22,"index":195}}],"key":"KyzuX10g6ixS9UfynhmjlvCIG3g=","exportNames":["*"],"imports":1}},{"name":"@expo/vector-icons","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0,"index":196},"end":{"line":13,"column":46,"index":242}}],"key":"ow7vkrqkIckRjlSi/+MhMmRYtUE=","exportNames":["*"],"imports":1}},{"name":"@react-navigation/bottom-tabs","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":14,"column":0,"index":243},"end":{"line":14,"column":73,"index":316}}],"key":"+CsiEPZJMQUbFs9pwhg0Pji1O3k=","exportNames":["*"],"imports":1}},{"name":"expo-image-picker","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0,"index":317},"end":{"line":15,"column":49,"index":366}}],"key":"XQFgv2+WadF9xV+S67CI6D8lClA=","exportNames":["*"],"imports":1}},{"name":"../contexts/AuthContext","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":16,"column":0,"index":367},"end":{"line":16,"column":50,"index":417}}],"key":"oNCgyH4yx4pAIVZXLqqRGB2kuCY=","exportNames":["*"],"imports":1}},{"name":"react/jsx-dev-runtime","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"L9D70Z4hi4aGuui1ysja/oQ5ytI=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _jsxFileName = \"/app/frontend/src/screens/HomeScreen.tsx\",\n _s = $RefreshSig$(),\n _s2 = $RefreshSig$();\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n function _interopNamespace(e) {\n if (e && e.__esModule) return e;\n var n = {};\n if (e) Object.keys(e).forEach(function (k) {\n var d = Object.getOwnPropertyDescriptor(e, k);\n Object.defineProperty(n, k, d.get ? d : {\n enumerable: true,\n get: function () {\n return e[k];\n }\n });\n });\n n.default = e;\n return n;\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return HomeScreen;\n }\n });\n var _babelRuntimeHelpersAsyncToGenerator = require(_dependencyMap[0], \"@babel/runtime/helpers/asyncToGenerator\");\n var _asyncToGenerator = _interopDefault(_babelRuntimeHelpersAsyncToGenerator);\n var _babelRuntimeHelpersSlicedToArray = require(_dependencyMap[1], \"@babel/runtime/helpers/slicedToArray\");\n var _slicedToArray = _interopDefault(_babelRuntimeHelpersSlicedToArray);\n var _react = require(_dependencyMap[2], \"react\");\n var _reactNative = require(_dependencyMap[3], \"react-native\");\n var _expoVectorIcons = require(_dependencyMap[4], \"@expo/vector-icons\");\n var _reactNavigationBottomTabs = require(_dependencyMap[5], \"@react-navigation/bottom-tabs\");\n var _expoImagePicker = require(_dependencyMap[6], \"expo-image-picker\");\n var ImagePicker = _interopNamespace(_expoImagePicker);\n var _contextsAuthContext = require(_dependencyMap[7], \"../contexts/AuthContext\");\n var _reactJsxDevRuntime = require(_dependencyMap[8], \"react/jsx-dev-runtime\");\n var _Dimensions$get = _reactNative.Dimensions.get('window'),\n width = _Dimensions$get.width;\n function HomeTab() {\n _s();\n var _useAuth = (0, _contextsAuthContext.useAuth)(),\n user = _useAuth.user;\n var _useState = (0, _react.useState)(null),\n _useState2 = (0, _slicedToArray.default)(_useState, 2),\n profileImage = _useState2[0],\n setProfileImage = _useState2[1];\n var pickImage = /*#__PURE__*/function () {\n var _ref = (0, _asyncToGenerator.default)(function* () {\n var permissionResult = yield ImagePicker.requestMediaLibraryPermissionsAsync();\n if (permissionResult.granted === false) {\n _reactNative.Alert.alert('Permission Required', 'Permission to access camera roll is required!');\n return;\n }\n var result = yield ImagePicker.launchImageLibraryAsync({\n mediaTypes: ImagePicker.MediaTypeOptions.Images,\n allowsEditing: true,\n aspect: [1, 1],\n quality: 0.5,\n base64: true\n });\n if (!result.canceled && result.assets[0].base64) {\n var base64Image = `data:image/jpeg;base64,${result.assets[0].base64}`;\n setProfileImage(base64Image);\n // TODO: Save to backend\n }\n });\n return function pickImage() {\n return _ref.apply(this, arguments);\n };\n }();\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.container,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.ScrollView, {\n showsVerticalScrollIndicator: false,\n contentContainerStyle: styles.scrollContent,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.header,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.headerLeft,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.profileImage,\n onPress: pickImage,\n children: profileImage ? /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Image, {\n source: {\n uri: profileImage\n },\n style: styles.profileImageSrc\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 54,\n columnNumber: 17\n }, this) : /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"person\",\n size: 24,\n color: \"#6B7280\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 56,\n columnNumber: 17\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 52,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.profileBadge,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"star\",\n size: 12,\n color: \"#FFD700\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 60,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.trustScore,\n children: \"750\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 61,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 59,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 51,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.headerRight,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.iconButton,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"qr-code-outline\",\n size: 24,\n color: \"#1F2937\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 66,\n columnNumber: 15\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 65,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.iconButton,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"notifications-outline\",\n size: 24,\n color: \"#1F2937\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 69,\n columnNumber: 15\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 68,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.iconButton,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"settings-outline\",\n size: 24,\n color: \"#1F2937\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 72,\n columnNumber: 15\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 71,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 64,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 50,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.announcementWidget,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.ScrollView, {\n horizontal: true,\n showsHorizontalScrollIndicator: false,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.announcement,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.announcementTitle,\n children: \"\\uD83C\\uDF89 Welcome to PezkuwiChain!\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 81,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.announcementText,\n children: \"Start your citizenship journey today\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 82,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 80,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.announcement,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.announcementTitle,\n children: \"\\uD83D\\uDCE2 New Feature\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 85,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.announcementText,\n children: \"Vote on governance proposals\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 86,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 84,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 79,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 78,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.quickActionsContainer,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.sectionTitle,\n children: \"Quick Actions\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 93,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.actionsGrid,\n children: QUICK_ACTIONS.map((action, index) => /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.actionCard, index % 4 === 0 && styles.actionCardFirst, index % 4 === 3 && styles.actionCardLast],\n activeOpacity: 0.7,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: [styles.actionIcon, {\n backgroundColor: action.color\n }],\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: action.icon,\n size: 24,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 105,\n columnNumber: 19\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 104,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionLabel,\n children: action.label\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 107,\n columnNumber: 17\n }, this)]\n }, action.id, true, {\n fileName: _jsxFileName,\n lineNumber: 96,\n columnNumber: 15\n }, this))\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 94,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 92,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 48,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 47,\n columnNumber: 5\n }, this);\n }\n _s(HomeTab, \"xEp7SEfX94u+oibpmCw6eCxkmPE=\", false, function () {\n return [_contextsAuthContext.useAuth];\n });\n _c = HomeTab;\n function WalletTab() {\n _s2();\n var _useAuth2 = (0, _contextsAuthContext.useAuth)(),\n user = _useAuth2.user;\n var _useState3 = (0, _react.useState)('Loading...'),\n _useState4 = (0, _slicedToArray.default)(_useState3, 2),\n hezBalance = _useState4[0],\n setHezBalance = _useState4[1];\n var _useState5 = (0, _react.useState)('Loading...'),\n _useState6 = (0, _slicedToArray.default)(_useState5, 2),\n pezBalance = _useState6[0],\n setPezBalance = _useState6[1];\n var _useState7 = (0, _react.useState)(true),\n _useState8 = (0, _slicedToArray.default)(_useState7, 2),\n loading = _useState8[0],\n setLoading = _useState8[1];\n var TEST_WALLET = '5GgTgG9sRmPQAYU1RsTejZYnZRjwzKZKWD3awtuqjHioki45';\n (0, _react.useEffect)(() => {\n fetchBalance();\n }, []);\n var fetchBalance = /*#__PURE__*/function () {\n var _ref2 = (0, _asyncToGenerator.default)(function* () {\n try {\n var backendUrl = \"https://digital-kurdistan.preview.emergentagent.com\" || 'http://localhost:8001';\n var response = yield fetch(`${backendUrl}/api/blockchain/balance`, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json'\n },\n body: JSON.stringify({\n address: TEST_WALLET\n })\n });\n if (response.ok) {\n var data = yield response.json();\n setHezBalance(parseFloat(data.hez).toFixed(2));\n setPezBalance(parseFloat(data.pez).toFixed(2));\n } else {\n setHezBalance('Error');\n setPezBalance('Error');\n }\n } catch (error) {\n console.error('Balance fetch error:', error);\n setHezBalance('Error');\n setPezBalance('Error');\n } finally {\n setLoading(false);\n }\n });\n return function fetchBalance() {\n return _ref2.apply(this, arguments);\n };\n }();\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.container,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.ScrollView, {\n contentContainerStyle: styles.walletScrollContent,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.walletHeader,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.walletTitle,\n children: \"My Wallet\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 164,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n onPress: fetchBalance,\n style: styles.refreshButton,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"refresh\",\n size: 20,\n color: \"#EE2A35\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 166,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 165,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 163,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.balanceRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.balanceCardNew,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Image, {\n source: {\n uri: 'https://customer-assets.emergentagent.com/job_mobile-wallet-app-3/artifacts/izidxcrq_hez_logo_kurdistangunesi.png'\n },\n style: styles.tokenLogoNew\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 173,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokenSymbolNew,\n children: \"HEZ\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 177,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.balanceAmountNew,\n children: hezBalance\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 178,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokenNameNew,\n children: \"Hemwelat\\xEE Token\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 179,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 172,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.balanceCardNew,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Image, {\n source: {\n uri: 'https://customer-assets.emergentagent.com/job_mobile-wallet-app-3/artifacts/jjj4s5p3_pez_logo.jpg'\n },\n style: styles.tokenLogoNew\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 183,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokenSymbolNew,\n children: \"PEZ\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 187,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.balanceAmountNew,\n children: pezBalance\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 188,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokenNameNew,\n children: \"Pezkuw\\xEE Token\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 189,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 182,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 171,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.actionsContainer,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.actionsRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.actionBtn, {\n backgroundColor: '#34D399'\n }],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"arrow-up\",\n size: 24,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 198,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionBtnText,\n children: \"Send\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 199,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 197,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.actionBtn, {\n backgroundColor: '#3B82F6'\n }],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"arrow-down\",\n size: 24,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 202,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionBtnText,\n children: \"Receive\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 203,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 201,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.actionBtn, {\n backgroundColor: '#8B5CF6'\n }],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"swap-horizontal\",\n size: 24,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 206,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionBtnText,\n children: \"Swap\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 207,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 205,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.actionBtn, {\n backgroundColor: '#1F2937'\n }],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"people\",\n size: 24,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 210,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionBtnText,\n children: \"P2P\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 211,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 209,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 196,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.actionsRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.actionBtn, {\n backgroundColor: '#EF4444'\n }],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"megaphone\",\n size: 24,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 218,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionBtnText,\n children: \"Vote\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 219,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 217,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.actionBtn, {\n backgroundColor: '#F59E0B'\n }],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"apps\",\n size: 24,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 222,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionBtnText,\n children: \"DApps\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 223,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 221,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.actionBtn, {\n backgroundColor: '#10B981'\n }],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"leaf\",\n size: 24,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 226,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionBtnText,\n children: \"Staking\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 227,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 225,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.actionBtn, {\n backgroundColor: '#6366F1'\n }],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"link\",\n size: 24,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 230,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.actionBtnText,\n children: \"Connect\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 231,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 229,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 216,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 194,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.tokensContainer,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokensTitle,\n children: \"Tokens\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 238,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.tokenItem,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.tokenItemLeft,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.tokenIconContainer,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Image, {\n source: {\n uri: 'https://customer-assets.emergentagent.com/job_mobile-wallet-app-3/artifacts/sxd0qsv2_usdt_logo.jpg'\n },\n style: styles.tokenIcon\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 244,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Image, {\n source: {\n uri: 'https://customer-assets.emergentagent.com/job_mobile-wallet-app-3/artifacts/jjj4s5p3_pez_logo.jpg'\n },\n style: styles.networkBadge\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 248,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 243,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokenItemName,\n children: \"USDT\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 254,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokenItemNetwork,\n children: \"PEZ Network\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 255,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 253,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 242,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.tokenItemRight,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokenItemBalance,\n children: \"0\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 259,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokenItemUsd,\n children: \"$0\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 260,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 258,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 241,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 237,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 161,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 160,\n columnNumber: 5\n }, this);\n }\n _s2(WalletTab, \"osbCN528CgM7tSTrgQcFeX6sHT4=\", false, function () {\n return [_contextsAuthContext.useAuth];\n });\n _c2 = WalletTab;\n function CitizensTab() {\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.container,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.placeholderText,\n children: \"Citizens Screen\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 274,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 273,\n columnNumber: 5\n }, this);\n }\n _c3 = CitizensTab;\n function ReferralTab() {\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.container,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.placeholderText,\n children: \"Referral Screen\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 282,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 281,\n columnNumber: 5\n }, this);\n }\n _c4 = ReferralTab;\n function ProfileTab() {\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.container,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.placeholderText,\n children: \"Profile Screen\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 290,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 289,\n columnNumber: 5\n }, this);\n }\n _c5 = ProfileTab;\n var Tab = (0, _reactNavigationBottomTabs.createBottomTabNavigator)();\n function HomeScreen() {\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Tab.Navigator, {\n screenOptions: {\n headerShown: false,\n tabBarActiveTintColor: '#EE2A35',\n tabBarInactiveTintColor: '#6B7280',\n tabBarStyle: styles.tabBar\n },\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Tab.Screen, {\n name: \"HomeTab\",\n component: HomeTab,\n options: {\n tabBarLabel: 'Home',\n tabBarIcon: _ref3 => {\n var color = _ref3.color,\n size = _ref3.size;\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"home\",\n size: size,\n color: color\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 313,\n columnNumber: 13\n }, this);\n }\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 307,\n columnNumber: 7\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Tab.Screen, {\n name: \"Wallet\",\n component: WalletTab,\n options: {\n tabBarLabel: 'Wallet',\n tabBarIcon: _ref4 => {\n var color = _ref4.color,\n size = _ref4.size;\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"wallet\",\n size: size,\n color: color\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 323,\n columnNumber: 13\n }, this);\n }\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 317,\n columnNumber: 7\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Tab.Screen, {\n name: \"Citizens\",\n component: CitizensTab,\n options: {\n tabBarLabel: 'Citizens',\n tabBarIcon: _ref5 => {\n var color = _ref5.color,\n size = _ref5.size;\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"people\",\n size: size,\n color: color\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 333,\n columnNumber: 13\n }, this);\n }\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 327,\n columnNumber: 7\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Tab.Screen, {\n name: \"Referral\",\n component: ReferralTab,\n options: {\n tabBarLabel: 'Referral',\n tabBarIcon: _ref6 => {\n var color = _ref6.color,\n size = _ref6.size;\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"gift\",\n size: size,\n color: color\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 343,\n columnNumber: 13\n }, this);\n }\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 337,\n columnNumber: 7\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Tab.Screen, {\n name: \"Profile\",\n component: ProfileTab,\n options: {\n tabBarLabel: 'Profile',\n tabBarIcon: _ref7 => {\n var color = _ref7.color,\n size = _ref7.size;\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"person\",\n size: size,\n color: color\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 353,\n columnNumber: 13\n }, this);\n }\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 347,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 299,\n columnNumber: 5\n }, this);\n }\n _c6 = HomeScreen;\n var QUICK_ACTIONS = [{\n id: '1',\n label: 'Send',\n icon: 'arrow-forward',\n color: '#EE2A35'\n }, {\n id: '2',\n label: 'Receive',\n icon: 'arrow-down',\n color: '#00A651'\n }, {\n id: '3',\n label: 'Swap',\n icon: 'swap-horizontal',\n color: '#FFD700'\n }, {\n id: '4',\n label: 'Vote',\n icon: 'checkmark-circle',\n color: '#3B82F6'\n }, {\n id: '5',\n label: 'Stake',\n icon: 'lock-closed',\n color: '#8B5CF6'\n }, {\n id: '6',\n label: 'Identity',\n icon: 'card',\n color: '#10B981'\n }, {\n id: '7',\n label: 'Passport',\n icon: 'document-text',\n color: '#F59E0B'\n }, {\n id: '8',\n label: 'Education',\n icon: 'school',\n color: '#EC4899'\n }, {\n id: '9',\n label: 'Business',\n icon: 'briefcase',\n color: '#6366F1'\n }, {\n id: '10',\n label: 'Treasury',\n icon: 'cash',\n color: '#14B8A6'\n }, {\n id: '11',\n label: 'Proposals',\n icon: 'bulb',\n color: '#F97316'\n }, {\n id: '12',\n label: 'History',\n icon: 'time',\n color: '#84CC16'\n }, {\n id: '13',\n label: 'QR Scan',\n icon: 'qr-code',\n color: '#06B6D4'\n }, {\n id: '14',\n label: 'Settings',\n icon: 'settings',\n color: '#64748B'\n }, {\n id: '15',\n label: 'Help',\n icon: 'help-circle',\n color: '#A855F7'\n }, {\n id: '16',\n label: 'Rewards',\n icon: 'star',\n color: '#FBBF24'\n }, {\n id: '17',\n label: 'Trust',\n icon: 'heart',\n color: '#EF4444'\n }, {\n id: '18',\n label: 'Parliament',\n icon: 'flag',\n color: '#3B82F6'\n }, {\n id: '19',\n label: 'Ministry',\n icon: 'business',\n color: '#10B981'\n }, {\n id: '20',\n label: 'Justice',\n icon: 'hammer',\n color: '#78350F'\n }, {\n id: '21',\n label: 'Tax',\n icon: 'receipt',\n color: '#991B1B'\n }, {\n id: '22',\n label: 'Census',\n icon: 'people-circle',\n color: '#1E40AF'\n }, {\n id: '23',\n label: 'Land',\n icon: 'map',\n color: '#065F46'\n }, {\n id: '24',\n label: 'Marriage',\n icon: 'heart-circle',\n color: '#BE185D'\n }, {\n id: '25',\n label: 'Birth',\n icon: 'happy',\n color: '#7C3AED'\n }, {\n id: '26',\n label: 'Death',\n icon: 'sad',\n color: '#404040'\n }, {\n id: '27',\n label: 'Trade',\n icon: 'storefront',\n color: '#0891B2'\n }, {\n id: '28',\n label: 'Export',\n icon: 'airplane',\n color: '#4338CA'\n }, {\n id: '29',\n label: 'Import',\n icon: 'boat',\n color: '#15803D'\n }, {\n id: '30',\n label: 'More',\n icon: 'apps',\n color: '#9333EA'\n }];\n var styles = _reactNative.StyleSheet.create({\n container: {\n flex: 1,\n backgroundColor: '#F8F9FA'\n },\n scrollContent: {\n paddingBottom: 80\n },\n walletScrollContent: {\n paddingBottom: 80\n },\n header: {\n flexDirection: 'row',\n justifyContent: 'space-between',\n alignItems: 'center',\n padding: 16,\n backgroundColor: '#FFF',\n borderBottomWidth: 1,\n borderBottomColor: '#E5E7EB'\n },\n headerLeft: {\n position: 'relative'\n },\n profileImage: {\n width: 50,\n height: 50,\n borderRadius: 25,\n backgroundColor: '#F3F4F6',\n alignItems: 'center',\n justifyContent: 'center',\n overflow: 'hidden'\n },\n profileImageSrc: {\n width: 50,\n height: 50\n },\n profileBadge: {\n position: 'absolute',\n bottom: -5,\n right: -5,\n backgroundColor: '#1F2937',\n borderRadius: 12,\n paddingHorizontal: 6,\n paddingVertical: 2,\n flexDirection: 'row',\n alignItems: 'center',\n gap: 2\n },\n trustScore: {\n fontSize: 10,\n fontWeight: '600',\n color: '#FFF'\n },\n headerRight: {\n flexDirection: 'row',\n gap: 12\n },\n iconButton: {\n padding: 8\n },\n announcementWidget: {\n padding: 16\n },\n announcement: {\n backgroundColor: '#FFF',\n padding: 16,\n borderRadius: 12,\n marginRight: 12,\n width: width - 64,\n borderLeftWidth: 4,\n borderLeftColor: '#EE2A35'\n },\n announcementTitle: {\n fontSize: 16,\n fontWeight: '600',\n color: '#1F2937',\n marginBottom: 4\n },\n announcementText: {\n fontSize: 14,\n color: '#6B7280'\n },\n quickActionsContainer: {\n padding: 16\n },\n sectionTitle: {\n fontSize: 18,\n fontWeight: '700',\n color: '#1F2937',\n marginBottom: 16\n },\n actionsGrid: {\n flexDirection: 'row',\n flexWrap: 'wrap',\n justifyContent: 'space-between'\n },\n actionCard: {\n width: (width - 64) / 4,\n backgroundColor: '#FFF',\n padding: 12,\n borderRadius: 12,\n alignItems: 'center',\n marginBottom: 12,\n shadowColor: '#000',\n shadowOffset: {\n width: 0,\n height: 2\n },\n shadowOpacity: 0.05,\n shadowRadius: 4,\n elevation: 2\n },\n actionCardFirst: {\n marginRight: 'auto'\n },\n actionCardLast: {\n marginLeft: 'auto'\n },\n actionIcon: {\n width: 50,\n height: 50,\n borderRadius: 12,\n alignItems: 'center',\n justifyContent: 'center',\n marginBottom: 8\n },\n actionLabel: {\n fontSize: 11,\n color: '#374151',\n textAlign: 'center'\n },\n walletHeader: {\n padding: 20,\n backgroundColor: '#FFF',\n borderBottomWidth: 1,\n borderBottomColor: '#E5E7EB',\n flexDirection: 'row',\n justifyContent: 'space-between',\n alignItems: 'center'\n },\n walletTitle: {\n fontSize: 24,\n fontWeight: '700',\n color: '#1F2937'\n },\n refreshButton: {\n padding: 8,\n borderRadius: 8,\n backgroundColor: '#FEE2E2'\n },\n balanceCards: {\n padding: 16,\n gap: 12\n },\n balanceCard: {\n backgroundColor: '#FFF',\n padding: 20,\n borderRadius: 16,\n borderWidth: 1,\n borderColor: '#E5E7EB'\n },\n balanceCardHeader: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 8,\n marginBottom: 12\n },\n tokenLogo: {\n width: 32,\n height: 32,\n borderRadius: 16\n },\n tokenSymbol: {\n fontSize: 18,\n fontWeight: '700',\n color: '#1F2937'\n },\n balanceAmount: {\n fontSize: 32,\n fontWeight: '700',\n color: '#1F2937',\n marginBottom: 4\n },\n balanceUsd: {\n fontSize: 16,\n color: '#6B7280'\n },\n walletActions: {\n flexDirection: 'row',\n padding: 16,\n gap: 12\n },\n walletActionButton: {\n flex: 1,\n backgroundColor: '#EE2A35',\n padding: 16,\n borderRadius: 12,\n alignItems: 'center',\n gap: 4\n },\n walletActionText: {\n color: '#FFF',\n fontSize: 14,\n fontWeight: '600'\n },\n placeholderText: {\n flex: 1,\n textAlign: 'center',\n marginTop: 100,\n fontSize: 18,\n color: '#6B7280'\n },\n tabBar: {\n borderTopWidth: 1,\n borderTopColor: '#E5E7EB',\n paddingBottom: 20,\n paddingTop: 8,\n backgroundColor: '#FFF'\n },\n // New Wallet Styles\n balanceRow: {\n flexDirection: 'row',\n padding: 16,\n gap: 12\n },\n balanceCardNew: {\n flex: 1,\n backgroundColor: '#FFF',\n padding: 16,\n borderRadius: 16,\n alignItems: 'center',\n shadowColor: '#000',\n shadowOffset: {\n width: 0,\n height: 2\n },\n shadowOpacity: 0.1,\n shadowRadius: 8,\n elevation: 3\n },\n tokenLogoNew: {\n width: 48,\n height: 48,\n borderRadius: 24,\n marginBottom: 8\n },\n tokenSymbolNew: {\n fontSize: 16,\n fontWeight: '700',\n color: '#1F2937',\n marginBottom: 4\n },\n balanceAmountNew: {\n fontSize: 24,\n fontWeight: '700',\n color: '#EE2A35',\n marginBottom: 4\n },\n tokenNameNew: {\n fontSize: 12,\n color: '#6B7280'\n },\n actionsContainer: {\n margin: 16,\n backgroundColor: '#FFF',\n padding: 16,\n borderRadius: 16,\n shadowColor: '#000',\n shadowOffset: {\n width: 0,\n height: 2\n },\n shadowOpacity: 0.1,\n shadowRadius: 8,\n elevation: 3\n },\n actionsRow: {\n flexDirection: 'row',\n justifyContent: 'space-between',\n marginBottom: 12\n },\n actionBtn: {\n width: (width - 80) / 4,\n padding: 12,\n borderRadius: 12,\n alignItems: 'center',\n justifyContent: 'center'\n },\n actionBtnText: {\n color: '#FFF',\n fontSize: 11,\n fontWeight: '600',\n marginTop: 4\n },\n tokensContainer: {\n margin: 16,\n marginTop: 0\n },\n tokensTitle: {\n fontSize: 18,\n fontWeight: '700',\n color: '#1F2937',\n marginBottom: 12,\n paddingHorizontal: 4\n },\n tokenItem: {\n flexDirection: 'row',\n justifyContent: 'space-between',\n alignItems: 'center',\n backgroundColor: '#FFF',\n padding: 16,\n borderRadius: 12,\n marginBottom: 8,\n shadowColor: '#000',\n shadowOffset: {\n width: 0,\n height: 1\n },\n shadowOpacity: 0.05,\n shadowRadius: 4,\n elevation: 2\n },\n tokenItemLeft: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 12\n },\n tokenIconContainer: {\n position: 'relative',\n width: 40,\n height: 40\n },\n tokenIcon: {\n width: 40,\n height: 40,\n borderRadius: 20\n },\n networkBadge: {\n position: 'absolute',\n right: -4,\n bottom: -4,\n width: 16,\n height: 16,\n borderRadius: 8,\n borderWidth: 2,\n borderColor: '#FFF'\n },\n tokenItemName: {\n fontSize: 16,\n fontWeight: '600',\n color: '#1F2937'\n },\n tokenItemNetwork: {\n fontSize: 12,\n color: '#6B7280'\n },\n tokenItemRight: {\n alignItems: 'flex-end'\n },\n tokenItemBalance: {\n fontSize: 16,\n fontWeight: '600',\n color: '#1F2937'\n },\n tokenItemUsd: {\n fontSize: 12,\n color: '#6B7280'\n }\n });\n var _c, _c2, _c3, _c4, _c5, _c6;\n $RefreshReg$(_c, \"HomeTab\");\n $RefreshReg$(_c2, \"WalletTab\");\n $RefreshReg$(_c3, \"CitizensTab\");\n $RefreshReg$(_c4, \"ReferralTab\");\n $RefreshReg$(_c5, \"ProfileTab\");\n $RefreshReg$(_c6, \"HomeScreen\");\n});","lineCount":1530,"map":[[30,2,297,15,"Object"],[30,8,297,15],[30,9,297,15,"defineProperty"],[30,23,297,15],[30,24,297,15,"exports"],[30,31,297,15],[31,4,297,15,"enumerable"],[31,14,297,15],[32,4,297,15,"get"],[32,7,297,15],[32,18,297,15,"get"],[32,19,297,15],[33,6,297,15],[33,13,297,15,"HomeScreen"],[33,23,297,15],[34,4,297,15],[35,2,297,15],[36,2,359,1],[36,6,359,1,"_babelRuntimeHelpersAsyncToGenerator"],[36,42,359,1],[36,45,359,1,"require"],[36,52,359,1],[36,53,359,1,"_dependencyMap"],[36,67,359,1],[37,2,359,1],[37,6,359,1,"_asyncToGenerator"],[37,23,359,1],[37,26,359,1,"_interopDefault"],[37,41,359,1],[37,42,359,1,"_babelRuntimeHelpersAsyncToGenerator"],[37,78,359,1],[38,2,359,1],[38,6,359,1,"_babelRuntimeHelpersSlicedToArray"],[38,39,359,1],[38,42,359,1,"require"],[38,49,359,1],[38,50,359,1,"_dependencyMap"],[38,64,359,1],[39,2,359,1],[39,6,359,1,"_slicedToArray"],[39,20,359,1],[39,23,359,1,"_interopDefault"],[39,38,359,1],[39,39,359,1,"_babelRuntimeHelpersSlicedToArray"],[39,72,359,1],[40,2,1,0],[40,6,1,0,"_react"],[40,12,1,0],[40,15,1,0,"require"],[40,22,1,0],[40,23,1,0,"_dependencyMap"],[40,37,1,0],[41,2,2,0],[41,6,2,0,"_reactNative"],[41,18,2,0],[41,21,2,0,"require"],[41,28,2,0],[41,29,2,0,"_dependencyMap"],[41,43,2,0],[42,2,13,0],[42,6,13,0,"_expoVectorIcons"],[42,22,13,0],[42,25,13,0,"require"],[42,32,13,0],[42,33,13,0,"_dependencyMap"],[42,47,13,0],[43,2,14,0],[43,6,14,0,"_reactNavigationBottomTabs"],[43,32,14,0],[43,35,14,0,"require"],[43,42,14,0],[43,43,14,0,"_dependencyMap"],[43,57,14,0],[44,2,15,0],[44,6,15,0,"_expoImagePicker"],[44,22,15,0],[44,25,15,0,"require"],[44,32,15,0],[44,33,15,0,"_dependencyMap"],[44,47,15,0],[45,2,15,0],[45,6,15,0,"ImagePicker"],[45,17,15,0],[45,20,15,0,"_interopNamespace"],[45,37,15,0],[45,38,15,0,"_expoImagePicker"],[45,54,15,0],[46,2,16,0],[46,6,16,0,"_contextsAuthContext"],[46,26,16,0],[46,29,16,0,"require"],[46,36,16,0],[46,37,16,0,"_dependencyMap"],[46,51,16,0],[47,2,16,50],[47,6,16,50,"_reactJsxDevRuntime"],[47,25,16,50],[47,28,16,50,"require"],[47,35,16,50],[47,36,16,50,"_dependencyMap"],[47,50,16,50],[48,2,18,0],[48,6,18,0,"_Dimensions$get"],[48,21,18,0],[48,24,18,18,"Dimensions"],[48,36,18,28],[48,37,18,28,"Dimensions"],[48,47,18,28],[48,48,18,29,"get"],[48,51,18,32],[48,52,18,33],[48,60,18,41],[48,61,18,42],[49,4,18,8,"width"],[49,9,18,13],[49,12,18,13,"_Dimensions$get"],[49,27,18,13],[49,28,18,8,"width"],[49,33,18,13],[50,2,20,0],[50,11,20,9,"HomeTab"],[50,18,20,16,"HomeTab"],[50,19,20,16],[50,21,20,19],[51,4,20,19,"_s"],[51,6,20,19],[52,4,21,2],[52,8,21,2,"_useAuth"],[52,16,21,2],[52,19,21,19],[52,23,21,19,"useAuth"],[52,43,21,26],[52,44,21,26,"useAuth"],[52,51,21,26],[52,53,21,27],[52,54,21,28],[53,6,21,10,"user"],[53,10,21,14],[53,13,21,14,"_useAuth"],[53,21,21,14],[53,22,21,10,"user"],[53,26,21,14],[54,4,22,2],[54,8,22,2,"_useState"],[54,17,22,2],[54,20,22,42],[54,24,22,42,"useState"],[54,30,22,50],[54,31,22,50,"useState"],[54,39,22,50],[54,41,22,66],[54,45,22,70],[54,46,22,71],[55,6,22,71,"_useState2"],[55,16,22,71],[55,23,22,71,"_slicedToArray"],[55,37,22,71],[55,38,22,71,"default"],[55,45,22,71],[55,47,22,71,"_useState"],[55,56,22,71],[56,6,22,9,"profileImage"],[56,18,22,21],[56,21,22,21,"_useState2"],[56,31,22,21],[57,6,22,23,"setProfileImage"],[57,21,22,38],[57,24,22,38,"_useState2"],[57,34,22,38],[58,4,24,2],[58,8,24,8,"pickImage"],[58,17,24,17],[59,6,24,17],[59,10,24,17,"_ref"],[59,14,24,17],[59,21,24,17,"_asyncToGenerator"],[59,38,24,17],[59,39,24,17,"default"],[59,46,24,17],[59,48,24,20],[59,61,24,32],[60,8,25,4],[60,12,25,10,"permissionResult"],[60,28,25,26],[60,37,25,35,"ImagePicker"],[60,48,25,46],[60,49,25,47,"requestMediaLibraryPermissionsAsync"],[60,84,25,82],[60,85,25,83],[60,86,25,84],[61,8,27,4],[61,12,27,8,"permissionResult"],[61,28,27,24],[61,29,27,25,"granted"],[61,36,27,32],[61,41,27,37],[61,46,27,42],[61,48,27,44],[62,10,28,6,"Alert"],[62,22,28,11],[62,23,28,11,"Alert"],[62,28,28,11],[62,29,28,12,"alert"],[62,34,28,17],[62,35,28,18],[62,56,28,39],[62,58,28,41],[62,105,28,88],[62,106,28,89],[63,10,29,6],[64,8,30,4],[65,8,32,4],[65,12,32,10,"result"],[65,18,32,16],[65,27,32,25,"ImagePicker"],[65,38,32,36],[65,39,32,37,"launchImageLibraryAsync"],[65,62,32,60],[65,63,32,61],[66,10,33,6,"mediaTypes"],[66,20,33,16],[66,22,33,18,"ImagePicker"],[66,33,33,29],[66,34,33,30,"MediaTypeOptions"],[66,50,33,46],[66,51,33,47,"Images"],[66,57,33,53],[67,10,34,6,"allowsEditing"],[67,23,34,19],[67,25,34,21],[67,29,34,25],[68,10,35,6,"aspect"],[68,16,35,12],[68,18,35,14],[68,19,35,15],[68,20,35,16],[68,22,35,18],[68,23,35,19],[68,24,35,20],[69,10,36,6,"quality"],[69,17,36,13],[69,19,36,15],[69,22,36,18],[70,10,37,6,"base64"],[70,16,37,12],[70,18,37,14],[71,8,38,4],[71,9,38,5],[71,10,38,6],[72,8,40,4],[72,12,40,8],[72,13,40,9,"result"],[72,19,40,15],[72,20,40,16,"canceled"],[72,28,40,24],[72,32,40,28,"result"],[72,38,40,34],[72,39,40,35,"assets"],[72,45,40,41],[72,46,40,42],[72,47,40,43],[72,48,40,44],[72,49,40,45,"base64"],[72,55,40,51],[72,57,40,53],[73,10,41,6],[73,14,41,12,"base64Image"],[73,25,41,23],[73,28,41,26],[73,54,41,52,"result"],[73,60,41,58],[73,61,41,59,"assets"],[73,67,41,65],[73,68,41,66],[73,69,41,67],[73,70,41,68],[73,71,41,69,"base64"],[73,77,41,75],[73,79,41,77],[74,10,42,6,"setProfileImage"],[74,25,42,21],[74,26,42,22,"base64Image"],[74,37,42,33],[74,38,42,34],[75,10,43,6],[76,8,44,4],[77,6,45,2],[77,7,45,3],[78,6,45,3],[78,22,24,8,"pickImage"],[78,31,24,17,"pickImage"],[78,32,24,17],[79,8,24,17],[79,15,24,17,"_ref"],[79,19,24,17],[79,20,24,17,"apply"],[79,25,24,17],[79,32,24,17,"arguments"],[79,41,24,17],[80,6,24,17],[81,4,24,17],[81,7,45,3],[82,4,46,2],[82,24,47,4],[82,28,47,4,"_reactJsxDevRuntime"],[82,47,47,4],[82,48,47,4,"jsxDEV"],[82,54,47,4],[82,56,47,5,"_reactNative"],[82,68,47,9],[82,69,47,9,"View"],[82,73,47,9],[83,6,47,10,"style"],[83,11,47,15],[83,13,47,17,"styles"],[83,19,47,23],[83,20,47,24,"container"],[83,29,47,34],[84,6,47,34,"children"],[84,14,47,34],[84,29,48,6],[84,33,48,6,"_reactJsxDevRuntime"],[84,52,48,6],[84,53,48,6,"jsxDEV"],[84,59,48,6],[84,61,48,7,"_reactNative"],[84,73,48,17],[84,74,48,17,"ScrollView"],[84,84,48,17],[85,8,48,18,"showsVerticalScrollIndicator"],[85,36,48,46],[85,38,48,48],[85,43,48,54],[86,8,48,55,"contentContainerStyle"],[86,29,48,76],[86,31,48,78,"styles"],[86,37,48,84],[86,38,48,85,"scrollContent"],[86,51,48,99],[87,8,48,99,"children"],[87,16,48,99],[87,32,50,8],[87,36,50,8,"_reactJsxDevRuntime"],[87,55,50,8],[87,56,50,8,"jsxDEV"],[87,62,50,8],[87,64,50,9,"_reactNative"],[87,76,50,13],[87,77,50,13,"View"],[87,81,50,13],[88,10,50,14,"style"],[88,15,50,19],[88,17,50,21,"styles"],[88,23,50,27],[88,24,50,28,"header"],[88,30,50,35],[89,10,50,35,"children"],[89,18,50,35],[89,34,51,10],[89,38,51,10,"_reactJsxDevRuntime"],[89,57,51,10],[89,58,51,10,"jsxDEV"],[89,64,51,10],[89,66,51,11,"_reactNative"],[89,78,51,15],[89,79,51,15,"View"],[89,83,51,15],[90,12,51,16,"style"],[90,17,51,21],[90,19,51,23,"styles"],[90,25,51,29],[90,26,51,30,"headerLeft"],[90,36,51,41],[91,12,51,41,"children"],[91,20,51,41],[91,36,52,12],[91,40,52,12,"_reactJsxDevRuntime"],[91,59,52,12],[91,60,52,12,"jsxDEV"],[91,66,52,12],[91,68,52,13,"_reactNative"],[91,80,52,29],[91,81,52,29,"TouchableOpacity"],[91,97,52,29],[92,14,52,30,"style"],[92,19,52,35],[92,21,52,37,"styles"],[92,27,52,43],[92,28,52,44,"profileImage"],[92,40,52,57],[93,14,52,58,"onPress"],[93,21,52,65],[93,23,52,67,"pickImage"],[93,32,52,77],[94,14,52,77,"children"],[94,22,52,77],[94,24,53,15,"profileImage"],[94,36,53,27],[94,52,54,16],[94,56,54,16,"_reactJsxDevRuntime"],[94,75,54,16],[94,76,54,16,"jsxDEV"],[94,82,54,16],[94,84,54,17,"_reactNative"],[94,96,54,22],[94,97,54,22,"Image"],[94,102,54,22],[95,16,54,23,"source"],[95,22,54,29],[95,24,54,31],[96,18,54,33,"uri"],[96,21,54,36],[96,23,54,38,"profileImage"],[97,16,54,51],[97,17,54,53],[98,16,54,54,"style"],[98,21,54,59],[98,23,54,61,"styles"],[98,29,54,67],[98,30,54,68,"profileImageSrc"],[99,14,54,84],[100,16,54,84,"fileName"],[100,24,54,84],[100,26,54,84,"_jsxFileName"],[100,38,54,84],[101,16,54,84,"lineNumber"],[101,26,54,84],[102,16,54,84,"columnNumber"],[102,28,54,84],[103,14,54,84],[103,21,54,86],[103,22,54,87],[103,38,56,16],[103,42,56,16,"_reactJsxDevRuntime"],[103,61,56,16],[103,62,56,16,"jsxDEV"],[103,68,56,16],[103,70,56,17,"_expoVectorIcons"],[103,86,56,25],[103,87,56,25,"Ionicons"],[103,95,56,25],[104,16,56,26,"name"],[104,20,56,30],[104,22,56,31],[104,30,56,39],[105,16,56,40,"size"],[105,20,56,44],[105,22,56,46],[105,24,56,49],[106,16,56,50,"color"],[106,21,56,55],[106,23,56,56],[107,14,56,65],[108,16,56,65,"fileName"],[108,24,56,65],[108,26,56,65,"_jsxFileName"],[108,38,56,65],[109,16,56,65,"lineNumber"],[109,26,56,65],[110,16,56,65,"columnNumber"],[110,28,56,65],[111,14,56,65],[111,21,56,67],[112,12,57,15],[113,14,57,15,"fileName"],[113,22,57,15],[113,24,57,15,"_jsxFileName"],[113,36,57,15],[114,14,57,15,"lineNumber"],[114,24,57,15],[115,14,57,15,"columnNumber"],[115,26,57,15],[116,12,57,15],[116,19,58,30],[116,20,58,31],[116,35,59,12],[116,39,59,12,"_reactJsxDevRuntime"],[116,58,59,12],[116,59,59,12,"jsxDEV"],[116,65,59,12],[116,67,59,13,"_reactNative"],[116,79,59,17],[116,80,59,17,"View"],[116,84,59,17],[117,14,59,18,"style"],[117,19,59,23],[117,21,59,25,"styles"],[117,27,59,31],[117,28,59,32,"profileBadge"],[117,40,59,45],[118,14,59,45,"children"],[118,22,59,45],[118,38,60,14],[118,42,60,14,"_reactJsxDevRuntime"],[118,61,60,14],[118,62,60,14,"jsxDEV"],[118,68,60,14],[118,70,60,15,"_expoVectorIcons"],[118,86,60,23],[118,87,60,23,"Ionicons"],[118,95,60,23],[119,16,60,24,"name"],[119,20,60,28],[119,22,60,29],[119,28,60,35],[120,16,60,36,"size"],[120,20,60,40],[120,22,60,42],[120,24,60,45],[121,16,60,46,"color"],[121,21,60,51],[121,23,60,52],[122,14,60,61],[123,16,60,61,"fileName"],[123,24,60,61],[123,26,60,61,"_jsxFileName"],[123,38,60,61],[124,16,60,61,"lineNumber"],[124,26,60,61],[125,16,60,61,"columnNumber"],[125,28,60,61],[126,14,60,61],[126,21,60,63],[126,22,60,64],[126,37,61,14],[126,41,61,14,"_reactJsxDevRuntime"],[126,60,61,14],[126,61,61,14,"jsxDEV"],[126,67,61,14],[126,69,61,15,"_reactNative"],[126,81,61,19],[126,82,61,19,"Text"],[126,86,61,19],[127,16,61,20,"style"],[127,21,61,25],[127,23,61,27,"styles"],[127,29,61,33],[127,30,61,34,"trustScore"],[127,40,61,45],[128,16,61,45,"children"],[128,24,61,45],[128,26,61,46],[129,14,61,49],[130,16,61,49,"fileName"],[130,24,61,49],[130,26,61,49,"_jsxFileName"],[130,38,61,49],[131,16,61,49,"lineNumber"],[131,26,61,49],[132,16,61,49,"columnNumber"],[132,28,61,49],[133,14,61,49],[133,21,61,55],[133,22,61,56],[134,12,61,56],[135,14,61,56,"fileName"],[135,22,61,56],[135,24,61,56,"_jsxFileName"],[135,36,61,56],[136,14,61,56,"lineNumber"],[136,24,61,56],[137,14,61,56,"columnNumber"],[137,26,61,56],[138,12,61,56],[138,19,62,18],[138,20,62,19],[139,10,62,19],[140,12,62,19,"fileName"],[140,20,62,19],[140,22,62,19,"_jsxFileName"],[140,34,62,19],[141,12,62,19,"lineNumber"],[141,22,62,19],[142,12,62,19,"columnNumber"],[142,24,62,19],[143,10,62,19],[143,17,63,16],[143,18,63,17],[143,33,64,10],[143,37,64,10,"_reactJsxDevRuntime"],[143,56,64,10],[143,57,64,10,"jsxDEV"],[143,63,64,10],[143,65,64,11,"_reactNative"],[143,77,64,15],[143,78,64,15,"View"],[143,82,64,15],[144,12,64,16,"style"],[144,17,64,21],[144,19,64,23,"styles"],[144,25,64,29],[144,26,64,30,"headerRight"],[144,37,64,42],[145,12,64,42,"children"],[145,20,64,42],[145,36,65,12],[145,40,65,12,"_reactJsxDevRuntime"],[145,59,65,12],[145,60,65,12,"jsxDEV"],[145,66,65,12],[145,68,65,13,"_reactNative"],[145,80,65,29],[145,81,65,29,"TouchableOpacity"],[145,97,65,29],[146,14,65,30,"style"],[146,19,65,35],[146,21,65,37,"styles"],[146,27,65,43],[146,28,65,44,"iconButton"],[146,38,65,55],[147,14,65,55,"children"],[147,22,65,55],[147,37,66,14],[147,41,66,14,"_reactJsxDevRuntime"],[147,60,66,14],[147,61,66,14,"jsxDEV"],[147,67,66,14],[147,69,66,15,"_expoVectorIcons"],[147,85,66,23],[147,86,66,23,"Ionicons"],[147,94,66,23],[148,16,66,24,"name"],[148,20,66,28],[148,22,66,29],[148,39,66,46],[149,16,66,47,"size"],[149,20,66,51],[149,22,66,53],[149,24,66,56],[150,16,66,57,"color"],[150,21,66,62],[150,23,66,63],[151,14,66,72],[152,16,66,72,"fileName"],[152,24,66,72],[152,26,66,72,"_jsxFileName"],[152,38,66,72],[153,16,66,72,"lineNumber"],[153,26,66,72],[154,16,66,72,"columnNumber"],[154,28,66,72],[155,14,66,72],[155,21,66,74],[156,12,66,75],[157,14,66,75,"fileName"],[157,22,66,75],[157,24,66,75,"_jsxFileName"],[157,36,66,75],[158,14,66,75,"lineNumber"],[158,24,66,75],[159,14,66,75,"columnNumber"],[159,26,66,75],[160,12,66,75],[160,19,67,30],[160,20,67,31],[160,35,68,12],[160,39,68,12,"_reactJsxDevRuntime"],[160,58,68,12],[160,59,68,12,"jsxDEV"],[160,65,68,12],[160,67,68,13,"_reactNative"],[160,79,68,29],[160,80,68,29,"TouchableOpacity"],[160,96,68,29],[161,14,68,30,"style"],[161,19,68,35],[161,21,68,37,"styles"],[161,27,68,43],[161,28,68,44,"iconButton"],[161,38,68,55],[162,14,68,55,"children"],[162,22,68,55],[162,37,69,14],[162,41,69,14,"_reactJsxDevRuntime"],[162,60,69,14],[162,61,69,14,"jsxDEV"],[162,67,69,14],[162,69,69,15,"_expoVectorIcons"],[162,85,69,23],[162,86,69,23,"Ionicons"],[162,94,69,23],[163,16,69,24,"name"],[163,20,69,28],[163,22,69,29],[163,45,69,52],[164,16,69,53,"size"],[164,20,69,57],[164,22,69,59],[164,24,69,62],[165,16,69,63,"color"],[165,21,69,68],[165,23,69,69],[166,14,69,78],[167,16,69,78,"fileName"],[167,24,69,78],[167,26,69,78,"_jsxFileName"],[167,38,69,78],[168,16,69,78,"lineNumber"],[168,26,69,78],[169,16,69,78,"columnNumber"],[169,28,69,78],[170,14,69,78],[170,21,69,80],[171,12,69,81],[172,14,69,81,"fileName"],[172,22,69,81],[172,24,69,81,"_jsxFileName"],[172,36,69,81],[173,14,69,81,"lineNumber"],[173,24,69,81],[174,14,69,81,"columnNumber"],[174,26,69,81],[175,12,69,81],[175,19,70,30],[175,20,70,31],[175,35,71,12],[175,39,71,12,"_reactJsxDevRuntime"],[175,58,71,12],[175,59,71,12,"jsxDEV"],[175,65,71,12],[175,67,71,13,"_reactNative"],[175,79,71,29],[175,80,71,29,"TouchableOpacity"],[175,96,71,29],[176,14,71,30,"style"],[176,19,71,35],[176,21,71,37,"styles"],[176,27,71,43],[176,28,71,44,"iconButton"],[176,38,71,55],[177,14,71,55,"children"],[177,22,71,55],[177,37,72,14],[177,41,72,14,"_reactJsxDevRuntime"],[177,60,72,14],[177,61,72,14,"jsxDEV"],[177,67,72,14],[177,69,72,15,"_expoVectorIcons"],[177,85,72,23],[177,86,72,23,"Ionicons"],[177,94,72,23],[178,16,72,24,"name"],[178,20,72,28],[178,22,72,29],[178,40,72,47],[179,16,72,48,"size"],[179,20,72,52],[179,22,72,54],[179,24,72,57],[180,16,72,58,"color"],[180,21,72,63],[180,23,72,64],[181,14,72,73],[182,16,72,73,"fileName"],[182,24,72,73],[182,26,72,73,"_jsxFileName"],[182,38,72,73],[183,16,72,73,"lineNumber"],[183,26,72,73],[184,16,72,73,"columnNumber"],[184,28,72,73],[185,14,72,73],[185,21,72,75],[186,12,72,76],[187,14,72,76,"fileName"],[187,22,72,76],[187,24,72,76,"_jsxFileName"],[187,36,72,76],[188,14,72,76,"lineNumber"],[188,24,72,76],[189,14,72,76,"columnNumber"],[189,26,72,76],[190,12,72,76],[190,19,73,30],[190,20,73,31],[191,10,73,31],[192,12,73,31,"fileName"],[192,20,73,31],[192,22,73,31,"_jsxFileName"],[192,34,73,31],[193,12,73,31,"lineNumber"],[193,22,73,31],[194,12,73,31,"columnNumber"],[194,24,73,31],[195,10,73,31],[195,17,74,16],[195,18,74,17],[196,8,74,17],[197,10,74,17,"fileName"],[197,18,74,17],[197,20,74,17,"_jsxFileName"],[197,32,74,17],[198,10,74,17,"lineNumber"],[198,20,74,17],[199,10,74,17,"columnNumber"],[199,22,74,17],[200,8,74,17],[200,15,75,14],[200,16,75,15],[200,31,78,8],[200,35,78,8,"_reactJsxDevRuntime"],[200,54,78,8],[200,55,78,8,"jsxDEV"],[200,61,78,8],[200,63,78,9,"_reactNative"],[200,75,78,13],[200,76,78,13,"View"],[200,80,78,13],[201,10,78,14,"style"],[201,15,78,19],[201,17,78,21,"styles"],[201,23,78,27],[201,24,78,28,"announcementWidget"],[201,42,78,47],[202,10,78,47,"children"],[202,18,78,47],[202,33,79,10],[202,37,79,10,"_reactJsxDevRuntime"],[202,56,79,10],[202,57,79,10,"jsxDEV"],[202,63,79,10],[202,65,79,11,"_reactNative"],[202,77,79,21],[202,78,79,21,"ScrollView"],[202,88,79,21],[203,12,79,22,"horizontal"],[203,22,79,32],[204,12,79,33,"showsHorizontalScrollIndicator"],[204,42,79,63],[204,44,79,65],[204,49,79,71],[205,12,79,71,"children"],[205,20,79,71],[205,36,80,12],[205,40,80,12,"_reactJsxDevRuntime"],[205,59,80,12],[205,60,80,12,"jsxDEV"],[205,66,80,12],[205,68,80,13,"_reactNative"],[205,80,80,17],[205,81,80,17,"View"],[205,85,80,17],[206,14,80,18,"style"],[206,19,80,23],[206,21,80,25,"styles"],[206,27,80,31],[206,28,80,32,"announcement"],[206,40,80,45],[207,14,80,45,"children"],[207,22,80,45],[207,38,81,14],[207,42,81,14,"_reactJsxDevRuntime"],[207,61,81,14],[207,62,81,14,"jsxDEV"],[207,68,81,14],[207,70,81,15,"_reactNative"],[207,82,81,19],[207,83,81,19,"Text"],[207,87,81,19],[208,16,81,20,"style"],[208,21,81,25],[208,23,81,27,"styles"],[208,29,81,33],[208,30,81,34,"announcementTitle"],[208,47,81,52],[209,16,81,52,"children"],[209,24,81,52],[209,26,81,53],[210,14,81,80],[211,16,81,80,"fileName"],[211,24,81,80],[211,26,81,80,"_jsxFileName"],[211,38,81,80],[212,16,81,80,"lineNumber"],[212,26,81,80],[213,16,81,80,"columnNumber"],[213,28,81,80],[214,14,81,80],[214,21,81,86],[214,22,81,87],[214,37,82,14],[214,41,82,14,"_reactJsxDevRuntime"],[214,60,82,14],[214,61,82,14,"jsxDEV"],[214,67,82,14],[214,69,82,15,"_reactNative"],[214,81,82,19],[214,82,82,19,"Text"],[214,86,82,19],[215,16,82,20,"style"],[215,21,82,25],[215,23,82,27,"styles"],[215,29,82,33],[215,30,82,34,"announcementText"],[215,46,82,51],[216,16,82,51,"children"],[216,24,82,51],[216,26,82,52],[217,14,82,88],[218,16,82,88,"fileName"],[218,24,82,88],[218,26,82,88,"_jsxFileName"],[218,38,82,88],[219,16,82,88,"lineNumber"],[219,26,82,88],[220,16,82,88,"columnNumber"],[220,28,82,88],[221,14,82,88],[221,21,82,94],[221,22,82,95],[222,12,82,95],[223,14,82,95,"fileName"],[223,22,82,95],[223,24,82,95,"_jsxFileName"],[223,36,82,95],[224,14,82,95,"lineNumber"],[224,24,82,95],[225,14,82,95,"columnNumber"],[225,26,82,95],[226,12,82,95],[226,19,83,18],[226,20,83,19],[226,35,84,12],[226,39,84,12,"_reactJsxDevRuntime"],[226,58,84,12],[226,59,84,12,"jsxDEV"],[226,65,84,12],[226,67,84,13,"_reactNative"],[226,79,84,17],[226,80,84,17,"View"],[226,84,84,17],[227,14,84,18,"style"],[227,19,84,23],[227,21,84,25,"styles"],[227,27,84,31],[227,28,84,32,"announcement"],[227,40,84,45],[228,14,84,45,"children"],[228,22,84,45],[228,38,85,14],[228,42,85,14,"_reactJsxDevRuntime"],[228,61,85,14],[228,62,85,14,"jsxDEV"],[228,68,85,14],[228,70,85,15,"_reactNative"],[228,82,85,19],[228,83,85,19,"Text"],[228,87,85,19],[229,16,85,20,"style"],[229,21,85,25],[229,23,85,27,"styles"],[229,29,85,33],[229,30,85,34,"announcementTitle"],[229,47,85,52],[230,16,85,52,"children"],[230,24,85,52],[230,26,85,53],[231,14,85,67],[232,16,85,67,"fileName"],[232,24,85,67],[232,26,85,67,"_jsxFileName"],[232,38,85,67],[233,16,85,67,"lineNumber"],[233,26,85,67],[234,16,85,67,"columnNumber"],[234,28,85,67],[235,14,85,67],[235,21,85,73],[235,22,85,74],[235,37,86,14],[235,41,86,14,"_reactJsxDevRuntime"],[235,60,86,14],[235,61,86,14,"jsxDEV"],[235,67,86,14],[235,69,86,15,"_reactNative"],[235,81,86,19],[235,82,86,19,"Text"],[235,86,86,19],[236,16,86,20,"style"],[236,21,86,25],[236,23,86,27,"styles"],[236,29,86,33],[236,30,86,34,"announcementText"],[236,46,86,51],[237,16,86,51,"children"],[237,24,86,51],[237,26,86,52],[238,14,86,80],[239,16,86,80,"fileName"],[239,24,86,80],[239,26,86,80,"_jsxFileName"],[239,38,86,80],[240,16,86,80,"lineNumber"],[240,26,86,80],[241,16,86,80,"columnNumber"],[241,28,86,80],[242,14,86,80],[242,21,86,86],[242,22,86,87],[243,12,86,87],[244,14,86,87,"fileName"],[244,22,86,87],[244,24,86,87,"_jsxFileName"],[244,36,86,87],[245,14,86,87,"lineNumber"],[245,24,86,87],[246,14,86,87,"columnNumber"],[246,26,86,87],[247,12,86,87],[247,19,87,18],[247,20,87,19],[248,10,87,19],[249,12,87,19,"fileName"],[249,20,87,19],[249,22,87,19,"_jsxFileName"],[249,34,87,19],[250,12,87,19,"lineNumber"],[250,22,87,19],[251,12,87,19,"columnNumber"],[251,24,87,19],[252,10,87,19],[252,17,88,22],[253,8,88,23],[254,10,88,23,"fileName"],[254,18,88,23],[254,20,88,23,"_jsxFileName"],[254,32,88,23],[255,10,88,23,"lineNumber"],[255,20,88,23],[256,10,88,23,"columnNumber"],[256,22,88,23],[257,8,88,23],[257,15,89,14],[257,16,89,15],[257,31,92,8],[257,35,92,8,"_reactJsxDevRuntime"],[257,54,92,8],[257,55,92,8,"jsxDEV"],[257,61,92,8],[257,63,92,9,"_reactNative"],[257,75,92,13],[257,76,92,13,"View"],[257,80,92,13],[258,10,92,14,"style"],[258,15,92,19],[258,17,92,21,"styles"],[258,23,92,27],[258,24,92,28,"quickActionsContainer"],[258,45,92,50],[259,10,92,50,"children"],[259,18,92,50],[259,34,93,10],[259,38,93,10,"_reactJsxDevRuntime"],[259,57,93,10],[259,58,93,10,"jsxDEV"],[259,64,93,10],[259,66,93,11,"_reactNative"],[259,78,93,15],[259,79,93,15,"Text"],[259,83,93,15],[260,12,93,16,"style"],[260,17,93,21],[260,19,93,23,"styles"],[260,25,93,29],[260,26,93,30,"sectionTitle"],[260,38,93,43],[261,12,93,43,"children"],[261,20,93,43],[261,22,93,44],[262,10,93,57],[263,12,93,57,"fileName"],[263,20,93,57],[263,22,93,57,"_jsxFileName"],[263,34,93,57],[264,12,93,57,"lineNumber"],[264,22,93,57],[265,12,93,57,"columnNumber"],[265,24,93,57],[266,10,93,57],[266,17,93,63],[266,18,93,64],[266,33,94,10],[266,37,94,10,"_reactJsxDevRuntime"],[266,56,94,10],[266,57,94,10,"jsxDEV"],[266,63,94,10],[266,65,94,11,"_reactNative"],[266,77,94,15],[266,78,94,15,"View"],[266,82,94,15],[267,12,94,16,"style"],[267,17,94,21],[267,19,94,23,"styles"],[267,25,94,29],[267,26,94,30,"actionsGrid"],[267,37,94,42],[268,12,94,42,"children"],[268,20,94,42],[268,22,95,13,"QUICK_ACTIONS"],[268,35,95,26],[268,36,95,27,"map"],[268,39,95,30],[268,40,95,31],[268,41,95,32,"action"],[268,47,95,38],[268,49,95,40,"index"],[268,54,95,45],[268,72,96,14],[268,76,96,14,"_reactJsxDevRuntime"],[268,95,96,14],[268,96,96,14,"jsxDEV"],[268,102,96,14],[268,104,96,15,"_reactNative"],[268,116,96,31],[268,117,96,31,"TouchableOpacity"],[268,133,96,31],[269,14,98,16,"style"],[269,19,98,21],[269,21,98,23],[269,22,98,24,"styles"],[269,28,98,30],[269,29,98,31,"actionCard"],[269,39,98,41],[269,41,99,19,"index"],[269,46,99,24],[269,49,99,27],[269,50,99,28],[269,55,99,33],[269,56,99,34],[269,60,99,39,"styles"],[269,66,99,45],[269,67,99,46,"actionCardFirst"],[269,82,99,61],[269,84,100,19,"index"],[269,89,100,24],[269,92,100,27],[269,93,100,28],[269,98,100,33],[269,99,100,34],[269,103,100,39,"styles"],[269,109,100,45],[269,110,100,46,"actionCardLast"],[269,124,100,60],[269,125,101,18],[270,14,102,16,"activeOpacity"],[270,27,102,29],[270,29,102,31],[270,32,102,35],[271,14,102,35,"children"],[271,22,102,35],[271,38,104,16],[271,42,104,16,"_reactJsxDevRuntime"],[271,61,104,16],[271,62,104,16,"jsxDEV"],[271,68,104,16],[271,70,104,17,"_reactNative"],[271,82,104,21],[271,83,104,21,"View"],[271,87,104,21],[272,16,104,22,"style"],[272,21,104,27],[272,23,104,29],[272,24,104,30,"styles"],[272,30,104,36],[272,31,104,37,"actionIcon"],[272,41,104,47],[272,43,104,49],[273,18,104,51,"backgroundColor"],[273,33,104,66],[273,35,104,68,"action"],[273,41,104,74],[273,42,104,75,"color"],[274,16,104,81],[274,17,104,82],[274,18,104,84],[275,16,104,84,"children"],[275,24,104,84],[275,39,105,18],[275,43,105,18,"_reactJsxDevRuntime"],[275,62,105,18],[275,63,105,18,"jsxDEV"],[275,69,105,18],[275,71,105,19,"_expoVectorIcons"],[275,87,105,27],[275,88,105,27,"Ionicons"],[275,96,105,27],[276,18,105,28,"name"],[276,22,105,32],[276,24,105,34,"action"],[276,30,105,40],[276,31,105,41,"icon"],[276,35,105,46],[277,18,105,47,"size"],[277,22,105,51],[277,24,105,53],[277,26,105,56],[278,18,105,57,"color"],[278,23,105,62],[278,25,105,63],[279,16,105,69],[280,18,105,69,"fileName"],[280,26,105,69],[280,28,105,69,"_jsxFileName"],[280,40,105,69],[281,18,105,69,"lineNumber"],[281,28,105,69],[282,18,105,69,"columnNumber"],[282,30,105,69],[283,16,105,69],[283,23,105,71],[284,14,105,72],[285,16,105,72,"fileName"],[285,24,105,72],[285,26,105,72,"_jsxFileName"],[285,38,105,72],[286,16,105,72,"lineNumber"],[286,26,105,72],[287,16,105,72,"columnNumber"],[287,28,105,72],[288,14,105,72],[288,21,106,22],[288,22,106,23],[288,37,107,16],[288,41,107,16,"_reactJsxDevRuntime"],[288,60,107,16],[288,61,107,16,"jsxDEV"],[288,67,107,16],[288,69,107,17,"_reactNative"],[288,81,107,21],[288,82,107,21,"Text"],[288,86,107,21],[289,16,107,22,"style"],[289,21,107,27],[289,23,107,29,"styles"],[289,29,107,35],[289,30,107,36,"actionLabel"],[289,41,107,48],[290,16,107,48,"children"],[290,24,107,48],[290,26,107,50,"action"],[290,32,107,56],[290,33,107,57,"label"],[291,14,107,62],[292,16,107,62,"fileName"],[292,24,107,62],[292,26,107,62,"_jsxFileName"],[292,38,107,62],[293,16,107,62,"lineNumber"],[293,26,107,62],[294,16,107,62,"columnNumber"],[294,28,107,62],[295,14,107,62],[295,21,107,69],[295,22,107,70],[296,12,107,70],[296,15,97,21,"action"],[296,21,97,27],[296,22,97,28,"id"],[296,24,97,30],[297,14,97,30,"fileName"],[297,22,97,30],[297,24,97,30,"_jsxFileName"],[297,36,97,30],[298,14,97,30,"lineNumber"],[298,24,97,30],[299,14,97,30,"columnNumber"],[299,26,97,30],[300,12,97,30],[300,19,108,32],[300,20,109,13],[301,10,109,14],[302,12,109,14,"fileName"],[302,20,109,14],[302,22,109,14,"_jsxFileName"],[302,34,109,14],[303,12,109,14,"lineNumber"],[303,22,109,14],[304,12,109,14,"columnNumber"],[304,24,109,14],[305,10,109,14],[305,17,110,16],[305,18,110,17],[306,8,110,17],[307,10,110,17,"fileName"],[307,18,110,17],[307,20,110,17,"_jsxFileName"],[307,32,110,17],[308,10,110,17,"lineNumber"],[308,20,110,17],[309,10,110,17,"columnNumber"],[309,22,110,17],[310,8,110,17],[310,15,111,14],[310,16,111,15],[311,6,111,15],[312,8,111,15,"fileName"],[312,16,111,15],[312,18,111,15,"_jsxFileName"],[312,30,111,15],[313,8,111,15,"lineNumber"],[313,18,111,15],[314,8,111,15,"columnNumber"],[314,20,111,15],[315,6,111,15],[315,13,112,18],[316,4,112,19],[317,6,112,19,"fileName"],[317,14,112,19],[317,16,112,19,"_jsxFileName"],[317,28,112,19],[318,6,112,19,"lineNumber"],[318,16,112,19],[319,6,112,19,"columnNumber"],[319,18,112,19],[320,4,112,19],[320,11,113,10],[320,12,113,11],[321,2,115,0],[322,2,115,1,"_s"],[322,4,115,1],[322,5,20,9,"HomeTab"],[322,12,20,16],[323,4,20,16],[323,12,21,19,"useAuth"],[323,32,21,26],[323,33,21,26,"useAuth"],[323,40,21,26],[324,2,21,26],[325,2,21,26,"_c"],[325,4,21,26],[325,7,20,9,"HomeTab"],[325,14,20,16],[326,2,117,0],[326,11,117,9,"WalletTab"],[326,20,117,18,"WalletTab"],[326,21,117,18],[326,23,117,21],[327,4,117,21,"_s2"],[327,7,117,21],[328,4,118,2],[328,8,118,2,"_useAuth2"],[328,17,118,2],[328,20,118,19],[328,24,118,19,"useAuth"],[328,44,118,26],[328,45,118,26,"useAuth"],[328,52,118,26],[328,54,118,27],[328,55,118,28],[329,6,118,10,"user"],[329,10,118,14],[329,13,118,14,"_useAuth2"],[329,22,118,14],[329,23,118,10,"user"],[329,27,118,14],[330,4,119,2],[330,8,119,2,"_useState3"],[330,18,119,2],[330,21,119,38],[330,25,119,38,"useState"],[330,31,119,46],[330,32,119,46,"useState"],[330,40,119,46],[330,42,119,47],[330,54,119,59],[330,55,119,60],[331,6,119,60,"_useState4"],[331,16,119,60],[331,23,119,60,"_slicedToArray"],[331,37,119,60],[331,38,119,60,"default"],[331,45,119,60],[331,47,119,60,"_useState3"],[331,57,119,60],[332,6,119,9,"hezBalance"],[332,16,119,19],[332,19,119,19,"_useState4"],[332,29,119,19],[333,6,119,21,"setHezBalance"],[333,19,119,34],[333,22,119,34,"_useState4"],[333,32,119,34],[334,4,120,2],[334,8,120,2,"_useState5"],[334,18,120,2],[334,21,120,38],[334,25,120,38,"useState"],[334,31,120,46],[334,32,120,46,"useState"],[334,40,120,46],[334,42,120,47],[334,54,120,59],[334,55,120,60],[335,6,120,60,"_useState6"],[335,16,120,60],[335,23,120,60,"_slicedToArray"],[335,37,120,60],[335,38,120,60,"default"],[335,45,120,60],[335,47,120,60,"_useState5"],[335,57,120,60],[336,6,120,9,"pezBalance"],[336,16,120,19],[336,19,120,19,"_useState6"],[336,29,120,19],[337,6,120,21,"setPezBalance"],[337,19,120,34],[337,22,120,34,"_useState6"],[337,32,120,34],[338,4,121,2],[338,8,121,2,"_useState7"],[338,18,121,2],[338,21,121,32],[338,25,121,32,"useState"],[338,31,121,40],[338,32,121,40,"useState"],[338,40,121,40],[338,42,121,41],[338,46,121,45],[338,47,121,46],[339,6,121,46,"_useState8"],[339,16,121,46],[339,23,121,46,"_slicedToArray"],[339,37,121,46],[339,38,121,46,"default"],[339,45,121,46],[339,47,121,46,"_useState7"],[339,57,121,46],[340,6,121,9,"loading"],[340,13,121,16],[340,16,121,16,"_useState8"],[340,26,121,16],[341,6,121,18,"setLoading"],[341,16,121,28],[341,19,121,28,"_useState8"],[341,29,121,28],[342,4,123,2],[342,8,123,8,"TEST_WALLET"],[342,19,123,19],[342,22,123,22],[342,72,123,72],[343,4,125,2],[343,8,125,2,"useEffect"],[343,14,125,11],[343,15,125,11,"useEffect"],[343,24,125,11],[343,26,125,12],[343,32,125,18],[344,6,126,4,"fetchBalance"],[344,18,126,16],[344,19,126,17],[344,20,126,18],[345,4,127,2],[345,5,127,3],[345,7,127,5],[345,9,127,7],[345,10,127,8],[346,4,129,2],[346,8,129,8,"fetchBalance"],[346,20,129,20],[347,6,129,20],[347,10,129,20,"_ref2"],[347,15,129,20],[347,22,129,20,"_asyncToGenerator"],[347,39,129,20],[347,40,129,20,"default"],[347,47,129,20],[347,49,129,23],[347,62,129,35],[348,8,130,4],[348,12,130,8],[349,10,131,6],[349,14,131,12,"backendUrl"],[349,24,131,22],[349,27,131,25],[349,84,131,64],[349,107,131,87],[350,10,132,6],[350,14,132,12,"response"],[350,22,132,20],[350,31,132,29,"fetch"],[350,36,132,34],[350,37,132,35],[350,40,132,38,"backendUrl"],[350,50,132,48],[350,75,132,73],[350,77,132,75],[351,12,133,8,"method"],[351,18,133,14],[351,20,133,16],[351,26,133,22],[352,12,134,8,"headers"],[352,19,134,15],[352,21,134,17],[353,14,135,10],[353,28,135,24],[353,30,135,26],[354,12,136,8],[354,13,136,9],[355,12,137,8,"body"],[355,16,137,12],[355,18,137,14,"JSON"],[355,22,137,18],[355,23,137,19,"stringify"],[355,32,137,28],[355,33,137,29],[356,14,138,10,"address"],[356,21,138,17],[356,23,138,19,"TEST_WALLET"],[357,12,139,8],[357,13,139,9],[358,10,140,6],[358,11,140,7],[358,12,140,8],[359,10,142,6],[359,14,142,10,"response"],[359,22,142,18],[359,23,142,19,"ok"],[359,25,142,21],[359,27,142,23],[360,12,143,8],[360,16,143,14,"data"],[360,20,143,18],[360,29,143,27,"response"],[360,37,143,35],[360,38,143,36,"json"],[360,42,143,40],[360,43,143,41],[360,44,143,42],[361,12,144,8,"setHezBalance"],[361,25,144,21],[361,26,144,22,"parseFloat"],[361,36,144,32],[361,37,144,33,"data"],[361,41,144,37],[361,42,144,38,"hez"],[361,45,144,41],[361,46,144,42],[361,47,144,43,"toFixed"],[361,54,144,50],[361,55,144,51],[361,56,144,52],[361,57,144,53],[361,58,144,54],[362,12,145,8,"setPezBalance"],[362,25,145,21],[362,26,145,22,"parseFloat"],[362,36,145,32],[362,37,145,33,"data"],[362,41,145,37],[362,42,145,38,"pez"],[362,45,145,41],[362,46,145,42],[362,47,145,43,"toFixed"],[362,54,145,50],[362,55,145,51],[362,56,145,52],[362,57,145,53],[362,58,145,54],[363,10,146,6],[363,11,146,7],[363,17,146,13],[364,12,147,8,"setHezBalance"],[364,25,147,21],[364,26,147,22],[364,33,147,29],[364,34,147,30],[365,12,148,8,"setPezBalance"],[365,25,148,21],[365,26,148,22],[365,33,148,29],[365,34,148,30],[366,10,149,6],[367,8,150,4],[367,9,150,5],[367,10,150,6],[367,17,150,13,"error"],[367,22,150,18],[367,24,150,20],[368,10,151,6,"console"],[368,17,151,13],[368,18,151,14,"error"],[368,23,151,19],[368,24,151,20],[368,46,151,42],[368,48,151,44,"error"],[368,53,151,49],[368,54,151,50],[369,10,152,6,"setHezBalance"],[369,23,152,19],[369,24,152,20],[369,31,152,27],[369,32,152,28],[370,10,153,6,"setPezBalance"],[370,23,153,19],[370,24,153,20],[370,31,153,27],[370,32,153,28],[371,8,154,4],[371,9,154,5],[371,18,154,14],[372,10,155,6,"setLoading"],[372,20,155,16],[372,21,155,17],[372,26,155,22],[372,27,155,23],[373,8,156,4],[374,6,157,2],[374,7,157,3],[375,6,157,3],[375,22,129,8,"fetchBalance"],[375,34,129,20,"fetchBalance"],[375,35,129,20],[376,8,129,20],[376,15,129,20,"_ref2"],[376,20,129,20],[376,21,129,20,"apply"],[376,26,129,20],[376,33,129,20,"arguments"],[376,42,129,20],[377,6,129,20],[378,4,129,20],[378,7,157,3],[379,4,159,2],[379,24,160,4],[379,28,160,4,"_reactJsxDevRuntime"],[379,47,160,4],[379,48,160,4,"jsxDEV"],[379,54,160,4],[379,56,160,5,"_reactNative"],[379,68,160,9],[379,69,160,9,"View"],[379,73,160,9],[380,6,160,10,"style"],[380,11,160,15],[380,13,160,17,"styles"],[380,19,160,23],[380,20,160,24,"container"],[380,29,160,34],[381,6,160,34,"children"],[381,14,160,34],[381,29,161,6],[381,33,161,6,"_reactJsxDevRuntime"],[381,52,161,6],[381,53,161,6,"jsxDEV"],[381,59,161,6],[381,61,161,7,"_reactNative"],[381,73,161,17],[381,74,161,17,"ScrollView"],[381,84,161,17],[382,8,161,18,"contentContainerStyle"],[382,29,161,39],[382,31,161,41,"styles"],[382,37,161,47],[382,38,161,48,"walletScrollContent"],[382,57,161,68],[383,8,161,68,"children"],[383,16,161,68],[383,32,163,8],[383,36,163,8,"_reactJsxDevRuntime"],[383,55,163,8],[383,56,163,8,"jsxDEV"],[383,62,163,8],[383,64,163,9,"_reactNative"],[383,76,163,13],[383,77,163,13,"View"],[383,81,163,13],[384,10,163,14,"style"],[384,15,163,19],[384,17,163,21,"styles"],[384,23,163,27],[384,24,163,28,"walletHeader"],[384,36,163,41],[385,10,163,41,"children"],[385,18,163,41],[385,34,164,10],[385,38,164,10,"_reactJsxDevRuntime"],[385,57,164,10],[385,58,164,10,"jsxDEV"],[385,64,164,10],[385,66,164,11,"_reactNative"],[385,78,164,15],[385,79,164,15,"Text"],[385,83,164,15],[386,12,164,16,"style"],[386,17,164,21],[386,19,164,23,"styles"],[386,25,164,29],[386,26,164,30,"walletTitle"],[386,37,164,42],[387,12,164,42,"children"],[387,20,164,42],[387,22,164,43],[388,10,164,52],[389,12,164,52,"fileName"],[389,20,164,52],[389,22,164,52,"_jsxFileName"],[389,34,164,52],[390,12,164,52,"lineNumber"],[390,22,164,52],[391,12,164,52,"columnNumber"],[391,24,164,52],[392,10,164,52],[392,17,164,58],[392,18,164,59],[392,33,165,10],[392,37,165,10,"_reactJsxDevRuntime"],[392,56,165,10],[392,57,165,10,"jsxDEV"],[392,63,165,10],[392,65,165,11,"_reactNative"],[392,77,165,27],[392,78,165,27,"TouchableOpacity"],[392,94,165,27],[393,12,165,28,"onPress"],[393,19,165,35],[393,21,165,37,"fetchBalance"],[393,33,165,50],[394,12,165,51,"style"],[394,17,165,56],[394,19,165,58,"styles"],[394,25,165,64],[394,26,165,65,"refreshButton"],[394,39,165,79],[395,12,165,79,"children"],[395,20,165,79],[395,35,166,12],[395,39,166,12,"_reactJsxDevRuntime"],[395,58,166,12],[395,59,166,12,"jsxDEV"],[395,65,166,12],[395,67,166,13,"_expoVectorIcons"],[395,83,166,21],[395,84,166,21,"Ionicons"],[395,92,166,21],[396,14,166,22,"name"],[396,18,166,26],[396,20,166,27],[396,29,166,36],[397,14,166,37,"size"],[397,18,166,41],[397,20,166,43],[397,22,166,46],[398,14,166,47,"color"],[398,19,166,52],[398,21,166,53],[399,12,166,62],[400,14,166,62,"fileName"],[400,22,166,62],[400,24,166,62,"_jsxFileName"],[400,36,166,62],[401,14,166,62,"lineNumber"],[401,24,166,62],[402,14,166,62,"columnNumber"],[402,26,166,62],[403,12,166,62],[403,19,166,64],[404,10,166,65],[405,12,166,65,"fileName"],[405,20,166,65],[405,22,166,65,"_jsxFileName"],[405,34,166,65],[406,12,166,65,"lineNumber"],[406,22,166,65],[407,12,166,65,"columnNumber"],[407,24,166,65],[408,10,166,65],[408,17,167,28],[408,18,167,29],[409,8,167,29],[410,10,167,29,"fileName"],[410,18,167,29],[410,20,167,29,"_jsxFileName"],[410,32,167,29],[411,10,167,29,"lineNumber"],[411,20,167,29],[412,10,167,29,"columnNumber"],[412,22,167,29],[413,8,167,29],[413,15,168,14],[413,16,168,15],[413,31,171,8],[413,35,171,8,"_reactJsxDevRuntime"],[413,54,171,8],[413,55,171,8,"jsxDEV"],[413,61,171,8],[413,63,171,9,"_reactNative"],[413,75,171,13],[413,76,171,13,"View"],[413,80,171,13],[414,10,171,14,"style"],[414,15,171,19],[414,17,171,21,"styles"],[414,23,171,27],[414,24,171,28,"balanceRow"],[414,34,171,39],[415,10,171,39,"children"],[415,18,171,39],[415,34,172,10],[415,38,172,10,"_reactJsxDevRuntime"],[415,57,172,10],[415,58,172,10,"jsxDEV"],[415,64,172,10],[415,66,172,11,"_reactNative"],[415,78,172,15],[415,79,172,15,"View"],[415,83,172,15],[416,12,172,16,"style"],[416,17,172,21],[416,19,172,23,"styles"],[416,25,172,29],[416,26,172,30,"balanceCardNew"],[416,40,172,45],[417,12,172,45,"children"],[417,20,172,45],[417,36,173,12],[417,40,173,12,"_reactJsxDevRuntime"],[417,59,173,12],[417,60,173,12,"jsxDEV"],[417,66,173,12],[417,68,173,13,"_reactNative"],[417,80,173,18],[417,81,173,18,"Image"],[417,86,173,18],[418,14,174,14,"source"],[418,20,174,20],[418,22,174,22],[419,16,174,24,"uri"],[419,19,174,27],[419,21,174,29],[420,14,174,145],[420,15,174,147],[421,14,175,14,"style"],[421,19,175,19],[421,21,175,21,"styles"],[421,27,175,27],[421,28,175,28,"tokenLogoNew"],[422,12,175,41],[423,14,175,41,"fileName"],[423,22,175,41],[423,24,175,41,"_jsxFileName"],[423,36,175,41],[424,14,175,41,"lineNumber"],[424,24,175,41],[425,14,175,41,"columnNumber"],[425,26,175,41],[426,12,175,41],[426,19,176,13],[426,20,176,14],[426,35,177,12],[426,39,177,12,"_reactJsxDevRuntime"],[426,58,177,12],[426,59,177,12,"jsxDEV"],[426,65,177,12],[426,67,177,13,"_reactNative"],[426,79,177,17],[426,80,177,17,"Text"],[426,84,177,17],[427,14,177,18,"style"],[427,19,177,23],[427,21,177,25,"styles"],[427,27,177,31],[427,28,177,32,"tokenSymbolNew"],[427,42,177,47],[428,14,177,47,"children"],[428,22,177,47],[428,24,177,48],[429,12,177,51],[430,14,177,51,"fileName"],[430,22,177,51],[430,24,177,51,"_jsxFileName"],[430,36,177,51],[431,14,177,51,"lineNumber"],[431,24,177,51],[432,14,177,51,"columnNumber"],[432,26,177,51],[433,12,177,51],[433,19,177,57],[433,20,177,58],[433,35,178,12],[433,39,178,12,"_reactJsxDevRuntime"],[433,58,178,12],[433,59,178,12,"jsxDEV"],[433,65,178,12],[433,67,178,13,"_reactNative"],[433,79,178,17],[433,80,178,17,"Text"],[433,84,178,17],[434,14,178,18,"style"],[434,19,178,23],[434,21,178,25,"styles"],[434,27,178,31],[434,28,178,32,"balanceAmountNew"],[434,44,178,49],[435,14,178,49,"children"],[435,22,178,49],[435,24,178,51,"hezBalance"],[436,12,178,61],[437,14,178,61,"fileName"],[437,22,178,61],[437,24,178,61,"_jsxFileName"],[437,36,178,61],[438,14,178,61,"lineNumber"],[438,24,178,61],[439,14,178,61,"columnNumber"],[439,26,178,61],[440,12,178,61],[440,19,178,68],[440,20,178,69],[440,35,179,12],[440,39,179,12,"_reactJsxDevRuntime"],[440,58,179,12],[440,59,179,12,"jsxDEV"],[440,65,179,12],[440,67,179,13,"_reactNative"],[440,79,179,17],[440,80,179,17,"Text"],[440,84,179,17],[441,14,179,18,"style"],[441,19,179,23],[441,21,179,25,"styles"],[441,27,179,31],[441,28,179,32,"tokenNameNew"],[441,40,179,45],[442,14,179,45,"children"],[442,22,179,45],[442,24,179,46],[443,12,179,61],[444,14,179,61,"fileName"],[444,22,179,61],[444,24,179,61,"_jsxFileName"],[444,36,179,61],[445,14,179,61,"lineNumber"],[445,24,179,61],[446,14,179,61,"columnNumber"],[446,26,179,61],[447,12,179,61],[447,19,179,67],[447,20,179,68],[448,10,179,68],[449,12,179,68,"fileName"],[449,20,179,68],[449,22,179,68,"_jsxFileName"],[449,34,179,68],[450,12,179,68,"lineNumber"],[450,22,179,68],[451,12,179,68,"columnNumber"],[451,24,179,68],[452,10,179,68],[452,17,180,16],[452,18,180,17],[452,33,182,10],[452,37,182,10,"_reactJsxDevRuntime"],[452,56,182,10],[452,57,182,10,"jsxDEV"],[452,63,182,10],[452,65,182,11,"_reactNative"],[452,77,182,15],[452,78,182,15,"View"],[452,82,182,15],[453,12,182,16,"style"],[453,17,182,21],[453,19,182,23,"styles"],[453,25,182,29],[453,26,182,30,"balanceCardNew"],[453,40,182,45],[454,12,182,45,"children"],[454,20,182,45],[454,36,183,12],[454,40,183,12,"_reactJsxDevRuntime"],[454,59,183,12],[454,60,183,12,"jsxDEV"],[454,66,183,12],[454,68,183,13,"_reactNative"],[454,80,183,18],[454,81,183,18,"Image"],[454,86,183,18],[455,14,184,14,"source"],[455,20,184,20],[455,22,184,22],[456,16,184,24,"uri"],[456,19,184,27],[456,21,184,29],[457,14,184,129],[457,15,184,131],[458,14,185,14,"style"],[458,19,185,19],[458,21,185,21,"styles"],[458,27,185,27],[458,28,185,28,"tokenLogoNew"],[459,12,185,41],[460,14,185,41,"fileName"],[460,22,185,41],[460,24,185,41,"_jsxFileName"],[460,36,185,41],[461,14,185,41,"lineNumber"],[461,24,185,41],[462,14,185,41,"columnNumber"],[462,26,185,41],[463,12,185,41],[463,19,186,13],[463,20,186,14],[463,35,187,12],[463,39,187,12,"_reactJsxDevRuntime"],[463,58,187,12],[463,59,187,12,"jsxDEV"],[463,65,187,12],[463,67,187,13,"_reactNative"],[463,79,187,17],[463,80,187,17,"Text"],[463,84,187,17],[464,14,187,18,"style"],[464,19,187,23],[464,21,187,25,"styles"],[464,27,187,31],[464,28,187,32,"tokenSymbolNew"],[464,42,187,47],[465,14,187,47,"children"],[465,22,187,47],[465,24,187,48],[466,12,187,51],[467,14,187,51,"fileName"],[467,22,187,51],[467,24,187,51,"_jsxFileName"],[467,36,187,51],[468,14,187,51,"lineNumber"],[468,24,187,51],[469,14,187,51,"columnNumber"],[469,26,187,51],[470,12,187,51],[470,19,187,57],[470,20,187,58],[470,35,188,12],[470,39,188,12,"_reactJsxDevRuntime"],[470,58,188,12],[470,59,188,12,"jsxDEV"],[470,65,188,12],[470,67,188,13,"_reactNative"],[470,79,188,17],[470,80,188,17,"Text"],[470,84,188,17],[471,14,188,18,"style"],[471,19,188,23],[471,21,188,25,"styles"],[471,27,188,31],[471,28,188,32,"balanceAmountNew"],[471,44,188,49],[472,14,188,49,"children"],[472,22,188,49],[472,24,188,51,"pezBalance"],[473,12,188,61],[474,14,188,61,"fileName"],[474,22,188,61],[474,24,188,61,"_jsxFileName"],[474,36,188,61],[475,14,188,61,"lineNumber"],[475,24,188,61],[476,14,188,61,"columnNumber"],[476,26,188,61],[477,12,188,61],[477,19,188,68],[477,20,188,69],[477,35,189,12],[477,39,189,12,"_reactJsxDevRuntime"],[477,58,189,12],[477,59,189,12,"jsxDEV"],[477,65,189,12],[477,67,189,13,"_reactNative"],[477,79,189,17],[477,80,189,17,"Text"],[477,84,189,17],[478,14,189,18,"style"],[478,19,189,23],[478,21,189,25,"styles"],[478,27,189,31],[478,28,189,32,"tokenNameNew"],[478,40,189,45],[479,14,189,45,"children"],[479,22,189,45],[479,24,189,46],[480,12,189,59],[481,14,189,59,"fileName"],[481,22,189,59],[481,24,189,59,"_jsxFileName"],[481,36,189,59],[482,14,189,59,"lineNumber"],[482,24,189,59],[483,14,189,59,"columnNumber"],[483,26,189,59],[484,12,189,59],[484,19,189,65],[484,20,189,66],[485,10,189,66],[486,12,189,66,"fileName"],[486,20,189,66],[486,22,189,66,"_jsxFileName"],[486,34,189,66],[487,12,189,66,"lineNumber"],[487,22,189,66],[488,12,189,66,"columnNumber"],[488,24,189,66],[489,10,189,66],[489,17,190,16],[489,18,190,17],[490,8,190,17],[491,10,190,17,"fileName"],[491,18,190,17],[491,20,190,17,"_jsxFileName"],[491,32,190,17],[492,10,190,17,"lineNumber"],[492,20,190,17],[493,10,190,17,"columnNumber"],[493,22,190,17],[494,8,190,17],[494,15,191,14],[494,16,191,15],[494,31,194,8],[494,35,194,8,"_reactJsxDevRuntime"],[494,54,194,8],[494,55,194,8,"jsxDEV"],[494,61,194,8],[494,63,194,9,"_reactNative"],[494,75,194,13],[494,76,194,13,"View"],[494,80,194,13],[495,10,194,14,"style"],[495,15,194,19],[495,17,194,21,"styles"],[495,23,194,27],[495,24,194,28,"actionsContainer"],[495,40,194,45],[496,10,194,45,"children"],[496,18,194,45],[496,34,196,10],[496,38,196,10,"_reactJsxDevRuntime"],[496,57,196,10],[496,58,196,10,"jsxDEV"],[496,64,196,10],[496,66,196,11,"_reactNative"],[496,78,196,15],[496,79,196,15,"View"],[496,83,196,15],[497,12,196,16,"style"],[497,17,196,21],[497,19,196,23,"styles"],[497,25,196,29],[497,26,196,30,"actionsRow"],[497,36,196,41],[498,12,196,41,"children"],[498,20,196,41],[498,36,197,12],[498,40,197,12,"_reactJsxDevRuntime"],[498,59,197,12],[498,60,197,12,"jsxDEV"],[498,66,197,12],[498,68,197,13,"_reactNative"],[498,80,197,29],[498,81,197,29,"TouchableOpacity"],[498,97,197,29],[499,14,197,30,"style"],[499,19,197,35],[499,21,197,37],[499,22,197,38,"styles"],[499,28,197,44],[499,29,197,45,"actionBtn"],[499,38,197,54],[499,40,197,56],[500,16,197,57,"backgroundColor"],[500,31,197,72],[500,33,197,74],[501,14,197,83],[501,15,197,84],[501,16,197,86],[502,14,197,86,"children"],[502,22,197,86],[502,38,198,14],[502,42,198,14,"_reactJsxDevRuntime"],[502,61,198,14],[502,62,198,14,"jsxDEV"],[502,68,198,14],[502,70,198,15,"_expoVectorIcons"],[502,86,198,23],[502,87,198,23,"Ionicons"],[502,95,198,23],[503,16,198,24,"name"],[503,20,198,28],[503,22,198,29],[503,32,198,39],[504,16,198,40,"size"],[504,20,198,44],[504,22,198,46],[504,24,198,49],[505,16,198,50,"color"],[505,21,198,55],[505,23,198,56],[506,14,198,62],[507,16,198,62,"fileName"],[507,24,198,62],[507,26,198,62,"_jsxFileName"],[507,38,198,62],[508,16,198,62,"lineNumber"],[508,26,198,62],[509,16,198,62,"columnNumber"],[509,28,198,62],[510,14,198,62],[510,21,198,64],[510,22,198,65],[510,37,199,14],[510,41,199,14,"_reactJsxDevRuntime"],[510,60,199,14],[510,61,199,14,"jsxDEV"],[510,67,199,14],[510,69,199,15,"_reactNative"],[510,81,199,19],[510,82,199,19,"Text"],[510,86,199,19],[511,16,199,20,"style"],[511,21,199,25],[511,23,199,27,"styles"],[511,29,199,33],[511,30,199,34,"actionBtnText"],[511,43,199,48],[512,16,199,48,"children"],[512,24,199,48],[512,26,199,49],[513,14,199,53],[514,16,199,53,"fileName"],[514,24,199,53],[514,26,199,53,"_jsxFileName"],[514,38,199,53],[515,16,199,53,"lineNumber"],[515,26,199,53],[516,16,199,53,"columnNumber"],[516,28,199,53],[517,14,199,53],[517,21,199,59],[517,22,199,60],[518,12,199,60],[519,14,199,60,"fileName"],[519,22,199,60],[519,24,199,60,"_jsxFileName"],[519,36,199,60],[520,14,199,60,"lineNumber"],[520,24,199,60],[521,14,199,60,"columnNumber"],[521,26,199,60],[522,12,199,60],[522,19,200,30],[522,20,200,31],[522,35,201,12],[522,39,201,12,"_reactJsxDevRuntime"],[522,58,201,12],[522,59,201,12,"jsxDEV"],[522,65,201,12],[522,67,201,13,"_reactNative"],[522,79,201,29],[522,80,201,29,"TouchableOpacity"],[522,96,201,29],[523,14,201,30,"style"],[523,19,201,35],[523,21,201,37],[523,22,201,38,"styles"],[523,28,201,44],[523,29,201,45,"actionBtn"],[523,38,201,54],[523,40,201,56],[524,16,201,57,"backgroundColor"],[524,31,201,72],[524,33,201,74],[525,14,201,83],[525,15,201,84],[525,16,201,86],[526,14,201,86,"children"],[526,22,201,86],[526,38,202,14],[526,42,202,14,"_reactJsxDevRuntime"],[526,61,202,14],[526,62,202,14,"jsxDEV"],[526,68,202,14],[526,70,202,15,"_expoVectorIcons"],[526,86,202,23],[526,87,202,23,"Ionicons"],[526,95,202,23],[527,16,202,24,"name"],[527,20,202,28],[527,22,202,29],[527,34,202,41],[528,16,202,42,"size"],[528,20,202,46],[528,22,202,48],[528,24,202,51],[529,16,202,52,"color"],[529,21,202,57],[529,23,202,58],[530,14,202,64],[531,16,202,64,"fileName"],[531,24,202,64],[531,26,202,64,"_jsxFileName"],[531,38,202,64],[532,16,202,64,"lineNumber"],[532,26,202,64],[533,16,202,64,"columnNumber"],[533,28,202,64],[534,14,202,64],[534,21,202,66],[534,22,202,67],[534,37,203,14],[534,41,203,14,"_reactJsxDevRuntime"],[534,60,203,14],[534,61,203,14,"jsxDEV"],[534,67,203,14],[534,69,203,15,"_reactNative"],[534,81,203,19],[534,82,203,19,"Text"],[534,86,203,19],[535,16,203,20,"style"],[535,21,203,25],[535,23,203,27,"styles"],[535,29,203,33],[535,30,203,34,"actionBtnText"],[535,43,203,48],[536,16,203,48,"children"],[536,24,203,48],[536,26,203,49],[537,14,203,56],[538,16,203,56,"fileName"],[538,24,203,56],[538,26,203,56,"_jsxFileName"],[538,38,203,56],[539,16,203,56,"lineNumber"],[539,26,203,56],[540,16,203,56,"columnNumber"],[540,28,203,56],[541,14,203,56],[541,21,203,62],[541,22,203,63],[542,12,203,63],[543,14,203,63,"fileName"],[543,22,203,63],[543,24,203,63,"_jsxFileName"],[543,36,203,63],[544,14,203,63,"lineNumber"],[544,24,203,63],[545,14,203,63,"columnNumber"],[545,26,203,63],[546,12,203,63],[546,19,204,30],[546,20,204,31],[546,35,205,12],[546,39,205,12,"_reactJsxDevRuntime"],[546,58,205,12],[546,59,205,12,"jsxDEV"],[546,65,205,12],[546,67,205,13,"_reactNative"],[546,79,205,29],[546,80,205,29,"TouchableOpacity"],[546,96,205,29],[547,14,205,30,"style"],[547,19,205,35],[547,21,205,37],[547,22,205,38,"styles"],[547,28,205,44],[547,29,205,45,"actionBtn"],[547,38,205,54],[547,40,205,56],[548,16,205,57,"backgroundColor"],[548,31,205,72],[548,33,205,74],[549,14,205,83],[549,15,205,84],[549,16,205,86],[550,14,205,86,"children"],[550,22,205,86],[550,38,206,14],[550,42,206,14,"_reactJsxDevRuntime"],[550,61,206,14],[550,62,206,14,"jsxDEV"],[550,68,206,14],[550,70,206,15,"_expoVectorIcons"],[550,86,206,23],[550,87,206,23,"Ionicons"],[550,95,206,23],[551,16,206,24,"name"],[551,20,206,28],[551,22,206,29],[551,39,206,46],[552,16,206,47,"size"],[552,20,206,51],[552,22,206,53],[552,24,206,56],[553,16,206,57,"color"],[553,21,206,62],[553,23,206,63],[554,14,206,69],[555,16,206,69,"fileName"],[555,24,206,69],[555,26,206,69,"_jsxFileName"],[555,38,206,69],[556,16,206,69,"lineNumber"],[556,26,206,69],[557,16,206,69,"columnNumber"],[557,28,206,69],[558,14,206,69],[558,21,206,71],[558,22,206,72],[558,37,207,14],[558,41,207,14,"_reactJsxDevRuntime"],[558,60,207,14],[558,61,207,14,"jsxDEV"],[558,67,207,14],[558,69,207,15,"_reactNative"],[558,81,207,19],[558,82,207,19,"Text"],[558,86,207,19],[559,16,207,20,"style"],[559,21,207,25],[559,23,207,27,"styles"],[559,29,207,33],[559,30,207,34,"actionBtnText"],[559,43,207,48],[560,16,207,48,"children"],[560,24,207,48],[560,26,207,49],[561,14,207,53],[562,16,207,53,"fileName"],[562,24,207,53],[562,26,207,53,"_jsxFileName"],[562,38,207,53],[563,16,207,53,"lineNumber"],[563,26,207,53],[564,16,207,53,"columnNumber"],[564,28,207,53],[565,14,207,53],[565,21,207,59],[565,22,207,60],[566,12,207,60],[567,14,207,60,"fileName"],[567,22,207,60],[567,24,207,60,"_jsxFileName"],[567,36,207,60],[568,14,207,60,"lineNumber"],[568,24,207,60],[569,14,207,60,"columnNumber"],[569,26,207,60],[570,12,207,60],[570,19,208,30],[570,20,208,31],[570,35,209,12],[570,39,209,12,"_reactJsxDevRuntime"],[570,58,209,12],[570,59,209,12,"jsxDEV"],[570,65,209,12],[570,67,209,13,"_reactNative"],[570,79,209,29],[570,80,209,29,"TouchableOpacity"],[570,96,209,29],[571,14,209,30,"style"],[571,19,209,35],[571,21,209,37],[571,22,209,38,"styles"],[571,28,209,44],[571,29,209,45,"actionBtn"],[571,38,209,54],[571,40,209,56],[572,16,209,57,"backgroundColor"],[572,31,209,72],[572,33,209,74],[573,14,209,83],[573,15,209,84],[573,16,209,86],[574,14,209,86,"children"],[574,22,209,86],[574,38,210,14],[574,42,210,14,"_reactJsxDevRuntime"],[574,61,210,14],[574,62,210,14,"jsxDEV"],[574,68,210,14],[574,70,210,15,"_expoVectorIcons"],[574,86,210,23],[574,87,210,23,"Ionicons"],[574,95,210,23],[575,16,210,24,"name"],[575,20,210,28],[575,22,210,29],[575,30,210,37],[576,16,210,38,"size"],[576,20,210,42],[576,22,210,44],[576,24,210,47],[577,16,210,48,"color"],[577,21,210,53],[577,23,210,54],[578,14,210,60],[579,16,210,60,"fileName"],[579,24,210,60],[579,26,210,60,"_jsxFileName"],[579,38,210,60],[580,16,210,60,"lineNumber"],[580,26,210,60],[581,16,210,60,"columnNumber"],[581,28,210,60],[582,14,210,60],[582,21,210,62],[582,22,210,63],[582,37,211,14],[582,41,211,14,"_reactJsxDevRuntime"],[582,60,211,14],[582,61,211,14,"jsxDEV"],[582,67,211,14],[582,69,211,15,"_reactNative"],[582,81,211,19],[582,82,211,19,"Text"],[582,86,211,19],[583,16,211,20,"style"],[583,21,211,25],[583,23,211,27,"styles"],[583,29,211,33],[583,30,211,34,"actionBtnText"],[583,43,211,48],[584,16,211,48,"children"],[584,24,211,48],[584,26,211,49],[585,14,211,52],[586,16,211,52,"fileName"],[586,24,211,52],[586,26,211,52,"_jsxFileName"],[586,38,211,52],[587,16,211,52,"lineNumber"],[587,26,211,52],[588,16,211,52,"columnNumber"],[588,28,211,52],[589,14,211,52],[589,21,211,58],[589,22,211,59],[590,12,211,59],[591,14,211,59,"fileName"],[591,22,211,59],[591,24,211,59,"_jsxFileName"],[591,36,211,59],[592,14,211,59,"lineNumber"],[592,24,211,59],[593,14,211,59,"columnNumber"],[593,26,211,59],[594,12,211,59],[594,19,212,30],[594,20,212,31],[595,10,212,31],[596,12,212,31,"fileName"],[596,20,212,31],[596,22,212,31,"_jsxFileName"],[596,34,212,31],[597,12,212,31,"lineNumber"],[597,22,212,31],[598,12,212,31,"columnNumber"],[598,24,212,31],[599,10,212,31],[599,17,213,16],[599,18,213,17],[599,33,216,10],[599,37,216,10,"_reactJsxDevRuntime"],[599,56,216,10],[599,57,216,10,"jsxDEV"],[599,63,216,10],[599,65,216,11,"_reactNative"],[599,77,216,15],[599,78,216,15,"View"],[599,82,216,15],[600,12,216,16,"style"],[600,17,216,21],[600,19,216,23,"styles"],[600,25,216,29],[600,26,216,30,"actionsRow"],[600,36,216,41],[601,12,216,41,"children"],[601,20,216,41],[601,36,217,12],[601,40,217,12,"_reactJsxDevRuntime"],[601,59,217,12],[601,60,217,12,"jsxDEV"],[601,66,217,12],[601,68,217,13,"_reactNative"],[601,80,217,29],[601,81,217,29,"TouchableOpacity"],[601,97,217,29],[602,14,217,30,"style"],[602,19,217,35],[602,21,217,37],[602,22,217,38,"styles"],[602,28,217,44],[602,29,217,45,"actionBtn"],[602,38,217,54],[602,40,217,56],[603,16,217,57,"backgroundColor"],[603,31,217,72],[603,33,217,74],[604,14,217,83],[604,15,217,84],[604,16,217,86],[605,14,217,86,"children"],[605,22,217,86],[605,38,218,14],[605,42,218,14,"_reactJsxDevRuntime"],[605,61,218,14],[605,62,218,14,"jsxDEV"],[605,68,218,14],[605,70,218,15,"_expoVectorIcons"],[605,86,218,23],[605,87,218,23,"Ionicons"],[605,95,218,23],[606,16,218,24,"name"],[606,20,218,28],[606,22,218,29],[606,33,218,40],[607,16,218,41,"size"],[607,20,218,45],[607,22,218,47],[607,24,218,50],[608,16,218,51,"color"],[608,21,218,56],[608,23,218,57],[609,14,218,63],[610,16,218,63,"fileName"],[610,24,218,63],[610,26,218,63,"_jsxFileName"],[610,38,218,63],[611,16,218,63,"lineNumber"],[611,26,218,63],[612,16,218,63,"columnNumber"],[612,28,218,63],[613,14,218,63],[613,21,218,65],[613,22,218,66],[613,37,219,14],[613,41,219,14,"_reactJsxDevRuntime"],[613,60,219,14],[613,61,219,14,"jsxDEV"],[613,67,219,14],[613,69,219,15,"_reactNative"],[613,81,219,19],[613,82,219,19,"Text"],[613,86,219,19],[614,16,219,20,"style"],[614,21,219,25],[614,23,219,27,"styles"],[614,29,219,33],[614,30,219,34,"actionBtnText"],[614,43,219,48],[615,16,219,48,"children"],[615,24,219,48],[615,26,219,49],[616,14,219,53],[617,16,219,53,"fileName"],[617,24,219,53],[617,26,219,53,"_jsxFileName"],[617,38,219,53],[618,16,219,53,"lineNumber"],[618,26,219,53],[619,16,219,53,"columnNumber"],[619,28,219,53],[620,14,219,53],[620,21,219,59],[620,22,219,60],[621,12,219,60],[622,14,219,60,"fileName"],[622,22,219,60],[622,24,219,60,"_jsxFileName"],[622,36,219,60],[623,14,219,60,"lineNumber"],[623,24,219,60],[624,14,219,60,"columnNumber"],[624,26,219,60],[625,12,219,60],[625,19,220,30],[625,20,220,31],[625,35,221,12],[625,39,221,12,"_reactJsxDevRuntime"],[625,58,221,12],[625,59,221,12,"jsxDEV"],[625,65,221,12],[625,67,221,13,"_reactNative"],[625,79,221,29],[625,80,221,29,"TouchableOpacity"],[625,96,221,29],[626,14,221,30,"style"],[626,19,221,35],[626,21,221,37],[626,22,221,38,"styles"],[626,28,221,44],[626,29,221,45,"actionBtn"],[626,38,221,54],[626,40,221,56],[627,16,221,57,"backgroundColor"],[627,31,221,72],[627,33,221,74],[628,14,221,83],[628,15,221,84],[628,16,221,86],[629,14,221,86,"children"],[629,22,221,86],[629,38,222,14],[629,42,222,14,"_reactJsxDevRuntime"],[629,61,222,14],[629,62,222,14,"jsxDEV"],[629,68,222,14],[629,70,222,15,"_expoVectorIcons"],[629,86,222,23],[629,87,222,23,"Ionicons"],[629,95,222,23],[630,16,222,24,"name"],[630,20,222,28],[630,22,222,29],[630,28,222,35],[631,16,222,36,"size"],[631,20,222,40],[631,22,222,42],[631,24,222,45],[632,16,222,46,"color"],[632,21,222,51],[632,23,222,52],[633,14,222,58],[634,16,222,58,"fileName"],[634,24,222,58],[634,26,222,58,"_jsxFileName"],[634,38,222,58],[635,16,222,58,"lineNumber"],[635,26,222,58],[636,16,222,58,"columnNumber"],[636,28,222,58],[637,14,222,58],[637,21,222,60],[637,22,222,61],[637,37,223,14],[637,41,223,14,"_reactJsxDevRuntime"],[637,60,223,14],[637,61,223,14,"jsxDEV"],[637,67,223,14],[637,69,223,15,"_reactNative"],[637,81,223,19],[637,82,223,19,"Text"],[637,86,223,19],[638,16,223,20,"style"],[638,21,223,25],[638,23,223,27,"styles"],[638,29,223,33],[638,30,223,34,"actionBtnText"],[638,43,223,48],[639,16,223,48,"children"],[639,24,223,48],[639,26,223,49],[640,14,223,54],[641,16,223,54,"fileName"],[641,24,223,54],[641,26,223,54,"_jsxFileName"],[641,38,223,54],[642,16,223,54,"lineNumber"],[642,26,223,54],[643,16,223,54,"columnNumber"],[643,28,223,54],[644,14,223,54],[644,21,223,60],[644,22,223,61],[645,12,223,61],[646,14,223,61,"fileName"],[646,22,223,61],[646,24,223,61,"_jsxFileName"],[646,36,223,61],[647,14,223,61,"lineNumber"],[647,24,223,61],[648,14,223,61,"columnNumber"],[648,26,223,61],[649,12,223,61],[649,19,224,30],[649,20,224,31],[649,35,225,12],[649,39,225,12,"_reactJsxDevRuntime"],[649,58,225,12],[649,59,225,12,"jsxDEV"],[649,65,225,12],[649,67,225,13,"_reactNative"],[649,79,225,29],[649,80,225,29,"TouchableOpacity"],[649,96,225,29],[650,14,225,30,"style"],[650,19,225,35],[650,21,225,37],[650,22,225,38,"styles"],[650,28,225,44],[650,29,225,45,"actionBtn"],[650,38,225,54],[650,40,225,56],[651,16,225,57,"backgroundColor"],[651,31,225,72],[651,33,225,74],[652,14,225,83],[652,15,225,84],[652,16,225,86],[653,14,225,86,"children"],[653,22,225,86],[653,38,226,14],[653,42,226,14,"_reactJsxDevRuntime"],[653,61,226,14],[653,62,226,14,"jsxDEV"],[653,68,226,14],[653,70,226,15,"_expoVectorIcons"],[653,86,226,23],[653,87,226,23,"Ionicons"],[653,95,226,23],[654,16,226,24,"name"],[654,20,226,28],[654,22,226,29],[654,28,226,35],[655,16,226,36,"size"],[655,20,226,40],[655,22,226,42],[655,24,226,45],[656,16,226,46,"color"],[656,21,226,51],[656,23,226,52],[657,14,226,58],[658,16,226,58,"fileName"],[658,24,226,58],[658,26,226,58,"_jsxFileName"],[658,38,226,58],[659,16,226,58,"lineNumber"],[659,26,226,58],[660,16,226,58,"columnNumber"],[660,28,226,58],[661,14,226,58],[661,21,226,60],[661,22,226,61],[661,37,227,14],[661,41,227,14,"_reactJsxDevRuntime"],[661,60,227,14],[661,61,227,14,"jsxDEV"],[661,67,227,14],[661,69,227,15,"_reactNative"],[661,81,227,19],[661,82,227,19,"Text"],[661,86,227,19],[662,16,227,20,"style"],[662,21,227,25],[662,23,227,27,"styles"],[662,29,227,33],[662,30,227,34,"actionBtnText"],[662,43,227,48],[663,16,227,48,"children"],[663,24,227,48],[663,26,227,49],[664,14,227,56],[665,16,227,56,"fileName"],[665,24,227,56],[665,26,227,56,"_jsxFileName"],[665,38,227,56],[666,16,227,56,"lineNumber"],[666,26,227,56],[667,16,227,56,"columnNumber"],[667,28,227,56],[668,14,227,56],[668,21,227,62],[668,22,227,63],[669,12,227,63],[670,14,227,63,"fileName"],[670,22,227,63],[670,24,227,63,"_jsxFileName"],[670,36,227,63],[671,14,227,63,"lineNumber"],[671,24,227,63],[672,14,227,63,"columnNumber"],[672,26,227,63],[673,12,227,63],[673,19,228,30],[673,20,228,31],[673,35,229,12],[673,39,229,12,"_reactJsxDevRuntime"],[673,58,229,12],[673,59,229,12,"jsxDEV"],[673,65,229,12],[673,67,229,13,"_reactNative"],[673,79,229,29],[673,80,229,29,"TouchableOpacity"],[673,96,229,29],[674,14,229,30,"style"],[674,19,229,35],[674,21,229,37],[674,22,229,38,"styles"],[674,28,229,44],[674,29,229,45,"actionBtn"],[674,38,229,54],[674,40,229,56],[675,16,229,57,"backgroundColor"],[675,31,229,72],[675,33,229,74],[676,14,229,83],[676,15,229,84],[676,16,229,86],[677,14,229,86,"children"],[677,22,229,86],[677,38,230,14],[677,42,230,14,"_reactJsxDevRuntime"],[677,61,230,14],[677,62,230,14,"jsxDEV"],[677,68,230,14],[677,70,230,15,"_expoVectorIcons"],[677,86,230,23],[677,87,230,23,"Ionicons"],[677,95,230,23],[678,16,230,24,"name"],[678,20,230,28],[678,22,230,29],[678,28,230,35],[679,16,230,36,"size"],[679,20,230,40],[679,22,230,42],[679,24,230,45],[680,16,230,46,"color"],[680,21,230,51],[680,23,230,52],[681,14,230,58],[682,16,230,58,"fileName"],[682,24,230,58],[682,26,230,58,"_jsxFileName"],[682,38,230,58],[683,16,230,58,"lineNumber"],[683,26,230,58],[684,16,230,58,"columnNumber"],[684,28,230,58],[685,14,230,58],[685,21,230,60],[685,22,230,61],[685,37,231,14],[685,41,231,14,"_reactJsxDevRuntime"],[685,60,231,14],[685,61,231,14,"jsxDEV"],[685,67,231,14],[685,69,231,15,"_reactNative"],[685,81,231,19],[685,82,231,19,"Text"],[685,86,231,19],[686,16,231,20,"style"],[686,21,231,25],[686,23,231,27,"styles"],[686,29,231,33],[686,30,231,34,"actionBtnText"],[686,43,231,48],[687,16,231,48,"children"],[687,24,231,48],[687,26,231,49],[688,14,231,56],[689,16,231,56,"fileName"],[689,24,231,56],[689,26,231,56,"_jsxFileName"],[689,38,231,56],[690,16,231,56,"lineNumber"],[690,26,231,56],[691,16,231,56,"columnNumber"],[691,28,231,56],[692,14,231,56],[692,21,231,62],[692,22,231,63],[693,12,231,63],[694,14,231,63,"fileName"],[694,22,231,63],[694,24,231,63,"_jsxFileName"],[694,36,231,63],[695,14,231,63,"lineNumber"],[695,24,231,63],[696,14,231,63,"columnNumber"],[696,26,231,63],[697,12,231,63],[697,19,232,30],[697,20,232,31],[698,10,232,31],[699,12,232,31,"fileName"],[699,20,232,31],[699,22,232,31,"_jsxFileName"],[699,34,232,31],[700,12,232,31,"lineNumber"],[700,22,232,31],[701,12,232,31,"columnNumber"],[701,24,232,31],[702,10,232,31],[702,17,233,16],[702,18,233,17],[703,8,233,17],[704,10,233,17,"fileName"],[704,18,233,17],[704,20,233,17,"_jsxFileName"],[704,32,233,17],[705,10,233,17,"lineNumber"],[705,20,233,17],[706,10,233,17,"columnNumber"],[706,22,233,17],[707,8,233,17],[707,15,234,14],[707,16,234,15],[707,31,237,8],[707,35,237,8,"_reactJsxDevRuntime"],[707,54,237,8],[707,55,237,8,"jsxDEV"],[707,61,237,8],[707,63,237,9,"_reactNative"],[707,75,237,13],[707,76,237,13,"View"],[707,80,237,13],[708,10,237,14,"style"],[708,15,237,19],[708,17,237,21,"styles"],[708,23,237,27],[708,24,237,28,"tokensContainer"],[708,39,237,44],[709,10,237,44,"children"],[709,18,237,44],[709,34,238,10],[709,38,238,10,"_reactJsxDevRuntime"],[709,57,238,10],[709,58,238,10,"jsxDEV"],[709,64,238,10],[709,66,238,11,"_reactNative"],[709,78,238,15],[709,79,238,15,"Text"],[709,83,238,15],[710,12,238,16,"style"],[710,17,238,21],[710,19,238,23,"styles"],[710,25,238,29],[710,26,238,30,"tokensTitle"],[710,37,238,42],[711,12,238,42,"children"],[711,20,238,42],[711,22,238,43],[712,10,238,49],[713,12,238,49,"fileName"],[713,20,238,49],[713,22,238,49,"_jsxFileName"],[713,34,238,49],[714,12,238,49,"lineNumber"],[714,22,238,49],[715,12,238,49,"columnNumber"],[715,24,238,49],[716,10,238,49],[716,17,238,55],[716,18,238,56],[716,33,241,10],[716,37,241,10,"_reactJsxDevRuntime"],[716,56,241,10],[716,57,241,10,"jsxDEV"],[716,63,241,10],[716,65,241,11,"_reactNative"],[716,77,241,15],[716,78,241,15,"View"],[716,82,241,15],[717,12,241,16,"style"],[717,17,241,21],[717,19,241,23,"styles"],[717,25,241,29],[717,26,241,30,"tokenItem"],[717,35,241,40],[718,12,241,40,"children"],[718,20,241,40],[718,36,242,12],[718,40,242,12,"_reactJsxDevRuntime"],[718,59,242,12],[718,60,242,12,"jsxDEV"],[718,66,242,12],[718,68,242,13,"_reactNative"],[718,80,242,17],[718,81,242,17,"View"],[718,85,242,17],[719,14,242,18,"style"],[719,19,242,23],[719,21,242,25,"styles"],[719,27,242,31],[719,28,242,32,"tokenItemLeft"],[719,41,242,46],[720,14,242,46,"children"],[720,22,242,46],[720,38,243,14],[720,42,243,14,"_reactJsxDevRuntime"],[720,61,243,14],[720,62,243,14,"jsxDEV"],[720,68,243,14],[720,70,243,15,"_reactNative"],[720,82,243,19],[720,83,243,19,"View"],[720,87,243,19],[721,16,243,20,"style"],[721,21,243,25],[721,23,243,27,"styles"],[721,29,243,33],[721,30,243,34,"tokenIconContainer"],[721,48,243,53],[722,16,243,53,"children"],[722,24,243,53],[722,40,244,16],[722,44,244,16,"_reactJsxDevRuntime"],[722,63,244,16],[722,64,244,16,"jsxDEV"],[722,70,244,16],[722,72,244,17,"_reactNative"],[722,84,244,22],[722,85,244,22,"Image"],[722,90,244,22],[723,18,245,18,"source"],[723,24,245,24],[723,26,245,26],[724,20,245,28,"uri"],[724,23,245,31],[724,25,245,33],[725,18,245,134],[725,19,245,136],[726,18,246,18,"style"],[726,23,246,23],[726,25,246,25,"styles"],[726,31,246,31],[726,32,246,32,"tokenIcon"],[727,16,246,42],[728,18,246,42,"fileName"],[728,26,246,42],[728,28,246,42,"_jsxFileName"],[728,40,246,42],[729,18,246,42,"lineNumber"],[729,28,246,42],[730,18,246,42,"columnNumber"],[730,30,246,42],[731,16,246,42],[731,23,247,17],[731,24,247,18],[731,39,248,16],[731,43,248,16,"_reactJsxDevRuntime"],[731,62,248,16],[731,63,248,16,"jsxDEV"],[731,69,248,16],[731,71,248,17,"_reactNative"],[731,83,248,22],[731,84,248,22,"Image"],[731,89,248,22],[732,18,249,18,"source"],[732,24,249,24],[732,26,249,26],[733,20,249,28,"uri"],[733,23,249,31],[733,25,249,33],[734,18,249,133],[734,19,249,135],[735,18,250,18,"style"],[735,23,250,23],[735,25,250,25,"styles"],[735,31,250,31],[735,32,250,32,"networkBadge"],[736,16,250,45],[737,18,250,45,"fileName"],[737,26,250,45],[737,28,250,45,"_jsxFileName"],[737,40,250,45],[738,18,250,45,"lineNumber"],[738,28,250,45],[739,18,250,45,"columnNumber"],[739,30,250,45],[740,16,250,45],[740,23,251,17],[740,24,251,18],[741,14,251,18],[742,16,251,18,"fileName"],[742,24,251,18],[742,26,251,18,"_jsxFileName"],[742,38,251,18],[743,16,251,18,"lineNumber"],[743,26,251,18],[744,16,251,18,"columnNumber"],[744,28,251,18],[745,14,251,18],[745,21,252,20],[745,22,252,21],[745,37,253,14],[745,41,253,14,"_reactJsxDevRuntime"],[745,60,253,14],[745,61,253,14,"jsxDEV"],[745,67,253,14],[745,69,253,15,"_reactNative"],[745,81,253,19],[745,82,253,19,"View"],[745,86,253,19],[746,16,253,19,"children"],[746,24,253,19],[746,40,254,16],[746,44,254,16,"_reactJsxDevRuntime"],[746,63,254,16],[746,64,254,16,"jsxDEV"],[746,70,254,16],[746,72,254,17,"_reactNative"],[746,84,254,21],[746,85,254,21,"Text"],[746,89,254,21],[747,18,254,22,"style"],[747,23,254,27],[747,25,254,29,"styles"],[747,31,254,35],[747,32,254,36,"tokenItemName"],[747,45,254,50],[748,18,254,50,"children"],[748,26,254,50],[748,28,254,51],[749,16,254,55],[750,18,254,55,"fileName"],[750,26,254,55],[750,28,254,55,"_jsxFileName"],[750,40,254,55],[751,18,254,55,"lineNumber"],[751,28,254,55],[752,18,254,55,"columnNumber"],[752,30,254,55],[753,16,254,55],[753,23,254,61],[753,24,254,62],[753,39,255,16],[753,43,255,16,"_reactJsxDevRuntime"],[753,62,255,16],[753,63,255,16,"jsxDEV"],[753,69,255,16],[753,71,255,17,"_reactNative"],[753,83,255,21],[753,84,255,21,"Text"],[753,88,255,21],[754,18,255,22,"style"],[754,23,255,27],[754,25,255,29,"styles"],[754,31,255,35],[754,32,255,36,"tokenItemNetwork"],[754,48,255,53],[755,18,255,53,"children"],[755,26,255,53],[755,28,255,54],[756,16,255,65],[757,18,255,65,"fileName"],[757,26,255,65],[757,28,255,65,"_jsxFileName"],[757,40,255,65],[758,18,255,65,"lineNumber"],[758,28,255,65],[759,18,255,65,"columnNumber"],[759,30,255,65],[760,16,255,65],[760,23,255,71],[760,24,255,72],[761,14,255,72],[762,16,255,72,"fileName"],[762,24,255,72],[762,26,255,72,"_jsxFileName"],[762,38,255,72],[763,16,255,72,"lineNumber"],[763,26,255,72],[764,16,255,72,"columnNumber"],[764,28,255,72],[765,14,255,72],[765,21,256,20],[765,22,256,21],[766,12,256,21],[767,14,256,21,"fileName"],[767,22,256,21],[767,24,256,21,"_jsxFileName"],[767,36,256,21],[768,14,256,21,"lineNumber"],[768,24,256,21],[769,14,256,21,"columnNumber"],[769,26,256,21],[770,12,256,21],[770,19,257,18],[770,20,257,19],[770,35,258,12],[770,39,258,12,"_reactJsxDevRuntime"],[770,58,258,12],[770,59,258,12,"jsxDEV"],[770,65,258,12],[770,67,258,13,"_reactNative"],[770,79,258,17],[770,80,258,17,"View"],[770,84,258,17],[771,14,258,18,"style"],[771,19,258,23],[771,21,258,25,"styles"],[771,27,258,31],[771,28,258,32,"tokenItemRight"],[771,42,258,47],[772,14,258,47,"children"],[772,22,258,47],[772,38,259,14],[772,42,259,14,"_reactJsxDevRuntime"],[772,61,259,14],[772,62,259,14,"jsxDEV"],[772,68,259,14],[772,70,259,15,"_reactNative"],[772,82,259,19],[772,83,259,19,"Text"],[772,87,259,19],[773,16,259,20,"style"],[773,21,259,25],[773,23,259,27,"styles"],[773,29,259,33],[773,30,259,34,"tokenItemBalance"],[773,46,259,51],[774,16,259,51,"children"],[774,24,259,51],[774,26,259,52],[775,14,259,53],[776,16,259,53,"fileName"],[776,24,259,53],[776,26,259,53,"_jsxFileName"],[776,38,259,53],[777,16,259,53,"lineNumber"],[777,26,259,53],[778,16,259,53,"columnNumber"],[778,28,259,53],[779,14,259,53],[779,21,259,59],[779,22,259,60],[779,37,260,14],[779,41,260,14,"_reactJsxDevRuntime"],[779,60,260,14],[779,61,260,14,"jsxDEV"],[779,67,260,14],[779,69,260,15,"_reactNative"],[779,81,260,19],[779,82,260,19,"Text"],[779,86,260,19],[780,16,260,20,"style"],[780,21,260,25],[780,23,260,27,"styles"],[780,29,260,33],[780,30,260,34,"tokenItemUsd"],[780,42,260,47],[781,16,260,47,"children"],[781,24,260,47],[781,26,260,48],[782,14,260,50],[783,16,260,50,"fileName"],[783,24,260,50],[783,26,260,50,"_jsxFileName"],[783,38,260,50],[784,16,260,50,"lineNumber"],[784,26,260,50],[785,16,260,50,"columnNumber"],[785,28,260,50],[786,14,260,50],[786,21,260,56],[786,22,260,57],[787,12,260,57],[788,14,260,57,"fileName"],[788,22,260,57],[788,24,260,57,"_jsxFileName"],[788,36,260,57],[789,14,260,57,"lineNumber"],[789,24,260,57],[790,14,260,57,"columnNumber"],[790,26,260,57],[791,12,260,57],[791,19,261,18],[791,20,261,19],[792,10,261,19],[793,12,261,19,"fileName"],[793,20,261,19],[793,22,261,19,"_jsxFileName"],[793,34,261,19],[794,12,261,19,"lineNumber"],[794,22,261,19],[795,12,261,19,"columnNumber"],[795,24,261,19],[796,10,261,19],[796,17,262,16],[796,18,262,17],[797,8,262,17],[798,10,262,17,"fileName"],[798,18,262,17],[798,20,262,17,"_jsxFileName"],[798,32,262,17],[799,10,262,17,"lineNumber"],[799,20,262,17],[800,10,262,17,"columnNumber"],[800,22,262,17],[801,8,262,17],[801,15,265,14],[801,16,265,15],[802,6,265,15],[803,8,265,15,"fileName"],[803,16,265,15],[803,18,265,15,"_jsxFileName"],[803,30,265,15],[804,8,265,15,"lineNumber"],[804,18,265,15],[805,8,265,15,"columnNumber"],[805,20,265,15],[806,6,265,15],[806,13,266,18],[807,4,266,19],[808,6,266,19,"fileName"],[808,14,266,19],[808,16,266,19,"_jsxFileName"],[808,28,266,19],[809,6,266,19,"lineNumber"],[809,16,266,19],[810,6,266,19,"columnNumber"],[810,18,266,19],[811,4,266,19],[811,11,267,10],[811,12,267,11],[812,2,269,0],[813,2,269,1,"_s2"],[813,5,269,1],[813,6,117,9,"WalletTab"],[813,15,117,18],[814,4,117,18],[814,12,118,19,"useAuth"],[814,32,118,26],[814,33,118,26,"useAuth"],[814,40,118,26],[815,2,118,26],[816,2,118,26,"_c2"],[816,5,118,26],[816,8,117,9,"WalletTab"],[816,17,117,18],[817,2,271,0],[817,11,271,9,"CitizensTab"],[817,22,271,20,"CitizensTab"],[817,23,271,20],[817,25,271,23],[818,4,272,2],[818,24,273,4],[818,28,273,4,"_reactJsxDevRuntime"],[818,47,273,4],[818,48,273,4,"jsxDEV"],[818,54,273,4],[818,56,273,5,"_reactNative"],[818,68,273,9],[818,69,273,9,"View"],[818,73,273,9],[819,6,273,10,"style"],[819,11,273,15],[819,13,273,17,"styles"],[819,19,273,23],[819,20,273,24,"container"],[819,29,273,34],[820,6,273,34,"children"],[820,14,273,34],[820,29,274,6],[820,33,274,6,"_reactJsxDevRuntime"],[820,52,274,6],[820,53,274,6,"jsxDEV"],[820,59,274,6],[820,61,274,7,"_reactNative"],[820,73,274,11],[820,74,274,11,"Text"],[820,78,274,11],[821,8,274,12,"style"],[821,13,274,17],[821,15,274,19,"styles"],[821,21,274,25],[821,22,274,26,"placeholderText"],[821,37,274,42],[822,8,274,42,"children"],[822,16,274,42],[822,18,274,43],[823,6,274,58],[824,8,274,58,"fileName"],[824,16,274,58],[824,18,274,58,"_jsxFileName"],[824,30,274,58],[825,8,274,58,"lineNumber"],[825,18,274,58],[826,8,274,58,"columnNumber"],[826,20,274,58],[827,6,274,58],[827,13,274,64],[828,4,274,65],[829,6,274,65,"fileName"],[829,14,274,65],[829,16,274,65,"_jsxFileName"],[829,28,274,65],[830,6,274,65,"lineNumber"],[830,16,274,65],[831,6,274,65,"columnNumber"],[831,18,274,65],[832,4,274,65],[832,11,275,10],[832,12,275,11],[833,2,277,0],[834,2,277,1,"_c3"],[834,5,277,1],[834,8,271,9,"CitizensTab"],[834,19,271,20],[835,2,279,0],[835,11,279,9,"ReferralTab"],[835,22,279,20,"ReferralTab"],[835,23,279,20],[835,25,279,23],[836,4,280,2],[836,24,281,4],[836,28,281,4,"_reactJsxDevRuntime"],[836,47,281,4],[836,48,281,4,"jsxDEV"],[836,54,281,4],[836,56,281,5,"_reactNative"],[836,68,281,9],[836,69,281,9,"View"],[836,73,281,9],[837,6,281,10,"style"],[837,11,281,15],[837,13,281,17,"styles"],[837,19,281,23],[837,20,281,24,"container"],[837,29,281,34],[838,6,281,34,"children"],[838,14,281,34],[838,29,282,6],[838,33,282,6,"_reactJsxDevRuntime"],[838,52,282,6],[838,53,282,6,"jsxDEV"],[838,59,282,6],[838,61,282,7,"_reactNative"],[838,73,282,11],[838,74,282,11,"Text"],[838,78,282,11],[839,8,282,12,"style"],[839,13,282,17],[839,15,282,19,"styles"],[839,21,282,25],[839,22,282,26,"placeholderText"],[839,37,282,42],[840,8,282,42,"children"],[840,16,282,42],[840,18,282,43],[841,6,282,58],[842,8,282,58,"fileName"],[842,16,282,58],[842,18,282,58,"_jsxFileName"],[842,30,282,58],[843,8,282,58,"lineNumber"],[843,18,282,58],[844,8,282,58,"columnNumber"],[844,20,282,58],[845,6,282,58],[845,13,282,64],[846,4,282,65],[847,6,282,65,"fileName"],[847,14,282,65],[847,16,282,65,"_jsxFileName"],[847,28,282,65],[848,6,282,65,"lineNumber"],[848,16,282,65],[849,6,282,65,"columnNumber"],[849,18,282,65],[850,4,282,65],[850,11,283,10],[850,12,283,11],[851,2,285,0],[852,2,285,1,"_c4"],[852,5,285,1],[852,8,279,9,"ReferralTab"],[852,19,279,20],[853,2,287,0],[853,11,287,9,"ProfileTab"],[853,21,287,19,"ProfileTab"],[853,22,287,19],[853,24,287,22],[854,4,288,2],[854,24,289,4],[854,28,289,4,"_reactJsxDevRuntime"],[854,47,289,4],[854,48,289,4,"jsxDEV"],[854,54,289,4],[854,56,289,5,"_reactNative"],[854,68,289,9],[854,69,289,9,"View"],[854,73,289,9],[855,6,289,10,"style"],[855,11,289,15],[855,13,289,17,"styles"],[855,19,289,23],[855,20,289,24,"container"],[855,29,289,34],[856,6,289,34,"children"],[856,14,289,34],[856,29,290,6],[856,33,290,6,"_reactJsxDevRuntime"],[856,52,290,6],[856,53,290,6,"jsxDEV"],[856,59,290,6],[856,61,290,7,"_reactNative"],[856,73,290,11],[856,74,290,11,"Text"],[856,78,290,11],[857,8,290,12,"style"],[857,13,290,17],[857,15,290,19,"styles"],[857,21,290,25],[857,22,290,26,"placeholderText"],[857,37,290,42],[858,8,290,42,"children"],[858,16,290,42],[858,18,290,43],[859,6,290,57],[860,8,290,57,"fileName"],[860,16,290,57],[860,18,290,57,"_jsxFileName"],[860,30,290,57],[861,8,290,57,"lineNumber"],[861,18,290,57],[862,8,290,57,"columnNumber"],[862,20,290,57],[863,6,290,57],[863,13,290,63],[864,4,290,64],[865,6,290,64,"fileName"],[865,14,290,64],[865,16,290,64,"_jsxFileName"],[865,28,290,64],[866,6,290,64,"lineNumber"],[866,16,290,64],[867,6,290,64,"columnNumber"],[867,18,290,64],[868,4,290,64],[868,11,291,10],[868,12,291,11],[869,2,293,0],[870,2,293,1,"_c5"],[870,5,293,1],[870,8,287,9,"ProfileTab"],[870,18,287,19],[871,2,295,0],[871,6,295,6,"Tab"],[871,9,295,9],[871,12,295,12],[871,16,295,12,"createBottomTabNavigator"],[871,42,295,36],[871,43,295,36,"createBottomTabNavigator"],[871,67,295,36],[871,69,295,37],[871,70,295,38],[872,2,297,15],[872,11,297,24,"HomeScreen"],[872,21,297,34,"HomeScreen"],[872,22,297,34],[872,24,297,37],[873,4,298,2],[873,24,299,4],[873,28,299,4,"_reactJsxDevRuntime"],[873,47,299,4],[873,48,299,4,"jsxDEV"],[873,54,299,4],[873,56,299,5,"Tab"],[873,59,299,8],[873,60,299,9,"Navigator"],[873,69,299,18],[874,6,300,6,"screenOptions"],[874,19,300,19],[874,21,300,21],[875,8,301,8,"headerShown"],[875,19,301,19],[875,21,301,21],[875,26,301,26],[876,8,302,8,"tabBarActiveTintColor"],[876,29,302,29],[876,31,302,31],[876,40,302,40],[877,8,303,8,"tabBarInactiveTintColor"],[877,31,303,31],[877,33,303,33],[877,42,303,42],[878,8,304,8,"tabBarStyle"],[878,19,304,19],[878,21,304,21,"styles"],[878,27,304,27],[878,28,304,28,"tabBar"],[879,6,305,6],[879,7,305,8],[880,6,305,8,"children"],[880,14,305,8],[880,30,307,6],[880,34,307,6,"_reactJsxDevRuntime"],[880,53,307,6],[880,54,307,6,"jsxDEV"],[880,60,307,6],[880,62,307,7,"Tab"],[880,65,307,10],[880,66,307,11,"Screen"],[880,72,307,17],[881,8,308,8,"name"],[881,12,308,12],[881,14,308,13],[881,23,308,22],[882,8,309,8,"component"],[882,17,309,17],[882,19,309,19,"HomeTab"],[882,26,309,27],[883,8,310,8,"options"],[883,15,310,15],[883,17,310,17],[884,10,311,10,"tabBarLabel"],[884,21,311,21],[884,23,311,23],[884,29,311,29],[885,10,312,10,"tabBarIcon"],[885,20,312,20],[885,22,312,22,"_ref3"],[885,27,312,22],[886,12,312,22],[886,16,312,25,"color"],[886,21,312,30],[886,24,312,30,"_ref3"],[886,29,312,30],[886,30,312,25,"color"],[886,35,312,30],[887,14,312,32,"size"],[887,18,312,36],[887,21,312,36,"_ref3"],[887,26,312,36],[887,27,312,32,"size"],[887,31,312,36],[888,12,312,36],[888,32,313,12],[888,36,313,12,"_reactJsxDevRuntime"],[888,55,313,12],[888,56,313,12,"jsxDEV"],[888,62,313,12],[888,64,313,13,"_expoVectorIcons"],[888,80,313,21],[888,81,313,21,"Ionicons"],[888,89,313,21],[889,14,313,22,"name"],[889,18,313,26],[889,20,313,27],[889,26,313,33],[890,14,313,34,"size"],[890,18,313,38],[890,20,313,40,"size"],[890,24,313,45],[891,14,313,46,"color"],[891,19,313,51],[891,21,313,53,"color"],[892,12,313,59],[893,14,313,59,"fileName"],[893,22,313,59],[893,24,313,59,"_jsxFileName"],[893,36,313,59],[894,14,313,59,"lineNumber"],[894,24,313,59],[895,14,313,59,"columnNumber"],[895,26,313,59],[896,12,313,59],[896,19,313,61],[896,20,313,62],[897,10,313,62],[898,8,315,8],[899,6,315,10],[900,8,315,10,"fileName"],[900,16,315,10],[900,18,315,10,"_jsxFileName"],[900,30,315,10],[901,8,315,10,"lineNumber"],[901,18,315,10],[902,8,315,10,"columnNumber"],[902,20,315,10],[903,6,315,10],[903,13,316,7],[903,14,316,8],[903,29,317,6],[903,33,317,6,"_reactJsxDevRuntime"],[903,52,317,6],[903,53,317,6,"jsxDEV"],[903,59,317,6],[903,61,317,7,"Tab"],[903,64,317,10],[903,65,317,11,"Screen"],[903,71,317,17],[904,8,318,8,"name"],[904,12,318,12],[904,14,318,13],[904,22,318,21],[905,8,319,8,"component"],[905,17,319,17],[905,19,319,19,"WalletTab"],[905,28,319,29],[906,8,320,8,"options"],[906,15,320,15],[906,17,320,17],[907,10,321,10,"tabBarLabel"],[907,21,321,21],[907,23,321,23],[907,31,321,31],[908,10,322,10,"tabBarIcon"],[908,20,322,20],[908,22,322,22,"_ref4"],[908,27,322,22],[909,12,322,22],[909,16,322,25,"color"],[909,21,322,30],[909,24,322,30,"_ref4"],[909,29,322,30],[909,30,322,25,"color"],[909,35,322,30],[910,14,322,32,"size"],[910,18,322,36],[910,21,322,36,"_ref4"],[910,26,322,36],[910,27,322,32,"size"],[910,31,322,36],[911,12,322,36],[911,32,323,12],[911,36,323,12,"_reactJsxDevRuntime"],[911,55,323,12],[911,56,323,12,"jsxDEV"],[911,62,323,12],[911,64,323,13,"_expoVectorIcons"],[911,80,323,21],[911,81,323,21,"Ionicons"],[911,89,323,21],[912,14,323,22,"name"],[912,18,323,26],[912,20,323,27],[912,28,323,35],[913,14,323,36,"size"],[913,18,323,40],[913,20,323,42,"size"],[913,24,323,47],[914,14,323,48,"color"],[914,19,323,53],[914,21,323,55,"color"],[915,12,323,61],[916,14,323,61,"fileName"],[916,22,323,61],[916,24,323,61,"_jsxFileName"],[916,36,323,61],[917,14,323,61,"lineNumber"],[917,24,323,61],[918,14,323,61,"columnNumber"],[918,26,323,61],[919,12,323,61],[919,19,323,63],[919,20,323,64],[920,10,323,64],[921,8,325,8],[922,6,325,10],[923,8,325,10,"fileName"],[923,16,325,10],[923,18,325,10,"_jsxFileName"],[923,30,325,10],[924,8,325,10,"lineNumber"],[924,18,325,10],[925,8,325,10,"columnNumber"],[925,20,325,10],[926,6,325,10],[926,13,326,7],[926,14,326,8],[926,29,327,6],[926,33,327,6,"_reactJsxDevRuntime"],[926,52,327,6],[926,53,327,6,"jsxDEV"],[926,59,327,6],[926,61,327,7,"Tab"],[926,64,327,10],[926,65,327,11,"Screen"],[926,71,327,17],[927,8,328,8,"name"],[927,12,328,12],[927,14,328,13],[927,24,328,23],[928,8,329,8,"component"],[928,17,329,17],[928,19,329,19,"CitizensTab"],[928,30,329,31],[929,8,330,8,"options"],[929,15,330,15],[929,17,330,17],[930,10,331,10,"tabBarLabel"],[930,21,331,21],[930,23,331,23],[930,33,331,33],[931,10,332,10,"tabBarIcon"],[931,20,332,20],[931,22,332,22,"_ref5"],[931,27,332,22],[932,12,332,22],[932,16,332,25,"color"],[932,21,332,30],[932,24,332,30,"_ref5"],[932,29,332,30],[932,30,332,25,"color"],[932,35,332,30],[933,14,332,32,"size"],[933,18,332,36],[933,21,332,36,"_ref5"],[933,26,332,36],[933,27,332,32,"size"],[933,31,332,36],[934,12,332,36],[934,32,333,12],[934,36,333,12,"_reactJsxDevRuntime"],[934,55,333,12],[934,56,333,12,"jsxDEV"],[934,62,333,12],[934,64,333,13,"_expoVectorIcons"],[934,80,333,21],[934,81,333,21,"Ionicons"],[934,89,333,21],[935,14,333,22,"name"],[935,18,333,26],[935,20,333,27],[935,28,333,35],[936,14,333,36,"size"],[936,18,333,40],[936,20,333,42,"size"],[936,24,333,47],[937,14,333,48,"color"],[937,19,333,53],[937,21,333,55,"color"],[938,12,333,61],[939,14,333,61,"fileName"],[939,22,333,61],[939,24,333,61,"_jsxFileName"],[939,36,333,61],[940,14,333,61,"lineNumber"],[940,24,333,61],[941,14,333,61,"columnNumber"],[941,26,333,61],[942,12,333,61],[942,19,333,63],[942,20,333,64],[943,10,333,64],[944,8,335,8],[945,6,335,10],[946,8,335,10,"fileName"],[946,16,335,10],[946,18,335,10,"_jsxFileName"],[946,30,335,10],[947,8,335,10,"lineNumber"],[947,18,335,10],[948,8,335,10,"columnNumber"],[948,20,335,10],[949,6,335,10],[949,13,336,7],[949,14,336,8],[949,29,337,6],[949,33,337,6,"_reactJsxDevRuntime"],[949,52,337,6],[949,53,337,6,"jsxDEV"],[949,59,337,6],[949,61,337,7,"Tab"],[949,64,337,10],[949,65,337,11,"Screen"],[949,71,337,17],[950,8,338,8,"name"],[950,12,338,12],[950,14,338,13],[950,24,338,23],[951,8,339,8,"component"],[951,17,339,17],[951,19,339,19,"ReferralTab"],[951,30,339,31],[952,8,340,8,"options"],[952,15,340,15],[952,17,340,17],[953,10,341,10,"tabBarLabel"],[953,21,341,21],[953,23,341,23],[953,33,341,33],[954,10,342,10,"tabBarIcon"],[954,20,342,20],[954,22,342,22,"_ref6"],[954,27,342,22],[955,12,342,22],[955,16,342,25,"color"],[955,21,342,30],[955,24,342,30,"_ref6"],[955,29,342,30],[955,30,342,25,"color"],[955,35,342,30],[956,14,342,32,"size"],[956,18,342,36],[956,21,342,36,"_ref6"],[956,26,342,36],[956,27,342,32,"size"],[956,31,342,36],[957,12,342,36],[957,32,343,12],[957,36,343,12,"_reactJsxDevRuntime"],[957,55,343,12],[957,56,343,12,"jsxDEV"],[957,62,343,12],[957,64,343,13,"_expoVectorIcons"],[957,80,343,21],[957,81,343,21,"Ionicons"],[957,89,343,21],[958,14,343,22,"name"],[958,18,343,26],[958,20,343,27],[958,26,343,33],[959,14,343,34,"size"],[959,18,343,38],[959,20,343,40,"size"],[959,24,343,45],[960,14,343,46,"color"],[960,19,343,51],[960,21,343,53,"color"],[961,12,343,59],[962,14,343,59,"fileName"],[962,22,343,59],[962,24,343,59,"_jsxFileName"],[962,36,343,59],[963,14,343,59,"lineNumber"],[963,24,343,59],[964,14,343,59,"columnNumber"],[964,26,343,59],[965,12,343,59],[965,19,343,61],[965,20,343,62],[966,10,343,62],[967,8,345,8],[968,6,345,10],[969,8,345,10,"fileName"],[969,16,345,10],[969,18,345,10,"_jsxFileName"],[969,30,345,10],[970,8,345,10,"lineNumber"],[970,18,345,10],[971,8,345,10,"columnNumber"],[971,20,345,10],[972,6,345,10],[972,13,346,7],[972,14,346,8],[972,29,347,6],[972,33,347,6,"_reactJsxDevRuntime"],[972,52,347,6],[972,53,347,6,"jsxDEV"],[972,59,347,6],[972,61,347,7,"Tab"],[972,64,347,10],[972,65,347,11,"Screen"],[972,71,347,17],[973,8,348,8,"name"],[973,12,348,12],[973,14,348,13],[973,23,348,22],[974,8,349,8,"component"],[974,17,349,17],[974,19,349,19,"ProfileTab"],[974,29,349,30],[975,8,350,8,"options"],[975,15,350,15],[975,17,350,17],[976,10,351,10,"tabBarLabel"],[976,21,351,21],[976,23,351,23],[976,32,351,32],[977,10,352,10,"tabBarIcon"],[977,20,352,20],[977,22,352,22,"_ref7"],[977,27,352,22],[978,12,352,22],[978,16,352,25,"color"],[978,21,352,30],[978,24,352,30,"_ref7"],[978,29,352,30],[978,30,352,25,"color"],[978,35,352,30],[979,14,352,32,"size"],[979,18,352,36],[979,21,352,36,"_ref7"],[979,26,352,36],[979,27,352,32,"size"],[979,31,352,36],[980,12,352,36],[980,32,353,12],[980,36,353,12,"_reactJsxDevRuntime"],[980,55,353,12],[980,56,353,12,"jsxDEV"],[980,62,353,12],[980,64,353,13,"_expoVectorIcons"],[980,80,353,21],[980,81,353,21,"Ionicons"],[980,89,353,21],[981,14,353,22,"name"],[981,18,353,26],[981,20,353,27],[981,28,353,35],[982,14,353,36,"size"],[982,18,353,40],[982,20,353,42,"size"],[982,24,353,47],[983,14,353,48,"color"],[983,19,353,53],[983,21,353,55,"color"],[984,12,353,61],[985,14,353,61,"fileName"],[985,22,353,61],[985,24,353,61,"_jsxFileName"],[985,36,353,61],[986,14,353,61,"lineNumber"],[986,24,353,61],[987,14,353,61,"columnNumber"],[987,26,353,61],[988,12,353,61],[988,19,353,63],[988,20,353,64],[989,10,353,64],[990,8,355,8],[991,6,355,10],[992,8,355,10,"fileName"],[992,16,355,10],[992,18,355,10,"_jsxFileName"],[992,30,355,10],[993,8,355,10,"lineNumber"],[993,18,355,10],[994,8,355,10,"columnNumber"],[994,20,355,10],[995,6,355,10],[995,13,356,7],[995,14,356,8],[996,4,356,8],[997,6,356,8,"fileName"],[997,14,356,8],[997,16,356,8,"_jsxFileName"],[997,28,356,8],[998,6,356,8,"lineNumber"],[998,16,356,8],[999,6,356,8,"columnNumber"],[999,18,356,8],[1000,4,356,8],[1000,11,357,19],[1000,12,357,20],[1001,2,359,0],[1002,2,359,1,"_c6"],[1002,5,359,1],[1002,8,297,24,"HomeScreen"],[1002,18,297,34],[1003,2,361,0],[1003,6,361,6,"QUICK_ACTIONS"],[1003,19,361,19],[1003,22,361,22],[1003,23,362,2],[1004,4,362,4,"id"],[1004,6,362,6],[1004,8,362,8],[1004,11,362,11],[1005,4,362,13,"label"],[1005,9,362,18],[1005,11,362,20],[1005,17,362,26],[1006,4,362,28,"icon"],[1006,8,362,32],[1006,10,362,34],[1006,25,362,49],[1007,4,362,51,"color"],[1007,9,362,56],[1007,11,362,58],[1008,2,362,68],[1008,3,362,69],[1008,5,363,2],[1009,4,363,4,"id"],[1009,6,363,6],[1009,8,363,8],[1009,11,363,11],[1010,4,363,13,"label"],[1010,9,363,18],[1010,11,363,20],[1010,20,363,29],[1011,4,363,31,"icon"],[1011,8,363,35],[1011,10,363,37],[1011,22,363,49],[1012,4,363,51,"color"],[1012,9,363,56],[1012,11,363,58],[1013,2,363,68],[1013,3,363,69],[1013,5,364,2],[1014,4,364,4,"id"],[1014,6,364,6],[1014,8,364,8],[1014,11,364,11],[1015,4,364,13,"label"],[1015,9,364,18],[1015,11,364,20],[1015,17,364,26],[1016,4,364,28,"icon"],[1016,8,364,32],[1016,10,364,34],[1016,27,364,51],[1017,4,364,53,"color"],[1017,9,364,58],[1017,11,364,60],[1018,2,364,70],[1018,3,364,71],[1018,5,365,2],[1019,4,365,4,"id"],[1019,6,365,6],[1019,8,365,8],[1019,11,365,11],[1020,4,365,13,"label"],[1020,9,365,18],[1020,11,365,20],[1020,17,365,26],[1021,4,365,28,"icon"],[1021,8,365,32],[1021,10,365,34],[1021,28,365,52],[1022,4,365,54,"color"],[1022,9,365,59],[1022,11,365,61],[1023,2,365,71],[1023,3,365,72],[1023,5,366,2],[1024,4,366,4,"id"],[1024,6,366,6],[1024,8,366,8],[1024,11,366,11],[1025,4,366,13,"label"],[1025,9,366,18],[1025,11,366,20],[1025,18,366,27],[1026,4,366,29,"icon"],[1026,8,366,33],[1026,10,366,35],[1026,23,366,48],[1027,4,366,50,"color"],[1027,9,366,55],[1027,11,366,57],[1028,2,366,67],[1028,3,366,68],[1028,5,367,2],[1029,4,367,4,"id"],[1029,6,367,6],[1029,8,367,8],[1029,11,367,11],[1030,4,367,13,"label"],[1030,9,367,18],[1030,11,367,20],[1030,21,367,30],[1031,4,367,32,"icon"],[1031,8,367,36],[1031,10,367,38],[1031,16,367,44],[1032,4,367,46,"color"],[1032,9,367,51],[1032,11,367,53],[1033,2,367,63],[1033,3,367,64],[1033,5,368,2],[1034,4,368,4,"id"],[1034,6,368,6],[1034,8,368,8],[1034,11,368,11],[1035,4,368,13,"label"],[1035,9,368,18],[1035,11,368,20],[1035,21,368,30],[1036,4,368,32,"icon"],[1036,8,368,36],[1036,10,368,38],[1036,25,368,53],[1037,4,368,55,"color"],[1037,9,368,60],[1037,11,368,62],[1038,2,368,72],[1038,3,368,73],[1038,5,369,2],[1039,4,369,4,"id"],[1039,6,369,6],[1039,8,369,8],[1039,11,369,11],[1040,4,369,13,"label"],[1040,9,369,18],[1040,11,369,20],[1040,22,369,31],[1041,4,369,33,"icon"],[1041,8,369,37],[1041,10,369,39],[1041,18,369,47],[1042,4,369,49,"color"],[1042,9,369,54],[1042,11,369,56],[1043,2,369,66],[1043,3,369,67],[1043,5,370,2],[1044,4,370,4,"id"],[1044,6,370,6],[1044,8,370,8],[1044,11,370,11],[1045,4,370,13,"label"],[1045,9,370,18],[1045,11,370,20],[1045,21,370,30],[1046,4,370,32,"icon"],[1046,8,370,36],[1046,10,370,38],[1046,21,370,49],[1047,4,370,51,"color"],[1047,9,370,56],[1047,11,370,58],[1048,2,370,68],[1048,3,370,69],[1048,5,371,2],[1049,4,371,4,"id"],[1049,6,371,6],[1049,8,371,8],[1049,12,371,12],[1050,4,371,14,"label"],[1050,9,371,19],[1050,11,371,21],[1050,21,371,31],[1051,4,371,33,"icon"],[1051,8,371,37],[1051,10,371,39],[1051,16,371,45],[1052,4,371,47,"color"],[1052,9,371,52],[1052,11,371,54],[1053,2,371,64],[1053,3,371,65],[1053,5,372,2],[1054,4,372,4,"id"],[1054,6,372,6],[1054,8,372,8],[1054,12,372,12],[1055,4,372,14,"label"],[1055,9,372,19],[1055,11,372,21],[1055,22,372,32],[1056,4,372,34,"icon"],[1056,8,372,38],[1056,10,372,40],[1056,16,372,46],[1057,4,372,48,"color"],[1057,9,372,53],[1057,11,372,55],[1058,2,372,65],[1058,3,372,66],[1058,5,373,2],[1059,4,373,4,"id"],[1059,6,373,6],[1059,8,373,8],[1059,12,373,12],[1060,4,373,14,"label"],[1060,9,373,19],[1060,11,373,21],[1060,20,373,30],[1061,4,373,32,"icon"],[1061,8,373,36],[1061,10,373,38],[1061,16,373,44],[1062,4,373,46,"color"],[1062,9,373,51],[1062,11,373,53],[1063,2,373,63],[1063,3,373,64],[1063,5,374,2],[1064,4,374,4,"id"],[1064,6,374,6],[1064,8,374,8],[1064,12,374,12],[1065,4,374,14,"label"],[1065,9,374,19],[1065,11,374,21],[1065,20,374,30],[1066,4,374,32,"icon"],[1066,8,374,36],[1066,10,374,38],[1066,19,374,47],[1067,4,374,49,"color"],[1067,9,374,54],[1067,11,374,56],[1068,2,374,66],[1068,3,374,67],[1068,5,375,2],[1069,4,375,4,"id"],[1069,6,375,6],[1069,8,375,8],[1069,12,375,12],[1070,4,375,14,"label"],[1070,9,375,19],[1070,11,375,21],[1070,21,375,31],[1071,4,375,33,"icon"],[1071,8,375,37],[1071,10,375,39],[1071,20,375,49],[1072,4,375,51,"color"],[1072,9,375,56],[1072,11,375,58],[1073,2,375,68],[1073,3,375,69],[1073,5,376,2],[1074,4,376,4,"id"],[1074,6,376,6],[1074,8,376,8],[1074,12,376,12],[1075,4,376,14,"label"],[1075,9,376,19],[1075,11,376,21],[1075,17,376,27],[1076,4,376,29,"icon"],[1076,8,376,33],[1076,10,376,35],[1076,23,376,48],[1077,4,376,50,"color"],[1077,9,376,55],[1077,11,376,57],[1078,2,376,67],[1078,3,376,68],[1078,5,377,2],[1079,4,377,4,"id"],[1079,6,377,6],[1079,8,377,8],[1079,12,377,12],[1080,4,377,14,"label"],[1080,9,377,19],[1080,11,377,21],[1080,20,377,30],[1081,4,377,32,"icon"],[1081,8,377,36],[1081,10,377,38],[1081,16,377,44],[1082,4,377,46,"color"],[1082,9,377,51],[1082,11,377,53],[1083,2,377,63],[1083,3,377,64],[1083,5,378,2],[1084,4,378,4,"id"],[1084,6,378,6],[1084,8,378,8],[1084,12,378,12],[1085,4,378,14,"label"],[1085,9,378,19],[1085,11,378,21],[1085,18,378,28],[1086,4,378,30,"icon"],[1086,8,378,34],[1086,10,378,36],[1086,17,378,43],[1087,4,378,45,"color"],[1087,9,378,50],[1087,11,378,52],[1088,2,378,62],[1088,3,378,63],[1088,5,379,2],[1089,4,379,4,"id"],[1089,6,379,6],[1089,8,379,8],[1089,12,379,12],[1090,4,379,14,"label"],[1090,9,379,19],[1090,11,379,21],[1090,23,379,33],[1091,4,379,35,"icon"],[1091,8,379,39],[1091,10,379,41],[1091,16,379,47],[1092,4,379,49,"color"],[1092,9,379,54],[1092,11,379,56],[1093,2,379,66],[1093,3,379,67],[1093,5,380,2],[1094,4,380,4,"id"],[1094,6,380,6],[1094,8,380,8],[1094,12,380,12],[1095,4,380,14,"label"],[1095,9,380,19],[1095,11,380,21],[1095,21,380,31],[1096,4,380,33,"icon"],[1096,8,380,37],[1096,10,380,39],[1096,20,380,49],[1097,4,380,51,"color"],[1097,9,380,56],[1097,11,380,58],[1098,2,380,68],[1098,3,380,69],[1098,5,381,2],[1099,4,381,4,"id"],[1099,6,381,6],[1099,8,381,8],[1099,12,381,12],[1100,4,381,14,"label"],[1100,9,381,19],[1100,11,381,21],[1100,20,381,30],[1101,4,381,32,"icon"],[1101,8,381,36],[1101,10,381,38],[1101,18,381,46],[1102,4,381,48,"color"],[1102,9,381,53],[1102,11,381,55],[1103,2,381,65],[1103,3,381,66],[1103,5,382,2],[1104,4,382,4,"id"],[1104,6,382,6],[1104,8,382,8],[1104,12,382,12],[1105,4,382,14,"label"],[1105,9,382,19],[1105,11,382,21],[1105,16,382,26],[1106,4,382,28,"icon"],[1106,8,382,32],[1106,10,382,34],[1106,19,382,43],[1107,4,382,45,"color"],[1107,9,382,50],[1107,11,382,52],[1108,2,382,62],[1108,3,382,63],[1108,5,383,2],[1109,4,383,4,"id"],[1109,6,383,6],[1109,8,383,8],[1109,12,383,12],[1110,4,383,14,"label"],[1110,9,383,19],[1110,11,383,21],[1110,19,383,29],[1111,4,383,31,"icon"],[1111,8,383,35],[1111,10,383,37],[1111,25,383,52],[1112,4,383,54,"color"],[1112,9,383,59],[1112,11,383,61],[1113,2,383,71],[1113,3,383,72],[1113,5,384,2],[1114,4,384,4,"id"],[1114,6,384,6],[1114,8,384,8],[1114,12,384,12],[1115,4,384,14,"label"],[1115,9,384,19],[1115,11,384,21],[1115,17,384,27],[1116,4,384,29,"icon"],[1116,8,384,33],[1116,10,384,35],[1116,15,384,40],[1117,4,384,42,"color"],[1117,9,384,47],[1117,11,384,49],[1118,2,384,59],[1118,3,384,60],[1118,5,385,2],[1119,4,385,4,"id"],[1119,6,385,6],[1119,8,385,8],[1119,12,385,12],[1120,4,385,14,"label"],[1120,9,385,19],[1120,11,385,21],[1120,21,385,31],[1121,4,385,33,"icon"],[1121,8,385,37],[1121,10,385,39],[1121,24,385,53],[1122,4,385,55,"color"],[1122,9,385,60],[1122,11,385,62],[1123,2,385,72],[1123,3,385,73],[1123,5,386,2],[1124,4,386,4,"id"],[1124,6,386,6],[1124,8,386,8],[1124,12,386,12],[1125,4,386,14,"label"],[1125,9,386,19],[1125,11,386,21],[1125,18,386,28],[1126,4,386,30,"icon"],[1126,8,386,34],[1126,10,386,36],[1126,17,386,43],[1127,4,386,45,"color"],[1127,9,386,50],[1127,11,386,52],[1128,2,386,62],[1128,3,386,63],[1128,5,387,2],[1129,4,387,4,"id"],[1129,6,387,6],[1129,8,387,8],[1129,12,387,12],[1130,4,387,14,"label"],[1130,9,387,19],[1130,11,387,21],[1130,18,387,28],[1131,4,387,30,"icon"],[1131,8,387,34],[1131,10,387,36],[1131,15,387,41],[1132,4,387,43,"color"],[1132,9,387,48],[1132,11,387,50],[1133,2,387,60],[1133,3,387,61],[1133,5,388,2],[1134,4,388,4,"id"],[1134,6,388,6],[1134,8,388,8],[1134,12,388,12],[1135,4,388,14,"label"],[1135,9,388,19],[1135,11,388,21],[1135,18,388,28],[1136,4,388,30,"icon"],[1136,8,388,34],[1136,10,388,36],[1136,22,388,48],[1137,4,388,50,"color"],[1137,9,388,55],[1137,11,388,57],[1138,2,388,67],[1138,3,388,68],[1138,5,389,2],[1139,4,389,4,"id"],[1139,6,389,6],[1139,8,389,8],[1139,12,389,12],[1140,4,389,14,"label"],[1140,9,389,19],[1140,11,389,21],[1140,19,389,29],[1141,4,389,31,"icon"],[1141,8,389,35],[1141,10,389,37],[1141,20,389,47],[1142,4,389,49,"color"],[1142,9,389,54],[1142,11,389,56],[1143,2,389,66],[1143,3,389,67],[1143,5,390,2],[1144,4,390,4,"id"],[1144,6,390,6],[1144,8,390,8],[1144,12,390,12],[1145,4,390,14,"label"],[1145,9,390,19],[1145,11,390,21],[1145,19,390,29],[1146,4,390,31,"icon"],[1146,8,390,35],[1146,10,390,37],[1146,16,390,43],[1147,4,390,45,"color"],[1147,9,390,50],[1147,11,390,52],[1148,2,390,62],[1148,3,390,63],[1148,5,391,2],[1149,4,391,4,"id"],[1149,6,391,6],[1149,8,391,8],[1149,12,391,12],[1150,4,391,14,"label"],[1150,9,391,19],[1150,11,391,21],[1150,17,391,27],[1151,4,391,29,"icon"],[1151,8,391,33],[1151,10,391,35],[1151,16,391,41],[1152,4,391,43,"color"],[1152,9,391,48],[1152,11,391,50],[1153,2,391,60],[1153,3,391,61],[1153,4,392,1],[1154,2,394,0],[1154,6,394,6,"styles"],[1154,12,394,12],[1154,15,394,15,"StyleSheet"],[1154,27,394,25],[1154,28,394,25,"StyleSheet"],[1154,38,394,25],[1154,39,394,26,"create"],[1154,45,394,32],[1154,46,394,33],[1155,4,395,2,"container"],[1155,13,395,11],[1155,15,395,13],[1156,6,396,4,"flex"],[1156,10,396,8],[1156,12,396,10],[1156,13,396,11],[1157,6,397,4,"backgroundColor"],[1157,21,397,19],[1157,23,397,21],[1158,4,398,2],[1158,5,398,3],[1159,4,399,2,"scrollContent"],[1159,17,399,15],[1159,19,399,17],[1160,6,400,4,"paddingBottom"],[1160,19,400,17],[1160,21,400,19],[1161,4,401,2],[1161,5,401,3],[1162,4,402,2,"walletScrollContent"],[1162,23,402,21],[1162,25,402,23],[1163,6,403,4,"paddingBottom"],[1163,19,403,17],[1163,21,403,19],[1164,4,404,2],[1164,5,404,3],[1165,4,405,2,"header"],[1165,10,405,8],[1165,12,405,10],[1166,6,406,4,"flexDirection"],[1166,19,406,17],[1166,21,406,19],[1166,26,406,24],[1167,6,407,4,"justifyContent"],[1167,20,407,18],[1167,22,407,20],[1167,37,407,35],[1168,6,408,4,"alignItems"],[1168,16,408,14],[1168,18,408,16],[1168,26,408,24],[1169,6,409,4,"padding"],[1169,13,409,11],[1169,15,409,13],[1169,17,409,15],[1170,6,410,4,"backgroundColor"],[1170,21,410,19],[1170,23,410,21],[1170,29,410,27],[1171,6,411,4,"borderBottomWidth"],[1171,23,411,21],[1171,25,411,23],[1171,26,411,24],[1172,6,412,4,"borderBottomColor"],[1172,23,412,21],[1172,25,412,23],[1173,4,413,2],[1173,5,413,3],[1174,4,414,2,"headerLeft"],[1174,14,414,12],[1174,16,414,14],[1175,6,415,4,"position"],[1175,14,415,12],[1175,16,415,14],[1176,4,416,2],[1176,5,416,3],[1177,4,417,2,"profileImage"],[1177,16,417,14],[1177,18,417,16],[1178,6,418,4,"width"],[1178,11,418,9],[1178,13,418,11],[1178,15,418,13],[1179,6,419,4,"height"],[1179,12,419,10],[1179,14,419,12],[1179,16,419,14],[1180,6,420,4,"borderRadius"],[1180,18,420,16],[1180,20,420,18],[1180,22,420,20],[1181,6,421,4,"backgroundColor"],[1181,21,421,19],[1181,23,421,21],[1181,32,421,30],[1182,6,422,4,"alignItems"],[1182,16,422,14],[1182,18,422,16],[1182,26,422,24],[1183,6,423,4,"justifyContent"],[1183,20,423,18],[1183,22,423,20],[1183,30,423,28],[1184,6,424,4,"overflow"],[1184,14,424,12],[1184,16,424,14],[1185,4,425,2],[1185,5,425,3],[1186,4,426,2,"profileImageSrc"],[1186,19,426,17],[1186,21,426,19],[1187,6,427,4,"width"],[1187,11,427,9],[1187,13,427,11],[1187,15,427,13],[1188,6,428,4,"height"],[1188,12,428,10],[1188,14,428,12],[1189,4,429,2],[1189,5,429,3],[1190,4,430,2,"profileBadge"],[1190,16,430,14],[1190,18,430,16],[1191,6,431,4,"position"],[1191,14,431,12],[1191,16,431,14],[1191,26,431,24],[1192,6,432,4,"bottom"],[1192,12,432,10],[1192,14,432,12],[1192,15,432,13],[1192,16,432,14],[1193,6,433,4,"right"],[1193,11,433,9],[1193,13,433,11],[1193,14,433,12],[1193,15,433,13],[1194,6,434,4,"backgroundColor"],[1194,21,434,19],[1194,23,434,21],[1194,32,434,30],[1195,6,435,4,"borderRadius"],[1195,18,435,16],[1195,20,435,18],[1195,22,435,20],[1196,6,436,4,"paddingHorizontal"],[1196,23,436,21],[1196,25,436,23],[1196,26,436,24],[1197,6,437,4,"paddingVertical"],[1197,21,437,19],[1197,23,437,21],[1197,24,437,22],[1198,6,438,4,"flexDirection"],[1198,19,438,17],[1198,21,438,19],[1198,26,438,24],[1199,6,439,4,"alignItems"],[1199,16,439,14],[1199,18,439,16],[1199,26,439,24],[1200,6,440,4,"gap"],[1200,9,440,7],[1200,11,440,9],[1201,4,441,2],[1201,5,441,3],[1202,4,442,2,"trustScore"],[1202,14,442,12],[1202,16,442,14],[1203,6,443,4,"fontSize"],[1203,14,443,12],[1203,16,443,14],[1203,18,443,16],[1204,6,444,4,"fontWeight"],[1204,16,444,14],[1204,18,444,16],[1204,23,444,21],[1205,6,445,4,"color"],[1205,11,445,9],[1205,13,445,11],[1206,4,446,2],[1206,5,446,3],[1207,4,447,2,"headerRight"],[1207,15,447,13],[1207,17,447,15],[1208,6,448,4,"flexDirection"],[1208,19,448,17],[1208,21,448,19],[1208,26,448,24],[1209,6,449,4,"gap"],[1209,9,449,7],[1209,11,449,9],[1210,4,450,2],[1210,5,450,3],[1211,4,451,2,"iconButton"],[1211,14,451,12],[1211,16,451,14],[1212,6,452,4,"padding"],[1212,13,452,11],[1212,15,452,13],[1213,4,453,2],[1213,5,453,3],[1214,4,454,2,"announcementWidget"],[1214,22,454,20],[1214,24,454,22],[1215,6,455,4,"padding"],[1215,13,455,11],[1215,15,455,13],[1216,4,456,2],[1216,5,456,3],[1217,4,457,2,"announcement"],[1217,16,457,14],[1217,18,457,16],[1218,6,458,4,"backgroundColor"],[1218,21,458,19],[1218,23,458,21],[1218,29,458,27],[1219,6,459,4,"padding"],[1219,13,459,11],[1219,15,459,13],[1219,17,459,15],[1220,6,460,4,"borderRadius"],[1220,18,460,16],[1220,20,460,18],[1220,22,460,20],[1221,6,461,4,"marginRight"],[1221,17,461,15],[1221,19,461,17],[1221,21,461,19],[1222,6,462,4,"width"],[1222,11,462,9],[1222,13,462,11,"width"],[1222,18,462,16],[1222,21,462,19],[1222,23,462,21],[1223,6,463,4,"borderLeftWidth"],[1223,21,463,19],[1223,23,463,21],[1223,24,463,22],[1224,6,464,4,"borderLeftColor"],[1224,21,464,19],[1224,23,464,21],[1225,4,465,2],[1225,5,465,3],[1226,4,466,2,"announcementTitle"],[1226,21,466,19],[1226,23,466,21],[1227,6,467,4,"fontSize"],[1227,14,467,12],[1227,16,467,14],[1227,18,467,16],[1228,6,468,4,"fontWeight"],[1228,16,468,14],[1228,18,468,16],[1228,23,468,21],[1229,6,469,4,"color"],[1229,11,469,9],[1229,13,469,11],[1229,22,469,20],[1230,6,470,4,"marginBottom"],[1230,18,470,16],[1230,20,470,18],[1231,4,471,2],[1231,5,471,3],[1232,4,472,2,"announcementText"],[1232,20,472,18],[1232,22,472,20],[1233,6,473,4,"fontSize"],[1233,14,473,12],[1233,16,473,14],[1233,18,473,16],[1234,6,474,4,"color"],[1234,11,474,9],[1234,13,474,11],[1235,4,475,2],[1235,5,475,3],[1236,4,476,2,"quickActionsContainer"],[1236,25,476,23],[1236,27,476,25],[1237,6,477,4,"padding"],[1237,13,477,11],[1237,15,477,13],[1238,4,478,2],[1238,5,478,3],[1239,4,479,2,"sectionTitle"],[1239,16,479,14],[1239,18,479,16],[1240,6,480,4,"fontSize"],[1240,14,480,12],[1240,16,480,14],[1240,18,480,16],[1241,6,481,4,"fontWeight"],[1241,16,481,14],[1241,18,481,16],[1241,23,481,21],[1242,6,482,4,"color"],[1242,11,482,9],[1242,13,482,11],[1242,22,482,20],[1243,6,483,4,"marginBottom"],[1243,18,483,16],[1243,20,483,18],[1244,4,484,2],[1244,5,484,3],[1245,4,485,2,"actionsGrid"],[1245,15,485,13],[1245,17,485,15],[1246,6,486,4,"flexDirection"],[1246,19,486,17],[1246,21,486,19],[1246,26,486,24],[1247,6,487,4,"flexWrap"],[1247,14,487,12],[1247,16,487,14],[1247,22,487,20],[1248,6,488,4,"justifyContent"],[1248,20,488,18],[1248,22,488,20],[1249,4,489,2],[1249,5,489,3],[1250,4,490,2,"actionCard"],[1250,14,490,12],[1250,16,490,14],[1251,6,491,4,"width"],[1251,11,491,9],[1251,13,491,11],[1251,14,491,12,"width"],[1251,19,491,17],[1251,22,491,20],[1251,24,491,22],[1251,28,491,26],[1251,29,491,27],[1252,6,492,4,"backgroundColor"],[1252,21,492,19],[1252,23,492,21],[1252,29,492,27],[1253,6,493,4,"padding"],[1253,13,493,11],[1253,15,493,13],[1253,17,493,15],[1254,6,494,4,"borderRadius"],[1254,18,494,16],[1254,20,494,18],[1254,22,494,20],[1255,6,495,4,"alignItems"],[1255,16,495,14],[1255,18,495,16],[1255,26,495,24],[1256,6,496,4,"marginBottom"],[1256,18,496,16],[1256,20,496,18],[1256,22,496,20],[1257,6,497,4,"shadowColor"],[1257,17,497,15],[1257,19,497,17],[1257,25,497,23],[1258,6,498,4,"shadowOffset"],[1258,18,498,16],[1258,20,498,18],[1259,8,498,20,"width"],[1259,13,498,25],[1259,15,498,27],[1259,16,498,28],[1260,8,498,30,"height"],[1260,14,498,36],[1260,16,498,38],[1261,6,498,40],[1261,7,498,41],[1262,6,499,4,"shadowOpacity"],[1262,19,499,17],[1262,21,499,19],[1262,25,499,23],[1263,6,500,4,"shadowRadius"],[1263,18,500,16],[1263,20,500,18],[1263,21,500,19],[1264,6,501,4,"elevation"],[1264,15,501,13],[1264,17,501,15],[1265,4,502,2],[1265,5,502,3],[1266,4,503,2,"actionCardFirst"],[1266,19,503,17],[1266,21,503,19],[1267,6,504,4,"marginRight"],[1267,17,504,15],[1267,19,504,17],[1268,4,505,2],[1268,5,505,3],[1269,4,506,2,"actionCardLast"],[1269,18,506,16],[1269,20,506,18],[1270,6,507,4,"marginLeft"],[1270,16,507,14],[1270,18,507,16],[1271,4,508,2],[1271,5,508,3],[1272,4,509,2,"actionIcon"],[1272,14,509,12],[1272,16,509,14],[1273,6,510,4,"width"],[1273,11,510,9],[1273,13,510,11],[1273,15,510,13],[1274,6,511,4,"height"],[1274,12,511,10],[1274,14,511,12],[1274,16,511,14],[1275,6,512,4,"borderRadius"],[1275,18,512,16],[1275,20,512,18],[1275,22,512,20],[1276,6,513,4,"alignItems"],[1276,16,513,14],[1276,18,513,16],[1276,26,513,24],[1277,6,514,4,"justifyContent"],[1277,20,514,18],[1277,22,514,20],[1277,30,514,28],[1278,6,515,4,"marginBottom"],[1278,18,515,16],[1278,20,515,18],[1279,4,516,2],[1279,5,516,3],[1280,4,517,2,"actionLabel"],[1280,15,517,13],[1280,17,517,15],[1281,6,518,4,"fontSize"],[1281,14,518,12],[1281,16,518,14],[1281,18,518,16],[1282,6,519,4,"color"],[1282,11,519,9],[1282,13,519,11],[1282,22,519,20],[1283,6,520,4,"textAlign"],[1283,15,520,13],[1283,17,520,15],[1284,4,521,2],[1284,5,521,3],[1285,4,522,2,"walletHeader"],[1285,16,522,14],[1285,18,522,16],[1286,6,523,4,"padding"],[1286,13,523,11],[1286,15,523,13],[1286,17,523,15],[1287,6,524,4,"backgroundColor"],[1287,21,524,19],[1287,23,524,21],[1287,29,524,27],[1288,6,525,4,"borderBottomWidth"],[1288,23,525,21],[1288,25,525,23],[1288,26,525,24],[1289,6,526,4,"borderBottomColor"],[1289,23,526,21],[1289,25,526,23],[1289,34,526,32],[1290,6,527,4,"flexDirection"],[1290,19,527,17],[1290,21,527,19],[1290,26,527,24],[1291,6,528,4,"justifyContent"],[1291,20,528,18],[1291,22,528,20],[1291,37,528,35],[1292,6,529,4,"alignItems"],[1292,16,529,14],[1292,18,529,16],[1293,4,530,2],[1293,5,530,3],[1294,4,531,2,"walletTitle"],[1294,15,531,13],[1294,17,531,15],[1295,6,532,4,"fontSize"],[1295,14,532,12],[1295,16,532,14],[1295,18,532,16],[1296,6,533,4,"fontWeight"],[1296,16,533,14],[1296,18,533,16],[1296,23,533,21],[1297,6,534,4,"color"],[1297,11,534,9],[1297,13,534,11],[1298,4,535,2],[1298,5,535,3],[1299,4,536,2,"refreshButton"],[1299,17,536,15],[1299,19,536,17],[1300,6,537,4,"padding"],[1300,13,537,11],[1300,15,537,13],[1300,16,537,14],[1301,6,538,4,"borderRadius"],[1301,18,538,16],[1301,20,538,18],[1301,21,538,19],[1302,6,539,4,"backgroundColor"],[1302,21,539,19],[1302,23,539,21],[1303,4,540,2],[1303,5,540,3],[1304,4,541,2,"balanceCards"],[1304,16,541,14],[1304,18,541,16],[1305,6,542,4,"padding"],[1305,13,542,11],[1305,15,542,13],[1305,17,542,15],[1306,6,543,4,"gap"],[1306,9,543,7],[1306,11,543,9],[1307,4,544,2],[1307,5,544,3],[1308,4,545,2,"balanceCard"],[1308,15,545,13],[1308,17,545,15],[1309,6,546,4,"backgroundColor"],[1309,21,546,19],[1309,23,546,21],[1309,29,546,27],[1310,6,547,4,"padding"],[1310,13,547,11],[1310,15,547,13],[1310,17,547,15],[1311,6,548,4,"borderRadius"],[1311,18,548,16],[1311,20,548,18],[1311,22,548,20],[1312,6,549,4,"borderWidth"],[1312,17,549,15],[1312,19,549,17],[1312,20,549,18],[1313,6,550,4,"borderColor"],[1313,17,550,15],[1313,19,550,17],[1314,4,551,2],[1314,5,551,3],[1315,4,552,2,"balanceCardHeader"],[1315,21,552,19],[1315,23,552,21],[1316,6,553,4,"flexDirection"],[1316,19,553,17],[1316,21,553,19],[1316,26,553,24],[1317,6,554,4,"alignItems"],[1317,16,554,14],[1317,18,554,16],[1317,26,554,24],[1318,6,555,4,"gap"],[1318,9,555,7],[1318,11,555,9],[1318,12,555,10],[1319,6,556,4,"marginBottom"],[1319,18,556,16],[1319,20,556,18],[1320,4,557,2],[1320,5,557,3],[1321,4,558,2,"tokenLogo"],[1321,13,558,11],[1321,15,558,13],[1322,6,559,4,"width"],[1322,11,559,9],[1322,13,559,11],[1322,15,559,13],[1323,6,560,4,"height"],[1323,12,560,10],[1323,14,560,12],[1323,16,560,14],[1324,6,561,4,"borderRadius"],[1324,18,561,16],[1324,20,561,18],[1325,4,562,2],[1325,5,562,3],[1326,4,563,2,"tokenSymbol"],[1326,15,563,13],[1326,17,563,15],[1327,6,564,4,"fontSize"],[1327,14,564,12],[1327,16,564,14],[1327,18,564,16],[1328,6,565,4,"fontWeight"],[1328,16,565,14],[1328,18,565,16],[1328,23,565,21],[1329,6,566,4,"color"],[1329,11,566,9],[1329,13,566,11],[1330,4,567,2],[1330,5,567,3],[1331,4,568,2,"balanceAmount"],[1331,17,568,15],[1331,19,568,17],[1332,6,569,4,"fontSize"],[1332,14,569,12],[1332,16,569,14],[1332,18,569,16],[1333,6,570,4,"fontWeight"],[1333,16,570,14],[1333,18,570,16],[1333,23,570,21],[1334,6,571,4,"color"],[1334,11,571,9],[1334,13,571,11],[1334,22,571,20],[1335,6,572,4,"marginBottom"],[1335,18,572,16],[1335,20,572,18],[1336,4,573,2],[1336,5,573,3],[1337,4,574,2,"balanceUsd"],[1337,14,574,12],[1337,16,574,14],[1338,6,575,4,"fontSize"],[1338,14,575,12],[1338,16,575,14],[1338,18,575,16],[1339,6,576,4,"color"],[1339,11,576,9],[1339,13,576,11],[1340,4,577,2],[1340,5,577,3],[1341,4,578,2,"walletActions"],[1341,17,578,15],[1341,19,578,17],[1342,6,579,4,"flexDirection"],[1342,19,579,17],[1342,21,579,19],[1342,26,579,24],[1343,6,580,4,"padding"],[1343,13,580,11],[1343,15,580,13],[1343,17,580,15],[1344,6,581,4,"gap"],[1344,9,581,7],[1344,11,581,9],[1345,4,582,2],[1345,5,582,3],[1346,4,583,2,"walletActionButton"],[1346,22,583,20],[1346,24,583,22],[1347,6,584,4,"flex"],[1347,10,584,8],[1347,12,584,10],[1347,13,584,11],[1348,6,585,4,"backgroundColor"],[1348,21,585,19],[1348,23,585,21],[1348,32,585,30],[1349,6,586,4,"padding"],[1349,13,586,11],[1349,15,586,13],[1349,17,586,15],[1350,6,587,4,"borderRadius"],[1350,18,587,16],[1350,20,587,18],[1350,22,587,20],[1351,6,588,4,"alignItems"],[1351,16,588,14],[1351,18,588,16],[1351,26,588,24],[1352,6,589,4,"gap"],[1352,9,589,7],[1352,11,589,9],[1353,4,590,2],[1353,5,590,3],[1354,4,591,2,"walletActionText"],[1354,20,591,18],[1354,22,591,20],[1355,6,592,4,"color"],[1355,11,592,9],[1355,13,592,11],[1355,19,592,17],[1356,6,593,4,"fontSize"],[1356,14,593,12],[1356,16,593,14],[1356,18,593,16],[1357,6,594,4,"fontWeight"],[1357,16,594,14],[1357,18,594,16],[1358,4,595,2],[1358,5,595,3],[1359,4,596,2,"placeholderText"],[1359,19,596,17],[1359,21,596,19],[1360,6,597,4,"flex"],[1360,10,597,8],[1360,12,597,10],[1360,13,597,11],[1361,6,598,4,"textAlign"],[1361,15,598,13],[1361,17,598,15],[1361,25,598,23],[1362,6,599,4,"marginTop"],[1362,15,599,13],[1362,17,599,15],[1362,20,599,18],[1363,6,600,4,"fontSize"],[1363,14,600,12],[1363,16,600,14],[1363,18,600,16],[1364,6,601,4,"color"],[1364,11,601,9],[1364,13,601,11],[1365,4,602,2],[1365,5,602,3],[1366,4,603,2,"tabBar"],[1366,10,603,8],[1366,12,603,10],[1367,6,604,4,"borderTopWidth"],[1367,20,604,18],[1367,22,604,20],[1367,23,604,21],[1368,6,605,4,"borderTopColor"],[1368,20,605,18],[1368,22,605,20],[1368,31,605,29],[1369,6,606,4,"paddingBottom"],[1369,19,606,17],[1369,21,606,19],[1369,23,606,21],[1370,6,607,4,"paddingTop"],[1370,16,607,14],[1370,18,607,16],[1370,19,607,17],[1371,6,608,4,"backgroundColor"],[1371,21,608,19],[1371,23,608,21],[1372,4,609,2],[1372,5,609,3],[1373,4,610,2],[1374,4,611,2,"balanceRow"],[1374,14,611,12],[1374,16,611,14],[1375,6,612,4,"flexDirection"],[1375,19,612,17],[1375,21,612,19],[1375,26,612,24],[1376,6,613,4,"padding"],[1376,13,613,11],[1376,15,613,13],[1376,17,613,15],[1377,6,614,4,"gap"],[1377,9,614,7],[1377,11,614,9],[1378,4,615,2],[1378,5,615,3],[1379,4,616,2,"balanceCardNew"],[1379,18,616,16],[1379,20,616,18],[1380,6,617,4,"flex"],[1380,10,617,8],[1380,12,617,10],[1380,13,617,11],[1381,6,618,4,"backgroundColor"],[1381,21,618,19],[1381,23,618,21],[1381,29,618,27],[1382,6,619,4,"padding"],[1382,13,619,11],[1382,15,619,13],[1382,17,619,15],[1383,6,620,4,"borderRadius"],[1383,18,620,16],[1383,20,620,18],[1383,22,620,20],[1384,6,621,4,"alignItems"],[1384,16,621,14],[1384,18,621,16],[1384,26,621,24],[1385,6,622,4,"shadowColor"],[1385,17,622,15],[1385,19,622,17],[1385,25,622,23],[1386,6,623,4,"shadowOffset"],[1386,18,623,16],[1386,20,623,18],[1387,8,623,20,"width"],[1387,13,623,25],[1387,15,623,27],[1387,16,623,28],[1388,8,623,30,"height"],[1388,14,623,36],[1388,16,623,38],[1389,6,623,40],[1389,7,623,41],[1390,6,624,4,"shadowOpacity"],[1390,19,624,17],[1390,21,624,19],[1390,24,624,22],[1391,6,625,4,"shadowRadius"],[1391,18,625,16],[1391,20,625,18],[1391,21,625,19],[1392,6,626,4,"elevation"],[1392,15,626,13],[1392,17,626,15],[1393,4,627,2],[1393,5,627,3],[1394,4,628,2,"tokenLogoNew"],[1394,16,628,14],[1394,18,628,16],[1395,6,629,4,"width"],[1395,11,629,9],[1395,13,629,11],[1395,15,629,13],[1396,6,630,4,"height"],[1396,12,630,10],[1396,14,630,12],[1396,16,630,14],[1397,6,631,4,"borderRadius"],[1397,18,631,16],[1397,20,631,18],[1397,22,631,20],[1398,6,632,4,"marginBottom"],[1398,18,632,16],[1398,20,632,18],[1399,4,633,2],[1399,5,633,3],[1400,4,634,2,"tokenSymbolNew"],[1400,18,634,16],[1400,20,634,18],[1401,6,635,4,"fontSize"],[1401,14,635,12],[1401,16,635,14],[1401,18,635,16],[1402,6,636,4,"fontWeight"],[1402,16,636,14],[1402,18,636,16],[1402,23,636,21],[1403,6,637,4,"color"],[1403,11,637,9],[1403,13,637,11],[1403,22,637,20],[1404,6,638,4,"marginBottom"],[1404,18,638,16],[1404,20,638,18],[1405,4,639,2],[1405,5,639,3],[1406,4,640,2,"balanceAmountNew"],[1406,20,640,18],[1406,22,640,20],[1407,6,641,4,"fontSize"],[1407,14,641,12],[1407,16,641,14],[1407,18,641,16],[1408,6,642,4,"fontWeight"],[1408,16,642,14],[1408,18,642,16],[1408,23,642,21],[1409,6,643,4,"color"],[1409,11,643,9],[1409,13,643,11],[1409,22,643,20],[1410,6,644,4,"marginBottom"],[1410,18,644,16],[1410,20,644,18],[1411,4,645,2],[1411,5,645,3],[1412,4,646,2,"tokenNameNew"],[1412,16,646,14],[1412,18,646,16],[1413,6,647,4,"fontSize"],[1413,14,647,12],[1413,16,647,14],[1413,18,647,16],[1414,6,648,4,"color"],[1414,11,648,9],[1414,13,648,11],[1415,4,649,2],[1415,5,649,3],[1416,4,650,2,"actionsContainer"],[1416,20,650,18],[1416,22,650,20],[1417,6,651,4,"margin"],[1417,12,651,10],[1417,14,651,12],[1417,16,651,14],[1418,6,652,4,"backgroundColor"],[1418,21,652,19],[1418,23,652,21],[1418,29,652,27],[1419,6,653,4,"padding"],[1419,13,653,11],[1419,15,653,13],[1419,17,653,15],[1420,6,654,4,"borderRadius"],[1420,18,654,16],[1420,20,654,18],[1420,22,654,20],[1421,6,655,4,"shadowColor"],[1421,17,655,15],[1421,19,655,17],[1421,25,655,23],[1422,6,656,4,"shadowOffset"],[1422,18,656,16],[1422,20,656,18],[1423,8,656,20,"width"],[1423,13,656,25],[1423,15,656,27],[1423,16,656,28],[1424,8,656,30,"height"],[1424,14,656,36],[1424,16,656,38],[1425,6,656,40],[1425,7,656,41],[1426,6,657,4,"shadowOpacity"],[1426,19,657,17],[1426,21,657,19],[1426,24,657,22],[1427,6,658,4,"shadowRadius"],[1427,18,658,16],[1427,20,658,18],[1427,21,658,19],[1428,6,659,4,"elevation"],[1428,15,659,13],[1428,17,659,15],[1429,4,660,2],[1429,5,660,3],[1430,4,661,2,"actionsRow"],[1430,14,661,12],[1430,16,661,14],[1431,6,662,4,"flexDirection"],[1431,19,662,17],[1431,21,662,19],[1431,26,662,24],[1432,6,663,4,"justifyContent"],[1432,20,663,18],[1432,22,663,20],[1432,37,663,35],[1433,6,664,4,"marginBottom"],[1433,18,664,16],[1433,20,664,18],[1434,4,665,2],[1434,5,665,3],[1435,4,666,2,"actionBtn"],[1435,13,666,11],[1435,15,666,13],[1436,6,667,4,"width"],[1436,11,667,9],[1436,13,667,11],[1436,14,667,12,"width"],[1436,19,667,17],[1436,22,667,20],[1436,24,667,22],[1436,28,667,26],[1436,29,667,27],[1437,6,668,4,"padding"],[1437,13,668,11],[1437,15,668,13],[1437,17,668,15],[1438,6,669,4,"borderRadius"],[1438,18,669,16],[1438,20,669,18],[1438,22,669,20],[1439,6,670,4,"alignItems"],[1439,16,670,14],[1439,18,670,16],[1439,26,670,24],[1440,6,671,4,"justifyContent"],[1440,20,671,18],[1440,22,671,20],[1441,4,672,2],[1441,5,672,3],[1442,4,673,2,"actionBtnText"],[1442,17,673,15],[1442,19,673,17],[1443,6,674,4,"color"],[1443,11,674,9],[1443,13,674,11],[1443,19,674,17],[1444,6,675,4,"fontSize"],[1444,14,675,12],[1444,16,675,14],[1444,18,675,16],[1445,6,676,4,"fontWeight"],[1445,16,676,14],[1445,18,676,16],[1445,23,676,21],[1446,6,677,4,"marginTop"],[1446,15,677,13],[1446,17,677,15],[1447,4,678,2],[1447,5,678,3],[1448,4,679,2,"tokensContainer"],[1448,19,679,17],[1448,21,679,19],[1449,6,680,4,"margin"],[1449,12,680,10],[1449,14,680,12],[1449,16,680,14],[1450,6,681,4,"marginTop"],[1450,15,681,13],[1450,17,681,15],[1451,4,682,2],[1451,5,682,3],[1452,4,683,2,"tokensTitle"],[1452,15,683,13],[1452,17,683,15],[1453,6,684,4,"fontSize"],[1453,14,684,12],[1453,16,684,14],[1453,18,684,16],[1454,6,685,4,"fontWeight"],[1454,16,685,14],[1454,18,685,16],[1454,23,685,21],[1455,6,686,4,"color"],[1455,11,686,9],[1455,13,686,11],[1455,22,686,20],[1456,6,687,4,"marginBottom"],[1456,18,687,16],[1456,20,687,18],[1456,22,687,20],[1457,6,688,4,"paddingHorizontal"],[1457,23,688,21],[1457,25,688,23],[1458,4,689,2],[1458,5,689,3],[1459,4,690,2,"tokenItem"],[1459,13,690,11],[1459,15,690,13],[1460,6,691,4,"flexDirection"],[1460,19,691,17],[1460,21,691,19],[1460,26,691,24],[1461,6,692,4,"justifyContent"],[1461,20,692,18],[1461,22,692,20],[1461,37,692,35],[1462,6,693,4,"alignItems"],[1462,16,693,14],[1462,18,693,16],[1462,26,693,24],[1463,6,694,4,"backgroundColor"],[1463,21,694,19],[1463,23,694,21],[1463,29,694,27],[1464,6,695,4,"padding"],[1464,13,695,11],[1464,15,695,13],[1464,17,695,15],[1465,6,696,4,"borderRadius"],[1465,18,696,16],[1465,20,696,18],[1465,22,696,20],[1466,6,697,4,"marginBottom"],[1466,18,697,16],[1466,20,697,18],[1466,21,697,19],[1467,6,698,4,"shadowColor"],[1467,17,698,15],[1467,19,698,17],[1467,25,698,23],[1468,6,699,4,"shadowOffset"],[1468,18,699,16],[1468,20,699,18],[1469,8,699,20,"width"],[1469,13,699,25],[1469,15,699,27],[1469,16,699,28],[1470,8,699,30,"height"],[1470,14,699,36],[1470,16,699,38],[1471,6,699,40],[1471,7,699,41],[1472,6,700,4,"shadowOpacity"],[1472,19,700,17],[1472,21,700,19],[1472,25,700,23],[1473,6,701,4,"shadowRadius"],[1473,18,701,16],[1473,20,701,18],[1473,21,701,19],[1474,6,702,4,"elevation"],[1474,15,702,13],[1474,17,702,15],[1475,4,703,2],[1475,5,703,3],[1476,4,704,2,"tokenItemLeft"],[1476,17,704,15],[1476,19,704,17],[1477,6,705,4,"flexDirection"],[1477,19,705,17],[1477,21,705,19],[1477,26,705,24],[1478,6,706,4,"alignItems"],[1478,16,706,14],[1478,18,706,16],[1478,26,706,24],[1479,6,707,4,"gap"],[1479,9,707,7],[1479,11,707,9],[1480,4,708,2],[1480,5,708,3],[1481,4,709,2,"tokenIconContainer"],[1481,22,709,20],[1481,24,709,22],[1482,6,710,4,"position"],[1482,14,710,12],[1482,16,710,14],[1482,26,710,24],[1483,6,711,4,"width"],[1483,11,711,9],[1483,13,711,11],[1483,15,711,13],[1484,6,712,4,"height"],[1484,12,712,10],[1484,14,712,12],[1485,4,713,2],[1485,5,713,3],[1486,4,714,2,"tokenIcon"],[1486,13,714,11],[1486,15,714,13],[1487,6,715,4,"width"],[1487,11,715,9],[1487,13,715,11],[1487,15,715,13],[1488,6,716,4,"height"],[1488,12,716,10],[1488,14,716,12],[1488,16,716,14],[1489,6,717,4,"borderRadius"],[1489,18,717,16],[1489,20,717,18],[1490,4,718,2],[1490,5,718,3],[1491,4,719,2,"networkBadge"],[1491,16,719,14],[1491,18,719,16],[1492,6,720,4,"position"],[1492,14,720,12],[1492,16,720,14],[1492,26,720,24],[1493,6,721,4,"right"],[1493,11,721,9],[1493,13,721,11],[1493,14,721,12],[1493,15,721,13],[1494,6,722,4,"bottom"],[1494,12,722,10],[1494,14,722,12],[1494,15,722,13],[1494,16,722,14],[1495,6,723,4,"width"],[1495,11,723,9],[1495,13,723,11],[1495,15,723,13],[1496,6,724,4,"height"],[1496,12,724,10],[1496,14,724,12],[1496,16,724,14],[1497,6,725,4,"borderRadius"],[1497,18,725,16],[1497,20,725,18],[1497,21,725,19],[1498,6,726,4,"borderWidth"],[1498,17,726,15],[1498,19,726,17],[1498,20,726,18],[1499,6,727,4,"borderColor"],[1499,17,727,15],[1499,19,727,17],[1500,4,728,2],[1500,5,728,3],[1501,4,729,2,"tokenItemName"],[1501,17,729,15],[1501,19,729,17],[1502,6,730,4,"fontSize"],[1502,14,730,12],[1502,16,730,14],[1502,18,730,16],[1503,6,731,4,"fontWeight"],[1503,16,731,14],[1503,18,731,16],[1503,23,731,21],[1504,6,732,4,"color"],[1504,11,732,9],[1504,13,732,11],[1505,4,733,2],[1505,5,733,3],[1506,4,734,2,"tokenItemNetwork"],[1506,20,734,18],[1506,22,734,20],[1507,6,735,4,"fontSize"],[1507,14,735,12],[1507,16,735,14],[1507,18,735,16],[1508,6,736,4,"color"],[1508,11,736,9],[1508,13,736,11],[1509,4,737,2],[1509,5,737,3],[1510,4,738,2,"tokenItemRight"],[1510,18,738,16],[1510,20,738,18],[1511,6,739,4,"alignItems"],[1511,16,739,14],[1511,18,739,16],[1512,4,740,2],[1512,5,740,3],[1513,4,741,2,"tokenItemBalance"],[1513,20,741,18],[1513,22,741,20],[1514,6,742,4,"fontSize"],[1514,14,742,12],[1514,16,742,14],[1514,18,742,16],[1515,6,743,4,"fontWeight"],[1515,16,743,14],[1515,18,743,16],[1515,23,743,21],[1516,6,744,4,"color"],[1516,11,744,9],[1516,13,744,11],[1517,4,745,2],[1517,5,745,3],[1518,4,746,2,"tokenItemUsd"],[1518,16,746,14],[1518,18,746,16],[1519,6,747,4,"fontSize"],[1519,14,747,12],[1519,16,747,14],[1519,18,747,16],[1520,6,748,4,"color"],[1520,11,748,9],[1520,13,748,11],[1521,4,749,2],[1522,2,750,0],[1522,3,750,1],[1522,4,750,2],[1523,2,750,3],[1523,6,750,3,"_c"],[1523,8,750,3],[1523,10,750,3,"_c2"],[1523,13,750,3],[1523,15,750,3,"_c3"],[1523,18,750,3],[1523,20,750,3,"_c4"],[1523,23,750,3],[1523,25,750,3,"_c5"],[1523,28,750,3],[1523,30,750,3,"_c6"],[1523,33,750,3],[1524,2,750,3,"$RefreshReg$"],[1524,14,750,3],[1524,15,750,3,"_c"],[1524,17,750,3],[1525,2,750,3,"$RefreshReg$"],[1525,14,750,3],[1525,15,750,3,"_c2"],[1525,18,750,3],[1526,2,750,3,"$RefreshReg$"],[1526,14,750,3],[1526,15,750,3,"_c3"],[1526,18,750,3],[1527,2,750,3,"$RefreshReg$"],[1527,14,750,3],[1527,15,750,3,"_c4"],[1527,18,750,3],[1528,2,750,3,"$RefreshReg$"],[1528,14,750,3],[1528,15,750,3,"_c5"],[1528,18,750,3],[1529,2,750,3,"$RefreshReg$"],[1529,14,750,3],[1529,15,750,3,"_c6"],[1529,18,750,3],[1530,0,750,3],[1530,3]],"functionMap":{"names":["<global>","HomeTab","pickImage","QUICK_ACTIONS.map$argument_0","WalletTab","useEffect$argument_0","fetchBalance","CitizensTab","ReferralTab","ProfileTab","HomeScreen","Tab.Screen.props.options.tabBarIcon"],"mappings":"AAA;ACmB;oBCI;GDqB;+BEkD;aFc;CDM;AIE;YCQ;GDE;uBEE;GF4B;CJgH;AOE;CPM;AQE;CRM;ASE;CTM;eUI;sBCe;WDE;sBCQ;WDE;sBCQ;WDE;sBCQ;WDE;sBCQ;WDE;CVK"},"hasCjsExports":false},"type":"js/module"}]} |