mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 14:31:02 +00:00
1 line
154 KiB
Plaintext
1 line
154 KiB
Plaintext
{"dependencies":[{"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":11,"column":22,"index":185}}],"key":"KyzuX10g6ixS9UfynhmjlvCIG3g=","exportNames":["*"],"imports":1}},{"name":"@expo/vector-icons","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":12,"column":0,"index":186},"end":{"line":12,"column":46,"index":232}}],"key":"ow7vkrqkIckRjlSi/+MhMmRYtUE=","exportNames":["*"],"imports":1}},{"name":"expo-linear-gradient","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0,"index":233},"end":{"line":13,"column":54,"index":287}}],"key":"U49Qf+lzUGUozi/zW+nL0UJUvcg=","exportNames":["*"],"imports":1}},{"name":"../../constants/colors","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":14,"column":0,"index":288},"end":{"line":14,"column":44,"index":332}}],"key":"fGrGUPNMLmLukL54XEqv2tSlgH0=","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/Exchange/ExchangeScreen.tsx\",\n _s = $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 Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return ExchangeScreen;\n }\n });\n var _babelRuntimeHelpersSlicedToArray = require(_dependencyMap[0], \"@babel/runtime/helpers/slicedToArray\");\n var _slicedToArray = _interopDefault(_babelRuntimeHelpersSlicedToArray);\n var _react = require(_dependencyMap[1], \"react\");\n var _reactNative = require(_dependencyMap[2], \"react-native\");\n var _expoVectorIcons = require(_dependencyMap[3], \"@expo/vector-icons\");\n var _expoLinearGradient = require(_dependencyMap[4], \"expo-linear-gradient\");\n var _constantsColors = require(_dependencyMap[5], \"../../constants/colors\");\n var Colors = _interopDefault(_constantsColors);\n var _reactJsxDevRuntime = require(_dependencyMap[6], \"react/jsx-dev-runtime\");\n function ExchangeScreen(_ref) {\n _s();\n var navigation = _ref.navigation;\n var _useState = (0, _react.useState)('HEZ'),\n _useState2 = (0, _slicedToArray.default)(_useState, 2),\n fromToken = _useState2[0],\n setFromToken = _useState2[1];\n var _useState3 = (0, _react.useState)('PEZ'),\n _useState4 = (0, _slicedToArray.default)(_useState3, 2),\n toToken = _useState4[0],\n setToToken = _useState4[1];\n var _useState5 = (0, _react.useState)(''),\n _useState6 = (0, _slicedToArray.default)(_useState5, 2),\n fromAmount = _useState6[0],\n setFromAmount = _useState6[1];\n var _useState7 = (0, _react.useState)(''),\n _useState8 = (0, _slicedToArray.default)(_useState7, 2),\n toAmount = _useState8[0],\n setToAmount = _useState8[1];\n var _useState9 = (0, _react.useState)('0.5'),\n _useState0 = (0, _slicedToArray.default)(_useState9, 2),\n slippage = _useState0[0],\n setSlippage = _useState0[1];\n var _useState1 = (0, _react.useState)({\n hez: 45750.5,\n pez: 1234567\n }),\n _useState10 = (0, _slicedToArray.default)(_useState1, 1),\n balances = _useState10[0];\n var _useState11 = (0, _react.useState)({\n hezToPez: 27.5,\n pezToHez: 0.0364,\n lastUpdated: new Date().toLocaleTimeString()\n }),\n _useState12 = (0, _slicedToArray.default)(_useState11, 1),\n exchangeRate = _useState12[0];\n var _useState13 = (0, _react.useState)([{\n id: '1',\n fromToken: 'HEZ',\n toToken: 'PEZ',\n fromAmount: 100,\n toAmount: 2750,\n rate: 27.5,\n date: '2024-01-23 14:30',\n txHash: '0x1a2b3c...'\n }, {\n id: '2',\n fromToken: 'PEZ',\n toToken: 'HEZ',\n fromAmount: 5000,\n toAmount: 182,\n rate: 0.0364,\n date: '2024-01-22 10:15',\n txHash: '0x4d5e6f...'\n }]),\n _useState14 = (0, _slicedToArray.default)(_useState13, 1),\n swapHistory = _useState14[0];\n (0, _react.useEffect)(() => {\n calculateToAmount();\n }, [fromAmount, fromToken, toToken]);\n var calculateToAmount = () => {\n if (!fromAmount || parseFloat(fromAmount) <= 0) {\n setToAmount('');\n return;\n }\n var amount = parseFloat(fromAmount);\n var result = 0;\n if (fromToken === 'HEZ' && toToken === 'PEZ') {\n result = amount * exchangeRate.hezToPez;\n } else if (fromToken === 'PEZ' && toToken === 'HEZ') {\n result = amount * exchangeRate.pezToHez;\n }\n\n // Apply slippage\n var slippagePercent = parseFloat(slippage) / 100;\n result = result * (1 - slippagePercent);\n setToAmount(result.toFixed(4));\n };\n var swapTokens = () => {\n var newFromToken = toToken;\n var newToToken = fromToken;\n setFromToken(newFromToken);\n setToToken(newToToken);\n setFromAmount(toAmount);\n };\n var executeSwap = () => {\n if (!fromAmount || parseFloat(fromAmount) <= 0) {\n _reactNative.Alert.alert('Invalid Amount', 'Please enter a valid amount to swap');\n return;\n }\n var amount = parseFloat(fromAmount);\n var currentBalance = fromToken === 'HEZ' ? balances.hez : balances.pez;\n if (amount > currentBalance) {\n _reactNative.Alert.alert('Insufficient Balance', `You don't have enough ${fromToken}`);\n return;\n }\n _reactNative.Alert.alert('Confirm Swap', `Swap ${fromAmount} ${fromToken} for ${toAmount} ${toToken}?\\n\\nRate: 1 ${fromToken} = ${fromToken === 'HEZ' ? exchangeRate.hezToPez : exchangeRate.pezToHez} ${toToken}\\nSlippage: ${slippage}%`, [{\n text: 'Cancel',\n style: 'cancel'\n }, {\n text: 'Confirm',\n onPress: () => {\n _reactNative.Alert.alert('Success!', `Swap executed successfully!\\n\\nTransaction hash: 0x${Math.random().toString(16).substr(2, 8)}...`);\n setFromAmount('');\n setToAmount('');\n }\n }]);\n };\n var setMaxAmount = () => {\n var maxBalance = fromToken === 'HEZ' ? balances.hez : balances.pez;\n setFromAmount(maxBalance.toString());\n };\n var getCurrentRate = () => {\n return fromToken === 'HEZ' ? exchangeRate.hezToPez : exchangeRate.pezToHez;\n };\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.SafeAreaView, {\n style: styles.container,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.ScrollView, {\n showsVerticalScrollIndicator: false,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoLinearGradient.LinearGradient, {\n colors: [Colors.default.primary, Colors.default.kurdishGold],\n style: styles.header,\n start: {\n x: 0,\n y: 0\n },\n end: {\n x: 1,\n y: 1\n },\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.headerContent,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.headerTitle,\n children: \"Exchange\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 167,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.headerSubtitle,\n children: \"Swap HEZ \\u2194 PEZ Tokens\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 168,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 166,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.historyButton,\n onPress: () => _reactNative.Alert.alert('History', 'Full swap history coming soon'),\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"time-outline\",\n size: 24,\n color: \"white\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 174,\n columnNumber: 15\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 170,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 165,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 159,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.rateContainer,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.rateCard,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.rateHeader,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.rateTitle,\n children: \"Current Exchange Rate\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 183,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.updateBadge,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"sync\",\n size: 12,\n color: Colors.default.success\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 185,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.updateText,\n children: \"Live\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 186,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 184,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 182,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.rateContent,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.rateItem,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.rateLabel,\n children: \"1 HEZ =\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 191,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.rateValue,\n children: [exchangeRate.hezToPez, \" PEZ\"]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 192,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 190,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.rateDivider\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 194,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.rateItem,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.rateLabel,\n children: \"1 PEZ =\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 196,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.rateValue,\n children: [exchangeRate.pezToHez, \" HEZ\"]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 197,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 195,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 189,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.rateUpdate,\n children: [\"Last updated: \", exchangeRate.lastUpdated]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 200,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 181,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 180,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.section,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.sectionTitle,\n children: \"Swap Tokens\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 208,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.swapCard,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.swapHeader,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.swapLabel,\n children: \"From\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 213,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.balanceText,\n children: [\"Balance: \", fromToken === 'HEZ' ? balances.hez.toLocaleString() : balances.pez.toLocaleString(), \" \", fromToken]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 214,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 212,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.inputContainer,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TextInput, {\n style: styles.amountInput,\n placeholder: \"0.00\",\n keyboardType: \"decimal-pad\",\n value: fromAmount,\n onChangeText: setFromAmount\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 219,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.tokenSelector,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.tokenBadge,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokenText,\n children: fromToken\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 228,\n columnNumber: 19\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 227,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n onPress: setMaxAmount,\n style: styles.maxButton,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.maxButtonText,\n children: \"MAX\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 231,\n columnNumber: 19\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 230,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 226,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 218,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 211,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.swapButtonContainer,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.swapIconButton,\n onPress: swapTokens,\n activeOpacity: 0.7,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"swap-vertical\",\n size: 24,\n color: Colors.default.primary\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 244,\n columnNumber: 15\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 239,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 238,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.swapCard,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.swapHeader,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.swapLabel,\n children: \"To\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 251,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.balanceText,\n children: [\"Balance: \", toToken === 'HEZ' ? balances.hez.toLocaleString() : balances.pez.toLocaleString(), \" \", toToken]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 252,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 250,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.inputContainer,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TextInput, {\n style: [styles.amountInput, styles.amountInputDisabled],\n placeholder: \"0.00\",\n value: toAmount,\n editable: false\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 257,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.tokenSelector,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.tokenBadge,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tokenText,\n children: toToken\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 265,\n columnNumber: 19\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 264,\n columnNumber: 17\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 263,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 256,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 249,\n columnNumber: 11\n }, this), fromAmount && toAmount && /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.detailsCard,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.detailRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.detailLabel,\n children: \"Rate\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 275,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.detailValue,\n children: [\"1 \", fromToken, \" = \", getCurrentRate(), \" \", toToken]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 276,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 274,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.detailRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.detailLabel,\n children: \"Slippage Tolerance\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 281,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.slippageSelector,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.slippageOption, slippage === '0.5' && styles.slippageOptionActive],\n onPress: () => setSlippage('0.5'),\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: [styles.slippageText, slippage === '0.5' && styles.slippageTextActive],\n children: \"0.5%\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 290,\n columnNumber: 21\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 283,\n columnNumber: 19\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.slippageOption, slippage === '1.0' && styles.slippageOptionActive],\n onPress: () => setSlippage('1.0'),\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: [styles.slippageText, slippage === '1.0' && styles.slippageTextActive],\n children: \"1.0%\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 306,\n columnNumber: 21\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 299,\n columnNumber: 19\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.slippageOption, slippage === '2.0' && styles.slippageOptionActive],\n onPress: () => setSlippage('2.0'),\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: [styles.slippageText, slippage === '2.0' && styles.slippageTextActive],\n children: \"2.0%\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 322,\n columnNumber: 21\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 315,\n columnNumber: 19\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 282,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 280,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.detailRow,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.detailLabel,\n children: \"Network Fee\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 334,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.detailValue,\n children: \"~0.01 HEZ\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 335,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 333,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 273,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.executeButton,\n onPress: executeSwap,\n activeOpacity: 0.8,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoLinearGradient.LinearGradient, {\n colors: [Colors.default.primary, Colors.default.success],\n style: styles.executeButtonGradient,\n start: {\n x: 0,\n y: 0\n },\n end: {\n x: 1,\n y: 0\n },\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"swap-horizontal\",\n size: 20,\n color: \"white\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 352,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.executeButtonText,\n children: \"Swap Tokens\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 353,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 346,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 341,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 207,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.section,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.sectionHeader,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.sectionTitle,\n children: \"Recent Swaps\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 361,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.viewAllText,\n children: \"View All\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 363,\n columnNumber: 15\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 362,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 360,\n columnNumber: 11\n }, this), swapHistory.map(swap => /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.historyCard,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.historyHeader,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.historyIcon,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"swap-horizontal\",\n size: 24,\n color: Colors.default.primary\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 371,\n columnNumber: 19\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 370,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.historyInfo,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.historyTitle,\n children: [swap.fromToken, \" \\u2192 \", swap.toToken]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 378,\n columnNumber: 19\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.historyDate,\n children: swap.date\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 381,\n columnNumber: 19\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.historyHash,\n children: [\"Tx: \", swap.txHash]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 382,\n columnNumber: 19\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 377,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.historyAmount,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.historyFromAmount,\n children: [\"-\", swap.fromAmount, \" \", swap.fromToken]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 385,\n columnNumber: 19\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.historyToAmount,\n children: [\"+\", swap.toAmount, \" \", swap.toToken]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 388,\n columnNumber: 19\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 384,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 369,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.historyFooter,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.historyRate,\n children: [\"Rate: 1 \", swap.fromToken, \" = \", swap.rate, \" \", swap.toToken]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 394,\n columnNumber: 17\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"open-outline\",\n size: 16,\n color: Colors.default.primary\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 398,\n columnNumber: 19\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 397,\n columnNumber: 17\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 393,\n columnNumber: 15\n }, this)]\n }, swap.id, true, {\n fileName: _jsxFileName,\n lineNumber: 368,\n columnNumber: 13\n }, this))]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 359,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoSection,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoCard,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"information-circle\",\n size: 24,\n color: Colors.default.primary\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 412,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.infoContent,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoTitle,\n children: \"About Token Swap\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 414,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.infoText,\n children: \"Exchange rates are determined by the on-chain liquidity pool. HEZ is the security layer token, while PEZ is the governance token. Swap fees support network validators and liquidity providers.\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 415,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 413,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 411,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 410,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: {\n height: 40\n }\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 422,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 157,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 156,\n columnNumber: 5\n }, this);\n }\n _s(ExchangeScreen, \"nGxp5+ybW5+7bXb/l3PFXtR8kzk=\");\n _c = ExchangeScreen;\n var styles = _reactNative.StyleSheet.create({\n container: {\n flex: 1,\n backgroundColor: Colors.default.background\n },\n header: {\n paddingHorizontal: 20,\n paddingTop: 20,\n paddingBottom: 24,\n borderBottomLeftRadius: 24,\n borderBottomRightRadius: 24\n },\n headerContent: {\n flexDirection: 'row',\n justifyContent: 'space-between',\n alignItems: 'center'\n },\n headerTitle: {\n fontSize: 32,\n fontWeight: '700',\n color: 'white',\n marginBottom: 4\n },\n headerSubtitle: {\n fontSize: 16,\n color: 'rgba(255, 255, 255, 0.9)'\n },\n historyButton: {\n width: 48,\n height: 48,\n borderRadius: 24,\n backgroundColor: 'rgba(255, 255, 255, 0.2)',\n alignItems: 'center',\n justifyContent: 'center'\n },\n rateContainer: {\n paddingHorizontal: 20,\n marginTop: -30,\n marginBottom: 20\n },\n rateCard: {\n backgroundColor: 'white',\n borderRadius: 16,\n padding: 20,\n shadowColor: '#000',\n shadowOffset: {\n width: 0,\n height: 2\n },\n shadowOpacity: 0.05,\n shadowRadius: 8,\n elevation: 2\n },\n rateHeader: {\n flexDirection: 'row',\n justifyContent: 'space-between',\n alignItems: 'center',\n marginBottom: 16\n },\n rateTitle: {\n fontSize: 16,\n fontWeight: '600',\n color: Colors.default.textDark\n },\n updateBadge: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 4,\n backgroundColor: Colors.default.success + '20',\n paddingHorizontal: 8,\n paddingVertical: 4,\n borderRadius: 8\n },\n updateText: {\n fontSize: 12,\n fontWeight: '600',\n color: Colors.default.success\n },\n rateContent: {\n flexDirection: 'row',\n alignItems: 'center',\n marginBottom: 12\n },\n rateItem: {\n flex: 1,\n alignItems: 'center'\n },\n rateLabel: {\n fontSize: 14,\n color: Colors.default.textGray,\n marginBottom: 4\n },\n rateValue: {\n fontSize: 18,\n fontWeight: '700',\n color: Colors.default.primary\n },\n rateDivider: {\n width: 1,\n height: 40,\n backgroundColor: Colors.default.background\n },\n rateUpdate: {\n fontSize: 12,\n color: Colors.default.textGray,\n textAlign: 'center'\n },\n section: {\n paddingHorizontal: 20,\n marginBottom: 24\n },\n sectionHeader: {\n flexDirection: 'row',\n justifyContent: 'space-between',\n alignItems: 'center',\n marginBottom: 12\n },\n sectionTitle: {\n fontSize: 20,\n fontWeight: '700',\n color: Colors.default.textDark,\n marginBottom: 12\n },\n viewAllText: {\n fontSize: 14,\n fontWeight: '600',\n color: Colors.default.primary\n },\n swapCard: {\n backgroundColor: 'white',\n borderRadius: 14,\n padding: 16,\n shadowColor: '#000',\n shadowOffset: {\n width: 0,\n height: 1\n },\n shadowOpacity: 0.04,\n shadowRadius: 6,\n elevation: 1\n },\n swapHeader: {\n flexDirection: 'row',\n justifyContent: 'space-between',\n alignItems: 'center',\n marginBottom: 12\n },\n swapLabel: {\n fontSize: 14,\n fontWeight: '600',\n color: Colors.default.textGray\n },\n balanceText: {\n fontSize: 12,\n color: Colors.default.textGray\n },\n inputContainer: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 12\n },\n amountInput: {\n flex: 1,\n fontSize: 24,\n fontWeight: '600',\n color: Colors.default.textDark\n },\n amountInputDisabled: {\n color: Colors.default.textGray\n },\n tokenSelector: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 8\n },\n tokenBadge: {\n backgroundColor: Colors.default.primary + '20',\n paddingHorizontal: 16,\n paddingVertical: 8,\n borderRadius: 10\n },\n tokenText: {\n fontSize: 16,\n fontWeight: '700',\n color: Colors.default.primary\n },\n maxButton: {\n backgroundColor: Colors.default.background,\n paddingHorizontal: 12,\n paddingVertical: 6,\n borderRadius: 8\n },\n maxButtonText: {\n fontSize: 12,\n fontWeight: '700',\n color: Colors.default.primary\n },\n swapButtonContainer: {\n alignItems: 'center',\n marginVertical: -12,\n zIndex: 10\n },\n swapIconButton: {\n width: 48,\n height: 48,\n borderRadius: 24,\n backgroundColor: 'white',\n alignItems: 'center',\n justifyContent: '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 detailsCard: {\n backgroundColor: Colors.default.background,\n borderRadius: 12,\n padding: 16,\n marginTop: 16,\n gap: 12\n },\n detailRow: {\n flexDirection: 'row',\n justifyContent: 'space-between',\n alignItems: 'center'\n },\n detailLabel: {\n fontSize: 14,\n color: Colors.default.textGray\n },\n detailValue: {\n fontSize: 14,\n fontWeight: '600',\n color: Colors.default.textDark\n },\n slippageSelector: {\n flexDirection: 'row',\n gap: 8\n },\n slippageOption: {\n paddingHorizontal: 12,\n paddingVertical: 6,\n borderRadius: 8,\n backgroundColor: 'white'\n },\n slippageOptionActive: {\n backgroundColor: Colors.default.primary\n },\n slippageText: {\n fontSize: 12,\n fontWeight: '600',\n color: Colors.default.textGray\n },\n slippageTextActive: {\n color: 'white'\n },\n executeButton: {\n borderRadius: 12,\n overflow: 'hidden',\n marginTop: 20\n },\n executeButtonGradient: {\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n paddingVertical: 16,\n gap: 8\n },\n executeButtonText: {\n fontSize: 16,\n fontWeight: '700',\n color: 'white'\n },\n historyCard: {\n backgroundColor: 'white',\n borderRadius: 14,\n padding: 16,\n marginBottom: 12,\n shadowColor: '#000',\n shadowOffset: {\n width: 0,\n height: 1\n },\n shadowOpacity: 0.04,\n shadowRadius: 6,\n elevation: 1\n },\n historyHeader: {\n flexDirection: 'row',\n alignItems: 'center',\n marginBottom: 12\n },\n historyIcon: {\n width: 44,\n height: 44,\n borderRadius: 22,\n backgroundColor: Colors.default.primary + '20',\n alignItems: 'center',\n justifyContent: 'center',\n marginRight: 12\n },\n historyInfo: {\n flex: 1\n },\n historyTitle: {\n fontSize: 16,\n fontWeight: '600',\n color: Colors.default.textDark,\n marginBottom: 2\n },\n historyDate: {\n fontSize: 12,\n color: Colors.default.textGray,\n marginBottom: 2\n },\n historyHash: {\n fontSize: 11,\n color: Colors.default.textGray,\n fontFamily: 'monospace'\n },\n historyAmount: {\n alignItems: 'flex-end'\n },\n historyFromAmount: {\n fontSize: 14,\n fontWeight: '600',\n color: Colors.default.error,\n marginBottom: 2\n },\n historyToAmount: {\n fontSize: 14,\n fontWeight: '600',\n color: Colors.default.success\n },\n historyFooter: {\n flexDirection: 'row',\n justifyContent: 'space-between',\n alignItems: 'center',\n paddingTop: 12,\n borderTopWidth: 1,\n borderTopColor: Colors.default.background\n },\n historyRate: {\n fontSize: 12,\n color: Colors.default.textGray\n },\n infoSection: {\n paddingHorizontal: 20,\n marginBottom: 24\n },\n infoCard: {\n flexDirection: 'row',\n backgroundColor: Colors.default.primary + '10',\n borderRadius: 14,\n padding: 16,\n gap: 12\n },\n infoContent: {\n flex: 1\n },\n infoTitle: {\n fontSize: 14,\n fontWeight: '600',\n color: Colors.default.textDark,\n marginBottom: 4\n },\n infoText: {\n fontSize: 13,\n color: Colors.default.textDark,\n lineHeight: 20\n }\n });\n var _c;\n $RefreshReg$(_c, \"ExchangeScreen\");\n});","lineCount":1241,"map":[[14,2,33,15,"Object"],[14,8,33,15],[14,9,33,15,"defineProperty"],[14,23,33,15],[14,24,33,15,"exports"],[14,31,33,15],[15,4,33,15,"enumerable"],[15,14,33,15],[16,4,33,15,"get"],[16,7,33,15],[16,18,33,15,"get"],[16,19,33,15],[17,6,33,15],[17,13,33,15,"ExchangeScreen"],[17,27,33,15],[18,4,33,15],[19,2,33,15],[20,2,426,1],[20,6,426,1,"_babelRuntimeHelpersSlicedToArray"],[20,39,426,1],[20,42,426,1,"require"],[20,49,426,1],[20,50,426,1,"_dependencyMap"],[20,64,426,1],[21,2,426,1],[21,6,426,1,"_slicedToArray"],[21,20,426,1],[21,23,426,1,"_interopDefault"],[21,38,426,1],[21,39,426,1,"_babelRuntimeHelpersSlicedToArray"],[21,72,426,1],[22,2,1,0],[22,6,1,0,"_react"],[22,12,1,0],[22,15,1,0,"require"],[22,22,1,0],[22,23,1,0,"_dependencyMap"],[22,37,1,0],[23,2,2,0],[23,6,2,0,"_reactNative"],[23,18,2,0],[23,21,2,0,"require"],[23,28,2,0],[23,29,2,0,"_dependencyMap"],[23,43,2,0],[24,2,12,0],[24,6,12,0,"_expoVectorIcons"],[24,22,12,0],[24,25,12,0,"require"],[24,32,12,0],[24,33,12,0,"_dependencyMap"],[24,47,12,0],[25,2,13,0],[25,6,13,0,"_expoLinearGradient"],[25,25,13,0],[25,28,13,0,"require"],[25,35,13,0],[25,36,13,0,"_dependencyMap"],[25,50,13,0],[26,2,14,0],[26,6,14,0,"_constantsColors"],[26,22,14,0],[26,25,14,0,"require"],[26,32,14,0],[26,33,14,0,"_dependencyMap"],[26,47,14,0],[27,2,14,0],[27,6,14,0,"Colors"],[27,12,14,0],[27,15,14,0,"_interopDefault"],[27,30,14,0],[27,31,14,0,"_constantsColors"],[27,47,14,0],[28,2,14,44],[28,6,14,44,"_reactJsxDevRuntime"],[28,25,14,44],[28,28,14,44,"require"],[28,35,14,44],[28,36,14,44,"_dependencyMap"],[28,50,14,44],[29,2,33,15],[29,11,33,24,"ExchangeScreen"],[29,25,33,38,"ExchangeScreen"],[29,26,33,38,"_ref"],[29,30,33,38],[29,32,33,60],[30,4,33,60,"_s"],[30,6,33,60],[31,4,33,60],[31,8,33,41,"navigation"],[31,18,33,51],[31,21,33,51,"_ref"],[31,25,33,51],[31,26,33,41,"navigation"],[31,36,33,51],[32,4,34,2],[32,8,34,2,"_useState"],[32,17,34,2],[32,20,34,36],[32,24,34,36,"useState"],[32,30,34,44],[32,31,34,44,"useState"],[32,39,34,44],[32,41,34,60],[32,46,34,65],[32,47,34,66],[33,6,34,66,"_useState2"],[33,16,34,66],[33,23,34,66,"_slicedToArray"],[33,37,34,66],[33,38,34,66,"default"],[33,45,34,66],[33,47,34,66,"_useState"],[33,56,34,66],[34,6,34,9,"fromToken"],[34,15,34,18],[34,18,34,18,"_useState2"],[34,28,34,18],[35,6,34,20,"setFromToken"],[35,18,34,32],[35,21,34,32,"_useState2"],[35,31,34,32],[36,4,35,2],[36,8,35,2,"_useState3"],[36,18,35,2],[36,21,35,32],[36,25,35,32,"useState"],[36,31,35,40],[36,32,35,40,"useState"],[36,40,35,40],[36,42,35,56],[36,47,35,61],[36,48,35,62],[37,6,35,62,"_useState4"],[37,16,35,62],[37,23,35,62,"_slicedToArray"],[37,37,35,62],[37,38,35,62,"default"],[37,45,35,62],[37,47,35,62,"_useState3"],[37,57,35,62],[38,6,35,9,"toToken"],[38,13,35,16],[38,16,35,16,"_useState4"],[38,26,35,16],[39,6,35,18,"setToToken"],[39,16,35,28],[39,19,35,28,"_useState4"],[39,29,35,28],[40,4,36,2],[40,8,36,2,"_useState5"],[40,18,36,2],[40,21,36,38],[40,25,36,38,"useState"],[40,31,36,46],[40,32,36,46,"useState"],[40,40,36,46],[40,42,36,47],[40,44,36,49],[40,45,36,50],[41,6,36,50,"_useState6"],[41,16,36,50],[41,23,36,50,"_slicedToArray"],[41,37,36,50],[41,38,36,50,"default"],[41,45,36,50],[41,47,36,50,"_useState5"],[41,57,36,50],[42,6,36,9,"fromAmount"],[42,16,36,19],[42,19,36,19,"_useState6"],[42,29,36,19],[43,6,36,21,"setFromAmount"],[43,19,36,34],[43,22,36,34,"_useState6"],[43,32,36,34],[44,4,37,2],[44,8,37,2,"_useState7"],[44,18,37,2],[44,21,37,34],[44,25,37,34,"useState"],[44,31,37,42],[44,32,37,42,"useState"],[44,40,37,42],[44,42,37,43],[44,44,37,45],[44,45,37,46],[45,6,37,46,"_useState8"],[45,16,37,46],[45,23,37,46,"_slicedToArray"],[45,37,37,46],[45,38,37,46,"default"],[45,45,37,46],[45,47,37,46,"_useState7"],[45,57,37,46],[46,6,37,9,"toAmount"],[46,14,37,17],[46,17,37,17,"_useState8"],[46,27,37,17],[47,6,37,19,"setToAmount"],[47,17,37,30],[47,20,37,30,"_useState8"],[47,30,37,30],[48,4,38,2],[48,8,38,2,"_useState9"],[48,18,38,2],[48,21,38,34],[48,25,38,34,"useState"],[48,31,38,42],[48,32,38,42,"useState"],[48,40,38,42],[48,42,38,43],[48,47,38,48],[48,48,38,49],[49,6,38,49,"_useState0"],[49,16,38,49],[49,23,38,49,"_slicedToArray"],[49,37,38,49],[49,38,38,49,"default"],[49,45,38,49],[49,47,38,49,"_useState9"],[49,57,38,49],[50,6,38,9,"slippage"],[50,14,38,17],[50,17,38,17,"_useState0"],[50,27,38,17],[51,6,38,19,"setSlippage"],[51,17,38,30],[51,20,38,30,"_useState0"],[51,30,38,30],[52,4,40,2],[52,8,40,2,"_useState1"],[52,18,40,2],[52,21,40,21],[52,25,40,21,"useState"],[52,31,40,29],[52,32,40,29,"useState"],[52,40,40,29],[52,42,40,30],[53,8,41,4,"hez"],[53,11,41,7],[53,13,41,9],[53,20,41,16],[54,8,42,4,"pez"],[54,11,42,7],[54,13,42,9],[55,6,43,2],[55,7,43,3],[55,8,43,4],[56,6,43,4,"_useState10"],[56,17,43,4],[56,24,43,4,"_slicedToArray"],[56,38,43,4],[56,39,43,4,"default"],[56,46,43,4],[56,48,43,4,"_useState1"],[56,58,43,4],[57,6,40,9,"balances"],[57,14,40,17],[57,17,40,17,"_useState10"],[57,28,40,17],[58,4,45,2],[58,8,45,2,"_useState11"],[58,19,45,2],[58,22,45,25],[58,26,45,25,"useState"],[58,32,45,33],[58,33,45,33,"useState"],[58,41,45,33],[58,43,45,48],[59,8,46,4,"hezToPez"],[59,16,46,12],[59,18,46,14],[59,22,46,18],[60,8,47,4,"pezToHez"],[60,16,47,12],[60,18,47,14],[60,24,47,20],[61,8,48,4,"lastUpdated"],[61,19,48,15],[61,21,48,17],[61,25,48,21,"Date"],[61,29,48,25],[61,30,48,26],[61,31,48,27],[61,32,48,28,"toLocaleTimeString"],[61,50,48,46],[61,51,48,47],[62,6,49,2],[62,7,49,3],[62,8,49,4],[63,6,49,4,"_useState12"],[63,17,49,4],[63,24,49,4,"_slicedToArray"],[63,38,49,4],[63,39,49,4,"default"],[63,46,49,4],[63,48,49,4,"_useState11"],[63,59,49,4],[64,6,45,9,"exchangeRate"],[64,18,45,21],[64,21,45,21,"_useState12"],[64,32,45,21],[65,4,51,2],[65,8,51,2,"_useState13"],[65,19,51,2],[65,22,51,24],[65,26,51,24,"useState"],[65,32,51,32],[65,33,51,32,"useState"],[65,41,51,32],[65,43,51,48],[65,44,52,4],[66,8,53,6,"id"],[66,10,53,8],[66,12,53,10],[66,15,53,13],[67,8,54,6,"fromToken"],[67,17,54,15],[67,19,54,17],[67,24,54,22],[68,8,55,6,"toToken"],[68,15,55,13],[68,17,55,15],[68,22,55,20],[69,8,56,6,"fromAmount"],[69,18,56,16],[69,20,56,18],[69,23,56,21],[70,8,57,6,"toAmount"],[70,16,57,14],[70,18,57,16],[70,22,57,20],[71,8,58,6,"rate"],[71,12,58,10],[71,14,58,12],[71,18,58,16],[72,8,59,6,"date"],[72,12,59,10],[72,14,59,12],[72,32,59,30],[73,8,60,6,"txHash"],[73,14,60,12],[73,16,60,14],[74,6,61,4],[74,7,61,5],[74,9,62,4],[75,8,63,6,"id"],[75,10,63,8],[75,12,63,10],[75,15,63,13],[76,8,64,6,"fromToken"],[76,17,64,15],[76,19,64,17],[76,24,64,22],[77,8,65,6,"toToken"],[77,15,65,13],[77,17,65,15],[77,22,65,20],[78,8,66,6,"fromAmount"],[78,18,66,16],[78,20,66,18],[78,24,66,22],[79,8,67,6,"toAmount"],[79,16,67,14],[79,18,67,16],[79,21,67,19],[80,8,68,6,"rate"],[80,12,68,10],[80,14,68,12],[80,20,68,18],[81,8,69,6,"date"],[81,12,69,10],[81,14,69,12],[81,32,69,30],[82,8,70,6,"txHash"],[82,14,70,12],[82,16,70,14],[83,6,71,4],[83,7,71,5],[83,8,72,3],[83,9,72,4],[84,6,72,4,"_useState14"],[84,17,72,4],[84,24,72,4,"_slicedToArray"],[84,38,72,4],[84,39,72,4,"default"],[84,46,72,4],[84,48,72,4,"_useState13"],[84,59,72,4],[85,6,51,9,"swapHistory"],[85,17,51,20],[85,20,51,20,"_useState14"],[85,31,51,20],[86,4,74,2],[86,8,74,2,"useEffect"],[86,14,74,11],[86,15,74,11,"useEffect"],[86,24,74,11],[86,26,74,12],[86,32,74,18],[87,6,75,4,"calculateToAmount"],[87,23,75,21],[87,24,75,22],[87,25,75,23],[88,4,76,2],[88,5,76,3],[88,7,76,5],[88,8,76,6,"fromAmount"],[88,18,76,16],[88,20,76,18,"fromToken"],[88,29,76,27],[88,31,76,29,"toToken"],[88,38,76,36],[88,39,76,37],[88,40,76,38],[89,4,78,2],[89,8,78,8,"calculateToAmount"],[89,25,78,25],[89,28,78,28,"calculateToAmount"],[89,29,78,28],[89,34,78,34],[90,6,79,4],[90,10,79,8],[90,11,79,9,"fromAmount"],[90,21,79,19],[90,25,79,23,"parseFloat"],[90,35,79,33],[90,36,79,34,"fromAmount"],[90,46,79,44],[90,47,79,45],[90,51,79,49],[90,52,79,50],[90,54,79,52],[91,8,80,6,"setToAmount"],[91,19,80,17],[91,20,80,18],[91,22,80,20],[91,23,80,21],[92,8,81,6],[93,6,82,4],[94,6,84,4],[94,10,84,10,"amount"],[94,16,84,16],[94,19,84,19,"parseFloat"],[94,29,84,29],[94,30,84,30,"fromAmount"],[94,40,84,40],[94,41,84,41],[95,6,85,4],[95,10,85,8,"result"],[95,16,85,14],[95,19,85,17],[95,20,85,18],[96,6,87,4],[96,10,87,8,"fromToken"],[96,19,87,17],[96,24,87,22],[96,29,87,27],[96,33,87,31,"toToken"],[96,40,87,38],[96,45,87,43],[96,50,87,48],[96,52,87,50],[97,8,88,6,"result"],[97,14,88,12],[97,17,88,15,"amount"],[97,23,88,21],[97,26,88,24,"exchangeRate"],[97,38,88,36],[97,39,88,37,"hezToPez"],[97,47,88,45],[98,6,89,4],[98,7,89,5],[98,13,89,11],[98,17,89,15,"fromToken"],[98,26,89,24],[98,31,89,29],[98,36,89,34],[98,40,89,38,"toToken"],[98,47,89,45],[98,52,89,50],[98,57,89,55],[98,59,89,57],[99,8,90,6,"result"],[99,14,90,12],[99,17,90,15,"amount"],[99,23,90,21],[99,26,90,24,"exchangeRate"],[99,38,90,36],[99,39,90,37,"pezToHez"],[99,47,90,45],[100,6,91,4],[102,6,93,4],[103,6,94,4],[103,10,94,10,"slippagePercent"],[103,25,94,25],[103,28,94,28,"parseFloat"],[103,38,94,38],[103,39,94,39,"slippage"],[103,47,94,47],[103,48,94,48],[103,51,94,51],[103,54,94,54],[104,6,95,4,"result"],[104,12,95,10],[104,15,95,13,"result"],[104,21,95,19],[104,25,95,23],[104,26,95,24],[104,29,95,27,"slippagePercent"],[104,44,95,42],[104,45,95,43],[105,6,97,4,"setToAmount"],[105,17,97,15],[105,18,97,16,"result"],[105,24,97,22],[105,25,97,23,"toFixed"],[105,32,97,30],[105,33,97,31],[105,34,97,32],[105,35,97,33],[105,36,97,34],[106,4,98,2],[106,5,98,3],[107,4,100,2],[107,8,100,8,"swapTokens"],[107,18,100,18],[107,21,100,21,"swapTokens"],[107,22,100,21],[107,27,100,27],[108,6,101,4],[108,10,101,10,"newFromToken"],[108,22,101,22],[108,25,101,25,"toToken"],[108,32,101,32],[109,6,102,4],[109,10,102,10,"newToToken"],[109,20,102,20],[109,23,102,23,"fromToken"],[109,32,102,32],[110,6,103,4,"setFromToken"],[110,18,103,16],[110,19,103,17,"newFromToken"],[110,31,103,29],[110,32,103,30],[111,6,104,4,"setToToken"],[111,16,104,14],[111,17,104,15,"newToToken"],[111,27,104,25],[111,28,104,26],[112,6,105,4,"setFromAmount"],[112,19,105,17],[112,20,105,18,"toAmount"],[112,28,105,26],[112,29,105,27],[113,4,106,2],[113,5,106,3],[114,4,108,2],[114,8,108,8,"executeSwap"],[114,19,108,19],[114,22,108,22,"executeSwap"],[114,23,108,22],[114,28,108,28],[115,6,109,4],[115,10,109,8],[115,11,109,9,"fromAmount"],[115,21,109,19],[115,25,109,23,"parseFloat"],[115,35,109,33],[115,36,109,34,"fromAmount"],[115,46,109,44],[115,47,109,45],[115,51,109,49],[115,52,109,50],[115,54,109,52],[116,8,110,6,"Alert"],[116,20,110,11],[116,21,110,11,"Alert"],[116,26,110,11],[116,27,110,12,"alert"],[116,32,110,17],[116,33,110,18],[116,49,110,34],[116,51,110,36],[116,88,110,73],[116,89,110,74],[117,8,111,6],[118,6,112,4],[119,6,114,4],[119,10,114,10,"amount"],[119,16,114,16],[119,19,114,19,"parseFloat"],[119,29,114,29],[119,30,114,30,"fromAmount"],[119,40,114,40],[119,41,114,41],[120,6,115,4],[120,10,115,10,"currentBalance"],[120,24,115,24],[120,27,115,27,"fromToken"],[120,36,115,36],[120,41,115,41],[120,46,115,46],[120,49,115,49,"balances"],[120,57,115,57],[120,58,115,58,"hez"],[120,61,115,61],[120,64,115,64,"balances"],[120,72,115,72],[120,73,115,73,"pez"],[120,76,115,76],[121,6,117,4],[121,10,117,8,"amount"],[121,16,117,14],[121,19,117,17,"currentBalance"],[121,33,117,31],[121,35,117,33],[122,8,118,6,"Alert"],[122,20,118,11],[122,21,118,11,"Alert"],[122,26,118,11],[122,27,118,12,"alert"],[122,32,118,17],[122,33,118,18],[122,55,118,40],[122,57,118,42],[122,82,118,67,"fromToken"],[122,91,118,76],[122,93,118,78],[122,94,118,79],[123,8,119,6],[124,6,120,4],[125,6,122,4,"Alert"],[125,18,122,9],[125,19,122,9,"Alert"],[125,24,122,9],[125,25,122,10,"alert"],[125,30,122,15],[125,31,123,6],[125,45,123,20],[125,47,124,6],[125,55,124,14,"fromAmount"],[125,65,124,24],[125,69,124,28,"fromToken"],[125,78,124,37],[125,86,124,45,"toAmount"],[125,94,124,53],[125,98,124,57,"toToken"],[125,105,124,64],[125,121,124,80,"fromToken"],[125,130,124,89],[125,136,125,8,"fromToken"],[125,145,125,17],[125,150,125,22],[125,155,125,27],[125,158,125,30,"exchangeRate"],[125,170,125,42],[125,171,125,43,"hezToPez"],[125,179,125,51],[125,182,125,54,"exchangeRate"],[125,194,125,66],[125,195,125,67,"pezToHez"],[125,203,125,75],[125,207,126,10,"toToken"],[125,214,126,17],[125,229,126,32,"slippage"],[125,237,126,40],[125,240,126,43],[125,242,127,6],[125,243,128,8],[126,8,128,10,"text"],[126,12,128,14],[126,14,128,16],[126,22,128,24],[127,8,128,26,"style"],[127,13,128,31],[127,15,128,33],[128,6,128,42],[128,7,128,43],[128,9,129,8],[129,8,130,10,"text"],[129,12,130,14],[129,14,130,16],[129,23,130,25],[130,8,131,10,"onPress"],[130,15,131,17],[130,17,131,19,"onPress"],[130,18,131,19],[130,23,131,25],[131,10,132,12,"Alert"],[131,22,132,17],[131,23,132,17,"Alert"],[131,28,132,17],[131,29,132,18,"alert"],[131,34,132,23],[131,35,133,14],[131,45,133,24],[131,47,134,14],[131,101,134,68,"Math"],[131,105,134,72],[131,106,134,73,"random"],[131,112,134,79],[131,113,134,80],[131,114,134,81],[131,115,135,17,"toString"],[131,123,135,25],[131,124,135,26],[131,126,135,28],[131,127,135,29],[131,128,136,17,"substr"],[131,134,136,23],[131,135,136,24],[131,136,136,25],[131,138,136,27],[131,139,136,28],[131,140,136,29],[131,145,137,12],[131,146,137,13],[132,10,138,12,"setFromAmount"],[132,23,138,25],[132,24,138,26],[132,26,138,28],[132,27,138,29],[133,10,139,12,"setToAmount"],[133,21,139,23],[133,22,139,24],[133,24,139,26],[133,25,139,27],[134,8,140,10],[135,6,141,8],[135,7,141,9],[135,8,143,4],[135,9,143,5],[136,4,144,2],[136,5,144,3],[137,4,146,2],[137,8,146,8,"setMaxAmount"],[137,20,146,20],[137,23,146,23,"setMaxAmount"],[137,24,146,23],[137,29,146,29],[138,6,147,4],[138,10,147,10,"maxBalance"],[138,20,147,20],[138,23,147,23,"fromToken"],[138,32,147,32],[138,37,147,37],[138,42,147,42],[138,45,147,45,"balances"],[138,53,147,53],[138,54,147,54,"hez"],[138,57,147,57],[138,60,147,60,"balances"],[138,68,147,68],[138,69,147,69,"pez"],[138,72,147,72],[139,6,148,4,"setFromAmount"],[139,19,148,17],[139,20,148,18,"maxBalance"],[139,30,148,28],[139,31,148,29,"toString"],[139,39,148,37],[139,40,148,38],[139,41,148,39],[139,42,148,40],[140,4,149,2],[140,5,149,3],[141,4,151,2],[141,8,151,8,"getCurrentRate"],[141,22,151,22],[141,25,151,25,"getCurrentRate"],[141,26,151,25],[141,31,151,31],[142,6,152,4],[142,13,152,11,"fromToken"],[142,22,152,20],[142,27,152,25],[142,32,152,30],[142,35,152,33,"exchangeRate"],[142,47,152,45],[142,48,152,46,"hezToPez"],[142,56,152,54],[142,59,152,57,"exchangeRate"],[142,71,152,69],[142,72,152,70,"pezToHez"],[142,80,152,78],[143,4,153,2],[143,5,153,3],[144,4,155,2],[144,24,156,4],[144,28,156,4,"_reactJsxDevRuntime"],[144,47,156,4],[144,48,156,4,"jsxDEV"],[144,54,156,4],[144,56,156,5,"_reactNative"],[144,68,156,17],[144,69,156,17,"SafeAreaView"],[144,81,156,17],[145,6,156,18,"style"],[145,11,156,23],[145,13,156,25,"styles"],[145,19,156,31],[145,20,156,32,"container"],[145,29,156,42],[146,6,156,42,"children"],[146,14,156,42],[146,29,157,6],[146,33,157,6,"_reactJsxDevRuntime"],[146,52,157,6],[146,53,157,6,"jsxDEV"],[146,59,157,6],[146,61,157,7,"_reactNative"],[146,73,157,17],[146,74,157,17,"ScrollView"],[146,84,157,17],[147,8,157,18,"showsVerticalScrollIndicator"],[147,36,157,46],[147,38,157,48],[147,43,157,54],[148,8,157,54,"children"],[148,16,157,54],[148,32,159,8],[148,36,159,8,"_reactJsxDevRuntime"],[148,55,159,8],[148,56,159,8,"jsxDEV"],[148,62,159,8],[148,64,159,9,"_expoLinearGradient"],[148,83,159,23],[148,84,159,23,"LinearGradient"],[148,98,159,23],[149,10,160,10,"colors"],[149,16,160,16],[149,18,160,18],[149,19,160,19,"Colors"],[149,25,160,25],[149,26,160,25,"default"],[149,33,160,25],[149,34,160,26,"primary"],[149,41,160,33],[149,43,160,35,"Colors"],[149,49,160,41],[149,50,160,41,"default"],[149,57,160,41],[149,58,160,42,"kurdishGold"],[149,69,160,53],[149,70,160,55],[150,10,161,10,"style"],[150,15,161,15],[150,17,161,17,"styles"],[150,23,161,23],[150,24,161,24,"header"],[150,30,161,31],[151,10,162,10,"start"],[151,15,162,15],[151,17,162,17],[152,12,162,19,"x"],[152,13,162,20],[152,15,162,22],[152,16,162,23],[153,12,162,25,"y"],[153,13,162,26],[153,15,162,28],[154,10,162,30],[154,11,162,32],[155,10,163,10,"end"],[155,13,163,13],[155,15,163,15],[156,12,163,17,"x"],[156,13,163,18],[156,15,163,20],[156,16,163,21],[157,12,163,23,"y"],[157,13,163,24],[157,15,163,26],[158,10,163,28],[158,11,163,30],[159,10,163,30,"children"],[159,18,163,30],[159,33,165,10],[159,37,165,10,"_reactJsxDevRuntime"],[159,56,165,10],[159,57,165,10,"jsxDEV"],[159,63,165,10],[159,65,165,11,"_reactNative"],[159,77,165,15],[159,78,165,15,"View"],[159,82,165,15],[160,12,165,16,"style"],[160,17,165,21],[160,19,165,23,"styles"],[160,25,165,29],[160,26,165,30,"headerContent"],[160,39,165,44],[161,12,165,44,"children"],[161,20,165,44],[161,36,166,12],[161,40,166,12,"_reactJsxDevRuntime"],[161,59,166,12],[161,60,166,12,"jsxDEV"],[161,66,166,12],[161,68,166,13,"_reactNative"],[161,80,166,17],[161,81,166,17,"View"],[161,85,166,17],[162,14,166,17,"children"],[162,22,166,17],[162,38,167,14],[162,42,167,14,"_reactJsxDevRuntime"],[162,61,167,14],[162,62,167,14,"jsxDEV"],[162,68,167,14],[162,70,167,15,"_reactNative"],[162,82,167,19],[162,83,167,19,"Text"],[162,87,167,19],[163,16,167,20,"style"],[163,21,167,25],[163,23,167,27,"styles"],[163,29,167,33],[163,30,167,34,"headerTitle"],[163,41,167,46],[164,16,167,46,"children"],[164,24,167,46],[164,26,167,47],[165,14,167,55],[166,16,167,55,"fileName"],[166,24,167,55],[166,26,167,55,"_jsxFileName"],[166,38,167,55],[167,16,167,55,"lineNumber"],[167,26,167,55],[168,16,167,55,"columnNumber"],[168,28,167,55],[169,14,167,55],[169,21,167,61],[169,22,167,62],[169,37,168,14],[169,41,168,14,"_reactJsxDevRuntime"],[169,60,168,14],[169,61,168,14,"jsxDEV"],[169,67,168,14],[169,69,168,15,"_reactNative"],[169,81,168,19],[169,82,168,19,"Text"],[169,86,168,19],[170,16,168,20,"style"],[170,21,168,25],[170,23,168,27,"styles"],[170,29,168,33],[170,30,168,34,"headerSubtitle"],[170,44,168,49],[171,16,168,49,"children"],[171,24,168,49],[171,26,168,50],[172,14,168,71],[173,16,168,71,"fileName"],[173,24,168,71],[173,26,168,71,"_jsxFileName"],[173,38,168,71],[174,16,168,71,"lineNumber"],[174,26,168,71],[175,16,168,71,"columnNumber"],[175,28,168,71],[176,14,168,71],[176,21,168,77],[176,22,168,78],[177,12,168,78],[178,14,168,78,"fileName"],[178,22,168,78],[178,24,168,78,"_jsxFileName"],[178,36,168,78],[179,14,168,78,"lineNumber"],[179,24,168,78],[180,14,168,78,"columnNumber"],[180,26,168,78],[181,12,168,78],[181,19,169,18],[181,20,169,19],[181,35,170,12],[181,39,170,12,"_reactJsxDevRuntime"],[181,58,170,12],[181,59,170,12,"jsxDEV"],[181,65,170,12],[181,67,170,13,"_reactNative"],[181,79,170,29],[181,80,170,29,"TouchableOpacity"],[181,96,170,29],[182,14,171,14,"style"],[182,19,171,19],[182,21,171,21,"styles"],[182,27,171,27],[182,28,171,28,"historyButton"],[182,41,171,42],[183,14,172,14,"onPress"],[183,21,172,21],[183,23,172,23,"onPress"],[183,24,172,23],[183,29,172,29,"Alert"],[183,41,172,34],[183,42,172,34,"Alert"],[183,47,172,34],[183,48,172,35,"alert"],[183,53,172,40],[183,54,172,41],[183,63,172,50],[183,65,172,52],[183,96,172,83],[183,97,172,85],[184,14,172,85,"children"],[184,22,172,85],[184,37,174,14],[184,41,174,14,"_reactJsxDevRuntime"],[184,60,174,14],[184,61,174,14,"jsxDEV"],[184,67,174,14],[184,69,174,15,"_expoVectorIcons"],[184,85,174,23],[184,86,174,23,"Ionicons"],[184,94,174,23],[185,16,174,24,"name"],[185,20,174,28],[185,22,174,29],[185,36,174,43],[186,16,174,44,"size"],[186,20,174,48],[186,22,174,50],[186,24,174,53],[187,16,174,54,"color"],[187,21,174,59],[187,23,174,60],[188,14,174,67],[189,16,174,67,"fileName"],[189,24,174,67],[189,26,174,67,"_jsxFileName"],[189,38,174,67],[190,16,174,67,"lineNumber"],[190,26,174,67],[191,16,174,67,"columnNumber"],[191,28,174,67],[192,14,174,67],[192,21,174,69],[193,12,174,70],[194,14,174,70,"fileName"],[194,22,174,70],[194,24,174,70,"_jsxFileName"],[194,36,174,70],[195,14,174,70,"lineNumber"],[195,24,174,70],[196,14,174,70,"columnNumber"],[196,26,174,70],[197,12,174,70],[197,19,175,30],[197,20,175,31],[198,10,175,31],[199,12,175,31,"fileName"],[199,20,175,31],[199,22,175,31,"_jsxFileName"],[199,34,175,31],[200,12,175,31,"lineNumber"],[200,22,175,31],[201,12,175,31,"columnNumber"],[201,24,175,31],[202,10,175,31],[202,17,176,16],[203,8,176,17],[204,10,176,17,"fileName"],[204,18,176,17],[204,20,176,17,"_jsxFileName"],[204,32,176,17],[205,10,176,17,"lineNumber"],[205,20,176,17],[206,10,176,17,"columnNumber"],[206,22,176,17],[207,8,176,17],[207,15,177,24],[207,16,177,25],[207,31,180,8],[207,35,180,8,"_reactJsxDevRuntime"],[207,54,180,8],[207,55,180,8,"jsxDEV"],[207,61,180,8],[207,63,180,9,"_reactNative"],[207,75,180,13],[207,76,180,13,"View"],[207,80,180,13],[208,10,180,14,"style"],[208,15,180,19],[208,17,180,21,"styles"],[208,23,180,27],[208,24,180,28,"rateContainer"],[208,37,180,42],[209,10,180,42,"children"],[209,18,180,42],[209,33,181,10],[209,37,181,10,"_reactJsxDevRuntime"],[209,56,181,10],[209,57,181,10,"jsxDEV"],[209,63,181,10],[209,65,181,11,"_reactNative"],[209,77,181,15],[209,78,181,15,"View"],[209,82,181,15],[210,12,181,16,"style"],[210,17,181,21],[210,19,181,23,"styles"],[210,25,181,29],[210,26,181,30,"rateCard"],[210,34,181,39],[211,12,181,39,"children"],[211,20,181,39],[211,36,182,12],[211,40,182,12,"_reactJsxDevRuntime"],[211,59,182,12],[211,60,182,12,"jsxDEV"],[211,66,182,12],[211,68,182,13,"_reactNative"],[211,80,182,17],[211,81,182,17,"View"],[211,85,182,17],[212,14,182,18,"style"],[212,19,182,23],[212,21,182,25,"styles"],[212,27,182,31],[212,28,182,32,"rateHeader"],[212,38,182,43],[213,14,182,43,"children"],[213,22,182,43],[213,38,183,14],[213,42,183,14,"_reactJsxDevRuntime"],[213,61,183,14],[213,62,183,14,"jsxDEV"],[213,68,183,14],[213,70,183,15,"_reactNative"],[213,82,183,19],[213,83,183,19,"Text"],[213,87,183,19],[214,16,183,20,"style"],[214,21,183,25],[214,23,183,27,"styles"],[214,29,183,33],[214,30,183,34,"rateTitle"],[214,39,183,44],[215,16,183,44,"children"],[215,24,183,44],[215,26,183,45],[216,14,183,66],[217,16,183,66,"fileName"],[217,24,183,66],[217,26,183,66,"_jsxFileName"],[217,38,183,66],[218,16,183,66,"lineNumber"],[218,26,183,66],[219,16,183,66,"columnNumber"],[219,28,183,66],[220,14,183,66],[220,21,183,72],[220,22,183,73],[220,37,184,14],[220,41,184,14,"_reactJsxDevRuntime"],[220,60,184,14],[220,61,184,14,"jsxDEV"],[220,67,184,14],[220,69,184,15,"_reactNative"],[220,81,184,19],[220,82,184,19,"View"],[220,86,184,19],[221,16,184,20,"style"],[221,21,184,25],[221,23,184,27,"styles"],[221,29,184,33],[221,30,184,34,"updateBadge"],[221,41,184,46],[222,16,184,46,"children"],[222,24,184,46],[222,40,185,16],[222,44,185,16,"_reactJsxDevRuntime"],[222,63,185,16],[222,64,185,16,"jsxDEV"],[222,70,185,16],[222,72,185,17,"_expoVectorIcons"],[222,88,185,25],[222,89,185,25,"Ionicons"],[222,97,185,25],[223,18,185,26,"name"],[223,22,185,30],[223,24,185,31],[223,30,185,37],[224,18,185,38,"size"],[224,22,185,42],[224,24,185,44],[224,26,185,47],[225,18,185,48,"color"],[225,23,185,53],[225,25,185,55,"Colors"],[225,31,185,61],[225,32,185,61,"default"],[225,39,185,61],[225,40,185,62,"success"],[226,16,185,70],[227,18,185,70,"fileName"],[227,26,185,70],[227,28,185,70,"_jsxFileName"],[227,40,185,70],[228,18,185,70,"lineNumber"],[228,28,185,70],[229,18,185,70,"columnNumber"],[229,30,185,70],[230,16,185,70],[230,23,185,72],[230,24,185,73],[230,39,186,16],[230,43,186,16,"_reactJsxDevRuntime"],[230,62,186,16],[230,63,186,16,"jsxDEV"],[230,69,186,16],[230,71,186,17,"_reactNative"],[230,83,186,21],[230,84,186,21,"Text"],[230,88,186,21],[231,18,186,22,"style"],[231,23,186,27],[231,25,186,29,"styles"],[231,31,186,35],[231,32,186,36,"updateText"],[231,42,186,47],[232,18,186,47,"children"],[232,26,186,47],[232,28,186,48],[233,16,186,52],[234,18,186,52,"fileName"],[234,26,186,52],[234,28,186,52,"_jsxFileName"],[234,40,186,52],[235,18,186,52,"lineNumber"],[235,28,186,52],[236,18,186,52,"columnNumber"],[236,30,186,52],[237,16,186,52],[237,23,186,58],[237,24,186,59],[238,14,186,59],[239,16,186,59,"fileName"],[239,24,186,59],[239,26,186,59,"_jsxFileName"],[239,38,186,59],[240,16,186,59,"lineNumber"],[240,26,186,59],[241,16,186,59,"columnNumber"],[241,28,186,59],[242,14,186,59],[242,21,187,20],[242,22,187,21],[243,12,187,21],[244,14,187,21,"fileName"],[244,22,187,21],[244,24,187,21,"_jsxFileName"],[244,36,187,21],[245,14,187,21,"lineNumber"],[245,24,187,21],[246,14,187,21,"columnNumber"],[246,26,187,21],[247,12,187,21],[247,19,188,18],[247,20,188,19],[247,35,189,12],[247,39,189,12,"_reactJsxDevRuntime"],[247,58,189,12],[247,59,189,12,"jsxDEV"],[247,65,189,12],[247,67,189,13,"_reactNative"],[247,79,189,17],[247,80,189,17,"View"],[247,84,189,17],[248,14,189,18,"style"],[248,19,189,23],[248,21,189,25,"styles"],[248,27,189,31],[248,28,189,32,"rateContent"],[248,39,189,44],[249,14,189,44,"children"],[249,22,189,44],[249,38,190,14],[249,42,190,14,"_reactJsxDevRuntime"],[249,61,190,14],[249,62,190,14,"jsxDEV"],[249,68,190,14],[249,70,190,15,"_reactNative"],[249,82,190,19],[249,83,190,19,"View"],[249,87,190,19],[250,16,190,20,"style"],[250,21,190,25],[250,23,190,27,"styles"],[250,29,190,33],[250,30,190,34,"rateItem"],[250,38,190,43],[251,16,190,43,"children"],[251,24,190,43],[251,40,191,16],[251,44,191,16,"_reactJsxDevRuntime"],[251,63,191,16],[251,64,191,16,"jsxDEV"],[251,70,191,16],[251,72,191,17,"_reactNative"],[251,84,191,21],[251,85,191,21,"Text"],[251,89,191,21],[252,18,191,22,"style"],[252,23,191,27],[252,25,191,29,"styles"],[252,31,191,35],[252,32,191,36,"rateLabel"],[252,41,191,46],[253,18,191,46,"children"],[253,26,191,46],[253,28,191,47],[254,16,191,54],[255,18,191,54,"fileName"],[255,26,191,54],[255,28,191,54,"_jsxFileName"],[255,40,191,54],[256,18,191,54,"lineNumber"],[256,28,191,54],[257,18,191,54,"columnNumber"],[257,30,191,54],[258,16,191,54],[258,23,191,60],[258,24,191,61],[258,39,192,16],[258,43,192,16,"_reactJsxDevRuntime"],[258,62,192,16],[258,63,192,16,"jsxDEV"],[258,69,192,16],[258,71,192,17,"_reactNative"],[258,83,192,21],[258,84,192,21,"Text"],[258,88,192,21],[259,18,192,22,"style"],[259,23,192,27],[259,25,192,29,"styles"],[259,31,192,35],[259,32,192,36,"rateValue"],[259,41,192,46],[260,18,192,46,"children"],[260,26,192,46],[260,29,192,48,"exchangeRate"],[260,41,192,60],[260,42,192,61,"hezToPez"],[260,50,192,69],[260,52,192,70],[260,58,192,74],[261,16,192,74],[262,18,192,74,"fileName"],[262,26,192,74],[262,28,192,74,"_jsxFileName"],[262,40,192,74],[263,18,192,74,"lineNumber"],[263,28,192,74],[264,18,192,74,"columnNumber"],[264,30,192,74],[265,16,192,74],[265,23,192,80],[265,24,192,81],[266,14,192,81],[267,16,192,81,"fileName"],[267,24,192,81],[267,26,192,81,"_jsxFileName"],[267,38,192,81],[268,16,192,81,"lineNumber"],[268,26,192,81],[269,16,192,81,"columnNumber"],[269,28,192,81],[270,14,192,81],[270,21,193,20],[270,22,193,21],[270,37,194,14],[270,41,194,14,"_reactJsxDevRuntime"],[270,60,194,14],[270,61,194,14,"jsxDEV"],[270,67,194,14],[270,69,194,15,"_reactNative"],[270,81,194,19],[270,82,194,19,"View"],[270,86,194,19],[271,16,194,20,"style"],[271,21,194,25],[271,23,194,27,"styles"],[271,29,194,33],[271,30,194,34,"rateDivider"],[272,14,194,46],[273,16,194,46,"fileName"],[273,24,194,46],[273,26,194,46,"_jsxFileName"],[273,38,194,46],[274,16,194,46,"lineNumber"],[274,26,194,46],[275,16,194,46,"columnNumber"],[275,28,194,46],[276,14,194,46],[276,21,194,48],[276,22,194,49],[276,37,195,14],[276,41,195,14,"_reactJsxDevRuntime"],[276,60,195,14],[276,61,195,14,"jsxDEV"],[276,67,195,14],[276,69,195,15,"_reactNative"],[276,81,195,19],[276,82,195,19,"View"],[276,86,195,19],[277,16,195,20,"style"],[277,21,195,25],[277,23,195,27,"styles"],[277,29,195,33],[277,30,195,34,"rateItem"],[277,38,195,43],[278,16,195,43,"children"],[278,24,195,43],[278,40,196,16],[278,44,196,16,"_reactJsxDevRuntime"],[278,63,196,16],[278,64,196,16,"jsxDEV"],[278,70,196,16],[278,72,196,17,"_reactNative"],[278,84,196,21],[278,85,196,21,"Text"],[278,89,196,21],[279,18,196,22,"style"],[279,23,196,27],[279,25,196,29,"styles"],[279,31,196,35],[279,32,196,36,"rateLabel"],[279,41,196,46],[280,18,196,46,"children"],[280,26,196,46],[280,28,196,47],[281,16,196,54],[282,18,196,54,"fileName"],[282,26,196,54],[282,28,196,54,"_jsxFileName"],[282,40,196,54],[283,18,196,54,"lineNumber"],[283,28,196,54],[284,18,196,54,"columnNumber"],[284,30,196,54],[285,16,196,54],[285,23,196,60],[285,24,196,61],[285,39,197,16],[285,43,197,16,"_reactJsxDevRuntime"],[285,62,197,16],[285,63,197,16,"jsxDEV"],[285,69,197,16],[285,71,197,17,"_reactNative"],[285,83,197,21],[285,84,197,21,"Text"],[285,88,197,21],[286,18,197,22,"style"],[286,23,197,27],[286,25,197,29,"styles"],[286,31,197,35],[286,32,197,36,"rateValue"],[286,41,197,46],[287,18,197,46,"children"],[287,26,197,46],[287,29,197,48,"exchangeRate"],[287,41,197,60],[287,42,197,61,"pezToHez"],[287,50,197,69],[287,52,197,70],[287,58,197,74],[288,16,197,74],[289,18,197,74,"fileName"],[289,26,197,74],[289,28,197,74,"_jsxFileName"],[289,40,197,74],[290,18,197,74,"lineNumber"],[290,28,197,74],[291,18,197,74,"columnNumber"],[291,30,197,74],[292,16,197,74],[292,23,197,80],[292,24,197,81],[293,14,197,81],[294,16,197,81,"fileName"],[294,24,197,81],[294,26,197,81,"_jsxFileName"],[294,38,197,81],[295,16,197,81,"lineNumber"],[295,26,197,81],[296,16,197,81,"columnNumber"],[296,28,197,81],[297,14,197,81],[297,21,198,20],[297,22,198,21],[298,12,198,21],[299,14,198,21,"fileName"],[299,22,198,21],[299,24,198,21,"_jsxFileName"],[299,36,198,21],[300,14,198,21,"lineNumber"],[300,24,198,21],[301,14,198,21,"columnNumber"],[301,26,198,21],[302,12,198,21],[302,19,199,18],[302,20,199,19],[302,35,200,12],[302,39,200,12,"_reactJsxDevRuntime"],[302,58,200,12],[302,59,200,12,"jsxDEV"],[302,65,200,12],[302,67,200,13,"_reactNative"],[302,79,200,17],[302,80,200,17,"Text"],[302,84,200,17],[303,14,200,18,"style"],[303,19,200,23],[303,21,200,25,"styles"],[303,27,200,31],[303,28,200,32,"rateUpdate"],[303,38,200,43],[304,14,200,43,"children"],[304,22,200,43],[304,25,200,44],[304,41,201,28],[304,43,201,29,"exchangeRate"],[304,55,201,41],[304,56,201,42,"lastUpdated"],[304,67,201,53],[305,12,201,53],[306,14,201,53,"fileName"],[306,22,201,53],[306,24,201,53,"_jsxFileName"],[306,36,201,53],[307,14,201,53,"lineNumber"],[307,24,201,53],[308,14,201,53,"columnNumber"],[308,26,201,53],[309,12,201,53],[309,19,202,18],[309,20,202,19],[310,10,202,19],[311,12,202,19,"fileName"],[311,20,202,19],[311,22,202,19,"_jsxFileName"],[311,34,202,19],[312,12,202,19,"lineNumber"],[312,22,202,19],[313,12,202,19,"columnNumber"],[313,24,202,19],[314,10,202,19],[314,17,203,16],[315,8,203,17],[316,10,203,17,"fileName"],[316,18,203,17],[316,20,203,17,"_jsxFileName"],[316,32,203,17],[317,10,203,17,"lineNumber"],[317,20,203,17],[318,10,203,17,"columnNumber"],[318,22,203,17],[319,8,203,17],[319,15,204,14],[319,16,204,15],[319,31,207,8],[319,35,207,8,"_reactJsxDevRuntime"],[319,54,207,8],[319,55,207,8,"jsxDEV"],[319,61,207,8],[319,63,207,9,"_reactNative"],[319,75,207,13],[319,76,207,13,"View"],[319,80,207,13],[320,10,207,14,"style"],[320,15,207,19],[320,17,207,21,"styles"],[320,23,207,27],[320,24,207,28,"section"],[320,31,207,36],[321,10,207,36,"children"],[321,18,207,36],[321,34,208,10],[321,38,208,10,"_reactJsxDevRuntime"],[321,57,208,10],[321,58,208,10,"jsxDEV"],[321,64,208,10],[321,66,208,11,"_reactNative"],[321,78,208,15],[321,79,208,15,"Text"],[321,83,208,15],[322,12,208,16,"style"],[322,17,208,21],[322,19,208,23,"styles"],[322,25,208,29],[322,26,208,30,"sectionTitle"],[322,38,208,43],[323,12,208,43,"children"],[323,20,208,43],[323,22,208,44],[324,10,208,55],[325,12,208,55,"fileName"],[325,20,208,55],[325,22,208,55,"_jsxFileName"],[325,34,208,55],[326,12,208,55,"lineNumber"],[326,22,208,55],[327,12,208,55,"columnNumber"],[327,24,208,55],[328,10,208,55],[328,17,208,61],[328,18,208,62],[328,33,211,10],[328,37,211,10,"_reactJsxDevRuntime"],[328,56,211,10],[328,57,211,10,"jsxDEV"],[328,63,211,10],[328,65,211,11,"_reactNative"],[328,77,211,15],[328,78,211,15,"View"],[328,82,211,15],[329,12,211,16,"style"],[329,17,211,21],[329,19,211,23,"styles"],[329,25,211,29],[329,26,211,30,"swapCard"],[329,34,211,39],[330,12,211,39,"children"],[330,20,211,39],[330,36,212,12],[330,40,212,12,"_reactJsxDevRuntime"],[330,59,212,12],[330,60,212,12,"jsxDEV"],[330,66,212,12],[330,68,212,13,"_reactNative"],[330,80,212,17],[330,81,212,17,"View"],[330,85,212,17],[331,14,212,18,"style"],[331,19,212,23],[331,21,212,25,"styles"],[331,27,212,31],[331,28,212,32,"swapHeader"],[331,38,212,43],[332,14,212,43,"children"],[332,22,212,43],[332,38,213,14],[332,42,213,14,"_reactJsxDevRuntime"],[332,61,213,14],[332,62,213,14,"jsxDEV"],[332,68,213,14],[332,70,213,15,"_reactNative"],[332,82,213,19],[332,83,213,19,"Text"],[332,87,213,19],[333,16,213,20,"style"],[333,21,213,25],[333,23,213,27,"styles"],[333,29,213,33],[333,30,213,34,"swapLabel"],[333,39,213,44],[334,16,213,44,"children"],[334,24,213,44],[334,26,213,45],[335,14,213,49],[336,16,213,49,"fileName"],[336,24,213,49],[336,26,213,49,"_jsxFileName"],[336,38,213,49],[337,16,213,49,"lineNumber"],[337,26,213,49],[338,16,213,49,"columnNumber"],[338,28,213,49],[339,14,213,49],[339,21,213,55],[339,22,213,56],[339,37,214,14],[339,41,214,14,"_reactJsxDevRuntime"],[339,60,214,14],[339,61,214,14,"jsxDEV"],[339,67,214,14],[339,69,214,15,"_reactNative"],[339,81,214,19],[339,82,214,19,"Text"],[339,86,214,19],[340,16,214,20,"style"],[340,21,214,25],[340,23,214,27,"styles"],[340,29,214,33],[340,30,214,34,"balanceText"],[340,41,214,46],[341,16,214,46,"children"],[341,24,214,46],[341,27,214,47],[341,38,215,25],[341,40,215,26,"fromToken"],[341,49,215,35],[341,54,215,40],[341,59,215,45],[341,62,215,48,"balances"],[341,70,215,56],[341,71,215,57,"hez"],[341,74,215,60],[341,75,215,61,"toLocaleString"],[341,89,215,75],[341,90,215,76],[341,91,215,77],[341,94,215,80,"balances"],[341,102,215,88],[341,103,215,89,"pez"],[341,106,215,92],[341,107,215,93,"toLocaleString"],[341,121,215,107],[341,122,215,108],[341,123,215,109],[341,125,215,110],[341,128,215,111],[341,130,215,112,"fromToken"],[341,139,215,121],[342,14,215,121],[343,16,215,121,"fileName"],[343,24,215,121],[343,26,215,121,"_jsxFileName"],[343,38,215,121],[344,16,215,121,"lineNumber"],[344,26,215,121],[345,16,215,121,"columnNumber"],[345,28,215,121],[346,14,215,121],[346,21,216,20],[346,22,216,21],[347,12,216,21],[348,14,216,21,"fileName"],[348,22,216,21],[348,24,216,21,"_jsxFileName"],[348,36,216,21],[349,14,216,21,"lineNumber"],[349,24,216,21],[350,14,216,21,"columnNumber"],[350,26,216,21],[351,12,216,21],[351,19,217,18],[351,20,217,19],[351,35,218,12],[351,39,218,12,"_reactJsxDevRuntime"],[351,58,218,12],[351,59,218,12,"jsxDEV"],[351,65,218,12],[351,67,218,13,"_reactNative"],[351,79,218,17],[351,80,218,17,"View"],[351,84,218,17],[352,14,218,18,"style"],[352,19,218,23],[352,21,218,25,"styles"],[352,27,218,31],[352,28,218,32,"inputContainer"],[352,42,218,47],[353,14,218,47,"children"],[353,22,218,47],[353,38,219,14],[353,42,219,14,"_reactJsxDevRuntime"],[353,61,219,14],[353,62,219,14,"jsxDEV"],[353,68,219,14],[353,70,219,15,"_reactNative"],[353,82,219,24],[353,83,219,24,"TextInput"],[353,92,219,24],[354,16,220,16,"style"],[354,21,220,21],[354,23,220,23,"styles"],[354,29,220,29],[354,30,220,30,"amountInput"],[354,41,220,42],[355,16,221,16,"placeholder"],[355,27,221,27],[355,29,221,28],[355,35,221,34],[356,16,222,16,"keyboardType"],[356,28,222,28],[356,30,222,29],[356,43,222,42],[357,16,223,16,"value"],[357,21,223,21],[357,23,223,23,"fromAmount"],[357,33,223,34],[358,16,224,16,"onChangeText"],[358,28,224,28],[358,30,224,30,"setFromAmount"],[359,14,224,44],[360,16,224,44,"fileName"],[360,24,224,44],[360,26,224,44,"_jsxFileName"],[360,38,224,44],[361,16,224,44,"lineNumber"],[361,26,224,44],[362,16,224,44,"columnNumber"],[362,28,224,44],[363,14,224,44],[363,21,225,15],[363,22,225,16],[363,37,226,14],[363,41,226,14,"_reactJsxDevRuntime"],[363,60,226,14],[363,61,226,14,"jsxDEV"],[363,67,226,14],[363,69,226,15,"_reactNative"],[363,81,226,19],[363,82,226,19,"View"],[363,86,226,19],[364,16,226,20,"style"],[364,21,226,25],[364,23,226,27,"styles"],[364,29,226,33],[364,30,226,34,"tokenSelector"],[364,43,226,48],[365,16,226,48,"children"],[365,24,226,48],[365,40,227,16],[365,44,227,16,"_reactJsxDevRuntime"],[365,63,227,16],[365,64,227,16,"jsxDEV"],[365,70,227,16],[365,72,227,17,"_reactNative"],[365,84,227,21],[365,85,227,21,"View"],[365,89,227,21],[366,18,227,22,"style"],[366,23,227,27],[366,25,227,29,"styles"],[366,31,227,35],[366,32,227,36,"tokenBadge"],[366,42,227,47],[367,18,227,47,"children"],[367,26,227,47],[367,41,228,18],[367,45,228,18,"_reactJsxDevRuntime"],[367,64,228,18],[367,65,228,18,"jsxDEV"],[367,71,228,18],[367,73,228,19,"_reactNative"],[367,85,228,23],[367,86,228,23,"Text"],[367,90,228,23],[368,20,228,24,"style"],[368,25,228,29],[368,27,228,31,"styles"],[368,33,228,37],[368,34,228,38,"tokenText"],[368,43,228,48],[369,20,228,48,"children"],[369,28,228,48],[369,30,228,50,"fromToken"],[370,18,228,59],[371,20,228,59,"fileName"],[371,28,228,59],[371,30,228,59,"_jsxFileName"],[371,42,228,59],[372,20,228,59,"lineNumber"],[372,30,228,59],[373,20,228,59,"columnNumber"],[373,32,228,59],[374,18,228,59],[374,25,228,66],[375,16,228,67],[376,18,228,67,"fileName"],[376,26,228,67],[376,28,228,67,"_jsxFileName"],[376,40,228,67],[377,18,228,67,"lineNumber"],[377,28,228,67],[378,18,228,67,"columnNumber"],[378,30,228,67],[379,16,228,67],[379,23,229,22],[379,24,229,23],[379,39,230,16],[379,43,230,16,"_reactJsxDevRuntime"],[379,62,230,16],[379,63,230,16,"jsxDEV"],[379,69,230,16],[379,71,230,17,"_reactNative"],[379,83,230,33],[379,84,230,33,"TouchableOpacity"],[379,100,230,33],[380,18,230,34,"onPress"],[380,25,230,41],[380,27,230,43,"setMaxAmount"],[380,39,230,56],[381,18,230,57,"style"],[381,23,230,62],[381,25,230,64,"styles"],[381,31,230,70],[381,32,230,71,"maxButton"],[381,41,230,81],[382,18,230,81,"children"],[382,26,230,81],[382,41,231,18],[382,45,231,18,"_reactJsxDevRuntime"],[382,64,231,18],[382,65,231,18,"jsxDEV"],[382,71,231,18],[382,73,231,19,"_reactNative"],[382,85,231,23],[382,86,231,23,"Text"],[382,90,231,23],[383,20,231,24,"style"],[383,25,231,29],[383,27,231,31,"styles"],[383,33,231,37],[383,34,231,38,"maxButtonText"],[383,47,231,52],[384,20,231,52,"children"],[384,28,231,52],[384,30,231,53],[385,18,231,56],[386,20,231,56,"fileName"],[386,28,231,56],[386,30,231,56,"_jsxFileName"],[386,42,231,56],[387,20,231,56,"lineNumber"],[387,30,231,56],[388,20,231,56,"columnNumber"],[388,32,231,56],[389,18,231,56],[389,25,231,62],[390,16,231,63],[391,18,231,63,"fileName"],[391,26,231,63],[391,28,231,63,"_jsxFileName"],[391,40,231,63],[392,18,231,63,"lineNumber"],[392,28,231,63],[393,18,231,63,"columnNumber"],[393,30,231,63],[394,16,231,63],[394,23,232,34],[394,24,232,35],[395,14,232,35],[396,16,232,35,"fileName"],[396,24,232,35],[396,26,232,35,"_jsxFileName"],[396,38,232,35],[397,16,232,35,"lineNumber"],[397,26,232,35],[398,16,232,35,"columnNumber"],[398,28,232,35],[399,14,232,35],[399,21,233,20],[399,22,233,21],[400,12,233,21],[401,14,233,21,"fileName"],[401,22,233,21],[401,24,233,21,"_jsxFileName"],[401,36,233,21],[402,14,233,21,"lineNumber"],[402,24,233,21],[403,14,233,21,"columnNumber"],[403,26,233,21],[404,12,233,21],[404,19,234,18],[404,20,234,19],[405,10,234,19],[406,12,234,19,"fileName"],[406,20,234,19],[406,22,234,19,"_jsxFileName"],[406,34,234,19],[407,12,234,19,"lineNumber"],[407,22,234,19],[408,12,234,19,"columnNumber"],[408,24,234,19],[409,10,234,19],[409,17,235,16],[409,18,235,17],[409,33,238,10],[409,37,238,10,"_reactJsxDevRuntime"],[409,56,238,10],[409,57,238,10,"jsxDEV"],[409,63,238,10],[409,65,238,11,"_reactNative"],[409,77,238,15],[409,78,238,15,"View"],[409,82,238,15],[410,12,238,16,"style"],[410,17,238,21],[410,19,238,23,"styles"],[410,25,238,29],[410,26,238,30,"swapButtonContainer"],[410,45,238,50],[411,12,238,50,"children"],[411,20,238,50],[411,35,239,12],[411,39,239,12,"_reactJsxDevRuntime"],[411,58,239,12],[411,59,239,12,"jsxDEV"],[411,65,239,12],[411,67,239,13,"_reactNative"],[411,79,239,29],[411,80,239,29,"TouchableOpacity"],[411,96,239,29],[412,14,240,14,"style"],[412,19,240,19],[412,21,240,21,"styles"],[412,27,240,27],[412,28,240,28,"swapIconButton"],[412,42,240,43],[413,14,241,14,"onPress"],[413,21,241,21],[413,23,241,23,"swapTokens"],[413,33,241,34],[414,14,242,14,"activeOpacity"],[414,27,242,27],[414,29,242,29],[414,32,242,33],[415,14,242,33,"children"],[415,22,242,33],[415,37,244,14],[415,41,244,14,"_reactJsxDevRuntime"],[415,60,244,14],[415,61,244,14,"jsxDEV"],[415,67,244,14],[415,69,244,15,"_expoVectorIcons"],[415,85,244,23],[415,86,244,23,"Ionicons"],[415,94,244,23],[416,16,244,24,"name"],[416,20,244,28],[416,22,244,29],[416,37,244,44],[417,16,244,45,"size"],[417,20,244,49],[417,22,244,51],[417,24,244,54],[418,16,244,55,"color"],[418,21,244,60],[418,23,244,62,"Colors"],[418,29,244,68],[418,30,244,68,"default"],[418,37,244,68],[418,38,244,69,"primary"],[419,14,244,77],[420,16,244,77,"fileName"],[420,24,244,77],[420,26,244,77,"_jsxFileName"],[420,38,244,77],[421,16,244,77,"lineNumber"],[421,26,244,77],[422,16,244,77,"columnNumber"],[422,28,244,77],[423,14,244,77],[423,21,244,79],[424,12,244,80],[425,14,244,80,"fileName"],[425,22,244,80],[425,24,244,80,"_jsxFileName"],[425,36,244,80],[426,14,244,80,"lineNumber"],[426,24,244,80],[427,14,244,80,"columnNumber"],[427,26,244,80],[428,12,244,80],[428,19,245,30],[429,10,245,31],[430,12,245,31,"fileName"],[430,20,245,31],[430,22,245,31,"_jsxFileName"],[430,34,245,31],[431,12,245,31,"lineNumber"],[431,22,245,31],[432,12,245,31,"columnNumber"],[432,24,245,31],[433,10,245,31],[433,17,246,16],[433,18,246,17],[433,33,249,10],[433,37,249,10,"_reactJsxDevRuntime"],[433,56,249,10],[433,57,249,10,"jsxDEV"],[433,63,249,10],[433,65,249,11,"_reactNative"],[433,77,249,15],[433,78,249,15,"View"],[433,82,249,15],[434,12,249,16,"style"],[434,17,249,21],[434,19,249,23,"styles"],[434,25,249,29],[434,26,249,30,"swapCard"],[434,34,249,39],[435,12,249,39,"children"],[435,20,249,39],[435,36,250,12],[435,40,250,12,"_reactJsxDevRuntime"],[435,59,250,12],[435,60,250,12,"jsxDEV"],[435,66,250,12],[435,68,250,13,"_reactNative"],[435,80,250,17],[435,81,250,17,"View"],[435,85,250,17],[436,14,250,18,"style"],[436,19,250,23],[436,21,250,25,"styles"],[436,27,250,31],[436,28,250,32,"swapHeader"],[436,38,250,43],[437,14,250,43,"children"],[437,22,250,43],[437,38,251,14],[437,42,251,14,"_reactJsxDevRuntime"],[437,61,251,14],[437,62,251,14,"jsxDEV"],[437,68,251,14],[437,70,251,15,"_reactNative"],[437,82,251,19],[437,83,251,19,"Text"],[437,87,251,19],[438,16,251,20,"style"],[438,21,251,25],[438,23,251,27,"styles"],[438,29,251,33],[438,30,251,34,"swapLabel"],[438,39,251,44],[439,16,251,44,"children"],[439,24,251,44],[439,26,251,45],[440,14,251,47],[441,16,251,47,"fileName"],[441,24,251,47],[441,26,251,47,"_jsxFileName"],[441,38,251,47],[442,16,251,47,"lineNumber"],[442,26,251,47],[443,16,251,47,"columnNumber"],[443,28,251,47],[444,14,251,47],[444,21,251,53],[444,22,251,54],[444,37,252,14],[444,41,252,14,"_reactJsxDevRuntime"],[444,60,252,14],[444,61,252,14,"jsxDEV"],[444,67,252,14],[444,69,252,15,"_reactNative"],[444,81,252,19],[444,82,252,19,"Text"],[444,86,252,19],[445,16,252,20,"style"],[445,21,252,25],[445,23,252,27,"styles"],[445,29,252,33],[445,30,252,34,"balanceText"],[445,41,252,46],[446,16,252,46,"children"],[446,24,252,46],[446,27,252,47],[446,38,253,25],[446,40,253,26,"toToken"],[446,47,253,33],[446,52,253,38],[446,57,253,43],[446,60,253,46,"balances"],[446,68,253,54],[446,69,253,55,"hez"],[446,72,253,58],[446,73,253,59,"toLocaleString"],[446,87,253,73],[446,88,253,74],[446,89,253,75],[446,92,253,78,"balances"],[446,100,253,86],[446,101,253,87,"pez"],[446,104,253,90],[446,105,253,91,"toLocaleString"],[446,119,253,105],[446,120,253,106],[446,121,253,107],[446,123,253,108],[446,126,253,109],[446,128,253,110,"toToken"],[446,135,253,117],[447,14,253,117],[448,16,253,117,"fileName"],[448,24,253,117],[448,26,253,117,"_jsxFileName"],[448,38,253,117],[449,16,253,117,"lineNumber"],[449,26,253,117],[450,16,253,117,"columnNumber"],[450,28,253,117],[451,14,253,117],[451,21,254,20],[451,22,254,21],[452,12,254,21],[453,14,254,21,"fileName"],[453,22,254,21],[453,24,254,21,"_jsxFileName"],[453,36,254,21],[454,14,254,21,"lineNumber"],[454,24,254,21],[455,14,254,21,"columnNumber"],[455,26,254,21],[456,12,254,21],[456,19,255,18],[456,20,255,19],[456,35,256,12],[456,39,256,12,"_reactJsxDevRuntime"],[456,58,256,12],[456,59,256,12,"jsxDEV"],[456,65,256,12],[456,67,256,13,"_reactNative"],[456,79,256,17],[456,80,256,17,"View"],[456,84,256,17],[457,14,256,18,"style"],[457,19,256,23],[457,21,256,25,"styles"],[457,27,256,31],[457,28,256,32,"inputContainer"],[457,42,256,47],[458,14,256,47,"children"],[458,22,256,47],[458,38,257,14],[458,42,257,14,"_reactJsxDevRuntime"],[458,61,257,14],[458,62,257,14,"jsxDEV"],[458,68,257,14],[458,70,257,15,"_reactNative"],[458,82,257,24],[458,83,257,24,"TextInput"],[458,92,257,24],[459,16,258,16,"style"],[459,21,258,21],[459,23,258,23],[459,24,258,24,"styles"],[459,30,258,30],[459,31,258,31,"amountInput"],[459,42,258,42],[459,44,258,44,"styles"],[459,50,258,50],[459,51,258,51,"amountInputDisabled"],[459,70,258,70],[459,71,258,72],[460,16,259,16,"placeholder"],[460,27,259,27],[460,29,259,28],[460,35,259,34],[461,16,260,16,"value"],[461,21,260,21],[461,23,260,23,"toAmount"],[461,31,260,32],[462,16,261,16,"editable"],[462,24,261,24],[462,26,261,26],[463,14,261,32],[464,16,261,32,"fileName"],[464,24,261,32],[464,26,261,32,"_jsxFileName"],[464,38,261,32],[465,16,261,32,"lineNumber"],[465,26,261,32],[466,16,261,32,"columnNumber"],[466,28,261,32],[467,14,261,32],[467,21,262,15],[467,22,262,16],[467,37,263,14],[467,41,263,14,"_reactJsxDevRuntime"],[467,60,263,14],[467,61,263,14,"jsxDEV"],[467,67,263,14],[467,69,263,15,"_reactNative"],[467,81,263,19],[467,82,263,19,"View"],[467,86,263,19],[468,16,263,20,"style"],[468,21,263,25],[468,23,263,27,"styles"],[468,29,263,33],[468,30,263,34,"tokenSelector"],[468,43,263,48],[469,16,263,48,"children"],[469,24,263,48],[469,39,264,16],[469,43,264,16,"_reactJsxDevRuntime"],[469,62,264,16],[469,63,264,16,"jsxDEV"],[469,69,264,16],[469,71,264,17,"_reactNative"],[469,83,264,21],[469,84,264,21,"View"],[469,88,264,21],[470,18,264,22,"style"],[470,23,264,27],[470,25,264,29,"styles"],[470,31,264,35],[470,32,264,36,"tokenBadge"],[470,42,264,47],[471,18,264,47,"children"],[471,26,264,47],[471,41,265,18],[471,45,265,18,"_reactJsxDevRuntime"],[471,64,265,18],[471,65,265,18,"jsxDEV"],[471,71,265,18],[471,73,265,19,"_reactNative"],[471,85,265,23],[471,86,265,23,"Text"],[471,90,265,23],[472,20,265,24,"style"],[472,25,265,29],[472,27,265,31,"styles"],[472,33,265,37],[472,34,265,38,"tokenText"],[472,43,265,48],[473,20,265,48,"children"],[473,28,265,48],[473,30,265,50,"toToken"],[474,18,265,57],[475,20,265,57,"fileName"],[475,28,265,57],[475,30,265,57,"_jsxFileName"],[475,42,265,57],[476,20,265,57,"lineNumber"],[476,30,265,57],[477,20,265,57,"columnNumber"],[477,32,265,57],[478,18,265,57],[478,25,265,64],[479,16,265,65],[480,18,265,65,"fileName"],[480,26,265,65],[480,28,265,65,"_jsxFileName"],[480,40,265,65],[481,18,265,65,"lineNumber"],[481,28,265,65],[482,18,265,65,"columnNumber"],[482,30,265,65],[483,16,265,65],[483,23,266,22],[484,14,266,23],[485,16,266,23,"fileName"],[485,24,266,23],[485,26,266,23,"_jsxFileName"],[485,38,266,23],[486,16,266,23,"lineNumber"],[486,26,266,23],[487,16,266,23,"columnNumber"],[487,28,266,23],[488,14,266,23],[488,21,267,20],[488,22,267,21],[489,12,267,21],[490,14,267,21,"fileName"],[490,22,267,21],[490,24,267,21,"_jsxFileName"],[490,36,267,21],[491,14,267,21,"lineNumber"],[491,24,267,21],[492,14,267,21,"columnNumber"],[492,26,267,21],[493,12,267,21],[493,19,268,18],[493,20,268,19],[494,10,268,19],[495,12,268,19,"fileName"],[495,20,268,19],[495,22,268,19,"_jsxFileName"],[495,34,268,19],[496,12,268,19,"lineNumber"],[496,22,268,19],[497,12,268,19,"columnNumber"],[497,24,268,19],[498,10,268,19],[498,17,269,16],[498,18,269,17],[498,20,272,11,"fromAmount"],[498,30,272,21],[498,34,272,25,"toAmount"],[498,42,272,33],[498,59,273,12],[498,63,273,12,"_reactJsxDevRuntime"],[498,82,273,12],[498,83,273,12,"jsxDEV"],[498,89,273,12],[498,91,273,13,"_reactNative"],[498,103,273,17],[498,104,273,17,"View"],[498,108,273,17],[499,12,273,18,"style"],[499,17,273,23],[499,19,273,25,"styles"],[499,25,273,31],[499,26,273,32,"detailsCard"],[499,37,273,44],[500,12,273,44,"children"],[500,20,273,44],[500,36,274,14],[500,40,274,14,"_reactJsxDevRuntime"],[500,59,274,14],[500,60,274,14,"jsxDEV"],[500,66,274,14],[500,68,274,15,"_reactNative"],[500,80,274,19],[500,81,274,19,"View"],[500,85,274,19],[501,14,274,20,"style"],[501,19,274,25],[501,21,274,27,"styles"],[501,27,274,33],[501,28,274,34,"detailRow"],[501,37,274,44],[502,14,274,44,"children"],[502,22,274,44],[502,38,275,16],[502,42,275,16,"_reactJsxDevRuntime"],[502,61,275,16],[502,62,275,16,"jsxDEV"],[502,68,275,16],[502,70,275,17,"_reactNative"],[502,82,275,21],[502,83,275,21,"Text"],[502,87,275,21],[503,16,275,22,"style"],[503,21,275,27],[503,23,275,29,"styles"],[503,29,275,35],[503,30,275,36,"detailLabel"],[503,41,275,48],[504,16,275,48,"children"],[504,24,275,48],[504,26,275,49],[505,14,275,53],[506,16,275,53,"fileName"],[506,24,275,53],[506,26,275,53,"_jsxFileName"],[506,38,275,53],[507,16,275,53,"lineNumber"],[507,26,275,53],[508,16,275,53,"columnNumber"],[508,28,275,53],[509,14,275,53],[509,21,275,59],[509,22,275,60],[509,37,276,16],[509,41,276,16,"_reactJsxDevRuntime"],[509,60,276,16],[509,61,276,16,"jsxDEV"],[509,67,276,16],[509,69,276,17,"_reactNative"],[509,81,276,21],[509,82,276,21,"Text"],[509,86,276,21],[510,16,276,22,"style"],[510,21,276,27],[510,23,276,29,"styles"],[510,29,276,35],[510,30,276,36,"detailValue"],[510,41,276,48],[511,16,276,48,"children"],[511,24,276,48],[511,27,276,49],[511,31,277,20],[511,33,277,21,"fromToken"],[511,42,277,30],[511,44,277,31],[511,49,277,34],[511,51,277,35,"getCurrentRate"],[511,65,277,49],[511,66,277,50],[511,67,277,51],[511,69,277,52],[511,72,277,53],[511,74,277,54,"toToken"],[511,81,277,61],[512,14,277,61],[513,16,277,61,"fileName"],[513,24,277,61],[513,26,277,61,"_jsxFileName"],[513,38,277,61],[514,16,277,61,"lineNumber"],[514,26,277,61],[515,16,277,61,"columnNumber"],[515,28,277,61],[516,14,277,61],[516,21,278,22],[516,22,278,23],[517,12,278,23],[518,14,278,23,"fileName"],[518,22,278,23],[518,24,278,23,"_jsxFileName"],[518,36,278,23],[519,14,278,23,"lineNumber"],[519,24,278,23],[520,14,278,23,"columnNumber"],[520,26,278,23],[521,12,278,23],[521,19,279,20],[521,20,279,21],[521,35,280,14],[521,39,280,14,"_reactJsxDevRuntime"],[521,58,280,14],[521,59,280,14,"jsxDEV"],[521,65,280,14],[521,67,280,15,"_reactNative"],[521,79,280,19],[521,80,280,19,"View"],[521,84,280,19],[522,14,280,20,"style"],[522,19,280,25],[522,21,280,27,"styles"],[522,27,280,33],[522,28,280,34,"detailRow"],[522,37,280,44],[523,14,280,44,"children"],[523,22,280,44],[523,38,281,16],[523,42,281,16,"_reactJsxDevRuntime"],[523,61,281,16],[523,62,281,16,"jsxDEV"],[523,68,281,16],[523,70,281,17,"_reactNative"],[523,82,281,21],[523,83,281,21,"Text"],[523,87,281,21],[524,16,281,22,"style"],[524,21,281,27],[524,23,281,29,"styles"],[524,29,281,35],[524,30,281,36,"detailLabel"],[524,41,281,48],[525,16,281,48,"children"],[525,24,281,48],[525,26,281,49],[526,14,281,67],[527,16,281,67,"fileName"],[527,24,281,67],[527,26,281,67,"_jsxFileName"],[527,38,281,67],[528,16,281,67,"lineNumber"],[528,26,281,67],[529,16,281,67,"columnNumber"],[529,28,281,67],[530,14,281,67],[530,21,281,73],[530,22,281,74],[530,37,282,16],[530,41,282,16,"_reactJsxDevRuntime"],[530,60,282,16],[530,61,282,16,"jsxDEV"],[530,67,282,16],[530,69,282,17,"_reactNative"],[530,81,282,21],[530,82,282,21,"View"],[530,86,282,21],[531,16,282,22,"style"],[531,21,282,27],[531,23,282,29,"styles"],[531,29,282,35],[531,30,282,36,"slippageSelector"],[531,46,282,53],[532,16,282,53,"children"],[532,24,282,53],[532,40,283,18],[532,44,283,18,"_reactJsxDevRuntime"],[532,63,283,18],[532,64,283,18,"jsxDEV"],[532,70,283,18],[532,72,283,19,"_reactNative"],[532,84,283,35],[532,85,283,35,"TouchableOpacity"],[532,101,283,35],[533,18,284,20,"style"],[533,23,284,25],[533,25,284,27],[533,26,285,22,"styles"],[533,32,285,28],[533,33,285,29,"slippageOption"],[533,47,285,43],[533,49,286,22,"slippage"],[533,57,286,30],[533,62,286,35],[533,67,286,40],[533,71,286,44,"styles"],[533,77,286,50],[533,78,286,51,"slippageOptionActive"],[533,98,286,71],[533,99,287,22],[534,18,288,20,"onPress"],[534,25,288,27],[534,27,288,29,"onPress"],[534,28,288,29],[534,33,288,35,"setSlippage"],[534,44,288,46],[534,45,288,47],[534,50,288,52],[534,51,288,54],[535,18,288,54,"children"],[535,26,288,54],[535,41,290,20],[535,45,290,20,"_reactJsxDevRuntime"],[535,64,290,20],[535,65,290,20,"jsxDEV"],[535,71,290,20],[535,73,290,21,"_reactNative"],[535,85,290,25],[535,86,290,25,"Text"],[535,90,290,25],[536,20,291,22,"style"],[536,25,291,27],[536,27,291,29],[536,28,292,24,"styles"],[536,34,292,30],[536,35,292,31,"slippageText"],[536,47,292,43],[536,49,293,24,"slippage"],[536,57,293,32],[536,62,293,37],[536,67,293,42],[536,71,293,46,"styles"],[536,77,293,52],[536,78,293,53,"slippageTextActive"],[536,96,293,71],[536,97,294,24],[537,20,294,24,"children"],[537,28,294,24],[537,30,295,21],[538,18,297,20],[539,20,297,20,"fileName"],[539,28,297,20],[539,30,297,20,"_jsxFileName"],[539,42,297,20],[540,20,297,20,"lineNumber"],[540,30,297,20],[541,20,297,20,"columnNumber"],[541,32,297,20],[542,18,297,20],[542,25,297,26],[543,16,297,27],[544,18,297,27,"fileName"],[544,26,297,27],[544,28,297,27,"_jsxFileName"],[544,40,297,27],[545,18,297,27,"lineNumber"],[545,28,297,27],[546,18,297,27,"columnNumber"],[546,30,297,27],[547,16,297,27],[547,23,298,36],[547,24,298,37],[547,39,299,18],[547,43,299,18,"_reactJsxDevRuntime"],[547,62,299,18],[547,63,299,18,"jsxDEV"],[547,69,299,18],[547,71,299,19,"_reactNative"],[547,83,299,35],[547,84,299,35,"TouchableOpacity"],[547,100,299,35],[548,18,300,20,"style"],[548,23,300,25],[548,25,300,27],[548,26,301,22,"styles"],[548,32,301,28],[548,33,301,29,"slippageOption"],[548,47,301,43],[548,49,302,22,"slippage"],[548,57,302,30],[548,62,302,35],[548,67,302,40],[548,71,302,44,"styles"],[548,77,302,50],[548,78,302,51,"slippageOptionActive"],[548,98,302,71],[548,99,303,22],[549,18,304,20,"onPress"],[549,25,304,27],[549,27,304,29,"onPress"],[549,28,304,29],[549,33,304,35,"setSlippage"],[549,44,304,46],[549,45,304,47],[549,50,304,52],[549,51,304,54],[550,18,304,54,"children"],[550,26,304,54],[550,41,306,20],[550,45,306,20,"_reactJsxDevRuntime"],[550,64,306,20],[550,65,306,20,"jsxDEV"],[550,71,306,20],[550,73,306,21,"_reactNative"],[550,85,306,25],[550,86,306,25,"Text"],[550,90,306,25],[551,20,307,22,"style"],[551,25,307,27],[551,27,307,29],[551,28,308,24,"styles"],[551,34,308,30],[551,35,308,31,"slippageText"],[551,47,308,43],[551,49,309,24,"slippage"],[551,57,309,32],[551,62,309,37],[551,67,309,42],[551,71,309,46,"styles"],[551,77,309,52],[551,78,309,53,"slippageTextActive"],[551,96,309,71],[551,97,310,24],[552,20,310,24,"children"],[552,28,310,24],[552,30,311,21],[553,18,313,20],[554,20,313,20,"fileName"],[554,28,313,20],[554,30,313,20,"_jsxFileName"],[554,42,313,20],[555,20,313,20,"lineNumber"],[555,30,313,20],[556,20,313,20,"columnNumber"],[556,32,313,20],[557,18,313,20],[557,25,313,26],[558,16,313,27],[559,18,313,27,"fileName"],[559,26,313,27],[559,28,313,27,"_jsxFileName"],[559,40,313,27],[560,18,313,27,"lineNumber"],[560,28,313,27],[561,18,313,27,"columnNumber"],[561,30,313,27],[562,16,313,27],[562,23,314,36],[562,24,314,37],[562,39,315,18],[562,43,315,18,"_reactJsxDevRuntime"],[562,62,315,18],[562,63,315,18,"jsxDEV"],[562,69,315,18],[562,71,315,19,"_reactNative"],[562,83,315,35],[562,84,315,35,"TouchableOpacity"],[562,100,315,35],[563,18,316,20,"style"],[563,23,316,25],[563,25,316,27],[563,26,317,22,"styles"],[563,32,317,28],[563,33,317,29,"slippageOption"],[563,47,317,43],[563,49,318,22,"slippage"],[563,57,318,30],[563,62,318,35],[563,67,318,40],[563,71,318,44,"styles"],[563,77,318,50],[563,78,318,51,"slippageOptionActive"],[563,98,318,71],[563,99,319,22],[564,18,320,20,"onPress"],[564,25,320,27],[564,27,320,29,"onPress"],[564,28,320,29],[564,33,320,35,"setSlippage"],[564,44,320,46],[564,45,320,47],[564,50,320,52],[564,51,320,54],[565,18,320,54,"children"],[565,26,320,54],[565,41,322,20],[565,45,322,20,"_reactJsxDevRuntime"],[565,64,322,20],[565,65,322,20,"jsxDEV"],[565,71,322,20],[565,73,322,21,"_reactNative"],[565,85,322,25],[565,86,322,25,"Text"],[565,90,322,25],[566,20,323,22,"style"],[566,25,323,27],[566,27,323,29],[566,28,324,24,"styles"],[566,34,324,30],[566,35,324,31,"slippageText"],[566,47,324,43],[566,49,325,24,"slippage"],[566,57,325,32],[566,62,325,37],[566,67,325,42],[566,71,325,46,"styles"],[566,77,325,52],[566,78,325,53,"slippageTextActive"],[566,96,325,71],[566,97,326,24],[567,20,326,24,"children"],[567,28,326,24],[567,30,327,21],[568,18,329,20],[569,20,329,20,"fileName"],[569,28,329,20],[569,30,329,20,"_jsxFileName"],[569,42,329,20],[570,20,329,20,"lineNumber"],[570,30,329,20],[571,20,329,20,"columnNumber"],[571,32,329,20],[572,18,329,20],[572,25,329,26],[573,16,329,27],[574,18,329,27,"fileName"],[574,26,329,27],[574,28,329,27,"_jsxFileName"],[574,40,329,27],[575,18,329,27,"lineNumber"],[575,28,329,27],[576,18,329,27,"columnNumber"],[576,30,329,27],[577,16,329,27],[577,23,330,36],[577,24,330,37],[578,14,330,37],[579,16,330,37,"fileName"],[579,24,330,37],[579,26,330,37,"_jsxFileName"],[579,38,330,37],[580,16,330,37,"lineNumber"],[580,26,330,37],[581,16,330,37,"columnNumber"],[581,28,330,37],[582,14,330,37],[582,21,331,22],[582,22,331,23],[583,12,331,23],[584,14,331,23,"fileName"],[584,22,331,23],[584,24,331,23,"_jsxFileName"],[584,36,331,23],[585,14,331,23,"lineNumber"],[585,24,331,23],[586,14,331,23,"columnNumber"],[586,26,331,23],[587,12,331,23],[587,19,332,20],[587,20,332,21],[587,35,333,14],[587,39,333,14,"_reactJsxDevRuntime"],[587,58,333,14],[587,59,333,14,"jsxDEV"],[587,65,333,14],[587,67,333,15,"_reactNative"],[587,79,333,19],[587,80,333,19,"View"],[587,84,333,19],[588,14,333,20,"style"],[588,19,333,25],[588,21,333,27,"styles"],[588,27,333,33],[588,28,333,34,"detailRow"],[588,37,333,44],[589,14,333,44,"children"],[589,22,333,44],[589,38,334,16],[589,42,334,16,"_reactJsxDevRuntime"],[589,61,334,16],[589,62,334,16,"jsxDEV"],[589,68,334,16],[589,70,334,17,"_reactNative"],[589,82,334,21],[589,83,334,21,"Text"],[589,87,334,21],[590,16,334,22,"style"],[590,21,334,27],[590,23,334,29,"styles"],[590,29,334,35],[590,30,334,36,"detailLabel"],[590,41,334,48],[591,16,334,48,"children"],[591,24,334,48],[591,26,334,49],[592,14,334,60],[593,16,334,60,"fileName"],[593,24,334,60],[593,26,334,60,"_jsxFileName"],[593,38,334,60],[594,16,334,60,"lineNumber"],[594,26,334,60],[595,16,334,60,"columnNumber"],[595,28,334,60],[596,14,334,60],[596,21,334,66],[596,22,334,67],[596,37,335,16],[596,41,335,16,"_reactJsxDevRuntime"],[596,60,335,16],[596,61,335,16,"jsxDEV"],[596,67,335,16],[596,69,335,17,"_reactNative"],[596,81,335,21],[596,82,335,21,"Text"],[596,86,335,21],[597,16,335,22,"style"],[597,21,335,27],[597,23,335,29,"styles"],[597,29,335,35],[597,30,335,36,"detailValue"],[597,41,335,48],[598,16,335,48,"children"],[598,24,335,48],[598,26,335,49],[599,14,335,58],[600,16,335,58,"fileName"],[600,24,335,58],[600,26,335,58,"_jsxFileName"],[600,38,335,58],[601,16,335,58,"lineNumber"],[601,26,335,58],[602,16,335,58,"columnNumber"],[602,28,335,58],[603,14,335,58],[603,21,335,64],[603,22,335,65],[604,12,335,65],[605,14,335,65,"fileName"],[605,22,335,65],[605,24,335,65,"_jsxFileName"],[605,36,335,65],[606,14,335,65,"lineNumber"],[606,24,335,65],[607,14,335,65,"columnNumber"],[607,26,335,65],[608,12,335,65],[608,19,336,20],[608,20,336,21],[609,10,336,21],[610,12,336,21,"fileName"],[610,20,336,21],[610,22,336,21,"_jsxFileName"],[610,34,336,21],[611,12,336,21,"lineNumber"],[611,22,336,21],[612,12,336,21,"columnNumber"],[612,24,336,21],[613,10,336,21],[613,17,337,18],[613,18,338,11],[613,33,341,10],[613,37,341,10,"_reactJsxDevRuntime"],[613,56,341,10],[613,57,341,10,"jsxDEV"],[613,63,341,10],[613,65,341,11,"_reactNative"],[613,77,341,27],[613,78,341,27,"TouchableOpacity"],[613,94,341,27],[614,12,342,12,"style"],[614,17,342,17],[614,19,342,19,"styles"],[614,25,342,25],[614,26,342,26,"executeButton"],[614,39,342,40],[615,12,343,12,"onPress"],[615,19,343,19],[615,21,343,21,"executeSwap"],[615,32,343,33],[616,12,344,12,"activeOpacity"],[616,25,344,25],[616,27,344,27],[616,30,344,31],[617,12,344,31,"children"],[617,20,344,31],[617,35,346,12],[617,39,346,12,"_reactJsxDevRuntime"],[617,58,346,12],[617,59,346,12,"jsxDEV"],[617,65,346,12],[617,67,346,13,"_expoLinearGradient"],[617,86,346,27],[617,87,346,27,"LinearGradient"],[617,101,346,27],[618,14,347,14,"colors"],[618,20,347,20],[618,22,347,22],[618,23,347,23,"Colors"],[618,29,347,29],[618,30,347,29,"default"],[618,37,347,29],[618,38,347,30,"primary"],[618,45,347,37],[618,47,347,39,"Colors"],[618,53,347,45],[618,54,347,45,"default"],[618,61,347,45],[618,62,347,46,"success"],[618,69,347,53],[618,70,347,55],[619,14,348,14,"style"],[619,19,348,19],[619,21,348,21,"styles"],[619,27,348,27],[619,28,348,28,"executeButtonGradient"],[619,49,348,50],[620,14,349,14,"start"],[620,19,349,19],[620,21,349,21],[621,16,349,23,"x"],[621,17,349,24],[621,19,349,26],[621,20,349,27],[622,16,349,29,"y"],[622,17,349,30],[622,19,349,32],[623,14,349,34],[623,15,349,36],[624,14,350,14,"end"],[624,17,350,17],[624,19,350,19],[625,16,350,21,"x"],[625,17,350,22],[625,19,350,24],[625,20,350,25],[626,16,350,27,"y"],[626,17,350,28],[626,19,350,30],[627,14,350,32],[627,15,350,34],[628,14,350,34,"children"],[628,22,350,34],[628,38,352,14],[628,42,352,14,"_reactJsxDevRuntime"],[628,61,352,14],[628,62,352,14,"jsxDEV"],[628,68,352,14],[628,70,352,15,"_expoVectorIcons"],[628,86,352,23],[628,87,352,23,"Ionicons"],[628,95,352,23],[629,16,352,24,"name"],[629,20,352,28],[629,22,352,29],[629,39,352,46],[630,16,352,47,"size"],[630,20,352,51],[630,22,352,53],[630,24,352,56],[631,16,352,57,"color"],[631,21,352,62],[631,23,352,63],[632,14,352,70],[633,16,352,70,"fileName"],[633,24,352,70],[633,26,352,70,"_jsxFileName"],[633,38,352,70],[634,16,352,70,"lineNumber"],[634,26,352,70],[635,16,352,70,"columnNumber"],[635,28,352,70],[636,14,352,70],[636,21,352,72],[636,22,352,73],[636,37,353,14],[636,41,353,14,"_reactJsxDevRuntime"],[636,60,353,14],[636,61,353,14,"jsxDEV"],[636,67,353,14],[636,69,353,15,"_reactNative"],[636,81,353,19],[636,82,353,19,"Text"],[636,86,353,19],[637,16,353,20,"style"],[637,21,353,25],[637,23,353,27,"styles"],[637,29,353,33],[637,30,353,34,"executeButtonText"],[637,47,353,52],[638,16,353,52,"children"],[638,24,353,52],[638,26,353,53],[639,14,353,64],[640,16,353,64,"fileName"],[640,24,353,64],[640,26,353,64,"_jsxFileName"],[640,38,353,64],[641,16,353,64,"lineNumber"],[641,26,353,64],[642,16,353,64,"columnNumber"],[642,28,353,64],[643,14,353,64],[643,21,353,70],[643,22,353,71],[644,12,353,71],[645,14,353,71,"fileName"],[645,22,353,71],[645,24,353,71,"_jsxFileName"],[645,36,353,71],[646,14,353,71,"lineNumber"],[646,24,353,71],[647,14,353,71,"columnNumber"],[647,26,353,71],[648,12,353,71],[648,19,354,28],[649,10,354,29],[650,12,354,29,"fileName"],[650,20,354,29],[650,22,354,29,"_jsxFileName"],[650,34,354,29],[651,12,354,29,"lineNumber"],[651,22,354,29],[652,12,354,29,"columnNumber"],[652,24,354,29],[653,10,354,29],[653,17,355,28],[653,18,355,29],[654,8,355,29],[655,10,355,29,"fileName"],[655,18,355,29],[655,20,355,29,"_jsxFileName"],[655,32,355,29],[656,10,355,29,"lineNumber"],[656,20,355,29],[657,10,355,29,"columnNumber"],[657,22,355,29],[658,8,355,29],[658,15,356,14],[658,16,356,15],[658,31,359,8],[658,35,359,8,"_reactJsxDevRuntime"],[658,54,359,8],[658,55,359,8,"jsxDEV"],[658,61,359,8],[658,63,359,9,"_reactNative"],[658,75,359,13],[658,76,359,13,"View"],[658,80,359,13],[659,10,359,14,"style"],[659,15,359,19],[659,17,359,21,"styles"],[659,23,359,27],[659,24,359,28,"section"],[659,31,359,36],[660,10,359,36,"children"],[660,18,359,36],[660,34,360,10],[660,38,360,10,"_reactJsxDevRuntime"],[660,57,360,10],[660,58,360,10,"jsxDEV"],[660,64,360,10],[660,66,360,11,"_reactNative"],[660,78,360,15],[660,79,360,15,"View"],[660,83,360,15],[661,12,360,16,"style"],[661,17,360,21],[661,19,360,23,"styles"],[661,25,360,29],[661,26,360,30,"sectionHeader"],[661,39,360,44],[662,12,360,44,"children"],[662,20,360,44],[662,36,361,12],[662,40,361,12,"_reactJsxDevRuntime"],[662,59,361,12],[662,60,361,12,"jsxDEV"],[662,66,361,12],[662,68,361,13,"_reactNative"],[662,80,361,17],[662,81,361,17,"Text"],[662,85,361,17],[663,14,361,18,"style"],[663,19,361,23],[663,21,361,25,"styles"],[663,27,361,31],[663,28,361,32,"sectionTitle"],[663,40,361,45],[664,14,361,45,"children"],[664,22,361,45],[664,24,361,46],[665,12,361,58],[666,14,361,58,"fileName"],[666,22,361,58],[666,24,361,58,"_jsxFileName"],[666,36,361,58],[667,14,361,58,"lineNumber"],[667,24,361,58],[668,14,361,58,"columnNumber"],[668,26,361,58],[669,12,361,58],[669,19,361,64],[669,20,361,65],[669,35,362,12],[669,39,362,12,"_reactJsxDevRuntime"],[669,58,362,12],[669,59,362,12,"jsxDEV"],[669,65,362,12],[669,67,362,13,"_reactNative"],[669,79,362,29],[669,80,362,29,"TouchableOpacity"],[669,96,362,29],[670,14,362,29,"children"],[670,22,362,29],[670,37,363,14],[670,41,363,14,"_reactJsxDevRuntime"],[670,60,363,14],[670,61,363,14,"jsxDEV"],[670,67,363,14],[670,69,363,15,"_reactNative"],[670,81,363,19],[670,82,363,19,"Text"],[670,86,363,19],[671,16,363,20,"style"],[671,21,363,25],[671,23,363,27,"styles"],[671,29,363,33],[671,30,363,34,"viewAllText"],[671,41,363,46],[672,16,363,46,"children"],[672,24,363,46],[672,26,363,47],[673,14,363,55],[674,16,363,55,"fileName"],[674,24,363,55],[674,26,363,55,"_jsxFileName"],[674,38,363,55],[675,16,363,55,"lineNumber"],[675,26,363,55],[676,16,363,55,"columnNumber"],[676,28,363,55],[677,14,363,55],[677,21,363,61],[678,12,363,62],[679,14,363,62,"fileName"],[679,22,363,62],[679,24,363,62,"_jsxFileName"],[679,36,363,62],[680,14,363,62,"lineNumber"],[680,24,363,62],[681,14,363,62,"columnNumber"],[681,26,363,62],[682,12,363,62],[682,19,364,30],[682,20,364,31],[683,10,364,31],[684,12,364,31,"fileName"],[684,20,364,31],[684,22,364,31,"_jsxFileName"],[684,34,364,31],[685,12,364,31,"lineNumber"],[685,22,364,31],[686,12,364,31,"columnNumber"],[686,24,364,31],[687,10,364,31],[687,17,365,16],[687,18,365,17],[687,20,367,11,"swapHistory"],[687,31,367,22],[687,32,367,23,"map"],[687,35,367,26],[687,36,367,28,"swap"],[687,40,367,32],[687,57,368,12],[687,61,368,12,"_reactJsxDevRuntime"],[687,80,368,12],[687,81,368,12,"jsxDEV"],[687,87,368,12],[687,89,368,13,"_reactNative"],[687,101,368,17],[687,102,368,17,"View"],[687,106,368,17],[688,12,368,32,"style"],[688,17,368,37],[688,19,368,39,"styles"],[688,25,368,45],[688,26,368,46,"historyCard"],[688,37,368,58],[689,12,368,58,"children"],[689,20,368,58],[689,36,369,14],[689,40,369,14,"_reactJsxDevRuntime"],[689,59,369,14],[689,60,369,14,"jsxDEV"],[689,66,369,14],[689,68,369,15,"_reactNative"],[689,80,369,19],[689,81,369,19,"View"],[689,85,369,19],[690,14,369,20,"style"],[690,19,369,25],[690,21,369,27,"styles"],[690,27,369,33],[690,28,369,34,"historyHeader"],[690,41,369,48],[691,14,369,48,"children"],[691,22,369,48],[691,38,370,16],[691,42,370,16,"_reactJsxDevRuntime"],[691,61,370,16],[691,62,370,16,"jsxDEV"],[691,68,370,16],[691,70,370,17,"_reactNative"],[691,82,370,21],[691,83,370,21,"View"],[691,87,370,21],[692,16,370,22,"style"],[692,21,370,27],[692,23,370,29,"styles"],[692,29,370,35],[692,30,370,36,"historyIcon"],[692,41,370,48],[693,16,370,48,"children"],[693,24,370,48],[693,39,371,18],[693,43,371,18,"_reactJsxDevRuntime"],[693,62,371,18],[693,63,371,18,"jsxDEV"],[693,69,371,18],[693,71,371,19,"_expoVectorIcons"],[693,87,371,27],[693,88,371,27,"Ionicons"],[693,96,371,27],[694,18,372,20,"name"],[694,22,372,24],[694,24,372,25],[694,41,372,42],[695,18,373,20,"size"],[695,22,373,24],[695,24,373,26],[695,26,373,29],[696,18,374,20,"color"],[696,23,374,25],[696,25,374,27,"Colors"],[696,31,374,33],[696,32,374,33,"default"],[696,39,374,33],[696,40,374,34,"primary"],[697,16,374,42],[698,18,374,42,"fileName"],[698,26,374,42],[698,28,374,42,"_jsxFileName"],[698,40,374,42],[699,18,374,42,"lineNumber"],[699,28,374,42],[700,18,374,42,"columnNumber"],[700,30,374,42],[701,16,374,42],[701,23,375,19],[702,14,375,20],[703,16,375,20,"fileName"],[703,24,375,20],[703,26,375,20,"_jsxFileName"],[703,38,375,20],[704,16,375,20,"lineNumber"],[704,26,375,20],[705,16,375,20,"columnNumber"],[705,28,375,20],[706,14,375,20],[706,21,376,22],[706,22,376,23],[706,37,377,16],[706,41,377,16,"_reactJsxDevRuntime"],[706,60,377,16],[706,61,377,16,"jsxDEV"],[706,67,377,16],[706,69,377,17,"_reactNative"],[706,81,377,21],[706,82,377,21,"View"],[706,86,377,21],[707,16,377,22,"style"],[707,21,377,27],[707,23,377,29,"styles"],[707,29,377,35],[707,30,377,36,"historyInfo"],[707,41,377,48],[708,16,377,48,"children"],[708,24,377,48],[708,40,378,18],[708,44,378,18,"_reactJsxDevRuntime"],[708,63,378,18],[708,64,378,18,"jsxDEV"],[708,70,378,18],[708,72,378,19,"_reactNative"],[708,84,378,23],[708,85,378,23,"Text"],[708,89,378,23],[709,18,378,24,"style"],[709,23,378,29],[709,25,378,31,"styles"],[709,31,378,37],[709,32,378,38,"historyTitle"],[709,44,378,51],[710,18,378,51,"children"],[710,26,378,51],[710,29,379,21,"swap"],[710,33,379,25],[710,34,379,26,"fromToken"],[710,43,379,35],[710,45,379,36],[710,55,379,39],[710,57,379,40,"swap"],[710,61,379,44],[710,62,379,45,"toToken"],[710,69,379,52],[711,16,379,52],[712,18,379,52,"fileName"],[712,26,379,52],[712,28,379,52,"_jsxFileName"],[712,40,379,52],[713,18,379,52,"lineNumber"],[713,28,379,52],[714,18,379,52,"columnNumber"],[714,30,379,52],[715,16,379,52],[715,23,380,24],[715,24,380,25],[715,39,381,18],[715,43,381,18,"_reactJsxDevRuntime"],[715,62,381,18],[715,63,381,18,"jsxDEV"],[715,69,381,18],[715,71,381,19,"_reactNative"],[715,83,381,23],[715,84,381,23,"Text"],[715,88,381,23],[716,18,381,24,"style"],[716,23,381,29],[716,25,381,31,"styles"],[716,31,381,37],[716,32,381,38,"historyDate"],[716,43,381,50],[717,18,381,50,"children"],[717,26,381,50],[717,28,381,52,"swap"],[717,32,381,56],[717,33,381,57,"date"],[718,16,381,61],[719,18,381,61,"fileName"],[719,26,381,61],[719,28,381,61,"_jsxFileName"],[719,40,381,61],[720,18,381,61,"lineNumber"],[720,28,381,61],[721,18,381,61,"columnNumber"],[721,30,381,61],[722,16,381,61],[722,23,381,68],[722,24,381,69],[722,39,382,18],[722,43,382,18,"_reactJsxDevRuntime"],[722,62,382,18],[722,63,382,18,"jsxDEV"],[722,69,382,18],[722,71,382,19,"_reactNative"],[722,83,382,23],[722,84,382,23,"Text"],[722,88,382,23],[723,18,382,24,"style"],[723,23,382,29],[723,25,382,31,"styles"],[723,31,382,37],[723,32,382,38,"historyHash"],[723,43,382,50],[724,18,382,50,"children"],[724,26,382,50],[724,29,382,51],[724,35,382,55],[724,37,382,56,"swap"],[724,41,382,60],[724,42,382,61,"txHash"],[724,48,382,67],[725,16,382,67],[726,18,382,67,"fileName"],[726,26,382,67],[726,28,382,67,"_jsxFileName"],[726,40,382,67],[727,18,382,67,"lineNumber"],[727,28,382,67],[728,18,382,67,"columnNumber"],[728,30,382,67],[729,16,382,67],[729,23,382,74],[729,24,382,75],[730,14,382,75],[731,16,382,75,"fileName"],[731,24,382,75],[731,26,382,75,"_jsxFileName"],[731,38,382,75],[732,16,382,75,"lineNumber"],[732,26,382,75],[733,16,382,75,"columnNumber"],[733,28,382,75],[734,14,382,75],[734,21,383,22],[734,22,383,23],[734,37,384,16],[734,41,384,16,"_reactJsxDevRuntime"],[734,60,384,16],[734,61,384,16,"jsxDEV"],[734,67,384,16],[734,69,384,17,"_reactNative"],[734,81,384,21],[734,82,384,21,"View"],[734,86,384,21],[735,16,384,22,"style"],[735,21,384,27],[735,23,384,29,"styles"],[735,29,384,35],[735,30,384,36,"historyAmount"],[735,43,384,50],[736,16,384,50,"children"],[736,24,384,50],[736,40,385,18],[736,44,385,18,"_reactJsxDevRuntime"],[736,63,385,18],[736,64,385,18,"jsxDEV"],[736,70,385,18],[736,72,385,19,"_reactNative"],[736,84,385,23],[736,85,385,23,"Text"],[736,89,385,23],[737,18,385,24,"style"],[737,23,385,29],[737,25,385,31,"styles"],[737,31,385,37],[737,32,385,38,"historyFromAmount"],[737,49,385,56],[738,18,385,56,"children"],[738,26,385,56],[738,29,385,57],[738,32,386,21],[738,34,386,22,"swap"],[738,38,386,26],[738,39,386,27,"fromAmount"],[738,49,386,37],[738,51,386,38],[738,54,386,39],[738,56,386,40,"swap"],[738,60,386,44],[738,61,386,45,"fromToken"],[738,70,386,54],[739,16,386,54],[740,18,386,54,"fileName"],[740,26,386,54],[740,28,386,54,"_jsxFileName"],[740,40,386,54],[741,18,386,54,"lineNumber"],[741,28,386,54],[742,18,386,54,"columnNumber"],[742,30,386,54],[743,16,386,54],[743,23,387,24],[743,24,387,25],[743,39,388,18],[743,43,388,18,"_reactJsxDevRuntime"],[743,62,388,18],[743,63,388,18,"jsxDEV"],[743,69,388,18],[743,71,388,19,"_reactNative"],[743,83,388,23],[743,84,388,23,"Text"],[743,88,388,23],[744,18,388,24,"style"],[744,23,388,29],[744,25,388,31,"styles"],[744,31,388,37],[744,32,388,38,"historyToAmount"],[744,47,388,54],[745,18,388,54,"children"],[745,26,388,54],[745,29,388,55],[745,32,389,21],[745,34,389,22,"swap"],[745,38,389,26],[745,39,389,27,"toAmount"],[745,47,389,35],[745,49,389,36],[745,52,389,37],[745,54,389,38,"swap"],[745,58,389,42],[745,59,389,43,"toToken"],[745,66,389,50],[746,16,389,50],[747,18,389,50,"fileName"],[747,26,389,50],[747,28,389,50,"_jsxFileName"],[747,40,389,50],[748,18,389,50,"lineNumber"],[748,28,389,50],[749,18,389,50,"columnNumber"],[749,30,389,50],[750,16,389,50],[750,23,390,24],[750,24,390,25],[751,14,390,25],[752,16,390,25,"fileName"],[752,24,390,25],[752,26,390,25,"_jsxFileName"],[752,38,390,25],[753,16,390,25,"lineNumber"],[753,26,390,25],[754,16,390,25,"columnNumber"],[754,28,390,25],[755,14,390,25],[755,21,391,22],[755,22,391,23],[756,12,391,23],[757,14,391,23,"fileName"],[757,22,391,23],[757,24,391,23,"_jsxFileName"],[757,36,391,23],[758,14,391,23,"lineNumber"],[758,24,391,23],[759,14,391,23,"columnNumber"],[759,26,391,23],[760,12,391,23],[760,19,392,20],[760,20,392,21],[760,35,393,14],[760,39,393,14,"_reactJsxDevRuntime"],[760,58,393,14],[760,59,393,14,"jsxDEV"],[760,65,393,14],[760,67,393,15,"_reactNative"],[760,79,393,19],[760,80,393,19,"View"],[760,84,393,19],[761,14,393,20,"style"],[761,19,393,25],[761,21,393,27,"styles"],[761,27,393,33],[761,28,393,34,"historyFooter"],[761,41,393,48],[762,14,393,48,"children"],[762,22,393,48],[762,38,394,16],[762,42,394,16,"_reactJsxDevRuntime"],[762,61,394,16],[762,62,394,16,"jsxDEV"],[762,68,394,16],[762,70,394,17,"_reactNative"],[762,82,394,21],[762,83,394,21,"Text"],[762,87,394,21],[763,16,394,22,"style"],[763,21,394,27],[763,23,394,29,"styles"],[763,29,394,35],[763,30,394,36,"historyRate"],[763,41,394,48],[764,16,394,48,"children"],[764,24,394,48],[764,27,394,49],[764,37,395,26],[764,39,395,27,"swap"],[764,43,395,31],[764,44,395,32,"fromToken"],[764,53,395,41],[764,55,395,42],[764,60,395,45],[764,62,395,46,"swap"],[764,66,395,50],[764,67,395,51,"rate"],[764,71,395,55],[764,73,395,56],[764,76,395,57],[764,78,395,58,"swap"],[764,82,395,62],[764,83,395,63,"toToken"],[764,90,395,70],[765,14,395,70],[766,16,395,70,"fileName"],[766,24,395,70],[766,26,395,70,"_jsxFileName"],[766,38,395,70],[767,16,395,70,"lineNumber"],[767,26,395,70],[768,16,395,70,"columnNumber"],[768,28,395,70],[769,14,395,70],[769,21,396,22],[769,22,396,23],[769,37,397,16],[769,41,397,16,"_reactJsxDevRuntime"],[769,60,397,16],[769,61,397,16,"jsxDEV"],[769,67,397,16],[769,69,397,17,"_reactNative"],[769,81,397,33],[769,82,397,33,"TouchableOpacity"],[769,98,397,33],[770,16,397,33,"children"],[770,24,397,33],[770,39,398,18],[770,43,398,18,"_reactJsxDevRuntime"],[770,62,398,18],[770,63,398,18,"jsxDEV"],[770,69,398,18],[770,71,398,19,"_expoVectorIcons"],[770,87,398,27],[770,88,398,27,"Ionicons"],[770,96,398,27],[771,18,399,20,"name"],[771,22,399,24],[771,24,399,25],[771,38,399,39],[772,18,400,20,"size"],[772,22,400,24],[772,24,400,26],[772,26,400,29],[773,18,401,20,"color"],[773,23,401,25],[773,25,401,27,"Colors"],[773,31,401,33],[773,32,401,33,"default"],[773,39,401,33],[773,40,401,34,"primary"],[774,16,401,42],[775,18,401,42,"fileName"],[775,26,401,42],[775,28,401,42,"_jsxFileName"],[775,40,401,42],[776,18,401,42,"lineNumber"],[776,28,401,42],[777,18,401,42,"columnNumber"],[777,30,401,42],[778,16,401,42],[778,23,402,19],[779,14,402,20],[780,16,402,20,"fileName"],[780,24,402,20],[780,26,402,20,"_jsxFileName"],[780,38,402,20],[781,16,402,20,"lineNumber"],[781,26,402,20],[782,16,402,20,"columnNumber"],[782,28,402,20],[783,14,402,20],[783,21,403,34],[783,22,403,35],[784,12,403,35],[785,14,403,35,"fileName"],[785,22,403,35],[785,24,403,35,"_jsxFileName"],[785,36,403,35],[786,14,403,35,"lineNumber"],[786,24,403,35],[787,14,403,35,"columnNumber"],[787,26,403,35],[788,12,403,35],[788,19,404,20],[788,20,404,21],[789,10,404,21],[789,13,368,23,"swap"],[789,17,368,27],[789,18,368,28,"id"],[789,20,368,30],[790,12,368,30,"fileName"],[790,20,368,30],[790,22,368,30,"_jsxFileName"],[790,34,368,30],[791,12,368,30,"lineNumber"],[791,22,368,30],[792,12,368,30,"columnNumber"],[792,24,368,30],[793,10,368,30],[793,17,405,18],[793,18,406,11],[793,19,406,12],[794,8,406,12],[795,10,406,12,"fileName"],[795,18,406,12],[795,20,406,12,"_jsxFileName"],[795,32,406,12],[796,10,406,12,"lineNumber"],[796,20,406,12],[797,10,406,12,"columnNumber"],[797,22,406,12],[798,8,406,12],[798,15,407,14],[798,16,407,15],[798,31,410,8],[798,35,410,8,"_reactJsxDevRuntime"],[798,54,410,8],[798,55,410,8,"jsxDEV"],[798,61,410,8],[798,63,410,9,"_reactNative"],[798,75,410,13],[798,76,410,13,"View"],[798,80,410,13],[799,10,410,14,"style"],[799,15,410,19],[799,17,410,21,"styles"],[799,23,410,27],[799,24,410,28,"infoSection"],[799,35,410,40],[800,10,410,40,"children"],[800,18,410,40],[800,33,411,10],[800,37,411,10,"_reactJsxDevRuntime"],[800,56,411,10],[800,57,411,10,"jsxDEV"],[800,63,411,10],[800,65,411,11,"_reactNative"],[800,77,411,15],[800,78,411,15,"View"],[800,82,411,15],[801,12,411,16,"style"],[801,17,411,21],[801,19,411,23,"styles"],[801,25,411,29],[801,26,411,30,"infoCard"],[801,34,411,39],[802,12,411,39,"children"],[802,20,411,39],[802,36,412,12],[802,40,412,12,"_reactJsxDevRuntime"],[802,59,412,12],[802,60,412,12,"jsxDEV"],[802,66,412,12],[802,68,412,13,"_expoVectorIcons"],[802,84,412,21],[802,85,412,21,"Ionicons"],[802,93,412,21],[803,14,412,22,"name"],[803,18,412,26],[803,20,412,27],[803,40,412,47],[804,14,412,48,"size"],[804,18,412,52],[804,20,412,54],[804,22,412,57],[805,14,412,58,"color"],[805,19,412,63],[805,21,412,65,"Colors"],[805,27,412,71],[805,28,412,71,"default"],[805,35,412,71],[805,36,412,72,"primary"],[806,12,412,80],[807,14,412,80,"fileName"],[807,22,412,80],[807,24,412,80,"_jsxFileName"],[807,36,412,80],[808,14,412,80,"lineNumber"],[808,24,412,80],[809,14,412,80,"columnNumber"],[809,26,412,80],[810,12,412,80],[810,19,412,82],[810,20,412,83],[810,35,413,12],[810,39,413,12,"_reactJsxDevRuntime"],[810,58,413,12],[810,59,413,12,"jsxDEV"],[810,65,413,12],[810,67,413,13,"_reactNative"],[810,79,413,17],[810,80,413,17,"View"],[810,84,413,17],[811,14,413,18,"style"],[811,19,413,23],[811,21,413,25,"styles"],[811,27,413,31],[811,28,413,32,"infoContent"],[811,39,413,44],[812,14,413,44,"children"],[812,22,413,44],[812,38,414,14],[812,42,414,14,"_reactJsxDevRuntime"],[812,61,414,14],[812,62,414,14,"jsxDEV"],[812,68,414,14],[812,70,414,15,"_reactNative"],[812,82,414,19],[812,83,414,19,"Text"],[812,87,414,19],[813,16,414,20,"style"],[813,21,414,25],[813,23,414,27,"styles"],[813,29,414,33],[813,30,414,34,"infoTitle"],[813,39,414,44],[814,16,414,44,"children"],[814,24,414,44],[814,26,414,45],[815,14,414,61],[816,16,414,61,"fileName"],[816,24,414,61],[816,26,414,61,"_jsxFileName"],[816,38,414,61],[817,16,414,61,"lineNumber"],[817,26,414,61],[818,16,414,61,"columnNumber"],[818,28,414,61],[819,14,414,61],[819,21,414,67],[819,22,414,68],[819,37,415,14],[819,41,415,14,"_reactJsxDevRuntime"],[819,60,415,14],[819,61,415,14,"jsxDEV"],[819,67,415,14],[819,69,415,15,"_reactNative"],[819,81,415,19],[819,82,415,19,"Text"],[819,86,415,19],[820,16,415,20,"style"],[820,21,415,25],[820,23,415,27,"styles"],[820,29,415,33],[820,30,415,34,"infoText"],[820,38,415,43],[821,16,415,43,"children"],[821,24,415,43],[821,26,415,44],[822,14,417,14],[823,16,417,14,"fileName"],[823,24,417,14],[823,26,417,14,"_jsxFileName"],[823,38,417,14],[824,16,417,14,"lineNumber"],[824,26,417,14],[825,16,417,14,"columnNumber"],[825,28,417,14],[826,14,417,14],[826,21,417,20],[826,22,417,21],[827,12,417,21],[828,14,417,21,"fileName"],[828,22,417,21],[828,24,417,21,"_jsxFileName"],[828,36,417,21],[829,14,417,21,"lineNumber"],[829,24,417,21],[830,14,417,21,"columnNumber"],[830,26,417,21],[831,12,417,21],[831,19,418,18],[831,20,418,19],[832,10,418,19],[833,12,418,19,"fileName"],[833,20,418,19],[833,22,418,19,"_jsxFileName"],[833,34,418,19],[834,12,418,19,"lineNumber"],[834,22,418,19],[835,12,418,19,"columnNumber"],[835,24,418,19],[836,10,418,19],[836,17,419,16],[837,8,419,17],[838,10,419,17,"fileName"],[838,18,419,17],[838,20,419,17,"_jsxFileName"],[838,32,419,17],[839,10,419,17,"lineNumber"],[839,20,419,17],[840,10,419,17,"columnNumber"],[840,22,419,17],[841,8,419,17],[841,15,420,14],[841,16,420,15],[841,31,422,8],[841,35,422,8,"_reactJsxDevRuntime"],[841,54,422,8],[841,55,422,8,"jsxDEV"],[841,61,422,8],[841,63,422,9,"_reactNative"],[841,75,422,13],[841,76,422,13,"View"],[841,80,422,13],[842,10,422,14,"style"],[842,15,422,19],[842,17,422,21],[843,12,422,23,"height"],[843,18,422,29],[843,20,422,31],[844,10,422,34],[845,8,422,36],[846,10,422,36,"fileName"],[846,18,422,36],[846,20,422,36,"_jsxFileName"],[846,32,422,36],[847,10,422,36,"lineNumber"],[847,20,422,36],[848,10,422,36,"columnNumber"],[848,22,422,36],[849,8,422,36],[849,15,422,38],[849,16,422,39],[850,6,422,39],[851,8,422,39,"fileName"],[851,16,422,39],[851,18,422,39,"_jsxFileName"],[851,30,422,39],[852,8,422,39,"lineNumber"],[852,18,422,39],[853,8,422,39,"columnNumber"],[853,20,422,39],[854,6,422,39],[854,13,423,18],[855,4,423,19],[856,6,423,19,"fileName"],[856,14,423,19],[856,16,423,19,"_jsxFileName"],[856,28,423,19],[857,6,423,19,"lineNumber"],[857,16,423,19],[858,6,423,19,"columnNumber"],[858,18,423,19],[859,4,423,19],[859,11,424,18],[859,12,424,19],[860,2,426,0],[861,2,426,1,"_s"],[861,4,426,1],[861,5,33,24,"ExchangeScreen"],[861,19,33,38],[862,2,33,38,"_c"],[862,4,33,38],[862,7,33,24,"ExchangeScreen"],[862,21,33,38],[863,2,428,0],[863,6,428,6,"styles"],[863,12,428,12],[863,15,428,15,"StyleSheet"],[863,27,428,25],[863,28,428,25,"StyleSheet"],[863,38,428,25],[863,39,428,26,"create"],[863,45,428,32],[863,46,428,33],[864,4,429,2,"container"],[864,13,429,11],[864,15,429,13],[865,6,430,4,"flex"],[865,10,430,8],[865,12,430,10],[865,13,430,11],[866,6,431,4,"backgroundColor"],[866,21,431,19],[866,23,431,21,"Colors"],[866,29,431,27],[866,30,431,27,"default"],[866,37,431,27],[866,38,431,28,"background"],[867,4,432,2],[867,5,432,3],[868,4,433,2,"header"],[868,10,433,8],[868,12,433,10],[869,6,434,4,"paddingHorizontal"],[869,23,434,21],[869,25,434,23],[869,27,434,25],[870,6,435,4,"paddingTop"],[870,16,435,14],[870,18,435,16],[870,20,435,18],[871,6,436,4,"paddingBottom"],[871,19,436,17],[871,21,436,19],[871,23,436,21],[872,6,437,4,"borderBottomLeftRadius"],[872,28,437,26],[872,30,437,28],[872,32,437,30],[873,6,438,4,"borderBottomRightRadius"],[873,29,438,27],[873,31,438,29],[874,4,439,2],[874,5,439,3],[875,4,440,2,"headerContent"],[875,17,440,15],[875,19,440,17],[876,6,441,4,"flexDirection"],[876,19,441,17],[876,21,441,19],[876,26,441,24],[877,6,442,4,"justifyContent"],[877,20,442,18],[877,22,442,20],[877,37,442,35],[878,6,443,4,"alignItems"],[878,16,443,14],[878,18,443,16],[879,4,444,2],[879,5,444,3],[880,4,445,2,"headerTitle"],[880,15,445,13],[880,17,445,15],[881,6,446,4,"fontSize"],[881,14,446,12],[881,16,446,14],[881,18,446,16],[882,6,447,4,"fontWeight"],[882,16,447,14],[882,18,447,16],[882,23,447,21],[883,6,448,4,"color"],[883,11,448,9],[883,13,448,11],[883,20,448,18],[884,6,449,4,"marginBottom"],[884,18,449,16],[884,20,449,18],[885,4,450,2],[885,5,450,3],[886,4,451,2,"headerSubtitle"],[886,18,451,16],[886,20,451,18],[887,6,452,4,"fontSize"],[887,14,452,12],[887,16,452,14],[887,18,452,16],[888,6,453,4,"color"],[888,11,453,9],[888,13,453,11],[889,4,454,2],[889,5,454,3],[890,4,455,2,"historyButton"],[890,17,455,15],[890,19,455,17],[891,6,456,4,"width"],[891,11,456,9],[891,13,456,11],[891,15,456,13],[892,6,457,4,"height"],[892,12,457,10],[892,14,457,12],[892,16,457,14],[893,6,458,4,"borderRadius"],[893,18,458,16],[893,20,458,18],[893,22,458,20],[894,6,459,4,"backgroundColor"],[894,21,459,19],[894,23,459,21],[894,49,459,47],[895,6,460,4,"alignItems"],[895,16,460,14],[895,18,460,16],[895,26,460,24],[896,6,461,4,"justifyContent"],[896,20,461,18],[896,22,461,20],[897,4,462,2],[897,5,462,3],[898,4,463,2,"rateContainer"],[898,17,463,15],[898,19,463,17],[899,6,464,4,"paddingHorizontal"],[899,23,464,21],[899,25,464,23],[899,27,464,25],[900,6,465,4,"marginTop"],[900,15,465,13],[900,17,465,15],[900,18,465,16],[900,20,465,18],[901,6,466,4,"marginBottom"],[901,18,466,16],[901,20,466,18],[902,4,467,2],[902,5,467,3],[903,4,468,2,"rateCard"],[903,12,468,10],[903,14,468,12],[904,6,469,4,"backgroundColor"],[904,21,469,19],[904,23,469,21],[904,30,469,28],[905,6,470,4,"borderRadius"],[905,18,470,16],[905,20,470,18],[905,22,470,20],[906,6,471,4,"padding"],[906,13,471,11],[906,15,471,13],[906,17,471,15],[907,6,472,4,"shadowColor"],[907,17,472,15],[907,19,472,17],[907,25,472,23],[908,6,473,4,"shadowOffset"],[908,18,473,16],[908,20,473,18],[909,8,473,20,"width"],[909,13,473,25],[909,15,473,27],[909,16,473,28],[910,8,473,30,"height"],[910,14,473,36],[910,16,473,38],[911,6,473,40],[911,7,473,41],[912,6,474,4,"shadowOpacity"],[912,19,474,17],[912,21,474,19],[912,25,474,23],[913,6,475,4,"shadowRadius"],[913,18,475,16],[913,20,475,18],[913,21,475,19],[914,6,476,4,"elevation"],[914,15,476,13],[914,17,476,15],[915,4,477,2],[915,5,477,3],[916,4,478,2,"rateHeader"],[916,14,478,12],[916,16,478,14],[917,6,479,4,"flexDirection"],[917,19,479,17],[917,21,479,19],[917,26,479,24],[918,6,480,4,"justifyContent"],[918,20,480,18],[918,22,480,20],[918,37,480,35],[919,6,481,4,"alignItems"],[919,16,481,14],[919,18,481,16],[919,26,481,24],[920,6,482,4,"marginBottom"],[920,18,482,16],[920,20,482,18],[921,4,483,2],[921,5,483,3],[922,4,484,2,"rateTitle"],[922,13,484,11],[922,15,484,13],[923,6,485,4,"fontSize"],[923,14,485,12],[923,16,485,14],[923,18,485,16],[924,6,486,4,"fontWeight"],[924,16,486,14],[924,18,486,16],[924,23,486,21],[925,6,487,4,"color"],[925,11,487,9],[925,13,487,11,"Colors"],[925,19,487,17],[925,20,487,17,"default"],[925,27,487,17],[925,28,487,18,"textDark"],[926,4,488,2],[926,5,488,3],[927,4,489,2,"updateBadge"],[927,15,489,13],[927,17,489,15],[928,6,490,4,"flexDirection"],[928,19,490,17],[928,21,490,19],[928,26,490,24],[929,6,491,4,"alignItems"],[929,16,491,14],[929,18,491,16],[929,26,491,24],[930,6,492,4,"gap"],[930,9,492,7],[930,11,492,9],[930,12,492,10],[931,6,493,4,"backgroundColor"],[931,21,493,19],[931,23,493,21,"Colors"],[931,29,493,27],[931,30,493,27,"default"],[931,37,493,27],[931,38,493,28,"success"],[931,45,493,35],[931,48,493,38],[931,52,493,42],[932,6,494,4,"paddingHorizontal"],[932,23,494,21],[932,25,494,23],[932,26,494,24],[933,6,495,4,"paddingVertical"],[933,21,495,19],[933,23,495,21],[933,24,495,22],[934,6,496,4,"borderRadius"],[934,18,496,16],[934,20,496,18],[935,4,497,2],[935,5,497,3],[936,4,498,2,"updateText"],[936,14,498,12],[936,16,498,14],[937,6,499,4,"fontSize"],[937,14,499,12],[937,16,499,14],[937,18,499,16],[938,6,500,4,"fontWeight"],[938,16,500,14],[938,18,500,16],[938,23,500,21],[939,6,501,4,"color"],[939,11,501,9],[939,13,501,11,"Colors"],[939,19,501,17],[939,20,501,17,"default"],[939,27,501,17],[939,28,501,18,"success"],[940,4,502,2],[940,5,502,3],[941,4,503,2,"rateContent"],[941,15,503,13],[941,17,503,15],[942,6,504,4,"flexDirection"],[942,19,504,17],[942,21,504,19],[942,26,504,24],[943,6,505,4,"alignItems"],[943,16,505,14],[943,18,505,16],[943,26,505,24],[944,6,506,4,"marginBottom"],[944,18,506,16],[944,20,506,18],[945,4,507,2],[945,5,507,3],[946,4,508,2,"rateItem"],[946,12,508,10],[946,14,508,12],[947,6,509,4,"flex"],[947,10,509,8],[947,12,509,10],[947,13,509,11],[948,6,510,4,"alignItems"],[948,16,510,14],[948,18,510,16],[949,4,511,2],[949,5,511,3],[950,4,512,2,"rateLabel"],[950,13,512,11],[950,15,512,13],[951,6,513,4,"fontSize"],[951,14,513,12],[951,16,513,14],[951,18,513,16],[952,6,514,4,"color"],[952,11,514,9],[952,13,514,11,"Colors"],[952,19,514,17],[952,20,514,17,"default"],[952,27,514,17],[952,28,514,18,"textGray"],[952,36,514,26],[953,6,515,4,"marginBottom"],[953,18,515,16],[953,20,515,18],[954,4,516,2],[954,5,516,3],[955,4,517,2,"rateValue"],[955,13,517,11],[955,15,517,13],[956,6,518,4,"fontSize"],[956,14,518,12],[956,16,518,14],[956,18,518,16],[957,6,519,4,"fontWeight"],[957,16,519,14],[957,18,519,16],[957,23,519,21],[958,6,520,4,"color"],[958,11,520,9],[958,13,520,11,"Colors"],[958,19,520,17],[958,20,520,17,"default"],[958,27,520,17],[958,28,520,18,"primary"],[959,4,521,2],[959,5,521,3],[960,4,522,2,"rateDivider"],[960,15,522,13],[960,17,522,15],[961,6,523,4,"width"],[961,11,523,9],[961,13,523,11],[961,14,523,12],[962,6,524,4,"height"],[962,12,524,10],[962,14,524,12],[962,16,524,14],[963,6,525,4,"backgroundColor"],[963,21,525,19],[963,23,525,21,"Colors"],[963,29,525,27],[963,30,525,27,"default"],[963,37,525,27],[963,38,525,28,"background"],[964,4,526,2],[964,5,526,3],[965,4,527,2,"rateUpdate"],[965,14,527,12],[965,16,527,14],[966,6,528,4,"fontSize"],[966,14,528,12],[966,16,528,14],[966,18,528,16],[967,6,529,4,"color"],[967,11,529,9],[967,13,529,11,"Colors"],[967,19,529,17],[967,20,529,17,"default"],[967,27,529,17],[967,28,529,18,"textGray"],[967,36,529,26],[968,6,530,4,"textAlign"],[968,15,530,13],[968,17,530,15],[969,4,531,2],[969,5,531,3],[970,4,532,2,"section"],[970,11,532,9],[970,13,532,11],[971,6,533,4,"paddingHorizontal"],[971,23,533,21],[971,25,533,23],[971,27,533,25],[972,6,534,4,"marginBottom"],[972,18,534,16],[972,20,534,18],[973,4,535,2],[973,5,535,3],[974,4,536,2,"sectionHeader"],[974,17,536,15],[974,19,536,17],[975,6,537,4,"flexDirection"],[975,19,537,17],[975,21,537,19],[975,26,537,24],[976,6,538,4,"justifyContent"],[976,20,538,18],[976,22,538,20],[976,37,538,35],[977,6,539,4,"alignItems"],[977,16,539,14],[977,18,539,16],[977,26,539,24],[978,6,540,4,"marginBottom"],[978,18,540,16],[978,20,540,18],[979,4,541,2],[979,5,541,3],[980,4,542,2,"sectionTitle"],[980,16,542,14],[980,18,542,16],[981,6,543,4,"fontSize"],[981,14,543,12],[981,16,543,14],[981,18,543,16],[982,6,544,4,"fontWeight"],[982,16,544,14],[982,18,544,16],[982,23,544,21],[983,6,545,4,"color"],[983,11,545,9],[983,13,545,11,"Colors"],[983,19,545,17],[983,20,545,17,"default"],[983,27,545,17],[983,28,545,18,"textDark"],[983,36,545,26],[984,6,546,4,"marginBottom"],[984,18,546,16],[984,20,546,18],[985,4,547,2],[985,5,547,3],[986,4,548,2,"viewAllText"],[986,15,548,13],[986,17,548,15],[987,6,549,4,"fontSize"],[987,14,549,12],[987,16,549,14],[987,18,549,16],[988,6,550,4,"fontWeight"],[988,16,550,14],[988,18,550,16],[988,23,550,21],[989,6,551,4,"color"],[989,11,551,9],[989,13,551,11,"Colors"],[989,19,551,17],[989,20,551,17,"default"],[989,27,551,17],[989,28,551,18,"primary"],[990,4,552,2],[990,5,552,3],[991,4,553,2,"swapCard"],[991,12,553,10],[991,14,553,12],[992,6,554,4,"backgroundColor"],[992,21,554,19],[992,23,554,21],[992,30,554,28],[993,6,555,4,"borderRadius"],[993,18,555,16],[993,20,555,18],[993,22,555,20],[994,6,556,4,"padding"],[994,13,556,11],[994,15,556,13],[994,17,556,15],[995,6,557,4,"shadowColor"],[995,17,557,15],[995,19,557,17],[995,25,557,23],[996,6,558,4,"shadowOffset"],[996,18,558,16],[996,20,558,18],[997,8,558,20,"width"],[997,13,558,25],[997,15,558,27],[997,16,558,28],[998,8,558,30,"height"],[998,14,558,36],[998,16,558,38],[999,6,558,40],[999,7,558,41],[1000,6,559,4,"shadowOpacity"],[1000,19,559,17],[1000,21,559,19],[1000,25,559,23],[1001,6,560,4,"shadowRadius"],[1001,18,560,16],[1001,20,560,18],[1001,21,560,19],[1002,6,561,4,"elevation"],[1002,15,561,13],[1002,17,561,15],[1003,4,562,2],[1003,5,562,3],[1004,4,563,2,"swapHeader"],[1004,14,563,12],[1004,16,563,14],[1005,6,564,4,"flexDirection"],[1005,19,564,17],[1005,21,564,19],[1005,26,564,24],[1006,6,565,4,"justifyContent"],[1006,20,565,18],[1006,22,565,20],[1006,37,565,35],[1007,6,566,4,"alignItems"],[1007,16,566,14],[1007,18,566,16],[1007,26,566,24],[1008,6,567,4,"marginBottom"],[1008,18,567,16],[1008,20,567,18],[1009,4,568,2],[1009,5,568,3],[1010,4,569,2,"swapLabel"],[1010,13,569,11],[1010,15,569,13],[1011,6,570,4,"fontSize"],[1011,14,570,12],[1011,16,570,14],[1011,18,570,16],[1012,6,571,4,"fontWeight"],[1012,16,571,14],[1012,18,571,16],[1012,23,571,21],[1013,6,572,4,"color"],[1013,11,572,9],[1013,13,572,11,"Colors"],[1013,19,572,17],[1013,20,572,17,"default"],[1013,27,572,17],[1013,28,572,18,"textGray"],[1014,4,573,2],[1014,5,573,3],[1015,4,574,2,"balanceText"],[1015,15,574,13],[1015,17,574,15],[1016,6,575,4,"fontSize"],[1016,14,575,12],[1016,16,575,14],[1016,18,575,16],[1017,6,576,4,"color"],[1017,11,576,9],[1017,13,576,11,"Colors"],[1017,19,576,17],[1017,20,576,17,"default"],[1017,27,576,17],[1017,28,576,18,"textGray"],[1018,4,577,2],[1018,5,577,3],[1019,4,578,2,"inputContainer"],[1019,18,578,16],[1019,20,578,18],[1020,6,579,4,"flexDirection"],[1020,19,579,17],[1020,21,579,19],[1020,26,579,24],[1021,6,580,4,"alignItems"],[1021,16,580,14],[1021,18,580,16],[1021,26,580,24],[1022,6,581,4,"gap"],[1022,9,581,7],[1022,11,581,9],[1023,4,582,2],[1023,5,582,3],[1024,4,583,2,"amountInput"],[1024,15,583,13],[1024,17,583,15],[1025,6,584,4,"flex"],[1025,10,584,8],[1025,12,584,10],[1025,13,584,11],[1026,6,585,4,"fontSize"],[1026,14,585,12],[1026,16,585,14],[1026,18,585,16],[1027,6,586,4,"fontWeight"],[1027,16,586,14],[1027,18,586,16],[1027,23,586,21],[1028,6,587,4,"color"],[1028,11,587,9],[1028,13,587,11,"Colors"],[1028,19,587,17],[1028,20,587,17,"default"],[1028,27,587,17],[1028,28,587,18,"textDark"],[1029,4,588,2],[1029,5,588,3],[1030,4,589,2,"amountInputDisabled"],[1030,23,589,21],[1030,25,589,23],[1031,6,590,4,"color"],[1031,11,590,9],[1031,13,590,11,"Colors"],[1031,19,590,17],[1031,20,590,17,"default"],[1031,27,590,17],[1031,28,590,18,"textGray"],[1032,4,591,2],[1032,5,591,3],[1033,4,592,2,"tokenSelector"],[1033,17,592,15],[1033,19,592,17],[1034,6,593,4,"flexDirection"],[1034,19,593,17],[1034,21,593,19],[1034,26,593,24],[1035,6,594,4,"alignItems"],[1035,16,594,14],[1035,18,594,16],[1035,26,594,24],[1036,6,595,4,"gap"],[1036,9,595,7],[1036,11,595,9],[1037,4,596,2],[1037,5,596,3],[1038,4,597,2,"tokenBadge"],[1038,14,597,12],[1038,16,597,14],[1039,6,598,4,"backgroundColor"],[1039,21,598,19],[1039,23,598,21,"Colors"],[1039,29,598,27],[1039,30,598,27,"default"],[1039,37,598,27],[1039,38,598,28,"primary"],[1039,45,598,35],[1039,48,598,38],[1039,52,598,42],[1040,6,599,4,"paddingHorizontal"],[1040,23,599,21],[1040,25,599,23],[1040,27,599,25],[1041,6,600,4,"paddingVertical"],[1041,21,600,19],[1041,23,600,21],[1041,24,600,22],[1042,6,601,4,"borderRadius"],[1042,18,601,16],[1042,20,601,18],[1043,4,602,2],[1043,5,602,3],[1044,4,603,2,"tokenText"],[1044,13,603,11],[1044,15,603,13],[1045,6,604,4,"fontSize"],[1045,14,604,12],[1045,16,604,14],[1045,18,604,16],[1046,6,605,4,"fontWeight"],[1046,16,605,14],[1046,18,605,16],[1046,23,605,21],[1047,6,606,4,"color"],[1047,11,606,9],[1047,13,606,11,"Colors"],[1047,19,606,17],[1047,20,606,17,"default"],[1047,27,606,17],[1047,28,606,18,"primary"],[1048,4,607,2],[1048,5,607,3],[1049,4,608,2,"maxButton"],[1049,13,608,11],[1049,15,608,13],[1050,6,609,4,"backgroundColor"],[1050,21,609,19],[1050,23,609,21,"Colors"],[1050,29,609,27],[1050,30,609,27,"default"],[1050,37,609,27],[1050,38,609,28,"background"],[1050,48,609,38],[1051,6,610,4,"paddingHorizontal"],[1051,23,610,21],[1051,25,610,23],[1051,27,610,25],[1052,6,611,4,"paddingVertical"],[1052,21,611,19],[1052,23,611,21],[1052,24,611,22],[1053,6,612,4,"borderRadius"],[1053,18,612,16],[1053,20,612,18],[1054,4,613,2],[1054,5,613,3],[1055,4,614,2,"maxButtonText"],[1055,17,614,15],[1055,19,614,17],[1056,6,615,4,"fontSize"],[1056,14,615,12],[1056,16,615,14],[1056,18,615,16],[1057,6,616,4,"fontWeight"],[1057,16,616,14],[1057,18,616,16],[1057,23,616,21],[1058,6,617,4,"color"],[1058,11,617,9],[1058,13,617,11,"Colors"],[1058,19,617,17],[1058,20,617,17,"default"],[1058,27,617,17],[1058,28,617,18,"primary"],[1059,4,618,2],[1059,5,618,3],[1060,4,619,2,"swapButtonContainer"],[1060,23,619,21],[1060,25,619,23],[1061,6,620,4,"alignItems"],[1061,16,620,14],[1061,18,620,16],[1061,26,620,24],[1062,6,621,4,"marginVertical"],[1062,20,621,18],[1062,22,621,20],[1062,23,621,21],[1062,25,621,23],[1063,6,622,4,"zIndex"],[1063,12,622,10],[1063,14,622,12],[1064,4,623,2],[1064,5,623,3],[1065,4,624,2,"swapIconButton"],[1065,18,624,16],[1065,20,624,18],[1066,6,625,4,"width"],[1066,11,625,9],[1066,13,625,11],[1066,15,625,13],[1067,6,626,4,"height"],[1067,12,626,10],[1067,14,626,12],[1067,16,626,14],[1068,6,627,4,"borderRadius"],[1068,18,627,16],[1068,20,627,18],[1068,22,627,20],[1069,6,628,4,"backgroundColor"],[1069,21,628,19],[1069,23,628,21],[1069,30,628,28],[1070,6,629,4,"alignItems"],[1070,16,629,14],[1070,18,629,16],[1070,26,629,24],[1071,6,630,4,"justifyContent"],[1071,20,630,18],[1071,22,630,20],[1071,30,630,28],[1072,6,631,4,"shadowColor"],[1072,17,631,15],[1072,19,631,17],[1072,25,631,23],[1073,6,632,4,"shadowOffset"],[1073,18,632,16],[1073,20,632,18],[1074,8,632,20,"width"],[1074,13,632,25],[1074,15,632,27],[1074,16,632,28],[1075,8,632,30,"height"],[1075,14,632,36],[1075,16,632,38],[1076,6,632,40],[1076,7,632,41],[1077,6,633,4,"shadowOpacity"],[1077,19,633,17],[1077,21,633,19],[1077,24,633,22],[1078,6,634,4,"shadowRadius"],[1078,18,634,16],[1078,20,634,18],[1078,21,634,19],[1079,6,635,4,"elevation"],[1079,15,635,13],[1079,17,635,15],[1080,4,636,2],[1080,5,636,3],[1081,4,637,2,"detailsCard"],[1081,15,637,13],[1081,17,637,15],[1082,6,638,4,"backgroundColor"],[1082,21,638,19],[1082,23,638,21,"Colors"],[1082,29,638,27],[1082,30,638,27,"default"],[1082,37,638,27],[1082,38,638,28,"background"],[1082,48,638,38],[1083,6,639,4,"borderRadius"],[1083,18,639,16],[1083,20,639,18],[1083,22,639,20],[1084,6,640,4,"padding"],[1084,13,640,11],[1084,15,640,13],[1084,17,640,15],[1085,6,641,4,"marginTop"],[1085,15,641,13],[1085,17,641,15],[1085,19,641,17],[1086,6,642,4,"gap"],[1086,9,642,7],[1086,11,642,9],[1087,4,643,2],[1087,5,643,3],[1088,4,644,2,"detailRow"],[1088,13,644,11],[1088,15,644,13],[1089,6,645,4,"flexDirection"],[1089,19,645,17],[1089,21,645,19],[1089,26,645,24],[1090,6,646,4,"justifyContent"],[1090,20,646,18],[1090,22,646,20],[1090,37,646,35],[1091,6,647,4,"alignItems"],[1091,16,647,14],[1091,18,647,16],[1092,4,648,2],[1092,5,648,3],[1093,4,649,2,"detailLabel"],[1093,15,649,13],[1093,17,649,15],[1094,6,650,4,"fontSize"],[1094,14,650,12],[1094,16,650,14],[1094,18,650,16],[1095,6,651,4,"color"],[1095,11,651,9],[1095,13,651,11,"Colors"],[1095,19,651,17],[1095,20,651,17,"default"],[1095,27,651,17],[1095,28,651,18,"textGray"],[1096,4,652,2],[1096,5,652,3],[1097,4,653,2,"detailValue"],[1097,15,653,13],[1097,17,653,15],[1098,6,654,4,"fontSize"],[1098,14,654,12],[1098,16,654,14],[1098,18,654,16],[1099,6,655,4,"fontWeight"],[1099,16,655,14],[1099,18,655,16],[1099,23,655,21],[1100,6,656,4,"color"],[1100,11,656,9],[1100,13,656,11,"Colors"],[1100,19,656,17],[1100,20,656,17,"default"],[1100,27,656,17],[1100,28,656,18,"textDark"],[1101,4,657,2],[1101,5,657,3],[1102,4,658,2,"slippageSelector"],[1102,20,658,18],[1102,22,658,20],[1103,6,659,4,"flexDirection"],[1103,19,659,17],[1103,21,659,19],[1103,26,659,24],[1104,6,660,4,"gap"],[1104,9,660,7],[1104,11,660,9],[1105,4,661,2],[1105,5,661,3],[1106,4,662,2,"slippageOption"],[1106,18,662,16],[1106,20,662,18],[1107,6,663,4,"paddingHorizontal"],[1107,23,663,21],[1107,25,663,23],[1107,27,663,25],[1108,6,664,4,"paddingVertical"],[1108,21,664,19],[1108,23,664,21],[1108,24,664,22],[1109,6,665,4,"borderRadius"],[1109,18,665,16],[1109,20,665,18],[1109,21,665,19],[1110,6,666,4,"backgroundColor"],[1110,21,666,19],[1110,23,666,21],[1111,4,667,2],[1111,5,667,3],[1112,4,668,2,"slippageOptionActive"],[1112,24,668,22],[1112,26,668,24],[1113,6,669,4,"backgroundColor"],[1113,21,669,19],[1113,23,669,21,"Colors"],[1113,29,669,27],[1113,30,669,27,"default"],[1113,37,669,27],[1113,38,669,28,"primary"],[1114,4,670,2],[1114,5,670,3],[1115,4,671,2,"slippageText"],[1115,16,671,14],[1115,18,671,16],[1116,6,672,4,"fontSize"],[1116,14,672,12],[1116,16,672,14],[1116,18,672,16],[1117,6,673,4,"fontWeight"],[1117,16,673,14],[1117,18,673,16],[1117,23,673,21],[1118,6,674,4,"color"],[1118,11,674,9],[1118,13,674,11,"Colors"],[1118,19,674,17],[1118,20,674,17,"default"],[1118,27,674,17],[1118,28,674,18,"textGray"],[1119,4,675,2],[1119,5,675,3],[1120,4,676,2,"slippageTextActive"],[1120,22,676,20],[1120,24,676,22],[1121,6,677,4,"color"],[1121,11,677,9],[1121,13,677,11],[1122,4,678,2],[1122,5,678,3],[1123,4,679,2,"executeButton"],[1123,17,679,15],[1123,19,679,17],[1124,6,680,4,"borderRadius"],[1124,18,680,16],[1124,20,680,18],[1124,22,680,20],[1125,6,681,4,"overflow"],[1125,14,681,12],[1125,16,681,14],[1125,24,681,22],[1126,6,682,4,"marginTop"],[1126,15,682,13],[1126,17,682,15],[1127,4,683,2],[1127,5,683,3],[1128,4,684,2,"executeButtonGradient"],[1128,25,684,23],[1128,27,684,25],[1129,6,685,4,"flexDirection"],[1129,19,685,17],[1129,21,685,19],[1129,26,685,24],[1130,6,686,4,"alignItems"],[1130,16,686,14],[1130,18,686,16],[1130,26,686,24],[1131,6,687,4,"justifyContent"],[1131,20,687,18],[1131,22,687,20],[1131,30,687,28],[1132,6,688,4,"paddingVertical"],[1132,21,688,19],[1132,23,688,21],[1132,25,688,23],[1133,6,689,4,"gap"],[1133,9,689,7],[1133,11,689,9],[1134,4,690,2],[1134,5,690,3],[1135,4,691,2,"executeButtonText"],[1135,21,691,19],[1135,23,691,21],[1136,6,692,4,"fontSize"],[1136,14,692,12],[1136,16,692,14],[1136,18,692,16],[1137,6,693,4,"fontWeight"],[1137,16,693,14],[1137,18,693,16],[1137,23,693,21],[1138,6,694,4,"color"],[1138,11,694,9],[1138,13,694,11],[1139,4,695,2],[1139,5,695,3],[1140,4,696,2,"historyCard"],[1140,15,696,13],[1140,17,696,15],[1141,6,697,4,"backgroundColor"],[1141,21,697,19],[1141,23,697,21],[1141,30,697,28],[1142,6,698,4,"borderRadius"],[1142,18,698,16],[1142,20,698,18],[1142,22,698,20],[1143,6,699,4,"padding"],[1143,13,699,11],[1143,15,699,13],[1143,17,699,15],[1144,6,700,4,"marginBottom"],[1144,18,700,16],[1144,20,700,18],[1144,22,700,20],[1145,6,701,4,"shadowColor"],[1145,17,701,15],[1145,19,701,17],[1145,25,701,23],[1146,6,702,4,"shadowOffset"],[1146,18,702,16],[1146,20,702,18],[1147,8,702,20,"width"],[1147,13,702,25],[1147,15,702,27],[1147,16,702,28],[1148,8,702,30,"height"],[1148,14,702,36],[1148,16,702,38],[1149,6,702,40],[1149,7,702,41],[1150,6,703,4,"shadowOpacity"],[1150,19,703,17],[1150,21,703,19],[1150,25,703,23],[1151,6,704,4,"shadowRadius"],[1151,18,704,16],[1151,20,704,18],[1151,21,704,19],[1152,6,705,4,"elevation"],[1152,15,705,13],[1152,17,705,15],[1153,4,706,2],[1153,5,706,3],[1154,4,707,2,"historyHeader"],[1154,17,707,15],[1154,19,707,17],[1155,6,708,4,"flexDirection"],[1155,19,708,17],[1155,21,708,19],[1155,26,708,24],[1156,6,709,4,"alignItems"],[1156,16,709,14],[1156,18,709,16],[1156,26,709,24],[1157,6,710,4,"marginBottom"],[1157,18,710,16],[1157,20,710,18],[1158,4,711,2],[1158,5,711,3],[1159,4,712,2,"historyIcon"],[1159,15,712,13],[1159,17,712,15],[1160,6,713,4,"width"],[1160,11,713,9],[1160,13,713,11],[1160,15,713,13],[1161,6,714,4,"height"],[1161,12,714,10],[1161,14,714,12],[1161,16,714,14],[1162,6,715,4,"borderRadius"],[1162,18,715,16],[1162,20,715,18],[1162,22,715,20],[1163,6,716,4,"backgroundColor"],[1163,21,716,19],[1163,23,716,21,"Colors"],[1163,29,716,27],[1163,30,716,27,"default"],[1163,37,716,27],[1163,38,716,28,"primary"],[1163,45,716,35],[1163,48,716,38],[1163,52,716,42],[1164,6,717,4,"alignItems"],[1164,16,717,14],[1164,18,717,16],[1164,26,717,24],[1165,6,718,4,"justifyContent"],[1165,20,718,18],[1165,22,718,20],[1165,30,718,28],[1166,6,719,4,"marginRight"],[1166,17,719,15],[1166,19,719,17],[1167,4,720,2],[1167,5,720,3],[1168,4,721,2,"historyInfo"],[1168,15,721,13],[1168,17,721,15],[1169,6,722,4,"flex"],[1169,10,722,8],[1169,12,722,10],[1170,4,723,2],[1170,5,723,3],[1171,4,724,2,"historyTitle"],[1171,16,724,14],[1171,18,724,16],[1172,6,725,4,"fontSize"],[1172,14,725,12],[1172,16,725,14],[1172,18,725,16],[1173,6,726,4,"fontWeight"],[1173,16,726,14],[1173,18,726,16],[1173,23,726,21],[1174,6,727,4,"color"],[1174,11,727,9],[1174,13,727,11,"Colors"],[1174,19,727,17],[1174,20,727,17,"default"],[1174,27,727,17],[1174,28,727,18,"textDark"],[1174,36,727,26],[1175,6,728,4,"marginBottom"],[1175,18,728,16],[1175,20,728,18],[1176,4,729,2],[1176,5,729,3],[1177,4,730,2,"historyDate"],[1177,15,730,13],[1177,17,730,15],[1178,6,731,4,"fontSize"],[1178,14,731,12],[1178,16,731,14],[1178,18,731,16],[1179,6,732,4,"color"],[1179,11,732,9],[1179,13,732,11,"Colors"],[1179,19,732,17],[1179,20,732,17,"default"],[1179,27,732,17],[1179,28,732,18,"textGray"],[1179,36,732,26],[1180,6,733,4,"marginBottom"],[1180,18,733,16],[1180,20,733,18],[1181,4,734,2],[1181,5,734,3],[1182,4,735,2,"historyHash"],[1182,15,735,13],[1182,17,735,15],[1183,6,736,4,"fontSize"],[1183,14,736,12],[1183,16,736,14],[1183,18,736,16],[1184,6,737,4,"color"],[1184,11,737,9],[1184,13,737,11,"Colors"],[1184,19,737,17],[1184,20,737,17,"default"],[1184,27,737,17],[1184,28,737,18,"textGray"],[1184,36,737,26],[1185,6,738,4,"fontFamily"],[1185,16,738,14],[1185,18,738,16],[1186,4,739,2],[1186,5,739,3],[1187,4,740,2,"historyAmount"],[1187,17,740,15],[1187,19,740,17],[1188,6,741,4,"alignItems"],[1188,16,741,14],[1188,18,741,16],[1189,4,742,2],[1189,5,742,3],[1190,4,743,2,"historyFromAmount"],[1190,21,743,19],[1190,23,743,21],[1191,6,744,4,"fontSize"],[1191,14,744,12],[1191,16,744,14],[1191,18,744,16],[1192,6,745,4,"fontWeight"],[1192,16,745,14],[1192,18,745,16],[1192,23,745,21],[1193,6,746,4,"color"],[1193,11,746,9],[1193,13,746,11,"Colors"],[1193,19,746,17],[1193,20,746,17,"default"],[1193,27,746,17],[1193,28,746,18,"error"],[1193,33,746,23],[1194,6,747,4,"marginBottom"],[1194,18,747,16],[1194,20,747,18],[1195,4,748,2],[1195,5,748,3],[1196,4,749,2,"historyToAmount"],[1196,19,749,17],[1196,21,749,19],[1197,6,750,4,"fontSize"],[1197,14,750,12],[1197,16,750,14],[1197,18,750,16],[1198,6,751,4,"fontWeight"],[1198,16,751,14],[1198,18,751,16],[1198,23,751,21],[1199,6,752,4,"color"],[1199,11,752,9],[1199,13,752,11,"Colors"],[1199,19,752,17],[1199,20,752,17,"default"],[1199,27,752,17],[1199,28,752,18,"success"],[1200,4,753,2],[1200,5,753,3],[1201,4,754,2,"historyFooter"],[1201,17,754,15],[1201,19,754,17],[1202,6,755,4,"flexDirection"],[1202,19,755,17],[1202,21,755,19],[1202,26,755,24],[1203,6,756,4,"justifyContent"],[1203,20,756,18],[1203,22,756,20],[1203,37,756,35],[1204,6,757,4,"alignItems"],[1204,16,757,14],[1204,18,757,16],[1204,26,757,24],[1205,6,758,4,"paddingTop"],[1205,16,758,14],[1205,18,758,16],[1205,20,758,18],[1206,6,759,4,"borderTopWidth"],[1206,20,759,18],[1206,22,759,20],[1206,23,759,21],[1207,6,760,4,"borderTopColor"],[1207,20,760,18],[1207,22,760,20,"Colors"],[1207,28,760,26],[1207,29,760,26,"default"],[1207,36,760,26],[1207,37,760,27,"background"],[1208,4,761,2],[1208,5,761,3],[1209,4,762,2,"historyRate"],[1209,15,762,13],[1209,17,762,15],[1210,6,763,4,"fontSize"],[1210,14,763,12],[1210,16,763,14],[1210,18,763,16],[1211,6,764,4,"color"],[1211,11,764,9],[1211,13,764,11,"Colors"],[1211,19,764,17],[1211,20,764,17,"default"],[1211,27,764,17],[1211,28,764,18,"textGray"],[1212,4,765,2],[1212,5,765,3],[1213,4,766,2,"infoSection"],[1213,15,766,13],[1213,17,766,15],[1214,6,767,4,"paddingHorizontal"],[1214,23,767,21],[1214,25,767,23],[1214,27,767,25],[1215,6,768,4,"marginBottom"],[1215,18,768,16],[1215,20,768,18],[1216,4,769,2],[1216,5,769,3],[1217,4,770,2,"infoCard"],[1217,12,770,10],[1217,14,770,12],[1218,6,771,4,"flexDirection"],[1218,19,771,17],[1218,21,771,19],[1218,26,771,24],[1219,6,772,4,"backgroundColor"],[1219,21,772,19],[1219,23,772,21,"Colors"],[1219,29,772,27],[1219,30,772,27,"default"],[1219,37,772,27],[1219,38,772,28,"primary"],[1219,45,772,35],[1219,48,772,38],[1219,52,772,42],[1220,6,773,4,"borderRadius"],[1220,18,773,16],[1220,20,773,18],[1220,22,773,20],[1221,6,774,4,"padding"],[1221,13,774,11],[1221,15,774,13],[1221,17,774,15],[1222,6,775,4,"gap"],[1222,9,775,7],[1222,11,775,9],[1223,4,776,2],[1223,5,776,3],[1224,4,777,2,"infoContent"],[1224,15,777,13],[1224,17,777,15],[1225,6,778,4,"flex"],[1225,10,778,8],[1225,12,778,10],[1226,4,779,2],[1226,5,779,3],[1227,4,780,2,"infoTitle"],[1227,13,780,11],[1227,15,780,13],[1228,6,781,4,"fontSize"],[1228,14,781,12],[1228,16,781,14],[1228,18,781,16],[1229,6,782,4,"fontWeight"],[1229,16,782,14],[1229,18,782,16],[1229,23,782,21],[1230,6,783,4,"color"],[1230,11,783,9],[1230,13,783,11,"Colors"],[1230,19,783,17],[1230,20,783,17,"default"],[1230,27,783,17],[1230,28,783,18,"textDark"],[1230,36,783,26],[1231,6,784,4,"marginBottom"],[1231,18,784,16],[1231,20,784,18],[1232,4,785,2],[1232,5,785,3],[1233,4,786,2,"infoText"],[1233,12,786,10],[1233,14,786,12],[1234,6,787,4,"fontSize"],[1234,14,787,12],[1234,16,787,14],[1234,18,787,16],[1235,6,788,4,"color"],[1235,11,788,9],[1235,13,788,11,"Colors"],[1235,19,788,17],[1235,20,788,17,"default"],[1235,27,788,17],[1235,28,788,18,"textDark"],[1235,36,788,26],[1236,6,789,4,"lineHeight"],[1236,16,789,14],[1236,18,789,16],[1237,4,790,2],[1238,2,791,0],[1238,3,791,1],[1238,4,791,2],[1239,2,791,3],[1239,6,791,3,"_c"],[1239,8,791,3],[1240,2,791,3,"$RefreshReg$"],[1240,14,791,3],[1240,15,791,3,"_c"],[1240,17,791,3],[1241,0,791,3],[1241,3]],"functionMap":{"names":["<global>","ExchangeScreen","useEffect$argument_0","calculateToAmount","swapTokens","executeSwap","onPress","setMaxAmount","getCurrentRate","TouchableOpacity.props.onPress","swapHistory.map$argument_0"],"mappings":"AAA;eCgC;YCyC;GDE;4BEE;GFoB;qBGE;GHM;sBIE;mBCuB;WDS;GJI;uBME;GNG;yBOE;GPE;uBQmB,6DR;6BQoH,wBR;6BQgB,wBR;6BQgB,wBR;2BS+C;WTuC;CDoB"},"hasCjsExports":false},"type":"js/module"}]} |