Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/9c/5ab3a07f46ef93ae70943ad8712d9f55d16487e2b4feda686c6ceb6104eec3982814d3
T
2025-11-08 20:34:26 +00:00

1 line
162 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 controller = new AbortController();\n var timeoutId = setTimeout(() => controller.abort(), 5000); // 5 sec timeout\n\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 signal: controller.signal\n });\n clearTimeout(timeoutId);\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('0.00');\n setPezBalance('0.00');\n }\n } catch (error) {\n console.error('Balance fetch error:', error);\n setHezBalance('0.00');\n setPezBalance('0.00');\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: 170,\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: 172,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 171,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 169,\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: 179,\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: 183,\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: 184,\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: 185,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 178,\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: 189,\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: 193,\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: 194,\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: 195,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 188,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 177,\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: 204,\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: 205,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 203,\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: 208,\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: 209,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 207,\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: 212,\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: 213,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 211,\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: 216,\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: 217,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 215,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 202,\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: 224,\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: 225,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 223,\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: 228,\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: 229,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 227,\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: 232,\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: 233,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 231,\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: 236,\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: 237,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 235,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 222,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 200,\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: 244,\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: 250,\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: 254,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 249,\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: 260,\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: 261,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 259,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 248,\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: 265,\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: 266,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 264,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 247,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 243,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 167,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 166,\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: 280,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 279,\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: 288,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 287,\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: 296,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 295,\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: 319,\n columnNumber: 13\n }, this);\n }\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 313,\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: 329,\n columnNumber: 13\n }, this);\n }\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 323,\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: 339,\n columnNumber: 13\n }, this);\n }\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 333,\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: 349,\n columnNumber: 13\n }, this);\n }\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 343,\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: 359,\n columnNumber: 13\n }, this);\n }\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 353,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 305,\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: '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":1445,"map":[[30,2,303,15,"Object"],[30,8,303,15],[30,9,303,15,"defineProperty"],[30,23,303,15],[30,24,303,15,"exports"],[30,31,303,15],[31,4,303,15,"enumerable"],[31,14,303,15],[32,4,303,15,"get"],[32,7,303,15],[32,18,303,15,"get"],[32,19,303,15],[33,6,303,15],[33,13,303,15,"HomeScreen"],[33,23,303,15],[34,4,303,15],[35,2,303,15],[36,2,365,1],[36,6,365,1,"_babelRuntimeHelpersAsyncToGenerator"],[36,42,365,1],[36,45,365,1,"require"],[36,52,365,1],[36,53,365,1,"_dependencyMap"],[36,67,365,1],[37,2,365,1],[37,6,365,1,"_asyncToGenerator"],[37,23,365,1],[37,26,365,1,"_interopDefault"],[37,41,365,1],[37,42,365,1,"_babelRuntimeHelpersAsyncToGenerator"],[37,78,365,1],[38,2,365,1],[38,6,365,1,"_babelRuntimeHelpersSlicedToArray"],[38,39,365,1],[38,42,365,1,"require"],[38,49,365,1],[38,50,365,1,"_dependencyMap"],[38,64,365,1],[39,2,365,1],[39,6,365,1,"_slicedToArray"],[39,20,365,1],[39,23,365,1,"_interopDefault"],[39,38,365,1],[39,39,365,1,"_babelRuntimeHelpersSlicedToArray"],[39,72,365,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,"controller"],[350,24,132,22],[350,27,132,25],[350,31,132,29,"AbortController"],[350,46,132,44],[350,47,132,45],[350,48,132,46],[351,10,133,6],[351,14,133,12,"timeoutId"],[351,23,133,21],[351,26,133,24,"setTimeout"],[351,36,133,34],[351,37,133,35],[351,43,133,41,"controller"],[351,53,133,51],[351,54,133,52,"abort"],[351,59,133,57],[351,60,133,58],[351,61,133,59],[351,63,133,61],[351,67,133,65],[351,68,133,66],[351,69,133,67],[351,70,133,68],[353,10,135,6],[353,14,135,12,"response"],[353,22,135,20],[353,31,135,29,"fetch"],[353,36,135,34],[353,37,135,35],[353,40,135,38,"backendUrl"],[353,50,135,48],[353,75,135,73],[353,77,135,75],[354,12,136,8,"method"],[354,18,136,14],[354,20,136,16],[354,26,136,22],[355,12,137,8,"headers"],[355,19,137,15],[355,21,137,17],[356,14,138,10],[356,28,138,24],[356,30,138,26],[357,12,139,8],[357,13,139,9],[358,12,140,8,"body"],[358,16,140,12],[358,18,140,14,"JSON"],[358,22,140,18],[358,23,140,19,"stringify"],[358,32,140,28],[358,33,140,29],[359,14,141,10,"address"],[359,21,141,17],[359,23,141,19,"TEST_WALLET"],[360,12,142,8],[360,13,142,9],[360,14,142,10],[361,12,143,8,"signal"],[361,18,143,14],[361,20,143,16,"controller"],[361,30,143,26],[361,31,143,27,"signal"],[362,10,144,6],[362,11,144,7],[362,12,144,8],[363,10,146,6,"clearTimeout"],[363,22,146,18],[363,23,146,19,"timeoutId"],[363,32,146,28],[363,33,146,29],[364,10,148,6],[364,14,148,10,"response"],[364,22,148,18],[364,23,148,19,"ok"],[364,25,148,21],[364,27,148,23],[365,12,149,8],[365,16,149,14,"data"],[365,20,149,18],[365,29,149,27,"response"],[365,37,149,35],[365,38,149,36,"json"],[365,42,149,40],[365,43,149,41],[365,44,149,42],[366,12,150,8,"setHezBalance"],[366,25,150,21],[366,26,150,22,"parseFloat"],[366,36,150,32],[366,37,150,33,"data"],[366,41,150,37],[366,42,150,38,"hez"],[366,45,150,41],[366,46,150,42],[366,47,150,43,"toFixed"],[366,54,150,50],[366,55,150,51],[366,56,150,52],[366,57,150,53],[366,58,150,54],[367,12,151,8,"setPezBalance"],[367,25,151,21],[367,26,151,22,"parseFloat"],[367,36,151,32],[367,37,151,33,"data"],[367,41,151,37],[367,42,151,38,"pez"],[367,45,151,41],[367,46,151,42],[367,47,151,43,"toFixed"],[367,54,151,50],[367,55,151,51],[367,56,151,52],[367,57,151,53],[367,58,151,54],[368,10,152,6],[368,11,152,7],[368,17,152,13],[369,12,153,8,"setHezBalance"],[369,25,153,21],[369,26,153,22],[369,32,153,28],[369,33,153,29],[370,12,154,8,"setPezBalance"],[370,25,154,21],[370,26,154,22],[370,32,154,28],[370,33,154,29],[371,10,155,6],[372,8,156,4],[372,9,156,5],[372,10,156,6],[372,17,156,13,"error"],[372,22,156,18],[372,24,156,20],[373,10,157,6,"console"],[373,17,157,13],[373,18,157,14,"error"],[373,23,157,19],[373,24,157,20],[373,46,157,42],[373,48,157,44,"error"],[373,53,157,49],[373,54,157,50],[374,10,158,6,"setHezBalance"],[374,23,158,19],[374,24,158,20],[374,30,158,26],[374,31,158,27],[375,10,159,6,"setPezBalance"],[375,23,159,19],[375,24,159,20],[375,30,159,26],[375,31,159,27],[376,8,160,4],[376,9,160,5],[376,18,160,14],[377,10,161,6,"setLoading"],[377,20,161,16],[377,21,161,17],[377,26,161,22],[377,27,161,23],[378,8,162,4],[379,6,163,2],[379,7,163,3],[380,6,163,3],[380,22,129,8,"fetchBalance"],[380,34,129,20,"fetchBalance"],[380,35,129,20],[381,8,129,20],[381,15,129,20,"_ref2"],[381,20,129,20],[381,21,129,20,"apply"],[381,26,129,20],[381,33,129,20,"arguments"],[381,42,129,20],[382,6,129,20],[383,4,129,20],[383,7,163,3],[384,4,165,2],[384,24,166,4],[384,28,166,4,"_reactJsxDevRuntime"],[384,47,166,4],[384,48,166,4,"jsxDEV"],[384,54,166,4],[384,56,166,5,"_reactNative"],[384,68,166,9],[384,69,166,9,"View"],[384,73,166,9],[385,6,166,10,"style"],[385,11,166,15],[385,13,166,17,"styles"],[385,19,166,23],[385,20,166,24,"container"],[385,29,166,34],[386,6,166,34,"children"],[386,14,166,34],[386,29,167,6],[386,33,167,6,"_reactJsxDevRuntime"],[386,52,167,6],[386,53,167,6,"jsxDEV"],[386,59,167,6],[386,61,167,7,"_reactNative"],[386,73,167,17],[386,74,167,17,"ScrollView"],[386,84,167,17],[387,8,167,18,"contentContainerStyle"],[387,29,167,39],[387,31,167,41,"styles"],[387,37,167,47],[387,38,167,48,"walletScrollContent"],[387,57,167,68],[388,8,167,68,"children"],[388,16,167,68],[388,32,169,8],[388,36,169,8,"_reactJsxDevRuntime"],[388,55,169,8],[388,56,169,8,"jsxDEV"],[388,62,169,8],[388,64,169,9,"_reactNative"],[388,76,169,13],[388,77,169,13,"View"],[388,81,169,13],[389,10,169,14,"style"],[389,15,169,19],[389,17,169,21,"styles"],[389,23,169,27],[389,24,169,28,"walletHeader"],[389,36,169,41],[390,10,169,41,"children"],[390,18,169,41],[390,34,170,10],[390,38,170,10,"_reactJsxDevRuntime"],[390,57,170,10],[390,58,170,10,"jsxDEV"],[390,64,170,10],[390,66,170,11,"_reactNative"],[390,78,170,15],[390,79,170,15,"Text"],[390,83,170,15],[391,12,170,16,"style"],[391,17,170,21],[391,19,170,23,"styles"],[391,25,170,29],[391,26,170,30,"walletTitle"],[391,37,170,42],[392,12,170,42,"children"],[392,20,170,42],[392,22,170,43],[393,10,170,52],[394,12,170,52,"fileName"],[394,20,170,52],[394,22,170,52,"_jsxFileName"],[394,34,170,52],[395,12,170,52,"lineNumber"],[395,22,170,52],[396,12,170,52,"columnNumber"],[396,24,170,52],[397,10,170,52],[397,17,170,58],[397,18,170,59],[397,33,171,10],[397,37,171,10,"_reactJsxDevRuntime"],[397,56,171,10],[397,57,171,10,"jsxDEV"],[397,63,171,10],[397,65,171,11,"_reactNative"],[397,77,171,27],[397,78,171,27,"TouchableOpacity"],[397,94,171,27],[398,12,171,28,"onPress"],[398,19,171,35],[398,21,171,37,"fetchBalance"],[398,33,171,50],[399,12,171,51,"style"],[399,17,171,56],[399,19,171,58,"styles"],[399,25,171,64],[399,26,171,65,"refreshButton"],[399,39,171,79],[400,12,171,79,"children"],[400,20,171,79],[400,35,172,12],[400,39,172,12,"_reactJsxDevRuntime"],[400,58,172,12],[400,59,172,12,"jsxDEV"],[400,65,172,12],[400,67,172,13,"_expoVectorIcons"],[400,83,172,21],[400,84,172,21,"Ionicons"],[400,92,172,21],[401,14,172,22,"name"],[401,18,172,26],[401,20,172,27],[401,29,172,36],[402,14,172,37,"size"],[402,18,172,41],[402,20,172,43],[402,22,172,46],[403,14,172,47,"color"],[403,19,172,52],[403,21,172,53],[404,12,172,62],[405,14,172,62,"fileName"],[405,22,172,62],[405,24,172,62,"_jsxFileName"],[405,36,172,62],[406,14,172,62,"lineNumber"],[406,24,172,62],[407,14,172,62,"columnNumber"],[407,26,172,62],[408,12,172,62],[408,19,172,64],[409,10,172,65],[410,12,172,65,"fileName"],[410,20,172,65],[410,22,172,65,"_jsxFileName"],[410,34,172,65],[411,12,172,65,"lineNumber"],[411,22,172,65],[412,12,172,65,"columnNumber"],[412,24,172,65],[413,10,172,65],[413,17,173,28],[413,18,173,29],[414,8,173,29],[415,10,173,29,"fileName"],[415,18,173,29],[415,20,173,29,"_jsxFileName"],[415,32,173,29],[416,10,173,29,"lineNumber"],[416,20,173,29],[417,10,173,29,"columnNumber"],[417,22,173,29],[418,8,173,29],[418,15,174,14],[418,16,174,15],[418,31,177,8],[418,35,177,8,"_reactJsxDevRuntime"],[418,54,177,8],[418,55,177,8,"jsxDEV"],[418,61,177,8],[418,63,177,9,"_reactNative"],[418,75,177,13],[418,76,177,13,"View"],[418,80,177,13],[419,10,177,14,"style"],[419,15,177,19],[419,17,177,21,"styles"],[419,23,177,27],[419,24,177,28,"balanceRow"],[419,34,177,39],[420,10,177,39,"children"],[420,18,177,39],[420,34,178,10],[420,38,178,10,"_reactJsxDevRuntime"],[420,57,178,10],[420,58,178,10,"jsxDEV"],[420,64,178,10],[420,66,178,11,"_reactNative"],[420,78,178,15],[420,79,178,15,"View"],[420,83,178,15],[421,12,178,16,"style"],[421,17,178,21],[421,19,178,23,"styles"],[421,25,178,29],[421,26,178,30,"balanceCardNew"],[421,40,178,45],[422,12,178,45,"children"],[422,20,178,45],[422,36,179,12],[422,40,179,12,"_reactJsxDevRuntime"],[422,59,179,12],[422,60,179,12,"jsxDEV"],[422,66,179,12],[422,68,179,13,"_reactNative"],[422,80,179,18],[422,81,179,18,"Image"],[422,86,179,18],[423,14,180,14,"source"],[423,20,180,20],[423,22,180,22],[424,16,180,24,"uri"],[424,19,180,27],[424,21,180,29],[425,14,180,145],[425,15,180,147],[426,14,181,14,"style"],[426,19,181,19],[426,21,181,21,"styles"],[426,27,181,27],[426,28,181,28,"tokenLogoNew"],[427,12,181,41],[428,14,181,41,"fileName"],[428,22,181,41],[428,24,181,41,"_jsxFileName"],[428,36,181,41],[429,14,181,41,"lineNumber"],[429,24,181,41],[430,14,181,41,"columnNumber"],[430,26,181,41],[431,12,181,41],[431,19,182,13],[431,20,182,14],[431,35,183,12],[431,39,183,12,"_reactJsxDevRuntime"],[431,58,183,12],[431,59,183,12,"jsxDEV"],[431,65,183,12],[431,67,183,13,"_reactNative"],[431,79,183,17],[431,80,183,17,"Text"],[431,84,183,17],[432,14,183,18,"style"],[432,19,183,23],[432,21,183,25,"styles"],[432,27,183,31],[432,28,183,32,"tokenSymbolNew"],[432,42,183,47],[433,14,183,47,"children"],[433,22,183,47],[433,24,183,48],[434,12,183,51],[435,14,183,51,"fileName"],[435,22,183,51],[435,24,183,51,"_jsxFileName"],[435,36,183,51],[436,14,183,51,"lineNumber"],[436,24,183,51],[437,14,183,51,"columnNumber"],[437,26,183,51],[438,12,183,51],[438,19,183,57],[438,20,183,58],[438,35,184,12],[438,39,184,12,"_reactJsxDevRuntime"],[438,58,184,12],[438,59,184,12,"jsxDEV"],[438,65,184,12],[438,67,184,13,"_reactNative"],[438,79,184,17],[438,80,184,17,"Text"],[438,84,184,17],[439,14,184,18,"style"],[439,19,184,23],[439,21,184,25,"styles"],[439,27,184,31],[439,28,184,32,"balanceAmountNew"],[439,44,184,49],[440,14,184,49,"children"],[440,22,184,49],[440,24,184,51,"hezBalance"],[441,12,184,61],[442,14,184,61,"fileName"],[442,22,184,61],[442,24,184,61,"_jsxFileName"],[442,36,184,61],[443,14,184,61,"lineNumber"],[443,24,184,61],[444,14,184,61,"columnNumber"],[444,26,184,61],[445,12,184,61],[445,19,184,68],[445,20,184,69],[445,35,185,12],[445,39,185,12,"_reactJsxDevRuntime"],[445,58,185,12],[445,59,185,12,"jsxDEV"],[445,65,185,12],[445,67,185,13,"_reactNative"],[445,79,185,17],[445,80,185,17,"Text"],[445,84,185,17],[446,14,185,18,"style"],[446,19,185,23],[446,21,185,25,"styles"],[446,27,185,31],[446,28,185,32,"tokenNameNew"],[446,40,185,45],[447,14,185,45,"children"],[447,22,185,45],[447,24,185,46],[448,12,185,61],[449,14,185,61,"fileName"],[449,22,185,61],[449,24,185,61,"_jsxFileName"],[449,36,185,61],[450,14,185,61,"lineNumber"],[450,24,185,61],[451,14,185,61,"columnNumber"],[451,26,185,61],[452,12,185,61],[452,19,185,67],[452,20,185,68],[453,10,185,68],[454,12,185,68,"fileName"],[454,20,185,68],[454,22,185,68,"_jsxFileName"],[454,34,185,68],[455,12,185,68,"lineNumber"],[455,22,185,68],[456,12,185,68,"columnNumber"],[456,24,185,68],[457,10,185,68],[457,17,186,16],[457,18,186,17],[457,33,188,10],[457,37,188,10,"_reactJsxDevRuntime"],[457,56,188,10],[457,57,188,10,"jsxDEV"],[457,63,188,10],[457,65,188,11,"_reactNative"],[457,77,188,15],[457,78,188,15,"View"],[457,82,188,15],[458,12,188,16,"style"],[458,17,188,21],[458,19,188,23,"styles"],[458,25,188,29],[458,26,188,30,"balanceCardNew"],[458,40,188,45],[459,12,188,45,"children"],[459,20,188,45],[459,36,189,12],[459,40,189,12,"_reactJsxDevRuntime"],[459,59,189,12],[459,60,189,12,"jsxDEV"],[459,66,189,12],[459,68,189,13,"_reactNative"],[459,80,189,18],[459,81,189,18,"Image"],[459,86,189,18],[460,14,190,14,"source"],[460,20,190,20],[460,22,190,22],[461,16,190,24,"uri"],[461,19,190,27],[461,21,190,29],[462,14,190,129],[462,15,190,131],[463,14,191,14,"style"],[463,19,191,19],[463,21,191,21,"styles"],[463,27,191,27],[463,28,191,28,"tokenLogoNew"],[464,12,191,41],[465,14,191,41,"fileName"],[465,22,191,41],[465,24,191,41,"_jsxFileName"],[465,36,191,41],[466,14,191,41,"lineNumber"],[466,24,191,41],[467,14,191,41,"columnNumber"],[467,26,191,41],[468,12,191,41],[468,19,192,13],[468,20,192,14],[468,35,193,12],[468,39,193,12,"_reactJsxDevRuntime"],[468,58,193,12],[468,59,193,12,"jsxDEV"],[468,65,193,12],[468,67,193,13,"_reactNative"],[468,79,193,17],[468,80,193,17,"Text"],[468,84,193,17],[469,14,193,18,"style"],[469,19,193,23],[469,21,193,25,"styles"],[469,27,193,31],[469,28,193,32,"tokenSymbolNew"],[469,42,193,47],[470,14,193,47,"children"],[470,22,193,47],[470,24,193,48],[471,12,193,51],[472,14,193,51,"fileName"],[472,22,193,51],[472,24,193,51,"_jsxFileName"],[472,36,193,51],[473,14,193,51,"lineNumber"],[473,24,193,51],[474,14,193,51,"columnNumber"],[474,26,193,51],[475,12,193,51],[475,19,193,57],[475,20,193,58],[475,35,194,12],[475,39,194,12,"_reactJsxDevRuntime"],[475,58,194,12],[475,59,194,12,"jsxDEV"],[475,65,194,12],[475,67,194,13,"_reactNative"],[475,79,194,17],[475,80,194,17,"Text"],[475,84,194,17],[476,14,194,18,"style"],[476,19,194,23],[476,21,194,25,"styles"],[476,27,194,31],[476,28,194,32,"balanceAmountNew"],[476,44,194,49],[477,14,194,49,"children"],[477,22,194,49],[477,24,194,51,"pezBalance"],[478,12,194,61],[479,14,194,61,"fileName"],[479,22,194,61],[479,24,194,61,"_jsxFileName"],[479,36,194,61],[480,14,194,61,"lineNumber"],[480,24,194,61],[481,14,194,61,"columnNumber"],[481,26,194,61],[482,12,194,61],[482,19,194,68],[482,20,194,69],[482,35,195,12],[482,39,195,12,"_reactJsxDevRuntime"],[482,58,195,12],[482,59,195,12,"jsxDEV"],[482,65,195,12],[482,67,195,13,"_reactNative"],[482,79,195,17],[482,80,195,17,"Text"],[482,84,195,17],[483,14,195,18,"style"],[483,19,195,23],[483,21,195,25,"styles"],[483,27,195,31],[483,28,195,32,"tokenNameNew"],[483,40,195,45],[484,14,195,45,"children"],[484,22,195,45],[484,24,195,46],[485,12,195,59],[486,14,195,59,"fileName"],[486,22,195,59],[486,24,195,59,"_jsxFileName"],[486,36,195,59],[487,14,195,59,"lineNumber"],[487,24,195,59],[488,14,195,59,"columnNumber"],[488,26,195,59],[489,12,195,59],[489,19,195,65],[489,20,195,66],[490,10,195,66],[491,12,195,66,"fileName"],[491,20,195,66],[491,22,195,66,"_jsxFileName"],[491,34,195,66],[492,12,195,66,"lineNumber"],[492,22,195,66],[493,12,195,66,"columnNumber"],[493,24,195,66],[494,10,195,66],[494,17,196,16],[494,18,196,17],[495,8,196,17],[496,10,196,17,"fileName"],[496,18,196,17],[496,20,196,17,"_jsxFileName"],[496,32,196,17],[497,10,196,17,"lineNumber"],[497,20,196,17],[498,10,196,17,"columnNumber"],[498,22,196,17],[499,8,196,17],[499,15,197,14],[499,16,197,15],[499,31,200,8],[499,35,200,8,"_reactJsxDevRuntime"],[499,54,200,8],[499,55,200,8,"jsxDEV"],[499,61,200,8],[499,63,200,9,"_reactNative"],[499,75,200,13],[499,76,200,13,"View"],[499,80,200,13],[500,10,200,14,"style"],[500,15,200,19],[500,17,200,21,"styles"],[500,23,200,27],[500,24,200,28,"actionsContainer"],[500,40,200,45],[501,10,200,45,"children"],[501,18,200,45],[501,34,202,10],[501,38,202,10,"_reactJsxDevRuntime"],[501,57,202,10],[501,58,202,10,"jsxDEV"],[501,64,202,10],[501,66,202,11,"_reactNative"],[501,78,202,15],[501,79,202,15,"View"],[501,83,202,15],[502,12,202,16,"style"],[502,17,202,21],[502,19,202,23,"styles"],[502,25,202,29],[502,26,202,30,"actionsRow"],[502,36,202,41],[503,12,202,41,"children"],[503,20,202,41],[503,36,203,12],[503,40,203,12,"_reactJsxDevRuntime"],[503,59,203,12],[503,60,203,12,"jsxDEV"],[503,66,203,12],[503,68,203,13,"_reactNative"],[503,80,203,29],[503,81,203,29,"TouchableOpacity"],[503,97,203,29],[504,14,203,30,"style"],[504,19,203,35],[504,21,203,37],[504,22,203,38,"styles"],[504,28,203,44],[504,29,203,45,"actionBtn"],[504,38,203,54],[504,40,203,56],[505,16,203,57,"backgroundColor"],[505,31,203,72],[505,33,203,74],[506,14,203,83],[506,15,203,84],[506,16,203,86],[507,14,203,86,"children"],[507,22,203,86],[507,38,204,14],[507,42,204,14,"_reactJsxDevRuntime"],[507,61,204,14],[507,62,204,14,"jsxDEV"],[507,68,204,14],[507,70,204,15,"_expoVectorIcons"],[507,86,204,23],[507,87,204,23,"Ionicons"],[507,95,204,23],[508,16,204,24,"name"],[508,20,204,28],[508,22,204,29],[508,32,204,39],[509,16,204,40,"size"],[509,20,204,44],[509,22,204,46],[509,24,204,49],[510,16,204,50,"color"],[510,21,204,55],[510,23,204,56],[511,14,204,62],[512,16,204,62,"fileName"],[512,24,204,62],[512,26,204,62,"_jsxFileName"],[512,38,204,62],[513,16,204,62,"lineNumber"],[513,26,204,62],[514,16,204,62,"columnNumber"],[514,28,204,62],[515,14,204,62],[515,21,204,64],[515,22,204,65],[515,37,205,14],[515,41,205,14,"_reactJsxDevRuntime"],[515,60,205,14],[515,61,205,14,"jsxDEV"],[515,67,205,14],[515,69,205,15,"_reactNative"],[515,81,205,19],[515,82,205,19,"Text"],[515,86,205,19],[516,16,205,20,"style"],[516,21,205,25],[516,23,205,27,"styles"],[516,29,205,33],[516,30,205,34,"actionBtnText"],[516,43,205,48],[517,16,205,48,"children"],[517,24,205,48],[517,26,205,49],[518,14,205,53],[519,16,205,53,"fileName"],[519,24,205,53],[519,26,205,53,"_jsxFileName"],[519,38,205,53],[520,16,205,53,"lineNumber"],[520,26,205,53],[521,16,205,53,"columnNumber"],[521,28,205,53],[522,14,205,53],[522,21,205,59],[522,22,205,60],[523,12,205,60],[524,14,205,60,"fileName"],[524,22,205,60],[524,24,205,60,"_jsxFileName"],[524,36,205,60],[525,14,205,60,"lineNumber"],[525,24,205,60],[526,14,205,60,"columnNumber"],[526,26,205,60],[527,12,205,60],[527,19,206,30],[527,20,206,31],[527,35,207,12],[527,39,207,12,"_reactJsxDevRuntime"],[527,58,207,12],[527,59,207,12,"jsxDEV"],[527,65,207,12],[527,67,207,13,"_reactNative"],[527,79,207,29],[527,80,207,29,"TouchableOpacity"],[527,96,207,29],[528,14,207,30,"style"],[528,19,207,35],[528,21,207,37],[528,22,207,38,"styles"],[528,28,207,44],[528,29,207,45,"actionBtn"],[528,38,207,54],[528,40,207,56],[529,16,207,57,"backgroundColor"],[529,31,207,72],[529,33,207,74],[530,14,207,83],[530,15,207,84],[530,16,207,86],[531,14,207,86,"children"],[531,22,207,86],[531,38,208,14],[531,42,208,14,"_reactJsxDevRuntime"],[531,61,208,14],[531,62,208,14,"jsxDEV"],[531,68,208,14],[531,70,208,15,"_expoVectorIcons"],[531,86,208,23],[531,87,208,23,"Ionicons"],[531,95,208,23],[532,16,208,24,"name"],[532,20,208,28],[532,22,208,29],[532,34,208,41],[533,16,208,42,"size"],[533,20,208,46],[533,22,208,48],[533,24,208,51],[534,16,208,52,"color"],[534,21,208,57],[534,23,208,58],[535,14,208,64],[536,16,208,64,"fileName"],[536,24,208,64],[536,26,208,64,"_jsxFileName"],[536,38,208,64],[537,16,208,64,"lineNumber"],[537,26,208,64],[538,16,208,64,"columnNumber"],[538,28,208,64],[539,14,208,64],[539,21,208,66],[539,22,208,67],[539,37,209,14],[539,41,209,14,"_reactJsxDevRuntime"],[539,60,209,14],[539,61,209,14,"jsxDEV"],[539,67,209,14],[539,69,209,15,"_reactNative"],[539,81,209,19],[539,82,209,19,"Text"],[539,86,209,19],[540,16,209,20,"style"],[540,21,209,25],[540,23,209,27,"styles"],[540,29,209,33],[540,30,209,34,"actionBtnText"],[540,43,209,48],[541,16,209,48,"children"],[541,24,209,48],[541,26,209,49],[542,14,209,56],[543,16,209,56,"fileName"],[543,24,209,56],[543,26,209,56,"_jsxFileName"],[543,38,209,56],[544,16,209,56,"lineNumber"],[544,26,209,56],[545,16,209,56,"columnNumber"],[545,28,209,56],[546,14,209,56],[546,21,209,62],[546,22,209,63],[547,12,209,63],[548,14,209,63,"fileName"],[548,22,209,63],[548,24,209,63,"_jsxFileName"],[548,36,209,63],[549,14,209,63,"lineNumber"],[549,24,209,63],[550,14,209,63,"columnNumber"],[550,26,209,63],[551,12,209,63],[551,19,210,30],[551,20,210,31],[551,35,211,12],[551,39,211,12,"_reactJsxDevRuntime"],[551,58,211,12],[551,59,211,12,"jsxDEV"],[551,65,211,12],[551,67,211,13,"_reactNative"],[551,79,211,29],[551,80,211,29,"TouchableOpacity"],[551,96,211,29],[552,14,211,30,"style"],[552,19,211,35],[552,21,211,37],[552,22,211,38,"styles"],[552,28,211,44],[552,29,211,45,"actionBtn"],[552,38,211,54],[552,40,211,56],[553,16,211,57,"backgroundColor"],[553,31,211,72],[553,33,211,74],[554,14,211,83],[554,15,211,84],[554,16,211,86],[555,14,211,86,"children"],[555,22,211,86],[555,38,212,14],[555,42,212,14,"_reactJsxDevRuntime"],[555,61,212,14],[555,62,212,14,"jsxDEV"],[555,68,212,14],[555,70,212,15,"_expoVectorIcons"],[555,86,212,23],[555,87,212,23,"Ionicons"],[555,95,212,23],[556,16,212,24,"name"],[556,20,212,28],[556,22,212,29],[556,39,212,46],[557,16,212,47,"size"],[557,20,212,51],[557,22,212,53],[557,24,212,56],[558,16,212,57,"color"],[558,21,212,62],[558,23,212,63],[559,14,212,69],[560,16,212,69,"fileName"],[560,24,212,69],[560,26,212,69,"_jsxFileName"],[560,38,212,69],[561,16,212,69,"lineNumber"],[561,26,212,69],[562,16,212,69,"columnNumber"],[562,28,212,69],[563,14,212,69],[563,21,212,71],[563,22,212,72],[563,37,213,14],[563,41,213,14,"_reactJsxDevRuntime"],[563,60,213,14],[563,61,213,14,"jsxDEV"],[563,67,213,14],[563,69,213,15,"_reactNative"],[563,81,213,19],[563,82,213,19,"Text"],[563,86,213,19],[564,16,213,20,"style"],[564,21,213,25],[564,23,213,27,"styles"],[564,29,213,33],[564,30,213,34,"actionBtnText"],[564,43,213,48],[565,16,213,48,"children"],[565,24,213,48],[565,26,213,49],[566,14,213,53],[567,16,213,53,"fileName"],[567,24,213,53],[567,26,213,53,"_jsxFileName"],[567,38,213,53],[568,16,213,53,"lineNumber"],[568,26,213,53],[569,16,213,53,"columnNumber"],[569,28,213,53],[570,14,213,53],[570,21,213,59],[570,22,213,60],[571,12,213,60],[572,14,213,60,"fileName"],[572,22,213,60],[572,24,213,60,"_jsxFileName"],[572,36,213,60],[573,14,213,60,"lineNumber"],[573,24,213,60],[574,14,213,60,"columnNumber"],[574,26,213,60],[575,12,213,60],[575,19,214,30],[575,20,214,31],[575,35,215,12],[575,39,215,12,"_reactJsxDevRuntime"],[575,58,215,12],[575,59,215,12,"jsxDEV"],[575,65,215,12],[575,67,215,13,"_reactNative"],[575,79,215,29],[575,80,215,29,"TouchableOpacity"],[575,96,215,29],[576,14,215,30,"style"],[576,19,215,35],[576,21,215,37],[576,22,215,38,"styles"],[576,28,215,44],[576,29,215,45,"actionBtn"],[576,38,215,54],[576,40,215,56],[577,16,215,57,"backgroundColor"],[577,31,215,72],[577,33,215,74],[578,14,215,83],[578,15,215,84],[578,16,215,86],[579,14,215,86,"children"],[579,22,215,86],[579,38,216,14],[579,42,216,14,"_reactJsxDevRuntime"],[579,61,216,14],[579,62,216,14,"jsxDEV"],[579,68,216,14],[579,70,216,15,"_expoVectorIcons"],[579,86,216,23],[579,87,216,23,"Ionicons"],[579,95,216,23],[580,16,216,24,"name"],[580,20,216,28],[580,22,216,29],[580,30,216,37],[581,16,216,38,"size"],[581,20,216,42],[581,22,216,44],[581,24,216,47],[582,16,216,48,"color"],[582,21,216,53],[582,23,216,54],[583,14,216,60],[584,16,216,60,"fileName"],[584,24,216,60],[584,26,216,60,"_jsxFileName"],[584,38,216,60],[585,16,216,60,"lineNumber"],[585,26,216,60],[586,16,216,60,"columnNumber"],[586,28,216,60],[587,14,216,60],[587,21,216,62],[587,22,216,63],[587,37,217,14],[587,41,217,14,"_reactJsxDevRuntime"],[587,60,217,14],[587,61,217,14,"jsxDEV"],[587,67,217,14],[587,69,217,15,"_reactNative"],[587,81,217,19],[587,82,217,19,"Text"],[587,86,217,19],[588,16,217,20,"style"],[588,21,217,25],[588,23,217,27,"styles"],[588,29,217,33],[588,30,217,34,"actionBtnText"],[588,43,217,48],[589,16,217,48,"children"],[589,24,217,48],[589,26,217,49],[590,14,217,52],[591,16,217,52,"fileName"],[591,24,217,52],[591,26,217,52,"_jsxFileName"],[591,38,217,52],[592,16,217,52,"lineNumber"],[592,26,217,52],[593,16,217,52,"columnNumber"],[593,28,217,52],[594,14,217,52],[594,21,217,58],[594,22,217,59],[595,12,217,59],[596,14,217,59,"fileName"],[596,22,217,59],[596,24,217,59,"_jsxFileName"],[596,36,217,59],[597,14,217,59,"lineNumber"],[597,24,217,59],[598,14,217,59,"columnNumber"],[598,26,217,59],[599,12,217,59],[599,19,218,30],[599,20,218,31],[600,10,218,31],[601,12,218,31,"fileName"],[601,20,218,31],[601,22,218,31,"_jsxFileName"],[601,34,218,31],[602,12,218,31,"lineNumber"],[602,22,218,31],[603,12,218,31,"columnNumber"],[603,24,218,31],[604,10,218,31],[604,17,219,16],[604,18,219,17],[604,33,222,10],[604,37,222,10,"_reactJsxDevRuntime"],[604,56,222,10],[604,57,222,10,"jsxDEV"],[604,63,222,10],[604,65,222,11,"_reactNative"],[604,77,222,15],[604,78,222,15,"View"],[604,82,222,15],[605,12,222,16,"style"],[605,17,222,21],[605,19,222,23,"styles"],[605,25,222,29],[605,26,222,30,"actionsRow"],[605,36,222,41],[606,12,222,41,"children"],[606,20,222,41],[606,36,223,12],[606,40,223,12,"_reactJsxDevRuntime"],[606,59,223,12],[606,60,223,12,"jsxDEV"],[606,66,223,12],[606,68,223,13,"_reactNative"],[606,80,223,29],[606,81,223,29,"TouchableOpacity"],[606,97,223,29],[607,14,223,30,"style"],[607,19,223,35],[607,21,223,37],[607,22,223,38,"styles"],[607,28,223,44],[607,29,223,45,"actionBtn"],[607,38,223,54],[607,40,223,56],[608,16,223,57,"backgroundColor"],[608,31,223,72],[608,33,223,74],[609,14,223,83],[609,15,223,84],[609,16,223,86],[610,14,223,86,"children"],[610,22,223,86],[610,38,224,14],[610,42,224,14,"_reactJsxDevRuntime"],[610,61,224,14],[610,62,224,14,"jsxDEV"],[610,68,224,14],[610,70,224,15,"_expoVectorIcons"],[610,86,224,23],[610,87,224,23,"Ionicons"],[610,95,224,23],[611,16,224,24,"name"],[611,20,224,28],[611,22,224,29],[611,33,224,40],[612,16,224,41,"size"],[612,20,224,45],[612,22,224,47],[612,24,224,50],[613,16,224,51,"color"],[613,21,224,56],[613,23,224,57],[614,14,224,63],[615,16,224,63,"fileName"],[615,24,224,63],[615,26,224,63,"_jsxFileName"],[615,38,224,63],[616,16,224,63,"lineNumber"],[616,26,224,63],[617,16,224,63,"columnNumber"],[617,28,224,63],[618,14,224,63],[618,21,224,65],[618,22,224,66],[618,37,225,14],[618,41,225,14,"_reactJsxDevRuntime"],[618,60,225,14],[618,61,225,14,"jsxDEV"],[618,67,225,14],[618,69,225,15,"_reactNative"],[618,81,225,19],[618,82,225,19,"Text"],[618,86,225,19],[619,16,225,20,"style"],[619,21,225,25],[619,23,225,27,"styles"],[619,29,225,33],[619,30,225,34,"actionBtnText"],[619,43,225,48],[620,16,225,48,"children"],[620,24,225,48],[620,26,225,49],[621,14,225,53],[622,16,225,53,"fileName"],[622,24,225,53],[622,26,225,53,"_jsxFileName"],[622,38,225,53],[623,16,225,53,"lineNumber"],[623,26,225,53],[624,16,225,53,"columnNumber"],[624,28,225,53],[625,14,225,53],[625,21,225,59],[625,22,225,60],[626,12,225,60],[627,14,225,60,"fileName"],[627,22,225,60],[627,24,225,60,"_jsxFileName"],[627,36,225,60],[628,14,225,60,"lineNumber"],[628,24,225,60],[629,14,225,60,"columnNumber"],[629,26,225,60],[630,12,225,60],[630,19,226,30],[630,20,226,31],[630,35,227,12],[630,39,227,12,"_reactJsxDevRuntime"],[630,58,227,12],[630,59,227,12,"jsxDEV"],[630,65,227,12],[630,67,227,13,"_reactNative"],[630,79,227,29],[630,80,227,29,"TouchableOpacity"],[630,96,227,29],[631,14,227,30,"style"],[631,19,227,35],[631,21,227,37],[631,22,227,38,"styles"],[631,28,227,44],[631,29,227,45,"actionBtn"],[631,38,227,54],[631,40,227,56],[632,16,227,57,"backgroundColor"],[632,31,227,72],[632,33,227,74],[633,14,227,83],[633,15,227,84],[633,16,227,86],[634,14,227,86,"children"],[634,22,227,86],[634,38,228,14],[634,42,228,14,"_reactJsxDevRuntime"],[634,61,228,14],[634,62,228,14,"jsxDEV"],[634,68,228,14],[634,70,228,15,"_expoVectorIcons"],[634,86,228,23],[634,87,228,23,"Ionicons"],[634,95,228,23],[635,16,228,24,"name"],[635,20,228,28],[635,22,228,29],[635,28,228,35],[636,16,228,36,"size"],[636,20,228,40],[636,22,228,42],[636,24,228,45],[637,16,228,46,"color"],[637,21,228,51],[637,23,228,52],[638,14,228,58],[639,16,228,58,"fileName"],[639,24,228,58],[639,26,228,58,"_jsxFileName"],[639,38,228,58],[640,16,228,58,"lineNumber"],[640,26,228,58],[641,16,228,58,"columnNumber"],[641,28,228,58],[642,14,228,58],[642,21,228,60],[642,22,228,61],[642,37,229,14],[642,41,229,14,"_reactJsxDevRuntime"],[642,60,229,14],[642,61,229,14,"jsxDEV"],[642,67,229,14],[642,69,229,15,"_reactNative"],[642,81,229,19],[642,82,229,19,"Text"],[642,86,229,19],[643,16,229,20,"style"],[643,21,229,25],[643,23,229,27,"styles"],[643,29,229,33],[643,30,229,34,"actionBtnText"],[643,43,229,48],[644,16,229,48,"children"],[644,24,229,48],[644,26,229,49],[645,14,229,54],[646,16,229,54,"fileName"],[646,24,229,54],[646,26,229,54,"_jsxFileName"],[646,38,229,54],[647,16,229,54,"lineNumber"],[647,26,229,54],[648,16,229,54,"columnNumber"],[648,28,229,54],[649,14,229,54],[649,21,229,60],[649,22,229,61],[650,12,229,61],[651,14,229,61,"fileName"],[651,22,229,61],[651,24,229,61,"_jsxFileName"],[651,36,229,61],[652,14,229,61,"lineNumber"],[652,24,229,61],[653,14,229,61,"columnNumber"],[653,26,229,61],[654,12,229,61],[654,19,230,30],[654,20,230,31],[654,35,231,12],[654,39,231,12,"_reactJsxDevRuntime"],[654,58,231,12],[654,59,231,12,"jsxDEV"],[654,65,231,12],[654,67,231,13,"_reactNative"],[654,79,231,29],[654,80,231,29,"TouchableOpacity"],[654,96,231,29],[655,14,231,30,"style"],[655,19,231,35],[655,21,231,37],[655,22,231,38,"styles"],[655,28,231,44],[655,29,231,45,"actionBtn"],[655,38,231,54],[655,40,231,56],[656,16,231,57,"backgroundColor"],[656,31,231,72],[656,33,231,74],[657,14,231,83],[657,15,231,84],[657,16,231,86],[658,14,231,86,"children"],[658,22,231,86],[658,38,232,14],[658,42,232,14,"_reactJsxDevRuntime"],[658,61,232,14],[658,62,232,14,"jsxDEV"],[658,68,232,14],[658,70,232,15,"_expoVectorIcons"],[658,86,232,23],[658,87,232,23,"Ionicons"],[658,95,232,23],[659,16,232,24,"name"],[659,20,232,28],[659,22,232,29],[659,28,232,35],[660,16,232,36,"size"],[660,20,232,40],[660,22,232,42],[660,24,232,45],[661,16,232,46,"color"],[661,21,232,51],[661,23,232,52],[662,14,232,58],[663,16,232,58,"fileName"],[663,24,232,58],[663,26,232,58,"_jsxFileName"],[663,38,232,58],[664,16,232,58,"lineNumber"],[664,26,232,58],[665,16,232,58,"columnNumber"],[665,28,232,58],[666,14,232,58],[666,21,232,60],[666,22,232,61],[666,37,233,14],[666,41,233,14,"_reactJsxDevRuntime"],[666,60,233,14],[666,61,233,14,"jsxDEV"],[666,67,233,14],[666,69,233,15,"_reactNative"],[666,81,233,19],[666,82,233,19,"Text"],[666,86,233,19],[667,16,233,20,"style"],[667,21,233,25],[667,23,233,27,"styles"],[667,29,233,33],[667,30,233,34,"actionBtnText"],[667,43,233,48],[668,16,233,48,"children"],[668,24,233,48],[668,26,233,49],[669,14,233,56],[670,16,233,56,"fileName"],[670,24,233,56],[670,26,233,56,"_jsxFileName"],[670,38,233,56],[671,16,233,56,"lineNumber"],[671,26,233,56],[672,16,233,56,"columnNumber"],[672,28,233,56],[673,14,233,56],[673,21,233,62],[673,22,233,63],[674,12,233,63],[675,14,233,63,"fileName"],[675,22,233,63],[675,24,233,63,"_jsxFileName"],[675,36,233,63],[676,14,233,63,"lineNumber"],[676,24,233,63],[677,14,233,63,"columnNumber"],[677,26,233,63],[678,12,233,63],[678,19,234,30],[678,20,234,31],[678,35,235,12],[678,39,235,12,"_reactJsxDevRuntime"],[678,58,235,12],[678,59,235,12,"jsxDEV"],[678,65,235,12],[678,67,235,13,"_reactNative"],[678,79,235,29],[678,80,235,29,"TouchableOpacity"],[678,96,235,29],[679,14,235,30,"style"],[679,19,235,35],[679,21,235,37],[679,22,235,38,"styles"],[679,28,235,44],[679,29,235,45,"actionBtn"],[679,38,235,54],[679,40,235,56],[680,16,235,57,"backgroundColor"],[680,31,235,72],[680,33,235,74],[681,14,235,83],[681,15,235,84],[681,16,235,86],[682,14,235,86,"children"],[682,22,235,86],[682,38,236,14],[682,42,236,14,"_reactJsxDevRuntime"],[682,61,236,14],[682,62,236,14,"jsxDEV"],[682,68,236,14],[682,70,236,15,"_expoVectorIcons"],[682,86,236,23],[682,87,236,23,"Ionicons"],[682,95,236,23],[683,16,236,24,"name"],[683,20,236,28],[683,22,236,29],[683,28,236,35],[684,16,236,36,"size"],[684,20,236,40],[684,22,236,42],[684,24,236,45],[685,16,236,46,"color"],[685,21,236,51],[685,23,236,52],[686,14,236,58],[687,16,236,58,"fileName"],[687,24,236,58],[687,26,236,58,"_jsxFileName"],[687,38,236,58],[688,16,236,58,"lineNumber"],[688,26,236,58],[689,16,236,58,"columnNumber"],[689,28,236,58],[690,14,236,58],[690,21,236,60],[690,22,236,61],[690,37,237,14],[690,41,237,14,"_reactJsxDevRuntime"],[690,60,237,14],[690,61,237,14,"jsxDEV"],[690,67,237,14],[690,69,237,15,"_reactNative"],[690,81,237,19],[690,82,237,19,"Text"],[690,86,237,19],[691,16,237,20,"style"],[691,21,237,25],[691,23,237,27,"styles"],[691,29,237,33],[691,30,237,34,"actionBtnText"],[691,43,237,48],[692,16,237,48,"children"],[692,24,237,48],[692,26,237,49],[693,14,237,56],[694,16,237,56,"fileName"],[694,24,237,56],[694,26,237,56,"_jsxFileName"],[694,38,237,56],[695,16,237,56,"lineNumber"],[695,26,237,56],[696,16,237,56,"columnNumber"],[696,28,237,56],[697,14,237,56],[697,21,237,62],[697,22,237,63],[698,12,237,63],[699,14,237,63,"fileName"],[699,22,237,63],[699,24,237,63,"_jsxFileName"],[699,36,237,63],[700,14,237,63,"lineNumber"],[700,24,237,63],[701,14,237,63,"columnNumber"],[701,26,237,63],[702,12,237,63],[702,19,238,30],[702,20,238,31],[703,10,238,31],[704,12,238,31,"fileName"],[704,20,238,31],[704,22,238,31,"_jsxFileName"],[704,34,238,31],[705,12,238,31,"lineNumber"],[705,22,238,31],[706,12,238,31,"columnNumber"],[706,24,238,31],[707,10,238,31],[707,17,239,16],[707,18,239,17],[708,8,239,17],[709,10,239,17,"fileName"],[709,18,239,17],[709,20,239,17,"_jsxFileName"],[709,32,239,17],[710,10,239,17,"lineNumber"],[710,20,239,17],[711,10,239,17,"columnNumber"],[711,22,239,17],[712,8,239,17],[712,15,240,14],[712,16,240,15],[712,31,243,8],[712,35,243,8,"_reactJsxDevRuntime"],[712,54,243,8],[712,55,243,8,"jsxDEV"],[712,61,243,8],[712,63,243,9,"_reactNative"],[712,75,243,13],[712,76,243,13,"View"],[712,80,243,13],[713,10,243,14,"style"],[713,15,243,19],[713,17,243,21,"styles"],[713,23,243,27],[713,24,243,28,"tokensContainer"],[713,39,243,44],[714,10,243,44,"children"],[714,18,243,44],[714,34,244,10],[714,38,244,10,"_reactJsxDevRuntime"],[714,57,244,10],[714,58,244,10,"jsxDEV"],[714,64,244,10],[714,66,244,11,"_reactNative"],[714,78,244,15],[714,79,244,15,"Text"],[714,83,244,15],[715,12,244,16,"style"],[715,17,244,21],[715,19,244,23,"styles"],[715,25,244,29],[715,26,244,30,"tokensTitle"],[715,37,244,42],[716,12,244,42,"children"],[716,20,244,42],[716,22,244,43],[717,10,244,49],[718,12,244,49,"fileName"],[718,20,244,49],[718,22,244,49,"_jsxFileName"],[718,34,244,49],[719,12,244,49,"lineNumber"],[719,22,244,49],[720,12,244,49,"columnNumber"],[720,24,244,49],[721,10,244,49],[721,17,244,55],[721,18,244,56],[721,33,247,10],[721,37,247,10,"_reactJsxDevRuntime"],[721,56,247,10],[721,57,247,10,"jsxDEV"],[721,63,247,10],[721,65,247,11,"_reactNative"],[721,77,247,15],[721,78,247,15,"View"],[721,82,247,15],[722,12,247,16,"style"],[722,17,247,21],[722,19,247,23,"styles"],[722,25,247,29],[722,26,247,30,"tokenItem"],[722,35,247,40],[723,12,247,40,"children"],[723,20,247,40],[723,36,248,12],[723,40,248,12,"_reactJsxDevRuntime"],[723,59,248,12],[723,60,248,12,"jsxDEV"],[723,66,248,12],[723,68,248,13,"_reactNative"],[723,80,248,17],[723,81,248,17,"View"],[723,85,248,17],[724,14,248,18,"style"],[724,19,248,23],[724,21,248,25,"styles"],[724,27,248,31],[724,28,248,32,"tokenItemLeft"],[724,41,248,46],[725,14,248,46,"children"],[725,22,248,46],[725,38,249,14],[725,42,249,14,"_reactJsxDevRuntime"],[725,61,249,14],[725,62,249,14,"jsxDEV"],[725,68,249,14],[725,70,249,15,"_reactNative"],[725,82,249,19],[725,83,249,19,"View"],[725,87,249,19],[726,16,249,20,"style"],[726,21,249,25],[726,23,249,27,"styles"],[726,29,249,33],[726,30,249,34,"tokenIconContainer"],[726,48,249,53],[727,16,249,53,"children"],[727,24,249,53],[727,40,250,16],[727,44,250,16,"_reactJsxDevRuntime"],[727,63,250,16],[727,64,250,16,"jsxDEV"],[727,70,250,16],[727,72,250,17,"_reactNative"],[727,84,250,22],[727,85,250,22,"Image"],[727,90,250,22],[728,18,251,18,"source"],[728,24,251,24],[728,26,251,26],[729,20,251,28,"uri"],[729,23,251,31],[729,25,251,33],[730,18,251,134],[730,19,251,136],[731,18,252,18,"style"],[731,23,252,23],[731,25,252,25,"styles"],[731,31,252,31],[731,32,252,32,"tokenIcon"],[732,16,252,42],[733,18,252,42,"fileName"],[733,26,252,42],[733,28,252,42,"_jsxFileName"],[733,40,252,42],[734,18,252,42,"lineNumber"],[734,28,252,42],[735,18,252,42,"columnNumber"],[735,30,252,42],[736,16,252,42],[736,23,253,17],[736,24,253,18],[736,39,254,16],[736,43,254,16,"_reactJsxDevRuntime"],[736,62,254,16],[736,63,254,16,"jsxDEV"],[736,69,254,16],[736,71,254,17,"_reactNative"],[736,83,254,22],[736,84,254,22,"Image"],[736,89,254,22],[737,18,255,18,"source"],[737,24,255,24],[737,26,255,26],[738,20,255,28,"uri"],[738,23,255,31],[738,25,255,33],[739,18,255,133],[739,19,255,135],[740,18,256,18,"style"],[740,23,256,23],[740,25,256,25,"styles"],[740,31,256,31],[740,32,256,32,"networkBadge"],[741,16,256,45],[742,18,256,45,"fileName"],[742,26,256,45],[742,28,256,45,"_jsxFileName"],[742,40,256,45],[743,18,256,45,"lineNumber"],[743,28,256,45],[744,18,256,45,"columnNumber"],[744,30,256,45],[745,16,256,45],[745,23,257,17],[745,24,257,18],[746,14,257,18],[747,16,257,18,"fileName"],[747,24,257,18],[747,26,257,18,"_jsxFileName"],[747,38,257,18],[748,16,257,18,"lineNumber"],[748,26,257,18],[749,16,257,18,"columnNumber"],[749,28,257,18],[750,14,257,18],[750,21,258,20],[750,22,258,21],[750,37,259,14],[750,41,259,14,"_reactJsxDevRuntime"],[750,60,259,14],[750,61,259,14,"jsxDEV"],[750,67,259,14],[750,69,259,15,"_reactNative"],[750,81,259,19],[750,82,259,19,"View"],[750,86,259,19],[751,16,259,19,"children"],[751,24,259,19],[751,40,260,16],[751,44,260,16,"_reactJsxDevRuntime"],[751,63,260,16],[751,64,260,16,"jsxDEV"],[751,70,260,16],[751,72,260,17,"_reactNative"],[751,84,260,21],[751,85,260,21,"Text"],[751,89,260,21],[752,18,260,22,"style"],[752,23,260,27],[752,25,260,29,"styles"],[752,31,260,35],[752,32,260,36,"tokenItemName"],[752,45,260,50],[753,18,260,50,"children"],[753,26,260,50],[753,28,260,51],[754,16,260,55],[755,18,260,55,"fileName"],[755,26,260,55],[755,28,260,55,"_jsxFileName"],[755,40,260,55],[756,18,260,55,"lineNumber"],[756,28,260,55],[757,18,260,55,"columnNumber"],[757,30,260,55],[758,16,260,55],[758,23,260,61],[758,24,260,62],[758,39,261,16],[758,43,261,16,"_reactJsxDevRuntime"],[758,62,261,16],[758,63,261,16,"jsxDEV"],[758,69,261,16],[758,71,261,17,"_reactNative"],[758,83,261,21],[758,84,261,21,"Text"],[758,88,261,21],[759,18,261,22,"style"],[759,23,261,27],[759,25,261,29,"styles"],[759,31,261,35],[759,32,261,36,"tokenItemNetwork"],[759,48,261,53],[760,18,261,53,"children"],[760,26,261,53],[760,28,261,54],[761,16,261,65],[762,18,261,65,"fileName"],[762,26,261,65],[762,28,261,65,"_jsxFileName"],[762,40,261,65],[763,18,261,65,"lineNumber"],[763,28,261,65],[764,18,261,65,"columnNumber"],[764,30,261,65],[765,16,261,65],[765,23,261,71],[765,24,261,72],[766,14,261,72],[767,16,261,72,"fileName"],[767,24,261,72],[767,26,261,72,"_jsxFileName"],[767,38,261,72],[768,16,261,72,"lineNumber"],[768,26,261,72],[769,16,261,72,"columnNumber"],[769,28,261,72],[770,14,261,72],[770,21,262,20],[770,22,262,21],[771,12,262,21],[772,14,262,21,"fileName"],[772,22,262,21],[772,24,262,21,"_jsxFileName"],[772,36,262,21],[773,14,262,21,"lineNumber"],[773,24,262,21],[774,14,262,21,"columnNumber"],[774,26,262,21],[775,12,262,21],[775,19,263,18],[775,20,263,19],[775,35,264,12],[775,39,264,12,"_reactJsxDevRuntime"],[775,58,264,12],[775,59,264,12,"jsxDEV"],[775,65,264,12],[775,67,264,13,"_reactNative"],[775,79,264,17],[775,80,264,17,"View"],[775,84,264,17],[776,14,264,18,"style"],[776,19,264,23],[776,21,264,25,"styles"],[776,27,264,31],[776,28,264,32,"tokenItemRight"],[776,42,264,47],[777,14,264,47,"children"],[777,22,264,47],[777,38,265,14],[777,42,265,14,"_reactJsxDevRuntime"],[777,61,265,14],[777,62,265,14,"jsxDEV"],[777,68,265,14],[777,70,265,15,"_reactNative"],[777,82,265,19],[777,83,265,19,"Text"],[777,87,265,19],[778,16,265,20,"style"],[778,21,265,25],[778,23,265,27,"styles"],[778,29,265,33],[778,30,265,34,"tokenItemBalance"],[778,46,265,51],[779,16,265,51,"children"],[779,24,265,51],[779,26,265,52],[780,14,265,53],[781,16,265,53,"fileName"],[781,24,265,53],[781,26,265,53,"_jsxFileName"],[781,38,265,53],[782,16,265,53,"lineNumber"],[782,26,265,53],[783,16,265,53,"columnNumber"],[783,28,265,53],[784,14,265,53],[784,21,265,59],[784,22,265,60],[784,37,266,14],[784,41,266,14,"_reactJsxDevRuntime"],[784,60,266,14],[784,61,266,14,"jsxDEV"],[784,67,266,14],[784,69,266,15,"_reactNative"],[784,81,266,19],[784,82,266,19,"Text"],[784,86,266,19],[785,16,266,20,"style"],[785,21,266,25],[785,23,266,27,"styles"],[785,29,266,33],[785,30,266,34,"tokenItemUsd"],[785,42,266,47],[786,16,266,47,"children"],[786,24,266,47],[786,26,266,48],[787,14,266,50],[788,16,266,50,"fileName"],[788,24,266,50],[788,26,266,50,"_jsxFileName"],[788,38,266,50],[789,16,266,50,"lineNumber"],[789,26,266,50],[790,16,266,50,"columnNumber"],[790,28,266,50],[791,14,266,50],[791,21,266,56],[791,22,266,57],[792,12,266,57],[793,14,266,57,"fileName"],[793,22,266,57],[793,24,266,57,"_jsxFileName"],[793,36,266,57],[794,14,266,57,"lineNumber"],[794,24,266,57],[795,14,266,57,"columnNumber"],[795,26,266,57],[796,12,266,57],[796,19,267,18],[796,20,267,19],[797,10,267,19],[798,12,267,19,"fileName"],[798,20,267,19],[798,22,267,19,"_jsxFileName"],[798,34,267,19],[799,12,267,19,"lineNumber"],[799,22,267,19],[800,12,267,19,"columnNumber"],[800,24,267,19],[801,10,267,19],[801,17,268,16],[801,18,268,17],[802,8,268,17],[803,10,268,17,"fileName"],[803,18,268,17],[803,20,268,17,"_jsxFileName"],[803,32,268,17],[804,10,268,17,"lineNumber"],[804,20,268,17],[805,10,268,17,"columnNumber"],[805,22,268,17],[806,8,268,17],[806,15,271,14],[806,16,271,15],[807,6,271,15],[808,8,271,15,"fileName"],[808,16,271,15],[808,18,271,15,"_jsxFileName"],[808,30,271,15],[809,8,271,15,"lineNumber"],[809,18,271,15],[810,8,271,15,"columnNumber"],[810,20,271,15],[811,6,271,15],[811,13,272,18],[812,4,272,19],[813,6,272,19,"fileName"],[813,14,272,19],[813,16,272,19,"_jsxFileName"],[813,28,272,19],[814,6,272,19,"lineNumber"],[814,16,272,19],[815,6,272,19,"columnNumber"],[815,18,272,19],[816,4,272,19],[816,11,273,10],[816,12,273,11],[817,2,275,0],[818,2,275,1,"_s2"],[818,5,275,1],[818,6,117,9,"WalletTab"],[818,15,117,18],[819,4,117,18],[819,12,118,19,"useAuth"],[819,32,118,26],[819,33,118,26,"useAuth"],[819,40,118,26],[820,2,118,26],[821,2,118,26,"_c2"],[821,5,118,26],[821,8,117,9,"WalletTab"],[821,17,117,18],[822,2,277,0],[822,11,277,9,"CitizensTab"],[822,22,277,20,"CitizensTab"],[822,23,277,20],[822,25,277,23],[823,4,278,2],[823,24,279,4],[823,28,279,4,"_reactJsxDevRuntime"],[823,47,279,4],[823,48,279,4,"jsxDEV"],[823,54,279,4],[823,56,279,5,"_reactNative"],[823,68,279,9],[823,69,279,9,"View"],[823,73,279,9],[824,6,279,10,"style"],[824,11,279,15],[824,13,279,17,"styles"],[824,19,279,23],[824,20,279,24,"container"],[824,29,279,34],[825,6,279,34,"children"],[825,14,279,34],[825,29,280,6],[825,33,280,6,"_reactJsxDevRuntime"],[825,52,280,6],[825,53,280,6,"jsxDEV"],[825,59,280,6],[825,61,280,7,"_reactNative"],[825,73,280,11],[825,74,280,11,"Text"],[825,78,280,11],[826,8,280,12,"style"],[826,13,280,17],[826,15,280,19,"styles"],[826,21,280,25],[826,22,280,26,"placeholderText"],[826,37,280,42],[827,8,280,42,"children"],[827,16,280,42],[827,18,280,43],[828,6,280,58],[829,8,280,58,"fileName"],[829,16,280,58],[829,18,280,58,"_jsxFileName"],[829,30,280,58],[830,8,280,58,"lineNumber"],[830,18,280,58],[831,8,280,58,"columnNumber"],[831,20,280,58],[832,6,280,58],[832,13,280,64],[833,4,280,65],[834,6,280,65,"fileName"],[834,14,280,65],[834,16,280,65,"_jsxFileName"],[834,28,280,65],[835,6,280,65,"lineNumber"],[835,16,280,65],[836,6,280,65,"columnNumber"],[836,18,280,65],[837,4,280,65],[837,11,281,10],[837,12,281,11],[838,2,283,0],[839,2,283,1,"_c3"],[839,5,283,1],[839,8,277,9,"CitizensTab"],[839,19,277,20],[840,2,285,0],[840,11,285,9,"ReferralTab"],[840,22,285,20,"ReferralTab"],[840,23,285,20],[840,25,285,23],[841,4,286,2],[841,24,287,4],[841,28,287,4,"_reactJsxDevRuntime"],[841,47,287,4],[841,48,287,4,"jsxDEV"],[841,54,287,4],[841,56,287,5,"_reactNative"],[841,68,287,9],[841,69,287,9,"View"],[841,73,287,9],[842,6,287,10,"style"],[842,11,287,15],[842,13,287,17,"styles"],[842,19,287,23],[842,20,287,24,"container"],[842,29,287,34],[843,6,287,34,"children"],[843,14,287,34],[843,29,288,6],[843,33,288,6,"_reactJsxDevRuntime"],[843,52,288,6],[843,53,288,6,"jsxDEV"],[843,59,288,6],[843,61,288,7,"_reactNative"],[843,73,288,11],[843,74,288,11,"Text"],[843,78,288,11],[844,8,288,12,"style"],[844,13,288,17],[844,15,288,19,"styles"],[844,21,288,25],[844,22,288,26,"placeholderText"],[844,37,288,42],[845,8,288,42,"children"],[845,16,288,42],[845,18,288,43],[846,6,288,58],[847,8,288,58,"fileName"],[847,16,288,58],[847,18,288,58,"_jsxFileName"],[847,30,288,58],[848,8,288,58,"lineNumber"],[848,18,288,58],[849,8,288,58,"columnNumber"],[849,20,288,58],[850,6,288,58],[850,13,288,64],[851,4,288,65],[852,6,288,65,"fileName"],[852,14,288,65],[852,16,288,65,"_jsxFileName"],[852,28,288,65],[853,6,288,65,"lineNumber"],[853,16,288,65],[854,6,288,65,"columnNumber"],[854,18,288,65],[855,4,288,65],[855,11,289,10],[855,12,289,11],[856,2,291,0],[857,2,291,1,"_c4"],[857,5,291,1],[857,8,285,9,"ReferralTab"],[857,19,285,20],[858,2,293,0],[858,11,293,9,"ProfileTab"],[858,21,293,19,"ProfileTab"],[858,22,293,19],[858,24,293,22],[859,4,294,2],[859,24,295,4],[859,28,295,4,"_reactJsxDevRuntime"],[859,47,295,4],[859,48,295,4,"jsxDEV"],[859,54,295,4],[859,56,295,5,"_reactNative"],[859,68,295,9],[859,69,295,9,"View"],[859,73,295,9],[860,6,295,10,"style"],[860,11,295,15],[860,13,295,17,"styles"],[860,19,295,23],[860,20,295,24,"container"],[860,29,295,34],[861,6,295,34,"children"],[861,14,295,34],[861,29,296,6],[861,33,296,6,"_reactJsxDevRuntime"],[861,52,296,6],[861,53,296,6,"jsxDEV"],[861,59,296,6],[861,61,296,7,"_reactNative"],[861,73,296,11],[861,74,296,11,"Text"],[861,78,296,11],[862,8,296,12,"style"],[862,13,296,17],[862,15,296,19,"styles"],[862,21,296,25],[862,22,296,26,"placeholderText"],[862,37,296,42],[863,8,296,42,"children"],[863,16,296,42],[863,18,296,43],[864,6,296,57],[865,8,296,57,"fileName"],[865,16,296,57],[865,18,296,57,"_jsxFileName"],[865,30,296,57],[866,8,296,57,"lineNumber"],[866,18,296,57],[867,8,296,57,"columnNumber"],[867,20,296,57],[868,6,296,57],[868,13,296,63],[869,4,296,64],[870,6,296,64,"fileName"],[870,14,296,64],[870,16,296,64,"_jsxFileName"],[870,28,296,64],[871,6,296,64,"lineNumber"],[871,16,296,64],[872,6,296,64,"columnNumber"],[872,18,296,64],[873,4,296,64],[873,11,297,10],[873,12,297,11],[874,2,299,0],[875,2,299,1,"_c5"],[875,5,299,1],[875,8,293,9,"ProfileTab"],[875,18,293,19],[876,2,301,0],[876,6,301,6,"Tab"],[876,9,301,9],[876,12,301,12],[876,16,301,12,"createBottomTabNavigator"],[876,42,301,36],[876,43,301,36,"createBottomTabNavigator"],[876,67,301,36],[876,69,301,37],[876,70,301,38],[877,2,303,15],[877,11,303,24,"HomeScreen"],[877,21,303,34,"HomeScreen"],[877,22,303,34],[877,24,303,37],[878,4,304,2],[878,24,305,4],[878,28,305,4,"_reactJsxDevRuntime"],[878,47,305,4],[878,48,305,4,"jsxDEV"],[878,54,305,4],[878,56,305,5,"Tab"],[878,59,305,8],[878,60,305,9,"Navigator"],[878,69,305,18],[879,6,306,6,"screenOptions"],[879,19,306,19],[879,21,306,21],[880,8,307,8,"headerShown"],[880,19,307,19],[880,21,307,21],[880,26,307,26],[881,8,308,8,"tabBarActiveTintColor"],[881,29,308,29],[881,31,308,31],[881,40,308,40],[882,8,309,8,"tabBarInactiveTintColor"],[882,31,309,31],[882,33,309,33],[882,42,309,42],[883,8,310,8,"tabBarStyle"],[883,19,310,19],[883,21,310,21,"styles"],[883,27,310,27],[883,28,310,28,"tabBar"],[884,6,311,6],[884,7,311,8],[885,6,311,8,"children"],[885,14,311,8],[885,30,313,6],[885,34,313,6,"_reactJsxDevRuntime"],[885,53,313,6],[885,54,313,6,"jsxDEV"],[885,60,313,6],[885,62,313,7,"Tab"],[885,65,313,10],[885,66,313,11,"Screen"],[885,72,313,17],[886,8,314,8,"name"],[886,12,314,12],[886,14,314,13],[886,23,314,22],[887,8,315,8,"component"],[887,17,315,17],[887,19,315,19,"HomeTab"],[887,26,315,27],[888,8,316,8,"options"],[888,15,316,15],[888,17,316,17],[889,10,317,10,"tabBarLabel"],[889,21,317,21],[889,23,317,23],[889,29,317,29],[890,10,318,10,"tabBarIcon"],[890,20,318,20],[890,22,318,22,"_ref3"],[890,27,318,22],[891,12,318,22],[891,16,318,25,"color"],[891,21,318,30],[891,24,318,30,"_ref3"],[891,29,318,30],[891,30,318,25,"color"],[891,35,318,30],[892,14,318,32,"size"],[892,18,318,36],[892,21,318,36,"_ref3"],[892,26,318,36],[892,27,318,32,"size"],[892,31,318,36],[893,12,318,36],[893,32,319,12],[893,36,319,12,"_reactJsxDevRuntime"],[893,55,319,12],[893,56,319,12,"jsxDEV"],[893,62,319,12],[893,64,319,13,"_expoVectorIcons"],[893,80,319,21],[893,81,319,21,"Ionicons"],[893,89,319,21],[894,14,319,22,"name"],[894,18,319,26],[894,20,319,27],[894,26,319,33],[895,14,319,34,"size"],[895,18,319,38],[895,20,319,40,"size"],[895,24,319,45],[896,14,319,46,"color"],[896,19,319,51],[896,21,319,53,"color"],[897,12,319,59],[898,14,319,59,"fileName"],[898,22,319,59],[898,24,319,59,"_jsxFileName"],[898,36,319,59],[899,14,319,59,"lineNumber"],[899,24,319,59],[900,14,319,59,"columnNumber"],[900,26,319,59],[901,12,319,59],[901,19,319,61],[901,20,319,62],[902,10,319,62],[903,8,321,8],[904,6,321,10],[905,8,321,10,"fileName"],[905,16,321,10],[905,18,321,10,"_jsxFileName"],[905,30,321,10],[906,8,321,10,"lineNumber"],[906,18,321,10],[907,8,321,10,"columnNumber"],[907,20,321,10],[908,6,321,10],[908,13,322,7],[908,14,322,8],[908,29,323,6],[908,33,323,6,"_reactJsxDevRuntime"],[908,52,323,6],[908,53,323,6,"jsxDEV"],[908,59,323,6],[908,61,323,7,"Tab"],[908,64,323,10],[908,65,323,11,"Screen"],[908,71,323,17],[909,8,324,8,"name"],[909,12,324,12],[909,14,324,13],[909,22,324,21],[910,8,325,8,"component"],[910,17,325,17],[910,19,325,19,"WalletTab"],[910,28,325,29],[911,8,326,8,"options"],[911,15,326,15],[911,17,326,17],[912,10,327,10,"tabBarLabel"],[912,21,327,21],[912,23,327,23],[912,31,327,31],[913,10,328,10,"tabBarIcon"],[913,20,328,20],[913,22,328,22,"_ref4"],[913,27,328,22],[914,12,328,22],[914,16,328,25,"color"],[914,21,328,30],[914,24,328,30,"_ref4"],[914,29,328,30],[914,30,328,25,"color"],[914,35,328,30],[915,14,328,32,"size"],[915,18,328,36],[915,21,328,36,"_ref4"],[915,26,328,36],[915,27,328,32,"size"],[915,31,328,36],[916,12,328,36],[916,32,329,12],[916,36,329,12,"_reactJsxDevRuntime"],[916,55,329,12],[916,56,329,12,"jsxDEV"],[916,62,329,12],[916,64,329,13,"_expoVectorIcons"],[916,80,329,21],[916,81,329,21,"Ionicons"],[916,89,329,21],[917,14,329,22,"name"],[917,18,329,26],[917,20,329,27],[917,28,329,35],[918,14,329,36,"size"],[918,18,329,40],[918,20,329,42,"size"],[918,24,329,47],[919,14,329,48,"color"],[919,19,329,53],[919,21,329,55,"color"],[920,12,329,61],[921,14,329,61,"fileName"],[921,22,329,61],[921,24,329,61,"_jsxFileName"],[921,36,329,61],[922,14,329,61,"lineNumber"],[922,24,329,61],[923,14,329,61,"columnNumber"],[923,26,329,61],[924,12,329,61],[924,19,329,63],[924,20,329,64],[925,10,329,64],[926,8,331,8],[927,6,331,10],[928,8,331,10,"fileName"],[928,16,331,10],[928,18,331,10,"_jsxFileName"],[928,30,331,10],[929,8,331,10,"lineNumber"],[929,18,331,10],[930,8,331,10,"columnNumber"],[930,20,331,10],[931,6,331,10],[931,13,332,7],[931,14,332,8],[931,29,333,6],[931,33,333,6,"_reactJsxDevRuntime"],[931,52,333,6],[931,53,333,6,"jsxDEV"],[931,59,333,6],[931,61,333,7,"Tab"],[931,64,333,10],[931,65,333,11,"Screen"],[931,71,333,17],[932,8,334,8,"name"],[932,12,334,12],[932,14,334,13],[932,24,334,23],[933,8,335,8,"component"],[933,17,335,17],[933,19,335,19,"CitizensTab"],[933,30,335,31],[934,8,336,8,"options"],[934,15,336,15],[934,17,336,17],[935,10,337,10,"tabBarLabel"],[935,21,337,21],[935,23,337,23],[935,33,337,33],[936,10,338,10,"tabBarIcon"],[936,20,338,20],[936,22,338,22,"_ref5"],[936,27,338,22],[937,12,338,22],[937,16,338,25,"color"],[937,21,338,30],[937,24,338,30,"_ref5"],[937,29,338,30],[937,30,338,25,"color"],[937,35,338,30],[938,14,338,32,"size"],[938,18,338,36],[938,21,338,36,"_ref5"],[938,26,338,36],[938,27,338,32,"size"],[938,31,338,36],[939,12,338,36],[939,32,339,12],[939,36,339,12,"_reactJsxDevRuntime"],[939,55,339,12],[939,56,339,12,"jsxDEV"],[939,62,339,12],[939,64,339,13,"_expoVectorIcons"],[939,80,339,21],[939,81,339,21,"Ionicons"],[939,89,339,21],[940,14,339,22,"name"],[940,18,339,26],[940,20,339,27],[940,28,339,35],[941,14,339,36,"size"],[941,18,339,40],[941,20,339,42,"size"],[941,24,339,47],[942,14,339,48,"color"],[942,19,339,53],[942,21,339,55,"color"],[943,12,339,61],[944,14,339,61,"fileName"],[944,22,339,61],[944,24,339,61,"_jsxFileName"],[944,36,339,61],[945,14,339,61,"lineNumber"],[945,24,339,61],[946,14,339,61,"columnNumber"],[946,26,339,61],[947,12,339,61],[947,19,339,63],[947,20,339,64],[948,10,339,64],[949,8,341,8],[950,6,341,10],[951,8,341,10,"fileName"],[951,16,341,10],[951,18,341,10,"_jsxFileName"],[951,30,341,10],[952,8,341,10,"lineNumber"],[952,18,341,10],[953,8,341,10,"columnNumber"],[953,20,341,10],[954,6,341,10],[954,13,342,7],[954,14,342,8],[954,29,343,6],[954,33,343,6,"_reactJsxDevRuntime"],[954,52,343,6],[954,53,343,6,"jsxDEV"],[954,59,343,6],[954,61,343,7,"Tab"],[954,64,343,10],[954,65,343,11,"Screen"],[954,71,343,17],[955,8,344,8,"name"],[955,12,344,12],[955,14,344,13],[955,24,344,23],[956,8,345,8,"component"],[956,17,345,17],[956,19,345,19,"ReferralTab"],[956,30,345,31],[957,8,346,8,"options"],[957,15,346,15],[957,17,346,17],[958,10,347,10,"tabBarLabel"],[958,21,347,21],[958,23,347,23],[958,33,347,33],[959,10,348,10,"tabBarIcon"],[959,20,348,20],[959,22,348,22,"_ref6"],[959,27,348,22],[960,12,348,22],[960,16,348,25,"color"],[960,21,348,30],[960,24,348,30,"_ref6"],[960,29,348,30],[960,30,348,25,"color"],[960,35,348,30],[961,14,348,32,"size"],[961,18,348,36],[961,21,348,36,"_ref6"],[961,26,348,36],[961,27,348,32,"size"],[961,31,348,36],[962,12,348,36],[962,32,349,12],[962,36,349,12,"_reactJsxDevRuntime"],[962,55,349,12],[962,56,349,12,"jsxDEV"],[962,62,349,12],[962,64,349,13,"_expoVectorIcons"],[962,80,349,21],[962,81,349,21,"Ionicons"],[962,89,349,21],[963,14,349,22,"name"],[963,18,349,26],[963,20,349,27],[963,26,349,33],[964,14,349,34,"size"],[964,18,349,38],[964,20,349,40,"size"],[964,24,349,45],[965,14,349,46,"color"],[965,19,349,51],[965,21,349,53,"color"],[966,12,349,59],[967,14,349,59,"fileName"],[967,22,349,59],[967,24,349,59,"_jsxFileName"],[967,36,349,59],[968,14,349,59,"lineNumber"],[968,24,349,59],[969,14,349,59,"columnNumber"],[969,26,349,59],[970,12,349,59],[970,19,349,61],[970,20,349,62],[971,10,349,62],[972,8,351,8],[973,6,351,10],[974,8,351,10,"fileName"],[974,16,351,10],[974,18,351,10,"_jsxFileName"],[974,30,351,10],[975,8,351,10,"lineNumber"],[975,18,351,10],[976,8,351,10,"columnNumber"],[976,20,351,10],[977,6,351,10],[977,13,352,7],[977,14,352,8],[977,29,353,6],[977,33,353,6,"_reactJsxDevRuntime"],[977,52,353,6],[977,53,353,6,"jsxDEV"],[977,59,353,6],[977,61,353,7,"Tab"],[977,64,353,10],[977,65,353,11,"Screen"],[977,71,353,17],[978,8,354,8,"name"],[978,12,354,12],[978,14,354,13],[978,23,354,22],[979,8,355,8,"component"],[979,17,355,17],[979,19,355,19,"ProfileTab"],[979,29,355,30],[980,8,356,8,"options"],[980,15,356,15],[980,17,356,17],[981,10,357,10,"tabBarLabel"],[981,21,357,21],[981,23,357,23],[981,32,357,32],[982,10,358,10,"tabBarIcon"],[982,20,358,20],[982,22,358,22,"_ref7"],[982,27,358,22],[983,12,358,22],[983,16,358,25,"color"],[983,21,358,30],[983,24,358,30,"_ref7"],[983,29,358,30],[983,30,358,25,"color"],[983,35,358,30],[984,14,358,32,"size"],[984,18,358,36],[984,21,358,36,"_ref7"],[984,26,358,36],[984,27,358,32,"size"],[984,31,358,36],[985,12,358,36],[985,32,359,12],[985,36,359,12,"_reactJsxDevRuntime"],[985,55,359,12],[985,56,359,12,"jsxDEV"],[985,62,359,12],[985,64,359,13,"_expoVectorIcons"],[985,80,359,21],[985,81,359,21,"Ionicons"],[985,89,359,21],[986,14,359,22,"name"],[986,18,359,26],[986,20,359,27],[986,28,359,35],[987,14,359,36,"size"],[987,18,359,40],[987,20,359,42,"size"],[987,24,359,47],[988,14,359,48,"color"],[988,19,359,53],[988,21,359,55,"color"],[989,12,359,61],[990,14,359,61,"fileName"],[990,22,359,61],[990,24,359,61,"_jsxFileName"],[990,36,359,61],[991,14,359,61,"lineNumber"],[991,24,359,61],[992,14,359,61,"columnNumber"],[992,26,359,61],[993,12,359,61],[993,19,359,63],[993,20,359,64],[994,10,359,64],[995,8,361,8],[996,6,361,10],[997,8,361,10,"fileName"],[997,16,361,10],[997,18,361,10,"_jsxFileName"],[997,30,361,10],[998,8,361,10,"lineNumber"],[998,18,361,10],[999,8,361,10,"columnNumber"],[999,20,361,10],[1000,6,361,10],[1000,13,362,7],[1000,14,362,8],[1001,4,362,8],[1002,6,362,8,"fileName"],[1002,14,362,8],[1002,16,362,8,"_jsxFileName"],[1002,28,362,8],[1003,6,362,8,"lineNumber"],[1003,16,362,8],[1004,6,362,8,"columnNumber"],[1004,18,362,8],[1005,4,362,8],[1005,11,363,19],[1005,12,363,20],[1006,2,365,0],[1007,2,365,1,"_c6"],[1007,5,365,1],[1007,8,303,24,"HomeScreen"],[1007,18,303,34],[1008,2,367,0],[1008,6,367,6,"QUICK_ACTIONS"],[1008,19,367,19],[1008,22,367,22],[1008,23,368,2],[1009,4,368,4,"id"],[1009,6,368,6],[1009,8,368,8],[1009,11,368,11],[1010,4,368,13,"label"],[1010,9,368,18],[1010,11,368,20],[1010,17,368,26],[1011,4,368,28,"icon"],[1011,8,368,32],[1011,10,368,34],[1011,25,368,49],[1012,4,368,51,"color"],[1012,9,368,56],[1012,11,368,58],[1013,2,368,68],[1013,3,368,69],[1013,5,369,2],[1014,4,369,4,"id"],[1014,6,369,6],[1014,8,369,8],[1014,11,369,11],[1015,4,369,13,"label"],[1015,9,369,18],[1015,11,369,20],[1015,20,369,29],[1016,4,369,31,"icon"],[1016,8,369,35],[1016,10,369,37],[1016,22,369,49],[1017,4,369,51,"color"],[1017,9,369,56],[1017,11,369,58],[1018,2,369,68],[1018,3,369,69],[1018,5,370,2],[1019,4,370,4,"id"],[1019,6,370,6],[1019,8,370,8],[1019,11,370,11],[1020,4,370,13,"label"],[1020,9,370,18],[1020,11,370,20],[1020,17,370,26],[1021,4,370,28,"icon"],[1021,8,370,32],[1021,10,370,34],[1021,27,370,51],[1022,4,370,53,"color"],[1022,9,370,58],[1022,11,370,60],[1023,2,370,70],[1023,3,370,71],[1023,5,371,2],[1024,4,371,4,"id"],[1024,6,371,6],[1024,8,371,8],[1024,11,371,11],[1025,4,371,13,"label"],[1025,9,371,18],[1025,11,371,20],[1025,17,371,26],[1026,4,371,28,"icon"],[1026,8,371,32],[1026,10,371,34],[1026,28,371,52],[1027,4,371,54,"color"],[1027,9,371,59],[1027,11,371,61],[1028,2,371,71],[1028,3,371,72],[1028,5,372,2],[1029,4,372,4,"id"],[1029,6,372,6],[1029,8,372,8],[1029,11,372,11],[1030,4,372,13,"label"],[1030,9,372,18],[1030,11,372,20],[1030,18,372,27],[1031,4,372,29,"icon"],[1031,8,372,33],[1031,10,372,35],[1031,23,372,48],[1032,4,372,50,"color"],[1032,9,372,55],[1032,11,372,57],[1033,2,372,67],[1033,3,372,68],[1033,5,373,2],[1034,4,373,4,"id"],[1034,6,373,6],[1034,8,373,8],[1034,11,373,11],[1035,4,373,13,"label"],[1035,9,373,18],[1035,11,373,20],[1035,21,373,30],[1036,4,373,32,"icon"],[1036,8,373,36],[1036,10,373,38],[1036,16,373,44],[1037,4,373,46,"color"],[1037,9,373,51],[1037,11,373,53],[1038,2,373,63],[1038,3,373,64],[1038,5,374,2],[1039,4,374,4,"id"],[1039,6,374,6],[1039,8,374,8],[1039,11,374,11],[1040,4,374,13,"label"],[1040,9,374,18],[1040,11,374,20],[1040,21,374,30],[1041,4,374,32,"icon"],[1041,8,374,36],[1041,10,374,38],[1041,25,374,53],[1042,4,374,55,"color"],[1042,9,374,60],[1042,11,374,62],[1043,2,374,72],[1043,3,374,73],[1043,5,375,2],[1044,4,375,4,"id"],[1044,6,375,6],[1044,8,375,8],[1044,11,375,11],[1045,4,375,13,"label"],[1045,9,375,18],[1045,11,375,20],[1045,22,375,31],[1046,4,375,33,"icon"],[1046,8,375,37],[1046,10,375,39],[1046,18,375,47],[1047,4,375,49,"color"],[1047,9,375,54],[1047,11,375,56],[1048,2,375,66],[1048,3,375,67],[1048,5,376,2],[1049,4,376,4,"id"],[1049,6,376,6],[1049,8,376,8],[1049,11,376,11],[1050,4,376,13,"label"],[1050,9,376,18],[1050,11,376,20],[1050,21,376,30],[1051,4,376,32,"icon"],[1051,8,376,36],[1051,10,376,38],[1051,21,376,49],[1052,4,376,51,"color"],[1052,9,376,56],[1052,11,376,58],[1053,2,376,68],[1053,3,376,69],[1053,5,377,2],[1054,4,377,4,"id"],[1054,6,377,6],[1054,8,377,8],[1054,12,377,12],[1055,4,377,14,"label"],[1055,9,377,19],[1055,11,377,21],[1055,21,377,31],[1056,4,377,33,"icon"],[1056,8,377,37],[1056,10,377,39],[1056,16,377,45],[1057,4,377,47,"color"],[1057,9,377,52],[1057,11,377,54],[1058,2,377,64],[1058,3,377,65],[1058,5,378,2],[1059,4,378,4,"id"],[1059,6,378,6],[1059,8,378,8],[1059,12,378,12],[1060,4,378,14,"label"],[1060,9,378,19],[1060,11,378,21],[1060,22,378,32],[1061,4,378,34,"icon"],[1061,8,378,38],[1061,10,378,40],[1061,16,378,46],[1062,4,378,48,"color"],[1062,9,378,53],[1062,11,378,55],[1063,2,378,65],[1063,3,378,66],[1063,5,379,2],[1064,4,379,4,"id"],[1064,6,379,6],[1064,8,379,8],[1064,12,379,12],[1065,4,379,14,"label"],[1065,9,379,19],[1065,11,379,21],[1065,17,379,27],[1066,4,379,29,"icon"],[1066,8,379,33],[1066,10,379,35],[1066,16,379,41],[1067,4,379,43,"color"],[1067,9,379,48],[1067,11,379,50],[1068,2,379,60],[1068,3,379,61],[1068,4,380,1],[1069,2,382,0],[1069,6,382,6,"styles"],[1069,12,382,12],[1069,15,382,15,"StyleSheet"],[1069,27,382,25],[1069,28,382,25,"StyleSheet"],[1069,38,382,25],[1069,39,382,26,"create"],[1069,45,382,32],[1069,46,382,33],[1070,4,383,2,"container"],[1070,13,383,11],[1070,15,383,13],[1071,6,384,4,"flex"],[1071,10,384,8],[1071,12,384,10],[1071,13,384,11],[1072,6,385,4,"backgroundColor"],[1072,21,385,19],[1072,23,385,21],[1073,4,386,2],[1073,5,386,3],[1074,4,387,2,"scrollContent"],[1074,17,387,15],[1074,19,387,17],[1075,6,388,4,"paddingBottom"],[1075,19,388,17],[1075,21,388,19],[1076,4,389,2],[1076,5,389,3],[1077,4,390,2,"walletScrollContent"],[1077,23,390,21],[1077,25,390,23],[1078,6,391,4,"paddingBottom"],[1078,19,391,17],[1078,21,391,19],[1079,4,392,2],[1079,5,392,3],[1080,4,393,2,"header"],[1080,10,393,8],[1080,12,393,10],[1081,6,394,4,"flexDirection"],[1081,19,394,17],[1081,21,394,19],[1081,26,394,24],[1082,6,395,4,"justifyContent"],[1082,20,395,18],[1082,22,395,20],[1082,37,395,35],[1083,6,396,4,"alignItems"],[1083,16,396,14],[1083,18,396,16],[1083,26,396,24],[1084,6,397,4,"padding"],[1084,13,397,11],[1084,15,397,13],[1084,17,397,15],[1085,6,398,4,"backgroundColor"],[1085,21,398,19],[1085,23,398,21],[1085,29,398,27],[1086,6,399,4,"borderBottomWidth"],[1086,23,399,21],[1086,25,399,23],[1086,26,399,24],[1087,6,400,4,"borderBottomColor"],[1087,23,400,21],[1087,25,400,23],[1088,4,401,2],[1088,5,401,3],[1089,4,402,2,"headerLeft"],[1089,14,402,12],[1089,16,402,14],[1090,6,403,4,"position"],[1090,14,403,12],[1090,16,403,14],[1091,4,404,2],[1091,5,404,3],[1092,4,405,2,"profileImage"],[1092,16,405,14],[1092,18,405,16],[1093,6,406,4,"width"],[1093,11,406,9],[1093,13,406,11],[1093,15,406,13],[1094,6,407,4,"height"],[1094,12,407,10],[1094,14,407,12],[1094,16,407,14],[1095,6,408,4,"borderRadius"],[1095,18,408,16],[1095,20,408,18],[1095,22,408,20],[1096,6,409,4,"backgroundColor"],[1096,21,409,19],[1096,23,409,21],[1096,32,409,30],[1097,6,410,4,"alignItems"],[1097,16,410,14],[1097,18,410,16],[1097,26,410,24],[1098,6,411,4,"justifyContent"],[1098,20,411,18],[1098,22,411,20],[1098,30,411,28],[1099,6,412,4,"overflow"],[1099,14,412,12],[1099,16,412,14],[1100,4,413,2],[1100,5,413,3],[1101,4,414,2,"profileImageSrc"],[1101,19,414,17],[1101,21,414,19],[1102,6,415,4,"width"],[1102,11,415,9],[1102,13,415,11],[1102,15,415,13],[1103,6,416,4,"height"],[1103,12,416,10],[1103,14,416,12],[1104,4,417,2],[1104,5,417,3],[1105,4,418,2,"profileBadge"],[1105,16,418,14],[1105,18,418,16],[1106,6,419,4,"position"],[1106,14,419,12],[1106,16,419,14],[1106,26,419,24],[1107,6,420,4,"bottom"],[1107,12,420,10],[1107,14,420,12],[1107,15,420,13],[1107,16,420,14],[1108,6,421,4,"right"],[1108,11,421,9],[1108,13,421,11],[1108,14,421,12],[1108,15,421,13],[1109,6,422,4,"backgroundColor"],[1109,21,422,19],[1109,23,422,21],[1109,32,422,30],[1110,6,423,4,"borderRadius"],[1110,18,423,16],[1110,20,423,18],[1110,22,423,20],[1111,6,424,4,"paddingHorizontal"],[1111,23,424,21],[1111,25,424,23],[1111,26,424,24],[1112,6,425,4,"paddingVertical"],[1112,21,425,19],[1112,23,425,21],[1112,24,425,22],[1113,6,426,4,"flexDirection"],[1113,19,426,17],[1113,21,426,19],[1113,26,426,24],[1114,6,427,4,"alignItems"],[1114,16,427,14],[1114,18,427,16],[1114,26,427,24],[1115,6,428,4,"gap"],[1115,9,428,7],[1115,11,428,9],[1116,4,429,2],[1116,5,429,3],[1117,4,430,2,"trustScore"],[1117,14,430,12],[1117,16,430,14],[1118,6,431,4,"fontSize"],[1118,14,431,12],[1118,16,431,14],[1118,18,431,16],[1119,6,432,4,"fontWeight"],[1119,16,432,14],[1119,18,432,16],[1119,23,432,21],[1120,6,433,4,"color"],[1120,11,433,9],[1120,13,433,11],[1121,4,434,2],[1121,5,434,3],[1122,4,435,2,"headerRight"],[1122,15,435,13],[1122,17,435,15],[1123,6,436,4,"flexDirection"],[1123,19,436,17],[1123,21,436,19],[1123,26,436,24],[1124,6,437,4,"gap"],[1124,9,437,7],[1124,11,437,9],[1125,4,438,2],[1125,5,438,3],[1126,4,439,2,"iconButton"],[1126,14,439,12],[1126,16,439,14],[1127,6,440,4,"padding"],[1127,13,440,11],[1127,15,440,13],[1128,4,441,2],[1128,5,441,3],[1129,4,442,2,"announcementWidget"],[1129,22,442,20],[1129,24,442,22],[1130,6,443,4,"padding"],[1130,13,443,11],[1130,15,443,13],[1131,4,444,2],[1131,5,444,3],[1132,4,445,2,"announcement"],[1132,16,445,14],[1132,18,445,16],[1133,6,446,4,"backgroundColor"],[1133,21,446,19],[1133,23,446,21],[1133,29,446,27],[1134,6,447,4,"padding"],[1134,13,447,11],[1134,15,447,13],[1134,17,447,15],[1135,6,448,4,"borderRadius"],[1135,18,448,16],[1135,20,448,18],[1135,22,448,20],[1136,6,449,4,"marginRight"],[1136,17,449,15],[1136,19,449,17],[1136,21,449,19],[1137,6,450,4,"width"],[1137,11,450,9],[1137,13,450,11,"width"],[1137,18,450,16],[1137,21,450,19],[1137,23,450,21],[1138,6,451,4,"borderLeftWidth"],[1138,21,451,19],[1138,23,451,21],[1138,24,451,22],[1139,6,452,4,"borderLeftColor"],[1139,21,452,19],[1139,23,452,21],[1140,4,453,2],[1140,5,453,3],[1141,4,454,2,"announcementTitle"],[1141,21,454,19],[1141,23,454,21],[1142,6,455,4,"fontSize"],[1142,14,455,12],[1142,16,455,14],[1142,18,455,16],[1143,6,456,4,"fontWeight"],[1143,16,456,14],[1143,18,456,16],[1143,23,456,21],[1144,6,457,4,"color"],[1144,11,457,9],[1144,13,457,11],[1144,22,457,20],[1145,6,458,4,"marginBottom"],[1145,18,458,16],[1145,20,458,18],[1146,4,459,2],[1146,5,459,3],[1147,4,460,2,"announcementText"],[1147,20,460,18],[1147,22,460,20],[1148,6,461,4,"fontSize"],[1148,14,461,12],[1148,16,461,14],[1148,18,461,16],[1149,6,462,4,"color"],[1149,11,462,9],[1149,13,462,11],[1150,4,463,2],[1150,5,463,3],[1151,4,464,2,"quickActionsContainer"],[1151,25,464,23],[1151,27,464,25],[1152,6,465,4,"padding"],[1152,13,465,11],[1152,15,465,13],[1153,4,466,2],[1153,5,466,3],[1154,4,467,2,"sectionTitle"],[1154,16,467,14],[1154,18,467,16],[1155,6,468,4,"fontSize"],[1155,14,468,12],[1155,16,468,14],[1155,18,468,16],[1156,6,469,4,"fontWeight"],[1156,16,469,14],[1156,18,469,16],[1156,23,469,21],[1157,6,470,4,"color"],[1157,11,470,9],[1157,13,470,11],[1157,22,470,20],[1158,6,471,4,"marginBottom"],[1158,18,471,16],[1158,20,471,18],[1159,4,472,2],[1159,5,472,3],[1160,4,473,2,"actionsGrid"],[1160,15,473,13],[1160,17,473,15],[1161,6,474,4,"flexDirection"],[1161,19,474,17],[1161,21,474,19],[1161,26,474,24],[1162,6,475,4,"flexWrap"],[1162,14,475,12],[1162,16,475,14],[1162,22,475,20],[1163,6,476,4,"justifyContent"],[1163,20,476,18],[1163,22,476,20],[1164,4,477,2],[1164,5,477,3],[1165,4,478,2,"actionCard"],[1165,14,478,12],[1165,16,478,14],[1166,6,479,4,"width"],[1166,11,479,9],[1166,13,479,11],[1166,14,479,12,"width"],[1166,19,479,17],[1166,22,479,20],[1166,24,479,22],[1166,28,479,26],[1166,29,479,27],[1167,6,480,4,"backgroundColor"],[1167,21,480,19],[1167,23,480,21],[1167,29,480,27],[1168,6,481,4,"padding"],[1168,13,481,11],[1168,15,481,13],[1168,17,481,15],[1169,6,482,4,"borderRadius"],[1169,18,482,16],[1169,20,482,18],[1169,22,482,20],[1170,6,483,4,"alignItems"],[1170,16,483,14],[1170,18,483,16],[1170,26,483,24],[1171,6,484,4,"marginBottom"],[1171,18,484,16],[1171,20,484,18],[1171,22,484,20],[1172,6,485,4,"shadowColor"],[1172,17,485,15],[1172,19,485,17],[1172,25,485,23],[1173,6,486,4,"shadowOffset"],[1173,18,486,16],[1173,20,486,18],[1174,8,486,20,"width"],[1174,13,486,25],[1174,15,486,27],[1174,16,486,28],[1175,8,486,30,"height"],[1175,14,486,36],[1175,16,486,38],[1176,6,486,40],[1176,7,486,41],[1177,6,487,4,"shadowOpacity"],[1177,19,487,17],[1177,21,487,19],[1177,25,487,23],[1178,6,488,4,"shadowRadius"],[1178,18,488,16],[1178,20,488,18],[1178,21,488,19],[1179,6,489,4,"elevation"],[1179,15,489,13],[1179,17,489,15],[1180,4,490,2],[1180,5,490,3],[1181,4,491,2,"actionCardFirst"],[1181,19,491,17],[1181,21,491,19],[1182,6,492,4,"marginRight"],[1182,17,492,15],[1182,19,492,17],[1183,4,493,2],[1183,5,493,3],[1184,4,494,2,"actionCardLast"],[1184,18,494,16],[1184,20,494,18],[1185,6,495,4,"marginLeft"],[1185,16,495,14],[1185,18,495,16],[1186,4,496,2],[1186,5,496,3],[1187,4,497,2,"actionIcon"],[1187,14,497,12],[1187,16,497,14],[1188,6,498,4,"width"],[1188,11,498,9],[1188,13,498,11],[1188,15,498,13],[1189,6,499,4,"height"],[1189,12,499,10],[1189,14,499,12],[1189,16,499,14],[1190,6,500,4,"borderRadius"],[1190,18,500,16],[1190,20,500,18],[1190,22,500,20],[1191,6,501,4,"alignItems"],[1191,16,501,14],[1191,18,501,16],[1191,26,501,24],[1192,6,502,4,"justifyContent"],[1192,20,502,18],[1192,22,502,20],[1192,30,502,28],[1193,6,503,4,"marginBottom"],[1193,18,503,16],[1193,20,503,18],[1194,4,504,2],[1194,5,504,3],[1195,4,505,2,"actionLabel"],[1195,15,505,13],[1195,17,505,15],[1196,6,506,4,"fontSize"],[1196,14,506,12],[1196,16,506,14],[1196,18,506,16],[1197,6,507,4,"color"],[1197,11,507,9],[1197,13,507,11],[1197,22,507,20],[1198,6,508,4,"textAlign"],[1198,15,508,13],[1198,17,508,15],[1199,4,509,2],[1199,5,509,3],[1200,4,510,2,"walletHeader"],[1200,16,510,14],[1200,18,510,16],[1201,6,511,4,"padding"],[1201,13,511,11],[1201,15,511,13],[1201,17,511,15],[1202,6,512,4,"backgroundColor"],[1202,21,512,19],[1202,23,512,21],[1202,29,512,27],[1203,6,513,4,"borderBottomWidth"],[1203,23,513,21],[1203,25,513,23],[1203,26,513,24],[1204,6,514,4,"borderBottomColor"],[1204,23,514,21],[1204,25,514,23],[1204,34,514,32],[1205,6,515,4,"flexDirection"],[1205,19,515,17],[1205,21,515,19],[1205,26,515,24],[1206,6,516,4,"justifyContent"],[1206,20,516,18],[1206,22,516,20],[1206,37,516,35],[1207,6,517,4,"alignItems"],[1207,16,517,14],[1207,18,517,16],[1208,4,518,2],[1208,5,518,3],[1209,4,519,2,"walletTitle"],[1209,15,519,13],[1209,17,519,15],[1210,6,520,4,"fontSize"],[1210,14,520,12],[1210,16,520,14],[1210,18,520,16],[1211,6,521,4,"fontWeight"],[1211,16,521,14],[1211,18,521,16],[1211,23,521,21],[1212,6,522,4,"color"],[1212,11,522,9],[1212,13,522,11],[1213,4,523,2],[1213,5,523,3],[1214,4,524,2,"refreshButton"],[1214,17,524,15],[1214,19,524,17],[1215,6,525,4,"padding"],[1215,13,525,11],[1215,15,525,13],[1215,16,525,14],[1216,6,526,4,"borderRadius"],[1216,18,526,16],[1216,20,526,18],[1216,21,526,19],[1217,6,527,4,"backgroundColor"],[1217,21,527,19],[1217,23,527,21],[1218,4,528,2],[1218,5,528,3],[1219,4,529,2,"balanceCards"],[1219,16,529,14],[1219,18,529,16],[1220,6,530,4,"padding"],[1220,13,530,11],[1220,15,530,13],[1220,17,530,15],[1221,6,531,4,"gap"],[1221,9,531,7],[1221,11,531,9],[1222,4,532,2],[1222,5,532,3],[1223,4,533,2,"balanceCard"],[1223,15,533,13],[1223,17,533,15],[1224,6,534,4,"backgroundColor"],[1224,21,534,19],[1224,23,534,21],[1224,29,534,27],[1225,6,535,4,"padding"],[1225,13,535,11],[1225,15,535,13],[1225,17,535,15],[1226,6,536,4,"borderRadius"],[1226,18,536,16],[1226,20,536,18],[1226,22,536,20],[1227,6,537,4,"borderWidth"],[1227,17,537,15],[1227,19,537,17],[1227,20,537,18],[1228,6,538,4,"borderColor"],[1228,17,538,15],[1228,19,538,17],[1229,4,539,2],[1229,5,539,3],[1230,4,540,2,"balanceCardHeader"],[1230,21,540,19],[1230,23,540,21],[1231,6,541,4,"flexDirection"],[1231,19,541,17],[1231,21,541,19],[1231,26,541,24],[1232,6,542,4,"alignItems"],[1232,16,542,14],[1232,18,542,16],[1232,26,542,24],[1233,6,543,4,"gap"],[1233,9,543,7],[1233,11,543,9],[1233,12,543,10],[1234,6,544,4,"marginBottom"],[1234,18,544,16],[1234,20,544,18],[1235,4,545,2],[1235,5,545,3],[1236,4,546,2,"tokenLogo"],[1236,13,546,11],[1236,15,546,13],[1237,6,547,4,"width"],[1237,11,547,9],[1237,13,547,11],[1237,15,547,13],[1238,6,548,4,"height"],[1238,12,548,10],[1238,14,548,12],[1238,16,548,14],[1239,6,549,4,"borderRadius"],[1239,18,549,16],[1239,20,549,18],[1240,4,550,2],[1240,5,550,3],[1241,4,551,2,"tokenSymbol"],[1241,15,551,13],[1241,17,551,15],[1242,6,552,4,"fontSize"],[1242,14,552,12],[1242,16,552,14],[1242,18,552,16],[1243,6,553,4,"fontWeight"],[1243,16,553,14],[1243,18,553,16],[1243,23,553,21],[1244,6,554,4,"color"],[1244,11,554,9],[1244,13,554,11],[1245,4,555,2],[1245,5,555,3],[1246,4,556,2,"balanceAmount"],[1246,17,556,15],[1246,19,556,17],[1247,6,557,4,"fontSize"],[1247,14,557,12],[1247,16,557,14],[1247,18,557,16],[1248,6,558,4,"fontWeight"],[1248,16,558,14],[1248,18,558,16],[1248,23,558,21],[1249,6,559,4,"color"],[1249,11,559,9],[1249,13,559,11],[1249,22,559,20],[1250,6,560,4,"marginBottom"],[1250,18,560,16],[1250,20,560,18],[1251,4,561,2],[1251,5,561,3],[1252,4,562,2,"balanceUsd"],[1252,14,562,12],[1252,16,562,14],[1253,6,563,4,"fontSize"],[1253,14,563,12],[1253,16,563,14],[1253,18,563,16],[1254,6,564,4,"color"],[1254,11,564,9],[1254,13,564,11],[1255,4,565,2],[1255,5,565,3],[1256,4,566,2,"walletActions"],[1256,17,566,15],[1256,19,566,17],[1257,6,567,4,"flexDirection"],[1257,19,567,17],[1257,21,567,19],[1257,26,567,24],[1258,6,568,4,"padding"],[1258,13,568,11],[1258,15,568,13],[1258,17,568,15],[1259,6,569,4,"gap"],[1259,9,569,7],[1259,11,569,9],[1260,4,570,2],[1260,5,570,3],[1261,4,571,2,"walletActionButton"],[1261,22,571,20],[1261,24,571,22],[1262,6,572,4,"flex"],[1262,10,572,8],[1262,12,572,10],[1262,13,572,11],[1263,6,573,4,"backgroundColor"],[1263,21,573,19],[1263,23,573,21],[1263,32,573,30],[1264,6,574,4,"padding"],[1264,13,574,11],[1264,15,574,13],[1264,17,574,15],[1265,6,575,4,"borderRadius"],[1265,18,575,16],[1265,20,575,18],[1265,22,575,20],[1266,6,576,4,"alignItems"],[1266,16,576,14],[1266,18,576,16],[1266,26,576,24],[1267,6,577,4,"gap"],[1267,9,577,7],[1267,11,577,9],[1268,4,578,2],[1268,5,578,3],[1269,4,579,2,"walletActionText"],[1269,20,579,18],[1269,22,579,20],[1270,6,580,4,"color"],[1270,11,580,9],[1270,13,580,11],[1270,19,580,17],[1271,6,581,4,"fontSize"],[1271,14,581,12],[1271,16,581,14],[1271,18,581,16],[1272,6,582,4,"fontWeight"],[1272,16,582,14],[1272,18,582,16],[1273,4,583,2],[1273,5,583,3],[1274,4,584,2,"placeholderText"],[1274,19,584,17],[1274,21,584,19],[1275,6,585,4,"flex"],[1275,10,585,8],[1275,12,585,10],[1275,13,585,11],[1276,6,586,4,"textAlign"],[1276,15,586,13],[1276,17,586,15],[1276,25,586,23],[1277,6,587,4,"marginTop"],[1277,15,587,13],[1277,17,587,15],[1277,20,587,18],[1278,6,588,4,"fontSize"],[1278,14,588,12],[1278,16,588,14],[1278,18,588,16],[1279,6,589,4,"color"],[1279,11,589,9],[1279,13,589,11],[1280,4,590,2],[1280,5,590,3],[1281,4,591,2,"tabBar"],[1281,10,591,8],[1281,12,591,10],[1282,6,592,4,"borderTopWidth"],[1282,20,592,18],[1282,22,592,20],[1282,23,592,21],[1283,6,593,4,"borderTopColor"],[1283,20,593,18],[1283,22,593,20],[1283,31,593,29],[1284,6,594,4,"paddingBottom"],[1284,19,594,17],[1284,21,594,19],[1284,23,594,21],[1285,6,595,4,"paddingTop"],[1285,16,595,14],[1285,18,595,16],[1285,19,595,17],[1286,6,596,4,"backgroundColor"],[1286,21,596,19],[1286,23,596,21],[1287,4,597,2],[1287,5,597,3],[1288,4,598,2],[1289,4,599,2,"balanceRow"],[1289,14,599,12],[1289,16,599,14],[1290,6,600,4,"flexDirection"],[1290,19,600,17],[1290,21,600,19],[1290,26,600,24],[1291,6,601,4,"padding"],[1291,13,601,11],[1291,15,601,13],[1291,17,601,15],[1292,6,602,4,"gap"],[1292,9,602,7],[1292,11,602,9],[1293,4,603,2],[1293,5,603,3],[1294,4,604,2,"balanceCardNew"],[1294,18,604,16],[1294,20,604,18],[1295,6,605,4,"flex"],[1295,10,605,8],[1295,12,605,10],[1295,13,605,11],[1296,6,606,4,"backgroundColor"],[1296,21,606,19],[1296,23,606,21],[1296,29,606,27],[1297,6,607,4,"padding"],[1297,13,607,11],[1297,15,607,13],[1297,17,607,15],[1298,6,608,4,"borderRadius"],[1298,18,608,16],[1298,20,608,18],[1298,22,608,20],[1299,6,609,4,"alignItems"],[1299,16,609,14],[1299,18,609,16],[1299,26,609,24],[1300,6,610,4,"shadowColor"],[1300,17,610,15],[1300,19,610,17],[1300,25,610,23],[1301,6,611,4,"shadowOffset"],[1301,18,611,16],[1301,20,611,18],[1302,8,611,20,"width"],[1302,13,611,25],[1302,15,611,27],[1302,16,611,28],[1303,8,611,30,"height"],[1303,14,611,36],[1303,16,611,38],[1304,6,611,40],[1304,7,611,41],[1305,6,612,4,"shadowOpacity"],[1305,19,612,17],[1305,21,612,19],[1305,24,612,22],[1306,6,613,4,"shadowRadius"],[1306,18,613,16],[1306,20,613,18],[1306,21,613,19],[1307,6,614,4,"elevation"],[1307,15,614,13],[1307,17,614,15],[1308,4,615,2],[1308,5,615,3],[1309,4,616,2,"tokenLogoNew"],[1309,16,616,14],[1309,18,616,16],[1310,6,617,4,"width"],[1310,11,617,9],[1310,13,617,11],[1310,15,617,13],[1311,6,618,4,"height"],[1311,12,618,10],[1311,14,618,12],[1311,16,618,14],[1312,6,619,4,"borderRadius"],[1312,18,619,16],[1312,20,619,18],[1312,22,619,20],[1313,6,620,4,"marginBottom"],[1313,18,620,16],[1313,20,620,18],[1314,4,621,2],[1314,5,621,3],[1315,4,622,2,"tokenSymbolNew"],[1315,18,622,16],[1315,20,622,18],[1316,6,623,4,"fontSize"],[1316,14,623,12],[1316,16,623,14],[1316,18,623,16],[1317,6,624,4,"fontWeight"],[1317,16,624,14],[1317,18,624,16],[1317,23,624,21],[1318,6,625,4,"color"],[1318,11,625,9],[1318,13,625,11],[1318,22,625,20],[1319,6,626,4,"marginBottom"],[1319,18,626,16],[1319,20,626,18],[1320,4,627,2],[1320,5,627,3],[1321,4,628,2,"balanceAmountNew"],[1321,20,628,18],[1321,22,628,20],[1322,6,629,4,"fontSize"],[1322,14,629,12],[1322,16,629,14],[1322,18,629,16],[1323,6,630,4,"fontWeight"],[1323,16,630,14],[1323,18,630,16],[1323,23,630,21],[1324,6,631,4,"color"],[1324,11,631,9],[1324,13,631,11],[1324,22,631,20],[1325,6,632,4,"marginBottom"],[1325,18,632,16],[1325,20,632,18],[1326,4,633,2],[1326,5,633,3],[1327,4,634,2,"tokenNameNew"],[1327,16,634,14],[1327,18,634,16],[1328,6,635,4,"fontSize"],[1328,14,635,12],[1328,16,635,14],[1328,18,635,16],[1329,6,636,4,"color"],[1329,11,636,9],[1329,13,636,11],[1330,4,637,2],[1330,5,637,3],[1331,4,638,2,"actionsContainer"],[1331,20,638,18],[1331,22,638,20],[1332,6,639,4,"margin"],[1332,12,639,10],[1332,14,639,12],[1332,16,639,14],[1333,6,640,4,"backgroundColor"],[1333,21,640,19],[1333,23,640,21],[1333,29,640,27],[1334,6,641,4,"padding"],[1334,13,641,11],[1334,15,641,13],[1334,17,641,15],[1335,6,642,4,"borderRadius"],[1335,18,642,16],[1335,20,642,18],[1335,22,642,20],[1336,6,643,4,"shadowColor"],[1336,17,643,15],[1336,19,643,17],[1336,25,643,23],[1337,6,644,4,"shadowOffset"],[1337,18,644,16],[1337,20,644,18],[1338,8,644,20,"width"],[1338,13,644,25],[1338,15,644,27],[1338,16,644,28],[1339,8,644,30,"height"],[1339,14,644,36],[1339,16,644,38],[1340,6,644,40],[1340,7,644,41],[1341,6,645,4,"shadowOpacity"],[1341,19,645,17],[1341,21,645,19],[1341,24,645,22],[1342,6,646,4,"shadowRadius"],[1342,18,646,16],[1342,20,646,18],[1342,21,646,19],[1343,6,647,4,"elevation"],[1343,15,647,13],[1343,17,647,15],[1344,4,648,2],[1344,5,648,3],[1345,4,649,2,"actionsRow"],[1345,14,649,12],[1345,16,649,14],[1346,6,650,4,"flexDirection"],[1346,19,650,17],[1346,21,650,19],[1346,26,650,24],[1347,6,651,4,"justifyContent"],[1347,20,651,18],[1347,22,651,20],[1347,37,651,35],[1348,6,652,4,"marginBottom"],[1348,18,652,16],[1348,20,652,18],[1349,4,653,2],[1349,5,653,3],[1350,4,654,2,"actionBtn"],[1350,13,654,11],[1350,15,654,13],[1351,6,655,4,"width"],[1351,11,655,9],[1351,13,655,11],[1351,14,655,12,"width"],[1351,19,655,17],[1351,22,655,20],[1351,24,655,22],[1351,28,655,26],[1351,29,655,27],[1352,6,656,4,"padding"],[1352,13,656,11],[1352,15,656,13],[1352,17,656,15],[1353,6,657,4,"borderRadius"],[1353,18,657,16],[1353,20,657,18],[1353,22,657,20],[1354,6,658,4,"alignItems"],[1354,16,658,14],[1354,18,658,16],[1354,26,658,24],[1355,6,659,4,"justifyContent"],[1355,20,659,18],[1355,22,659,20],[1356,4,660,2],[1356,5,660,3],[1357,4,661,2,"actionBtnText"],[1357,17,661,15],[1357,19,661,17],[1358,6,662,4,"color"],[1358,11,662,9],[1358,13,662,11],[1358,19,662,17],[1359,6,663,4,"fontSize"],[1359,14,663,12],[1359,16,663,14],[1359,18,663,16],[1360,6,664,4,"fontWeight"],[1360,16,664,14],[1360,18,664,16],[1360,23,664,21],[1361,6,665,4,"marginTop"],[1361,15,665,13],[1361,17,665,15],[1362,4,666,2],[1362,5,666,3],[1363,4,667,2,"tokensContainer"],[1363,19,667,17],[1363,21,667,19],[1364,6,668,4,"margin"],[1364,12,668,10],[1364,14,668,12],[1364,16,668,14],[1365,6,669,4,"marginTop"],[1365,15,669,13],[1365,17,669,15],[1366,4,670,2],[1366,5,670,3],[1367,4,671,2,"tokensTitle"],[1367,15,671,13],[1367,17,671,15],[1368,6,672,4,"fontSize"],[1368,14,672,12],[1368,16,672,14],[1368,18,672,16],[1369,6,673,4,"fontWeight"],[1369,16,673,14],[1369,18,673,16],[1369,23,673,21],[1370,6,674,4,"color"],[1370,11,674,9],[1370,13,674,11],[1370,22,674,20],[1371,6,675,4,"marginBottom"],[1371,18,675,16],[1371,20,675,18],[1371,22,675,20],[1372,6,676,4,"paddingHorizontal"],[1372,23,676,21],[1372,25,676,23],[1373,4,677,2],[1373,5,677,3],[1374,4,678,2,"tokenItem"],[1374,13,678,11],[1374,15,678,13],[1375,6,679,4,"flexDirection"],[1375,19,679,17],[1375,21,679,19],[1375,26,679,24],[1376,6,680,4,"justifyContent"],[1376,20,680,18],[1376,22,680,20],[1376,37,680,35],[1377,6,681,4,"alignItems"],[1377,16,681,14],[1377,18,681,16],[1377,26,681,24],[1378,6,682,4,"backgroundColor"],[1378,21,682,19],[1378,23,682,21],[1378,29,682,27],[1379,6,683,4,"padding"],[1379,13,683,11],[1379,15,683,13],[1379,17,683,15],[1380,6,684,4,"borderRadius"],[1380,18,684,16],[1380,20,684,18],[1380,22,684,20],[1381,6,685,4,"marginBottom"],[1381,18,685,16],[1381,20,685,18],[1381,21,685,19],[1382,6,686,4,"shadowColor"],[1382,17,686,15],[1382,19,686,17],[1382,25,686,23],[1383,6,687,4,"shadowOffset"],[1383,18,687,16],[1383,20,687,18],[1384,8,687,20,"width"],[1384,13,687,25],[1384,15,687,27],[1384,16,687,28],[1385,8,687,30,"height"],[1385,14,687,36],[1385,16,687,38],[1386,6,687,40],[1386,7,687,41],[1387,6,688,4,"shadowOpacity"],[1387,19,688,17],[1387,21,688,19],[1387,25,688,23],[1388,6,689,4,"shadowRadius"],[1388,18,689,16],[1388,20,689,18],[1388,21,689,19],[1389,6,690,4,"elevation"],[1389,15,690,13],[1389,17,690,15],[1390,4,691,2],[1390,5,691,3],[1391,4,692,2,"tokenItemLeft"],[1391,17,692,15],[1391,19,692,17],[1392,6,693,4,"flexDirection"],[1392,19,693,17],[1392,21,693,19],[1392,26,693,24],[1393,6,694,4,"alignItems"],[1393,16,694,14],[1393,18,694,16],[1393,26,694,24],[1394,6,695,4,"gap"],[1394,9,695,7],[1394,11,695,9],[1395,4,696,2],[1395,5,696,3],[1396,4,697,2,"tokenIconContainer"],[1396,22,697,20],[1396,24,697,22],[1397,6,698,4,"position"],[1397,14,698,12],[1397,16,698,14],[1397,26,698,24],[1398,6,699,4,"width"],[1398,11,699,9],[1398,13,699,11],[1398,15,699,13],[1399,6,700,4,"height"],[1399,12,700,10],[1399,14,700,12],[1400,4,701,2],[1400,5,701,3],[1401,4,702,2,"tokenIcon"],[1401,13,702,11],[1401,15,702,13],[1402,6,703,4,"width"],[1402,11,703,9],[1402,13,703,11],[1402,15,703,13],[1403,6,704,4,"height"],[1403,12,704,10],[1403,14,704,12],[1403,16,704,14],[1404,6,705,4,"borderRadius"],[1404,18,705,16],[1404,20,705,18],[1405,4,706,2],[1405,5,706,3],[1406,4,707,2,"networkBadge"],[1406,16,707,14],[1406,18,707,16],[1407,6,708,4,"position"],[1407,14,708,12],[1407,16,708,14],[1407,26,708,24],[1408,6,709,4,"right"],[1408,11,709,9],[1408,13,709,11],[1408,14,709,12],[1408,15,709,13],[1409,6,710,4,"bottom"],[1409,12,710,10],[1409,14,710,12],[1409,15,710,13],[1409,16,710,14],[1410,6,711,4,"width"],[1410,11,711,9],[1410,13,711,11],[1410,15,711,13],[1411,6,712,4,"height"],[1411,12,712,10],[1411,14,712,12],[1411,16,712,14],[1412,6,713,4,"borderRadius"],[1412,18,713,16],[1412,20,713,18],[1412,21,713,19],[1413,6,714,4,"borderWidth"],[1413,17,714,15],[1413,19,714,17],[1413,20,714,18],[1414,6,715,4,"borderColor"],[1414,17,715,15],[1414,19,715,17],[1415,4,716,2],[1415,5,716,3],[1416,4,717,2,"tokenItemName"],[1416,17,717,15],[1416,19,717,17],[1417,6,718,4,"fontSize"],[1417,14,718,12],[1417,16,718,14],[1417,18,718,16],[1418,6,719,4,"fontWeight"],[1418,16,719,14],[1418,18,719,16],[1418,23,719,21],[1419,6,720,4,"color"],[1419,11,720,9],[1419,13,720,11],[1420,4,721,2],[1420,5,721,3],[1421,4,722,2,"tokenItemNetwork"],[1421,20,722,18],[1421,22,722,20],[1422,6,723,4,"fontSize"],[1422,14,723,12],[1422,16,723,14],[1422,18,723,16],[1423,6,724,4,"color"],[1423,11,724,9],[1423,13,724,11],[1424,4,725,2],[1424,5,725,3],[1425,4,726,2,"tokenItemRight"],[1425,18,726,16],[1425,20,726,18],[1426,6,727,4,"alignItems"],[1426,16,727,14],[1426,18,727,16],[1427,4,728,2],[1427,5,728,3],[1428,4,729,2,"tokenItemBalance"],[1428,20,729,18],[1428,22,729,20],[1429,6,730,4,"fontSize"],[1429,14,730,12],[1429,16,730,14],[1429,18,730,16],[1430,6,731,4,"fontWeight"],[1430,16,731,14],[1430,18,731,16],[1430,23,731,21],[1431,6,732,4,"color"],[1431,11,732,9],[1431,13,732,11],[1432,4,733,2],[1432,5,733,3],[1433,4,734,2,"tokenItemUsd"],[1433,16,734,14],[1433,18,734,16],[1434,6,735,4,"fontSize"],[1434,14,735,12],[1434,16,735,14],[1434,18,735,16],[1435,6,736,4,"color"],[1435,11,736,9],[1435,13,736,11],[1436,4,737,2],[1437,2,738,0],[1437,3,738,1],[1437,4,738,2],[1438,2,738,3],[1438,6,738,3,"_c"],[1438,8,738,3],[1438,10,738,3,"_c2"],[1438,13,738,3],[1438,15,738,3,"_c3"],[1438,18,738,3],[1438,20,738,3,"_c4"],[1438,23,738,3],[1438,25,738,3,"_c5"],[1438,28,738,3],[1438,30,738,3,"_c6"],[1438,33,738,3],[1439,2,738,3,"$RefreshReg$"],[1439,14,738,3],[1439,15,738,3,"_c"],[1439,17,738,3],[1440,2,738,3,"$RefreshReg$"],[1440,14,738,3],[1440,15,738,3,"_c2"],[1440,18,738,3],[1441,2,738,3,"$RefreshReg$"],[1441,14,738,3],[1441,15,738,3,"_c3"],[1441,18,738,3],[1442,2,738,3,"$RefreshReg$"],[1442,14,738,3],[1442,15,738,3,"_c4"],[1442,18,738,3],[1443,2,738,3,"$RefreshReg$"],[1443,14,738,3],[1443,15,738,3,"_c5"],[1443,18,738,3],[1444,2,738,3,"$RefreshReg$"],[1444,14,738,3],[1444,15,738,3,"_c6"],[1444,18,738,3],[1445,0,738,3],[1445,3]],"functionMap":{"names":["<global>","HomeTab","pickImage","QUICK_ACTIONS.map$argument_0","WalletTab","useEffect$argument_0","fetchBalance","setTimeout$argument_0","CitizensTab","ReferralTab","ProfileTab","HomeScreen","Tab.Screen.props.options.tabBarIcon"],"mappings":"AAA;ACmB;oBCI;GDqB;+BEkD;aFc;CDM;AIE;YCQ;GDE;uBEE;mCCI,wBD;GF8B;CJgH;AQE;CRM;ASE;CTM;AUE;CVM;eWI;sBCe;WDE;sBCQ;WDE;sBCQ;WDE;sBCQ;WDE;sBCQ;WDE;CXK"},"hasCjsExports":false},"type":"js/module"}]}