@onairos/react-native 3.4.1 → 3.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (574) hide show
  1. package/README.md +423 -374
  2. package/lib/commonjs/api/index.js +9 -145
  3. package/lib/commonjs/assets/animations/loaderani.json +1 -0
  4. package/lib/commonjs/assets/animations/persona-animation.json +1 -0
  5. package/lib/commonjs/assets/fonts/EBGaramond-VariableFont_wght.ttf +0 -0
  6. package/lib/commonjs/assets/fonts/IBMPlexSans-VariableFont_wdth,wght.ttf +0 -0
  7. package/lib/commonjs/assets/icons/Facebookicon.png +0 -0
  8. package/lib/commonjs/assets/icons/Gmail.png +0 -0
  9. package/lib/commonjs/assets/icons/Linkedinicon.png +0 -0
  10. package/lib/commonjs/assets/icons/Redditicon.png +0 -0
  11. package/lib/commonjs/assets/icons/YouTubeicon2.png +0 -0
  12. package/lib/commonjs/assets/icons/YouTubeicon3.png +0 -0
  13. package/lib/commonjs/assets/icons/chatgpt.png +0 -0
  14. package/lib/commonjs/assets/icons/claude.png +0 -0
  15. package/lib/commonjs/assets/icons/gemini.png +0 -0
  16. package/lib/commonjs/assets/icons/grok.png +0 -0
  17. package/lib/commonjs/assets/images/Checkbox.svg +3 -0
  18. package/lib/commonjs/assets/images/EnochE.svg +19 -0
  19. package/lib/commonjs/assets/images/Enochicon1.png +0 -0
  20. package/lib/commonjs/assets/images/Face_ID_logo.png +0 -0
  21. package/lib/commonjs/assets/images/Facebookicon.png +0 -0
  22. package/lib/commonjs/assets/images/Gmail.png +0 -0
  23. package/lib/commonjs/assets/images/Googlelogo.png +0 -0
  24. package/lib/commonjs/assets/images/Linkedinicon.png +0 -0
  25. package/lib/commonjs/assets/images/OnairosNewLogo.png +0 -0
  26. package/lib/commonjs/assets/images/Onairoslogo.png +0 -0
  27. package/lib/commonjs/assets/images/Personalityprofile.svg +3 -0
  28. package/lib/commonjs/assets/images/Personalitytraits.svg +3 -0
  29. package/lib/commonjs/assets/images/Redditicon.png +0 -0
  30. package/lib/commonjs/assets/images/Userpreferences.svg +3 -0
  31. package/lib/commonjs/assets/images/YouTubeicon3.png +0 -0
  32. package/lib/commonjs/assets/images/arrow.svg +20 -0
  33. package/lib/commonjs/assets/images/basicproficon.svg +43 -0
  34. package/lib/commonjs/assets/images/basicprofile.svg +3 -0
  35. package/lib/commonjs/assets/images/chatgpt.png +0 -0
  36. package/lib/commonjs/assets/images/checkmark.svg +4 -0
  37. package/lib/commonjs/assets/images/claude.png +0 -0
  38. package/lib/commonjs/assets/images/contentanalysis.svg +3 -0
  39. package/lib/commonjs/assets/images/contenticon.svg +23 -0
  40. package/lib/commonjs/assets/images/gemini.png +0 -0
  41. package/lib/commonjs/assets/images/grok.png +0 -0
  42. package/lib/commonjs/assets/images/persona1.png +0 -0
  43. package/lib/commonjs/assets/images/persona2.png +0 -0
  44. package/lib/commonjs/assets/images/persona3.png +0 -0
  45. package/lib/commonjs/assets/images/persona4.png +0 -0
  46. package/lib/commonjs/assets/images/persona5.png +0 -0
  47. package/lib/commonjs/assets/images/personalityicon.svg +18 -0
  48. package/lib/commonjs/assets/images/x-close.svg +3 -0
  49. package/lib/commonjs/components/BodyText.js +9 -0
  50. package/lib/commonjs/components/BrandMark.js +10 -0
  51. package/lib/commonjs/components/CodeInput.js +9 -0
  52. package/lib/commonjs/components/EmailInput.js +8 -0
  53. package/lib/commonjs/components/GoogleButton.js +9 -0
  54. package/lib/commonjs/components/HeadingGroup.js +9 -0
  55. package/lib/commonjs/components/LLMDataInputModal.js +14 -0
  56. package/lib/commonjs/components/ModalHeader.js +9 -0
  57. package/lib/commonjs/components/ModalSheet.js +9 -0
  58. package/lib/commonjs/components/Onairos.js +14 -374
  59. package/lib/commonjs/components/OnairosButton.js +13 -309
  60. package/lib/commonjs/components/OnairosSignInButton.js +12 -0
  61. package/lib/commonjs/components/Overlay.js +13 -483
  62. package/lib/commonjs/components/PersonaImage.js +10 -0
  63. package/lib/commonjs/components/PersonaLoadingScreen.js +12 -0
  64. package/lib/commonjs/components/PersonalizationConsentScreen.js +13 -0
  65. package/lib/commonjs/components/PinCreationScreen.js +12 -0
  66. package/lib/commonjs/components/PinInput.js +9 -302
  67. package/lib/commonjs/components/PlatformConnectorsStep.js +23 -0
  68. package/lib/commonjs/components/PlatformList.js +10 -137
  69. package/lib/commonjs/components/PlatformToggle.js +9 -0
  70. package/lib/commonjs/components/PrimaryButton.js +10 -0
  71. package/lib/commonjs/components/SignInMatchAnimation.js +9 -0
  72. package/lib/commonjs/components/SignInStep.js +12 -0
  73. package/lib/commonjs/components/UniversalOnboarding.js +30 -1702
  74. package/lib/commonjs/components/VerificationStep.js +11 -0
  75. package/lib/commonjs/components/WelcomeScreen.js +22 -0
  76. package/lib/commonjs/components/icons/Basicproficon.js +8 -0
  77. package/lib/commonjs/components/icons/Basicprofile.js +8 -0
  78. package/lib/commonjs/components/icons/Checkbox.js +8 -0
  79. package/lib/commonjs/components/icons/Checkmark.js +8 -0
  80. package/lib/commonjs/components/icons/Contentanalysis.js +8 -0
  81. package/lib/commonjs/components/icons/Contenticon.js +8 -0
  82. package/lib/commonjs/components/icons/EnochE.js +8 -0
  83. package/lib/commonjs/components/icons/Personalityicon.js +8 -0
  84. package/lib/commonjs/components/icons/Personalityprofile.js +8 -0
  85. package/lib/commonjs/components/icons/Personalitytraits.js +8 -0
  86. package/lib/commonjs/components/icons/Userpreferences.js +8 -0
  87. package/lib/commonjs/components/icons/index.js +17 -0
  88. package/lib/commonjs/components/onboarding/OAuthWebView.js +18 -827
  89. package/lib/commonjs/components/onboarding/OnboardingHeader.js +10 -74
  90. package/lib/commonjs/components/onboarding/PinInput.js +10 -283
  91. package/lib/commonjs/components/onboarding/PlatformConnector.js +11 -249
  92. package/lib/commonjs/config/api.js +7 -0
  93. package/lib/commonjs/constants/index.js +7 -83
  94. package/lib/commonjs/context/AuthContext.js +10 -0
  95. package/lib/commonjs/hooks/useConnectedAccounts.js +9 -0
  96. package/lib/commonjs/hooks/useConnections.js +8 -159
  97. package/lib/commonjs/hooks/useCredentials.js +10 -177
  98. package/lib/commonjs/hooks/useUserConnections.js +10 -0
  99. package/lib/commonjs/index.js +34 -106
  100. package/lib/commonjs/services/SDK_API_KEY_VALIDATION.md +421 -421
  101. package/lib/commonjs/services/apiClient.js +8 -0
  102. package/lib/commonjs/services/apiKeyService.js +9 -952
  103. package/lib/commonjs/services/authService.js +10 -0
  104. package/lib/commonjs/services/biometricPinService.js +8 -0
  105. package/lib/commonjs/services/chatGPTConversationExtractor.js +8 -0
  106. package/lib/commonjs/services/chatGPTConversationService.js +9 -0
  107. package/lib/commonjs/services/claudeConversationExtractor.js +8 -0
  108. package/lib/commonjs/services/claudeConversationService.js +9 -0
  109. package/lib/commonjs/services/connectedAccountsService.js +10 -0
  110. package/lib/commonjs/services/googleAuthService.js +11 -0
  111. package/lib/commonjs/services/hingeDataExtractor.js +8 -0
  112. package/lib/commonjs/services/hingeDataService.js +9 -0
  113. package/lib/commonjs/services/imageCompressionService.js +7 -0
  114. package/lib/commonjs/services/instagramDataExtractor.js +8 -0
  115. package/lib/commonjs/services/instagramDataService.js +9 -0
  116. package/lib/commonjs/services/jwtStorageService.js +7 -0
  117. package/lib/commonjs/services/linkedinDOMExtractor.js +7 -0
  118. package/lib/commonjs/services/linkedinProfileService.js +9 -0
  119. package/lib/commonjs/services/linkedinScrapingService.js +8 -0
  120. package/lib/commonjs/services/llmDataStorage.js +8 -0
  121. package/lib/commonjs/services/mobileTrainingService.js +8 -0
  122. package/lib/commonjs/services/oauthService.js +11 -390
  123. package/lib/commonjs/services/pinEncryptionService.js +8 -0
  124. package/lib/commonjs/services/pinStorageUtils.js +7 -0
  125. package/lib/commonjs/services/platformAuthService.js +12 -1067
  126. package/lib/commonjs/services/sephoraDataExtractor.js +8 -0
  127. package/lib/commonjs/services/sephoraDataService.js +9 -0
  128. package/lib/commonjs/services/storageService.js +8 -0
  129. package/lib/commonjs/services/telegramDataExtractor.js +8 -0
  130. package/lib/commonjs/services/telegramDataService.js +11 -0
  131. package/lib/commonjs/services/trainingApiHelpers.js +7 -0
  132. package/lib/commonjs/services/userConnectionsService.js +10 -0
  133. package/lib/commonjs/services/youtubeMigrationService.js +10 -0
  134. package/lib/commonjs/theme/index.js +7 -0
  135. package/lib/commonjs/types/ambient.d.js +1 -2
  136. package/lib/commonjs/types/declarations.d.js +1 -2
  137. package/lib/commonjs/types/index.js +1 -6
  138. package/lib/commonjs/types/node-fix.d.js +1 -2
  139. package/lib/commonjs/types/node-override.d.js +1 -2
  140. package/lib/commonjs/types/opacity.d.js +1 -2
  141. package/lib/commonjs/types.js +1 -14
  142. package/lib/commonjs/utils/Portal.js +8 -98
  143. package/lib/commonjs/utils/api.js +9 -129
  144. package/lib/commonjs/utils/assetRegistry.js +33 -0
  145. package/lib/commonjs/utils/auth.js +9 -111
  146. package/lib/commonjs/utils/connectorTests.js +29 -0
  147. package/lib/commonjs/utils/crypto.js +8 -62
  148. package/lib/commonjs/utils/debugHelper.js +1 -64
  149. package/lib/commonjs/utils/encryption.js +7 -76
  150. package/lib/commonjs/utils/eventUtils.js +1 -0
  151. package/lib/commonjs/utils/haptics.js +9 -0
  152. package/lib/commonjs/utils/imagePreloader.js +1 -0
  153. package/lib/commonjs/utils/networkDiagnostics.js +8 -0
  154. package/lib/commonjs/utils/onairosApi.js +9 -350
  155. package/lib/commonjs/utils/programmaticFlow.js +9 -117
  156. package/lib/commonjs/utils/retryHelper.js +1 -220
  157. package/lib/commonjs/utils/secureStorage.js +10 -349
  158. package/lib/commonjs/utils/webviewScripts/chatgpt.js +1 -0
  159. package/lib/commonjs/utils/webviewScripts/claude.js +1 -0
  160. package/lib/commonjs/utils/webviewScripts/hinge.js +1 -0
  161. package/lib/commonjs/utils/webviewScripts/index.js +13 -0
  162. package/lib/commonjs/utils/webviewScripts/instagram.js +1 -0
  163. package/lib/commonjs/utils/webviewScripts/linkedin.js +1 -0
  164. package/lib/commonjs/utils/webviewScripts/sephora.js +1 -0
  165. package/lib/commonjs/utils/webviewScripts/telegram.js +1 -0
  166. package/lib/module/api/index.js +1 -139
  167. package/lib/module/assets/animations/loaderani.json +1 -0
  168. package/lib/module/assets/animations/persona-animation.json +1 -0
  169. package/lib/module/assets/fonts/EBGaramond-VariableFont_wght.ttf +0 -0
  170. package/lib/module/assets/fonts/IBMPlexSans-VariableFont_wdth,wght.ttf +0 -0
  171. package/lib/module/assets/icons/Facebookicon.png +0 -0
  172. package/lib/module/assets/icons/Gmail.png +0 -0
  173. package/lib/module/assets/icons/Linkedinicon.png +0 -0
  174. package/lib/module/assets/icons/Redditicon.png +0 -0
  175. package/lib/module/assets/icons/YouTubeicon2.png +0 -0
  176. package/lib/module/assets/icons/YouTubeicon3.png +0 -0
  177. package/lib/module/assets/icons/chatgpt.png +0 -0
  178. package/lib/module/assets/icons/claude.png +0 -0
  179. package/lib/module/assets/icons/farcaster.png +0 -0
  180. package/lib/module/assets/icons/gemini.png +0 -0
  181. package/lib/module/assets/icons/grok.png +0 -0
  182. package/lib/module/assets/icons/instagram.png +0 -0
  183. package/lib/module/assets/icons/pinterest.png +0 -0
  184. package/lib/module/assets/icons/swerv_logo.png +0 -0
  185. package/lib/module/assets/icons/twitter.jpg +0 -0
  186. package/lib/module/assets/images/Checkbox.svg +3 -0
  187. package/lib/module/assets/images/EnochE.svg +19 -0
  188. package/lib/module/assets/images/Enochicon1.png +0 -0
  189. package/lib/module/assets/images/Face_ID_logo.png +0 -0
  190. package/lib/module/assets/images/Facebookicon.png +0 -0
  191. package/lib/module/assets/images/Gmail.png +0 -0
  192. package/lib/module/assets/images/Googlelogo.png +0 -0
  193. package/lib/module/assets/images/Linkedinicon.png +0 -0
  194. package/lib/module/assets/images/OnairosNewLogo.png +0 -0
  195. package/lib/module/assets/images/Onairoslogo.png +0 -0
  196. package/lib/module/assets/images/Personalityprofile.svg +3 -0
  197. package/lib/module/assets/images/Personalitytraits.svg +3 -0
  198. package/lib/module/assets/images/Redditicon.png +0 -0
  199. package/lib/module/assets/images/Userpreferences.svg +3 -0
  200. package/lib/module/assets/images/YouTubeicon3.png +0 -0
  201. package/lib/module/assets/images/arrow.svg +20 -0
  202. package/lib/module/assets/images/basicproficon.svg +43 -0
  203. package/lib/module/assets/images/basicprofile.svg +3 -0
  204. package/lib/module/assets/images/chatgpt.png +0 -0
  205. package/lib/module/assets/images/checkmark.svg +4 -0
  206. package/lib/module/assets/images/claude.png +0 -0
  207. package/lib/module/assets/images/contentanalysis.svg +3 -0
  208. package/lib/module/assets/images/contenticon.svg +23 -0
  209. package/lib/module/assets/images/gemini.png +0 -0
  210. package/lib/module/assets/images/grok.png +0 -0
  211. package/lib/module/assets/images/persona1.png +0 -0
  212. package/lib/module/assets/images/persona2.png +0 -0
  213. package/lib/module/assets/images/persona3.png +0 -0
  214. package/lib/module/assets/images/persona4.png +0 -0
  215. package/lib/module/assets/images/persona5.png +0 -0
  216. package/lib/module/assets/images/personalityicon.svg +18 -0
  217. package/lib/module/assets/images/x-close.svg +3 -0
  218. package/lib/module/components/BodyText.js +1 -0
  219. package/lib/module/components/BrandMark.js +1 -0
  220. package/lib/module/components/CodeInput.js +1 -0
  221. package/lib/module/components/EmailInput.js +1 -0
  222. package/lib/module/components/GoogleButton.js +1 -0
  223. package/lib/module/components/HeadingGroup.js +1 -0
  224. package/lib/module/components/LLMDataInputModal.js +8 -0
  225. package/lib/module/components/ModalHeader.js +1 -0
  226. package/lib/module/components/ModalSheet.js +1 -0
  227. package/lib/module/components/Onairos.js +1 -367
  228. package/lib/module/components/OnairosButton.js +1 -302
  229. package/lib/module/components/OnairosSignInButton.js +1 -0
  230. package/lib/module/components/Overlay.js +1 -474
  231. package/lib/module/components/PersonaImage.js +1 -0
  232. package/lib/module/components/PersonaLoadingScreen.js +1 -0
  233. package/lib/module/components/PersonalizationConsentScreen.js +1 -0
  234. package/lib/module/components/PinCreationScreen.js +1 -0
  235. package/lib/module/components/PinInput.js +1 -293
  236. package/lib/module/components/PlatformConnectorsStep.js +7 -0
  237. package/lib/module/components/PlatformList.js +1 -129
  238. package/lib/module/components/PlatformToggle.js +1 -0
  239. package/lib/module/components/PrimaryButton.js +1 -0
  240. package/lib/module/components/SignInMatchAnimation.js +1 -0
  241. package/lib/module/components/SignInStep.js +1 -0
  242. package/lib/module/components/UniversalOnboarding.js +1 -1693
  243. package/lib/module/components/VerificationStep.js +1 -0
  244. package/lib/module/components/WelcomeScreen.js +1 -0
  245. package/lib/module/components/icons/Basicproficon.js +1 -0
  246. package/lib/module/components/icons/Basicprofile.js +1 -0
  247. package/lib/module/components/icons/Checkbox.js +1 -0
  248. package/lib/module/components/icons/Checkmark.js +1 -0
  249. package/lib/module/components/icons/Contentanalysis.js +1 -0
  250. package/lib/module/components/icons/Contenticon.js +1 -0
  251. package/lib/module/components/icons/EnochE.js +1 -0
  252. package/lib/module/components/icons/Personalityicon.js +1 -0
  253. package/lib/module/components/icons/Personalityprofile.js +1 -0
  254. package/lib/module/components/icons/Personalitytraits.js +1 -0
  255. package/lib/module/components/icons/Userpreferences.js +1 -0
  256. package/lib/module/components/icons/index.js +1 -0
  257. package/lib/module/components/onboarding/OAuthWebView.js +1 -818
  258. package/lib/module/components/onboarding/OnboardingHeader.js +1 -66
  259. package/lib/module/components/onboarding/PinInput.js +1 -274
  260. package/lib/module/components/onboarding/PlatformConnector.js +1 -240
  261. package/lib/module/config/api.js +1 -0
  262. package/lib/module/constants/index.js +1 -77
  263. package/lib/module/context/AuthContext.js +1 -0
  264. package/lib/module/hooks/useConnectedAccounts.js +1 -0
  265. package/lib/module/hooks/useConnections.js +1 -152
  266. package/lib/module/hooks/useCredentials.js +6 -169
  267. package/lib/module/hooks/useUserConnections.js +1 -0
  268. package/lib/module/index.js +1 -32
  269. package/lib/module/services/SDK_API_KEY_VALIDATION.md +421 -421
  270. package/lib/module/services/apiClient.js +1 -0
  271. package/lib/module/services/apiKeyService.js +1 -925
  272. package/lib/module/services/authService.js +1 -0
  273. package/lib/module/services/biometricPinService.js +1 -0
  274. package/lib/module/services/chatGPTConversationExtractor.js +1 -0
  275. package/lib/module/services/chatGPTConversationService.js +1 -0
  276. package/lib/module/services/claudeConversationExtractor.js +1 -0
  277. package/lib/module/services/claudeConversationService.js +1 -0
  278. package/lib/module/services/connectedAccountsService.js +1 -0
  279. package/lib/module/services/googleAuthService.js +1 -0
  280. package/lib/module/services/hingeDataExtractor.js +1 -0
  281. package/lib/module/services/hingeDataService.js +1 -0
  282. package/lib/module/services/imageCompressionService.js +1 -0
  283. package/lib/module/services/instagramDataExtractor.js +1 -0
  284. package/lib/module/services/instagramDataService.js +1 -0
  285. package/lib/module/services/jwtStorageService.js +1 -0
  286. package/lib/module/services/linkedinDOMExtractor.js +1 -0
  287. package/lib/module/services/linkedinProfileService.js +1 -0
  288. package/lib/module/services/linkedinScrapingService.js +1 -0
  289. package/lib/module/services/llmDataStorage.js +1 -0
  290. package/lib/module/services/mobileTrainingService.js +1 -0
  291. package/lib/module/services/oauthService.js +1 -380
  292. package/lib/module/services/pinEncryptionService.js +7 -0
  293. package/lib/module/services/pinStorageUtils.js +1 -0
  294. package/lib/module/services/platformAuthService.js +1 -1041
  295. package/lib/module/services/sephoraDataExtractor.js +1 -0
  296. package/lib/module/services/sephoraDataService.js +1 -0
  297. package/lib/module/services/storageService.js +1 -0
  298. package/lib/module/services/telegramDataExtractor.js +1 -0
  299. package/lib/module/services/telegramDataService.js +8 -0
  300. package/lib/module/services/trainingApiHelpers.js +1 -0
  301. package/lib/module/services/userConnectionsService.js +1 -0
  302. package/lib/module/services/youtubeMigrationService.js +1 -0
  303. package/lib/module/theme/index.js +1 -0
  304. package/lib/module/types.js +1 -10
  305. package/lib/module/utils/Portal.js +1 -90
  306. package/lib/module/utils/api.js +1 -117
  307. package/lib/module/utils/assetRegistry.js +33 -0
  308. package/lib/module/utils/auth.js +1 -99
  309. package/lib/module/utils/connectorTests.js +28 -0
  310. package/lib/module/utils/crypto.js +1 -54
  311. package/lib/module/utils/debugHelper.js +1 -54
  312. package/lib/module/utils/encryption.js +1 -67
  313. package/lib/module/utils/eventUtils.js +1 -0
  314. package/lib/module/utils/haptics.js +8 -0
  315. package/lib/module/utils/imagePreloader.js +1 -0
  316. package/lib/module/utils/networkDiagnostics.js +1 -0
  317. package/lib/module/utils/onairosApi.js +1 -333
  318. package/lib/module/utils/programmaticFlow.js +1 -111
  319. package/lib/module/utils/retryHelper.js +1 -211
  320. package/lib/module/utils/secureStorage.js +6 -330
  321. package/lib/module/utils/webviewScripts/chatgpt.js +1 -0
  322. package/lib/module/utils/webviewScripts/claude.js +1 -0
  323. package/lib/module/utils/webviewScripts/hinge.js +1 -0
  324. package/lib/module/utils/webviewScripts/index.js +1 -0
  325. package/lib/module/utils/webviewScripts/instagram.js +1 -0
  326. package/lib/module/utils/webviewScripts/linkedin.js +1 -0
  327. package/lib/module/utils/webviewScripts/sephora.js +1 -0
  328. package/lib/module/utils/webviewScripts/telegram.js +1 -0
  329. package/package.json +62 -39
  330. package/lib/commonjs/api/index.js.map +0 -1
  331. package/lib/commonjs/assets/images/email.png +0 -0
  332. package/lib/commonjs/assets/images/linkedin.png +0 -0
  333. package/lib/commonjs/assets/images/reddit.png +0 -0
  334. package/lib/commonjs/assets/images/youtube.png +0 -0
  335. package/lib/commonjs/components/DataRequestModal.js +0 -228
  336. package/lib/commonjs/components/DataRequestModal.js.map +0 -1
  337. package/lib/commonjs/components/DataRequestScreen.js +0 -329
  338. package/lib/commonjs/components/DataRequestScreen.js.map +0 -1
  339. package/lib/commonjs/components/EmailVerificationModal.js +0 -320
  340. package/lib/commonjs/components/EmailVerificationModal.js.map +0 -1
  341. package/lib/commonjs/components/Onairos.js.map +0 -1
  342. package/lib/commonjs/components/OnairosButton.js.map +0 -1
  343. package/lib/commonjs/components/Overlay.js.map +0 -1
  344. package/lib/commonjs/components/PinInput.js.map +0 -1
  345. package/lib/commonjs/components/PlatformList.js.map +0 -1
  346. package/lib/commonjs/components/TrainingModal.js +0 -717
  347. package/lib/commonjs/components/TrainingModal.js.map +0 -1
  348. package/lib/commonjs/components/UniversalOnboarding.js.map +0 -1
  349. package/lib/commonjs/components/UniversalOnboarding.tsx.new +0 -455
  350. package/lib/commonjs/components/onboarding/OAuthWebView.js.map +0 -1
  351. package/lib/commonjs/components/onboarding/OnboardingHeader.js.map +0 -1
  352. package/lib/commonjs/components/onboarding/PinInput.js.map +0 -1
  353. package/lib/commonjs/components/onboarding/PlatformConnector.js.map +0 -1
  354. package/lib/commonjs/components/screens/ConnectorScreen.js +0 -146
  355. package/lib/commonjs/components/screens/ConnectorScreen.js.map +0 -1
  356. package/lib/commonjs/components/screens/LoadingScreen.js +0 -91
  357. package/lib/commonjs/components/screens/LoadingScreen.js.map +0 -1
  358. package/lib/commonjs/components/screens/PinCreationScreen.js +0 -61
  359. package/lib/commonjs/components/screens/PinCreationScreen.js.map +0 -1
  360. package/lib/commonjs/constants/index.js.map +0 -1
  361. package/lib/commonjs/hooks/useConnections.js.map +0 -1
  362. package/lib/commonjs/hooks/useCredentials.js.map +0 -1
  363. package/lib/commonjs/index.js.map +0 -1
  364. package/lib/commonjs/services/apiKeyService.js.map +0 -1
  365. package/lib/commonjs/services/oauthService.js.map +0 -1
  366. package/lib/commonjs/services/platformAuthService.js.map +0 -1
  367. package/lib/commonjs/types/ambient.d.js.map +0 -1
  368. package/lib/commonjs/types/declarations.d.js.map +0 -1
  369. package/lib/commonjs/types/index.d.js.map +0 -1
  370. package/lib/commonjs/types/index.js.map +0 -1
  371. package/lib/commonjs/types/node-fix.d.js.map +0 -1
  372. package/lib/commonjs/types/node-override.d.js.map +0 -1
  373. package/lib/commonjs/types/opacity.d.js.map +0 -1
  374. package/lib/commonjs/types/types.d.js.map +0 -1
  375. package/lib/commonjs/types.js.map +0 -1
  376. package/lib/commonjs/utils/Portal.js.map +0 -1
  377. package/lib/commonjs/utils/api.js.map +0 -1
  378. package/lib/commonjs/utils/auth.js.map +0 -1
  379. package/lib/commonjs/utils/crypto.js.map +0 -1
  380. package/lib/commonjs/utils/debugHelper.js.map +0 -1
  381. package/lib/commonjs/utils/encryption.js.map +0 -1
  382. package/lib/commonjs/utils/onairosApi.js.map +0 -1
  383. package/lib/commonjs/utils/programmaticFlow.js.map +0 -1
  384. package/lib/commonjs/utils/retryHelper.js.map +0 -1
  385. package/lib/commonjs/utils/secureStorage.js.map +0 -1
  386. package/lib/module/api/index.js.map +0 -1
  387. package/lib/module/assets/images/email.png +0 -0
  388. package/lib/module/assets/images/linkedin.png +0 -0
  389. package/lib/module/assets/images/reddit.png +0 -0
  390. package/lib/module/assets/images/youtube.png +0 -0
  391. package/lib/module/components/DataRequestModal.js +0 -220
  392. package/lib/module/components/DataRequestModal.js.map +0 -1
  393. package/lib/module/components/DataRequestScreen.js +0 -321
  394. package/lib/module/components/DataRequestScreen.js.map +0 -1
  395. package/lib/module/components/EmailVerificationModal.js +0 -311
  396. package/lib/module/components/EmailVerificationModal.js.map +0 -1
  397. package/lib/module/components/Onairos.js.map +0 -1
  398. package/lib/module/components/OnairosButton.js.map +0 -1
  399. package/lib/module/components/Overlay.js.map +0 -1
  400. package/lib/module/components/PinInput.js.map +0 -1
  401. package/lib/module/components/PlatformList.js.map +0 -1
  402. package/lib/module/components/TrainingModal.js +0 -708
  403. package/lib/module/components/TrainingModal.js.map +0 -1
  404. package/lib/module/components/UniversalOnboarding.js.map +0 -1
  405. package/lib/module/components/UniversalOnboarding.tsx.new +0 -455
  406. package/lib/module/components/onboarding/OAuthWebView.js.map +0 -1
  407. package/lib/module/components/onboarding/OnboardingHeader.js.map +0 -1
  408. package/lib/module/components/onboarding/PinInput.js.map +0 -1
  409. package/lib/module/components/onboarding/PlatformConnector.js.map +0 -1
  410. package/lib/module/components/screens/ConnectorScreen.js +0 -138
  411. package/lib/module/components/screens/ConnectorScreen.js.map +0 -1
  412. package/lib/module/components/screens/LoadingScreen.js +0 -83
  413. package/lib/module/components/screens/LoadingScreen.js.map +0 -1
  414. package/lib/module/components/screens/PinCreationScreen.js +0 -53
  415. package/lib/module/components/screens/PinCreationScreen.js.map +0 -1
  416. package/lib/module/constants/index.js.map +0 -1
  417. package/lib/module/hooks/useConnections.js.map +0 -1
  418. package/lib/module/hooks/useCredentials.js.map +0 -1
  419. package/lib/module/index.js.map +0 -1
  420. package/lib/module/services/apiKeyService.js.map +0 -1
  421. package/lib/module/services/oauthService.js.map +0 -1
  422. package/lib/module/services/platformAuthService.js.map +0 -1
  423. package/lib/module/types/ambient.d.js.map +0 -1
  424. package/lib/module/types/declarations.d.js.map +0 -1
  425. package/lib/module/types/index.d.js.map +0 -1
  426. package/lib/module/types/index.js.map +0 -1
  427. package/lib/module/types/node-fix.d.js.map +0 -1
  428. package/lib/module/types/node-override.d.js.map +0 -1
  429. package/lib/module/types/opacity.d.js.map +0 -1
  430. package/lib/module/types/types.d.js.map +0 -1
  431. package/lib/module/types.js.map +0 -1
  432. package/lib/module/utils/Portal.js.map +0 -1
  433. package/lib/module/utils/api.js.map +0 -1
  434. package/lib/module/utils/auth.js.map +0 -1
  435. package/lib/module/utils/crypto.js.map +0 -1
  436. package/lib/module/utils/debugHelper.js.map +0 -1
  437. package/lib/module/utils/encryption.js.map +0 -1
  438. package/lib/module/utils/onairosApi.js.map +0 -1
  439. package/lib/module/utils/programmaticFlow.js.map +0 -1
  440. package/lib/module/utils/retryHelper.js.map +0 -1
  441. package/lib/module/utils/secureStorage.js.map +0 -1
  442. package/lib/typescript/api/index.d.ts +0 -8
  443. package/lib/typescript/api/index.d.ts.map +0 -1
  444. package/lib/typescript/components/DataRequestModal.d.ts +0 -11
  445. package/lib/typescript/components/DataRequestModal.d.ts.map +0 -1
  446. package/lib/typescript/components/DataRequestScreen.d.ts +0 -11
  447. package/lib/typescript/components/DataRequestScreen.d.ts.map +0 -1
  448. package/lib/typescript/components/EmailVerificationModal.d.ts +0 -11
  449. package/lib/typescript/components/EmailVerificationModal.d.ts.map +0 -1
  450. package/lib/typescript/components/Onairos.d.ts +0 -4
  451. package/lib/typescript/components/Onairos.d.ts.map +0 -1
  452. package/lib/typescript/components/OnairosButton.d.ts +0 -12
  453. package/lib/typescript/components/OnairosButton.d.ts.map +0 -1
  454. package/lib/typescript/components/Overlay.d.ts +0 -4
  455. package/lib/typescript/components/Overlay.d.ts.map +0 -1
  456. package/lib/typescript/components/PinInput.d.ts +0 -4
  457. package/lib/typescript/components/PinInput.d.ts.map +0 -1
  458. package/lib/typescript/components/PlatformList.d.ts +0 -4
  459. package/lib/typescript/components/PlatformList.d.ts.map +0 -1
  460. package/lib/typescript/components/TrainingModal.d.ts +0 -4
  461. package/lib/typescript/components/TrainingModal.d.ts.map +0 -1
  462. package/lib/typescript/components/UniversalOnboarding.d.ts +0 -4
  463. package/lib/typescript/components/UniversalOnboarding.d.ts.map +0 -1
  464. package/lib/typescript/components/onboarding/OAuthWebView.d.ts +0 -10
  465. package/lib/typescript/components/onboarding/OAuthWebView.d.ts.map +0 -1
  466. package/lib/typescript/components/onboarding/OnboardingHeader.d.ts +0 -11
  467. package/lib/typescript/components/onboarding/OnboardingHeader.d.ts.map +0 -1
  468. package/lib/typescript/components/onboarding/PinInput.d.ts +0 -4
  469. package/lib/typescript/components/onboarding/PinInput.d.ts.map +0 -1
  470. package/lib/typescript/components/onboarding/PlatformConnector.d.ts +0 -13
  471. package/lib/typescript/components/onboarding/PlatformConnector.d.ts.map +0 -1
  472. package/lib/typescript/components/screens/ConnectorScreen.d.ts +0 -9
  473. package/lib/typescript/components/screens/ConnectorScreen.d.ts.map +0 -1
  474. package/lib/typescript/components/screens/LoadingScreen.d.ts +0 -9
  475. package/lib/typescript/components/screens/LoadingScreen.d.ts.map +0 -1
  476. package/lib/typescript/components/screens/PinCreationScreen.d.ts +0 -10
  477. package/lib/typescript/components/screens/PinCreationScreen.d.ts.map +0 -1
  478. package/lib/typescript/constants/index.d.ts +0 -53
  479. package/lib/typescript/constants/index.d.ts.map +0 -1
  480. package/lib/typescript/hooks/useConnections.d.ts +0 -9
  481. package/lib/typescript/hooks/useConnections.d.ts.map +0 -1
  482. package/lib/typescript/hooks/useCredentials.d.ts +0 -9
  483. package/lib/typescript/hooks/useCredentials.d.ts.map +0 -1
  484. package/lib/typescript/index.d.ts +0 -18
  485. package/lib/typescript/index.d.ts.map +0 -1
  486. package/lib/typescript/services/apiKeyService.d.ts +0 -132
  487. package/lib/typescript/services/apiKeyService.d.ts.map +0 -1
  488. package/lib/typescript/services/oauthService.d.ts +0 -50
  489. package/lib/typescript/services/oauthService.d.ts.map +0 -1
  490. package/lib/typescript/services/platformAuthService.d.ts +0 -144
  491. package/lib/typescript/services/platformAuthService.d.ts.map +0 -1
  492. package/lib/typescript/types/index.d.ts +0 -231
  493. package/lib/typescript/types/index.d.ts.map +0 -1
  494. package/lib/typescript/types.d.ts +0 -270
  495. package/lib/typescript/types.d.ts.map +0 -1
  496. package/lib/typescript/utils/Portal.d.ts +0 -14
  497. package/lib/typescript/utils/Portal.d.ts.map +0 -1
  498. package/lib/typescript/utils/api.d.ts +0 -6
  499. package/lib/typescript/utils/api.d.ts.map +0 -1
  500. package/lib/typescript/utils/auth.d.ts +0 -6
  501. package/lib/typescript/utils/auth.d.ts.map +0 -1
  502. package/lib/typescript/utils/crypto.d.ts +0 -4
  503. package/lib/typescript/utils/crypto.d.ts.map +0 -1
  504. package/lib/typescript/utils/debugHelper.d.ts +0 -29
  505. package/lib/typescript/utils/debugHelper.d.ts.map +0 -1
  506. package/lib/typescript/utils/encryption.d.ts +0 -19
  507. package/lib/typescript/utils/encryption.d.ts.map +0 -1
  508. package/lib/typescript/utils/onairosApi.d.ts +0 -87
  509. package/lib/typescript/utils/onairosApi.d.ts.map +0 -1
  510. package/lib/typescript/utils/programmaticFlow.d.ts +0 -23
  511. package/lib/typescript/utils/programmaticFlow.d.ts.map +0 -1
  512. package/lib/typescript/utils/retryHelper.d.ts +0 -69
  513. package/lib/typescript/utils/retryHelper.d.ts.map +0 -1
  514. package/lib/typescript/utils/secureStorage.d.ts +0 -94
  515. package/lib/typescript/utils/secureStorage.d.ts.map +0 -1
  516. package/src/api/index.ts +0 -111
  517. package/src/assets/images/email.png +0 -0
  518. package/src/assets/images/linkedin.png +0 -0
  519. package/src/assets/images/onairos_logo.png +0 -0
  520. package/src/assets/images/reddit.png +0 -0
  521. package/src/assets/images/youtube.png +0 -0
  522. package/src/components/DataRequestModal.tsx +0 -227
  523. package/src/components/DataRequestScreen.tsx +0 -356
  524. package/src/components/EmailVerificationModal.tsx +0 -364
  525. package/src/components/Onairos.tsx +0 -425
  526. package/src/components/OnairosButton.tsx +0 -359
  527. package/src/components/Overlay.tsx +0 -506
  528. package/src/components/PinInput.tsx +0 -343
  529. package/src/components/PlatformList.tsx +0 -145
  530. package/src/components/TrainingModal.tsx +0 -737
  531. package/src/components/UniversalOnboarding.tsx +0 -1839
  532. package/src/components/UniversalOnboarding.tsx.new +0 -455
  533. package/src/components/onboarding/OAuthWebView.tsx +0 -838
  534. package/src/components/onboarding/OnboardingHeader.tsx +0 -70
  535. package/src/components/onboarding/PinInput.tsx +0 -356
  536. package/src/components/onboarding/PlatformConnector.tsx +0 -302
  537. package/src/components/screens/ConnectorScreen.tsx +0 -153
  538. package/src/components/screens/LoadingScreen.tsx +0 -100
  539. package/src/components/screens/PinCreationScreen.tsx +0 -67
  540. package/src/constants/index.ts +0 -83
  541. package/src/hooks/useConnections.ts +0 -163
  542. package/src/hooks/useCredentials.ts +0 -175
  543. package/src/index.js +0 -14
  544. package/src/index.ts +0 -50
  545. package/src/services/SDK_API_KEY_VALIDATION.md +0 -421
  546. package/src/services/apiKeyService.ts +0 -984
  547. package/src/services/oauthService.ts +0 -412
  548. package/src/services/platformAuthService.ts +0 -1113
  549. package/src/types/ambient.d.ts +0 -29
  550. package/src/types/declarations.d.ts +0 -26
  551. package/src/types/index.d.ts +0 -274
  552. package/src/types/index.ts +0 -244
  553. package/src/types/node-fix.d.ts +0 -19
  554. package/src/types/node-override.d.ts +0 -24
  555. package/src/types/opacity.d.ts +0 -16
  556. package/src/types/types.d.ts +0 -18
  557. package/src/types.ts +0 -298
  558. package/src/utils/Portal.tsx +0 -83
  559. package/src/utils/api.js +0 -112
  560. package/src/utils/auth.js +0 -104
  561. package/src/utils/crypto.js +0 -60
  562. package/src/utils/debugHelper.ts +0 -53
  563. package/src/utils/encryption.ts +0 -69
  564. package/src/utils/onairosApi.ts +0 -391
  565. package/src/utils/programmaticFlow.ts +0 -113
  566. package/src/utils/retryHelper.ts +0 -275
  567. package/src/utils/secureStorage.ts +0 -361
  568. package/types/index.d.ts +0 -218
  569. package/types/node-env.d.ts +0 -15
  570. /package/{src/assets/images → lib/commonjs/assets/icons}/farcaster.png +0 -0
  571. /package/{src/assets/images → lib/commonjs/assets/icons}/instagram.png +0 -0
  572. /package/{src/assets/images → lib/commonjs/assets/icons}/pinterest.png +0 -0
  573. /package/{src/assets/images → lib/commonjs/assets/icons}/swerv_logo.png +0 -0
  574. /package/{src/assets/images → lib/commonjs/assets/icons}/twitter.jpg +0 -0
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+ // Onairos SDK - Asset Registry (auto-generated)
3
+ var __ONAIROS_REQ_REGISTRY__ = [
4
+ require("react"),
5
+ require("react-native"),
6
+ require("lottie-react-native"),
7
+ require("../theme"),
8
+ require("../utils/haptics"),
9
+ require("../utils/assetRegistry")
10
+ ];
11
+ function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
12
+ Object[_0x6ba0(0x0)](exports,_0x6ba0(0x1),{'value':!![]}),exports['default']=void 0x0;var _react=_interopRequireWildcard(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_lottieReactNative=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x2)),_theme=__ONAIROS_REQ_FUNC__(0x3),_haptics=__ONAIROS_REQ_FUNC__(0x4),_assetRegistry=__ONAIROS_REQ_FUNC__(0x5);function _interopRequireDefault(_0x5731c8){return _0x5731c8&&_0x5731c8[_0x6ba0(0x1)]?_0x5731c8:{'default':_0x5731c8};}function _0x1d53(){const _0x2d446e=['defineProperty','__esModule','ynvdq','XKxEV','BCdkP','Wzesj','get','set','ndUop','hxndm','hasOwnProperty','call','getOwnPropertyDescriptor','Kctbq','Keeping\x20your\x20data\x20private','You\x27re\x20more\x20interesting\x20than\x20I\x20expected','Complete!','wZZMf','ImLAR','floor','DheVO','YSjyf','VfgRB','fJYyC','hNEox','uyFED','iEoOb','VGbRV','short','RWeql','mXJhk','useRef','Animated','Value','current','useState','ZqClv','useEffect','sJMHw','JbEds','gNhyu','HkfbS','HbAPx','WKFkL','whBcr','uXBTy','LxlBL','xGXHJ','HapticType','SUCCESS','uHvtH','jfJtS','VkWSU','sequence','timing','gwBnt','start','CTltd','TDxUT','HHgQJ','TbMPT','vEPHA','fiwpM','QyYEk','FDGtl','laqCi','push','max','min','HwpiB','rEikb','DfoXm','object','function','viHWJ','JeBpy','xpUOA','lfpgE','jRoEO','DZMmD','lwQIB','iSvbE','wQoyG','JTegS','wbZWZ','setValue','vselw','xzHdm','sort','GmfMs','JjRpQ','CKshR','rrJgC','zmpwP','wZAvv','kbzVL','CNIeY','medium','dRIsY','Rbbpk','dSWTU','fBpXa','viGvH','EeRVN','orSKO','default','map','forEach','owlJx','minProgress','progress','uoWxz','XSAKS','AuHjh','ijQiS','KGaRh','NvMbn','FrpmL','length','uNNdg','zDtHQ','bfceH','message','mtkxZ','FNppA','WeuOP','esNPW','VkGno','DHenr','qztSx','HsfWv','YBsLU','ZPOOa','uPyuT','maxProgress','text','createElement','View','container','lottieContainer','ANIMATIONS','loader','lottieAnimation','OVjFO','Text','dotsContainer','dot','progressContainer','progressTrack','progressFill','interpolate','StyleSheet','create','surface','center','100%','row','IBM\x20Plex\x20Sans','600','COLORS','grey800','#E5E5E5'];_0x1d53=function(){return _0x2d446e;};return _0x1d53();}function _interopRequireWildcard(_0x71bdc7,_0x11f010){const _0x1672a4={'BCdkP':function(_0x4a2f13,_0x25a2df){return _0x4a2f13&&_0x25a2df;},'mIiGg':'object','Wzesj':function(_0x4cbd01,_0x5f5962){return _0x4cbd01!=_0x5f5962;},'XKxEV':'function','ndUop':function(_0x9709ef,_0x4446f3){return _0x9709ef!==_0x4446f3;},'hxndm':'default','Kctbq':function(_0x5ba24a,_0x18d03c,_0x4854fd,_0xe5a1b3){return _0x5ba24a(_0x18d03c,_0x4854fd,_0xe5a1b3);},'ynvdq':function(_0x4e18f0,_0x327f06){return _0x4e18f0==_0x327f06;}};if(_0x1672a4[_0x6ba0(0x2)](_0x1672a4[_0x6ba0(0x3)],typeof WeakMap))var _0x524388=new WeakMap(),_0x511b0c=new WeakMap();return(_interopRequireWildcard=function(_0x2d5e4d,_0x13f6cf){if(_0x1672a4[_0x6ba0(0x4)](!_0x13f6cf,_0x2d5e4d)&&_0x2d5e4d[_0x6ba0(0x1)])return _0x2d5e4d;var _0x20ca8c,_0x20caed,_0x4e3eaa={'__proto__':null,'default':_0x2d5e4d};if(null===_0x2d5e4d||_0x1672a4['mIiGg']!=typeof _0x2d5e4d&&_0x1672a4[_0x6ba0(0x5)](_0x1672a4[_0x6ba0(0x3)],typeof _0x2d5e4d))return _0x4e3eaa;if(_0x20ca8c=_0x13f6cf?_0x511b0c:_0x524388){if(_0x20ca8c['has'](_0x2d5e4d))return _0x20ca8c[_0x6ba0(0x6)](_0x2d5e4d);_0x20ca8c[_0x6ba0(0x7)](_0x2d5e4d,_0x4e3eaa);}for(const _0x306435 in _0x2d5e4d)_0x1672a4[_0x6ba0(0x8)](_0x1672a4[_0x6ba0(0x9)],_0x306435)&&{}[_0x6ba0(0xa)][_0x6ba0(0xb)](_0x2d5e4d,_0x306435)&&((_0x20caed=(_0x20ca8c=Object[_0x6ba0(0x0)])&&Object[_0x6ba0(0xc)](_0x2d5e4d,_0x306435))&&(_0x20caed['get']||_0x20caed['set'])?_0x1672a4[_0x6ba0(0xd)](_0x20ca8c,_0x4e3eaa,_0x306435,_0x20caed):_0x4e3eaa[_0x306435]=_0x2d5e4d[_0x306435]);return _0x4e3eaa;})(_0x71bdc7,_0x11f010);}const STATUS_MESSAGES=[{'text':_0x6ba0(0xe),'minProgress':0x0,'maxProgress':0x19},{'text':'Trying\x20to\x20understand\x20your\x20mind','minProgress':0x14,'maxProgress':0x2d},{'text':_0x6ba0(0xf),'minProgress':0x28,'maxProgress':0x41},{'text':'Finalizing\x20your\x20unique\x20persona','minProgress':0x3c,'maxProgress':0x55},{'text':'Almost\x20done','minProgress':0x50,'maxProgress':0x5f},{'text':_0x6ba0(0x10),'minProgress':0x64,'maxProgress':0x64}],randomInRange=(_0xede3a2,_0x4863de)=>{const _0x228d18={'wZZMf':function(_0x2497cd,_0x4b3bd9){return _0x2497cd+_0x4b3bd9;},'ImLAR':function(_0x560cd2,_0x5c05f2){return _0x560cd2-_0x5c05f2;}};return _0x228d18[_0x6ba0(0x11)](Math['random']()*_0x228d18[_0x6ba0(0x12)](_0x4863de,_0xede3a2),_0xede3a2);},randomIntInRange=(_0x454a04,_0x3fa157)=>{const _0x2feeec={'BYTcw':function(_0x5e8ceb,_0x2eb097){return _0x5e8ceb+_0x2eb097;}};return Math[_0x6ba0(0x13)](randomInRange(_0x454a04,_0x2feeec['BYTcw'](_0x3fa157,0x1)));},PersonaLoadingScreen=({visible:_0x3a867e,onComplete:_0x41d480})=>{const _0x53dba9={'kbzVL':function(_0x22b369,_0xa3b5f0,_0xa00092){return _0x22b369(_0xa3b5f0,_0xa00092);},'sJMHw':function(_0x2934be,_0x532d12){return _0x2934be===_0x532d12;},'JbEds':'VkWSU','gNhyu':function(_0x12bd41,_0x4ba1c8){return _0x12bd41-_0x4ba1c8;},'HkfbS':function(_0x20830f,_0x5547e0){return _0x20830f*_0x5547e0;},'vselw':function(_0x1a48c6,_0x1406ce){return _0x1a48c6+_0x1406ce;},'HbAPx':function(_0x1c7aee,_0x2e38a7){return _0x1c7aee+_0x2e38a7;},'HvmsL':function(_0x603e60,_0x1e937b){return _0x603e60*_0x1e937b;},'WKFkL':function(_0x18bcdb,_0x633582){return _0x18bcdb!==_0x633582;},'whBcr':_0x6ba0(0x14),'uXBTy':_0x6ba0(0x15),'LxlBL':function(_0x26dbff,_0x52d00a,_0x18c92a){return _0x26dbff(_0x52d00a,_0x18c92a);},'xGXHJ':_0x6ba0(0x16),'owlJx':function(_0x4f1ca1,_0xfdcb15){return _0x4f1ca1===_0xfdcb15;},'rEikb':function(_0xe1ac89){return _0xe1ac89();},'DfoXm':function(_0x4897f6,_0x1459e2){return _0x4897f6&&_0x1459e2;},'viHWJ':function(_0x1ac80a,_0x14638e){return _0x1ac80a==_0x14638e;},'NNWto':_0x6ba0(0x17),'xpUOA':_0x6ba0(0x18),'lfpgE':function(_0x12060f,_0x588b83){return _0x12060f>=_0x588b83;},'jRoEO':_0x6ba0(0x19),'wbZWZ':function(_0x5d25a9,_0x2c5257){return _0x5d25a9(_0x2c5257);},'lwQIB':function(_0x140696,_0x23fece){return _0x140696/_0x23fece;},'iSvbE':_0x6ba0(0x1a),'wQoyG':function(_0x251261,_0x33b3a9,_0x2728ae){return _0x251261(_0x33b3a9,_0x2728ae);},'ANQnf':_0x6ba0(0x1b),'JTegS':function(_0x2f5f60,_0x30b9aa){return _0x2f5f60(_0x30b9aa);},'ZqClv':_0x6ba0(0xe),'xzHdm':function(_0x2f4ce6,_0x49815a){return _0x2f4ce6+_0x49815a;},'HWJUT':function(_0x401940,_0x321116){return _0x401940*_0x321116;},'GmfMs':_0x6ba0(0x1c),'LjOAA':'medium','JjRpQ':'long','CKshR':function(_0x2c6190,_0x5110bc){return _0x2c6190<_0x5110bc;},'rrJgC':_0x6ba0(0x1d),'zmpwP':_0x6ba0(0x1e),'VfduD':function(_0x530d55,_0x5d631e){return _0x530d55*_0x5d631e;},'uBdvn':function(_0xf1c1a5,_0x1324cd){return _0xf1c1a5-_0x1324cd;},'uoWxz':function(_0xa69b91,_0x124e70){return _0xa69b91<=_0x124e70;},'XSAKS':function(_0x3b8183,_0x4d8cd8,_0x520e49){return _0x3b8183(_0x4d8cd8,_0x520e49);},'OVjFO':'contain'},_0xa44f63=(0x0,_react[_0x6ba0(0x1f)])(new _reactNative[(_0x6ba0(0x20))][(_0x6ba0(0x21))](0x0))[_0x6ba0(0x22)],_0x1dbcdc=(0x0,_react['useRef'])(new _reactNative[(_0x6ba0(0x20))][(_0x6ba0(0x21))](0.3))['current'],_0x237848=(0x0,_react['useRef'])(new _reactNative[(_0x6ba0(0x20))][(_0x6ba0(0x21))](0.3))['current'],_0x44e100=(0x0,_react[_0x6ba0(0x1f)])(new _reactNative[(_0x6ba0(0x20))][(_0x6ba0(0x21))](0.3))['current'],[_0x432210,_0x353db2]=(0x0,_react[_0x6ba0(0x23)])(0x0),[_0x447d21,_0x171b82]=(0x0,_react['useState'])(_0x53dba9[_0x6ba0(0x24)]),_0x4a2aed=(0x0,_react[_0x6ba0(0x1f)])([]);(0x0,_react[_0x6ba0(0x25)])(()=>{const _0x4a2082={'gwBnt':function(_0x1d6f53,_0x5ef21c,_0x5ef0c5){return _0x1d6f53(_0x5ef21c,_0x5ef0c5);},'uHvtH':function(_0x27fe22,_0x74bde5){return _0x53dba9[_0x6ba0(0x26)](_0x27fe22,_0x74bde5);},'jfJtS':_0x53dba9[_0x6ba0(0x27)],'TbMPT':function(_0x556446,_0x4e8f87){return _0x53dba9[_0x6ba0(0x28)](_0x556446,_0x4e8f87);},'vEPHA':function(_0x3c1074,_0x572af6){return _0x53dba9[_0x6ba0(0x29)](_0x3c1074,_0x572af6);},'fiwpM':function(_0x458bbf,_0x15266c){return _0x53dba9['vselw'](_0x458bbf,_0x15266c);},'QyYEk':function(_0x519667,_0x5e082c){return _0x519667/_0x5e082c;},'nfqWI':function(_0x2bfd00,_0x2e4633){return _0x53dba9[_0x6ba0(0x2a)](_0x2bfd00,_0x2e4633);},'FDGtl':function(_0x428b10,_0x12bdba){return _0x53dba9['HvmsL'](_0x428b10,_0x12bdba);},'laqCi':function(_0x17876a,_0x440bb8){return _0x17876a+_0x440bb8;},'CTltd':function(_0x2310c5,_0x11fdbd){return _0x53dba9[_0x6ba0(0x2b)](_0x2310c5,_0x11fdbd);},'TDxUT':_0x53dba9[_0x6ba0(0x2c)],'HHgQJ':_0x53dba9[_0x6ba0(0x2d)],'HwpiB':function(_0x21ac26,_0x3e6682,_0x39b191){return _0x53dba9[_0x6ba0(0x2e)](_0x21ac26,_0x3e6682,_0x39b191);}};if(_0x6ba0(0x16)!==_0x53dba9[_0x6ba0(0x2f)])_0x53dba9['kbzVL'](_0x59c6a3,()=>{(0x0,_0x5b71d6['triggerHaptic'])(_0xcc42b9[_0x6ba0(0x30)][_0x6ba0(0x31)]),_0x513760();},0x1f4);else{if(!_0x3a867e)return;const _0x257fbe=(_0x307a7f,_0x38076b)=>{if(_0x4a2082[_0x6ba0(0x32)](_0x4a2082[_0x6ba0(0x33)],_0x6ba0(0x34)))return _reactNative[_0x6ba0(0x20)]['loop'](_reactNative[_0x6ba0(0x20)][_0x6ba0(0x35)]([_reactNative[_0x6ba0(0x20)][_0x6ba0(0x36)](_0x307a7f,{'toValue':0x1,'duration':0x258,'useNativeDriver':!![]}),_reactNative[_0x6ba0(0x20)][_0x6ba0(0x36)](_0x307a7f,{'toValue':0.3,'duration':0x258,'useNativeDriver':!![]})]),{'iterations':-0x1});else _0x4a2082[_0x6ba0(0x37)](_0xe25c1e,_0x5dd51c,0xc8)[_0x6ba0(0x38)]();};_0x53dba9['kbzVL'](setTimeout,()=>{if(_0x4a2082[_0x6ba0(0x39)](_0x4a2082[_0x6ba0(0x3a)],_0x4a2082[_0x6ba0(0x3b)]))_0x4a2082[_0x6ba0(0x37)](_0x257fbe,_0x1dbcdc,0x0)[_0x6ba0(0x38)]();else{const _0x33cfd5=_0x4a2082[_0x6ba0(0x3c)](_0x4a2082[_0x6ba0(0x3d)](_0x4a2082[_0x6ba0(0x3e)](_0x2d01eb,0x1),_0x4a2082[_0x6ba0(0x3f)](0x64,_0x1a8718)),0xa),_0x43f15e=_0x4a2082['nfqWI'](_0x4a2082[_0x6ba0(0x40)](_0x4a2082[_0x6ba0(0x41)](_0x465531,0x1),_0x4a2082[_0x6ba0(0x3f)](0x64,_0x373f5b)),0xa);_0x389e96[_0x6ba0(0x42)](_0x4a2082['gwBnt'](_0x2c0650,_0x5f49d4[_0x6ba0(0x43)](0xa,_0x33cfd5),_0x11a34a[_0x6ba0(0x44)](0x5a,_0x43f15e)));}},0x12c),_0x53dba9[_0x6ba0(0x2e)](setTimeout,()=>{_0x4a2082[_0x6ba0(0x37)](_0x257fbe,_0x237848,0xc8)['start']();},0x1f4),_0x53dba9['LxlBL'](setTimeout,()=>{_0x4a2082[_0x6ba0(0x45)](_0x257fbe,_0x44e100,0x190)['start']();},0x2bc);}},[_0x3a867e,_0x1dbcdc,_0x237848,_0x44e100]),(0x0,_react['useEffect'])(()=>{const _0x378fca={'CNIeY':function(_0x54bafa){return _0x53dba9[_0x6ba0(0x46)](_0x54bafa);},'dRIsY':function(_0xa1a034,_0x4980c4){return _0x53dba9[_0x6ba0(0x47)](_0xa1a034,_0x4980c4);},'ZOQsS':_0x6ba0(0x48),'Rbbpk':_0x6ba0(0x49),'dSWTU':function(_0x54c31d,_0x14815d){return _0x54c31d!==_0x14815d;},'fBpXa':function(_0x49d5eb,_0x3e7c9f,_0x57afca,_0x50b736){return _0x49d5eb(_0x3e7c9f,_0x57afca,_0x50b736);},'viGvH':function(_0x45e0a8,_0x238b56){return _0x53dba9[_0x6ba0(0x4a)](_0x45e0a8,_0x238b56);},'FrpmL':function(_0x1354e7,_0x4d8b19,_0x1d10ec){return _0x1354e7(_0x4d8b19,_0x1d10ec);},'JYJgN':function(_0x24ea5b,_0x18218f,_0x5411e4){return _0x24ea5b(_0x18218f,_0x5411e4);},'AuHjh':function(_0x358a69,_0x536c80){return _0x358a69+_0x536c80;},'RUXEC':_0x6ba0(0x4b),'ijQiS':'terRk','KGaRh':_0x53dba9['NNWto'],'NvMbn':_0x53dba9[_0x6ba0(0x4c)],'iGcRZ':function(_0x18bde7,_0x594958){return _0x18bde7<_0x594958;},'uNNdg':function(_0x367d72,_0xef9a5e){return _0x53dba9[_0x6ba0(0x4d)](_0x367d72,_0xef9a5e);},'zDtHQ':_0x53dba9[_0x6ba0(0x4e)],'bfceH':_0x6ba0(0x4f),'mtkxZ':function(_0x3682c2,_0x5ead94){return _0x53dba9['wbZWZ'](_0x3682c2,_0x5ead94);},'FNppA':function(_0x33822d,_0x49471b){return _0x53dba9[_0x6ba0(0x50)](_0x33822d,_0x49471b);},'WeuOP':function(_0x52f09c,_0x1d59e6){return _0x52f09c===_0x1d59e6;},'esNPW':_0x53dba9[_0x6ba0(0x51)],'VkGno':function(_0x271511,_0x104fa1,_0x1d51e9){return _0x53dba9['LxlBL'](_0x271511,_0x104fa1,_0x1d51e9);},'JCNSt':function(_0x5e1cc8,_0x2a9cfa,_0x442022){return _0x53dba9[_0x6ba0(0x52)](_0x5e1cc8,_0x2a9cfa,_0x442022);}};if(_0x53dba9['ANQnf']===_0x53dba9['ANQnf']){if(!_0x3a867e){_0x4a2aed[_0x6ba0(0x22)]['forEach'](_0x4348eb=>clearTimeout(_0x4348eb)),_0x4a2aed[_0x6ba0(0x22)]=[];return;}_0x53dba9[_0x6ba0(0x53)](_0x353db2,0x0),_0x53dba9[_0x6ba0(0x54)](_0x171b82,_0x53dba9['ZqClv']),_0xa44f63[_0x6ba0(0x55)](0x0);const _0x4d1686=randomInRange(0x1b58,0x2ee0),_0x540349=randomIntInRange(0x5,0x8),_0x398d86=[0x0];for(let _0x3a3e0f=0x0;_0x3a3e0f<_0x53dba9[_0x6ba0(0x28)](_0x540349,0x1);_0x3a3e0f++){const _0x1d7a3d=_0x53dba9[_0x6ba0(0x29)](_0x53dba9[_0x6ba0(0x56)](_0x3a3e0f,0x1),_0x53dba9['lwQIB'](0x64,_0x540349))-0xa,_0x36ea8b=_0x53dba9[_0x6ba0(0x57)](_0x53dba9['HWJUT'](_0x3a3e0f+0x1,_0x53dba9[_0x6ba0(0x50)](0x64,_0x540349)),0xa);_0x398d86[_0x6ba0(0x42)](_0x53dba9['LxlBL'](randomIntInRange,Math[_0x6ba0(0x43)](0xa,_0x1d7a3d),Math['min'](0x5a,_0x36ea8b)));}_0x398d86[_0x6ba0(0x42)](0x64),_0x398d86[_0x6ba0(0x58)]((_0x5db3d7,_0x45b318)=>_0x5db3d7-_0x45b318);const _0x327272=[_0x53dba9[_0x6ba0(0x59)],_0x53dba9['LjOAA'],_0x53dba9[_0x6ba0(0x5a)]],_0x10ea6f=[];let _0x3c20be=0x0;for(let _0x222e2b=0x0;_0x53dba9[_0x6ba0(0x5b)](_0x222e2b,_0x540349);_0x222e2b++){if(_0x53dba9[_0x6ba0(0x2b)](_0x53dba9[_0x6ba0(0x5c)],_0x53dba9[_0x6ba0(0x5d)])){const _0xdd8885=_0x327272[_0x53dba9[_0x6ba0(0x2e)](randomIntInRange,0x0,0x2)];let _0x557fbb;if(_0xdd8885===_0x53dba9['GmfMs'])'wZAvv'===_0x6ba0(0x5e)?_0x557fbb=_0x53dba9[_0x6ba0(0x5f)](randomInRange,0xfa,0x1f4):((0x0,_0x47b4ab['triggerHaptic'])(_0x115ab5[_0x6ba0(0x30)]['SUCCESS']),_0x378fca[_0x6ba0(0x60)](_0x1cb19e));else _0x53dba9[_0x6ba0(0x26)](_0xdd8885,_0x6ba0(0x61))?_0x557fbb=_0x53dba9[_0x6ba0(0x5f)](randomInRange,0x1f4,0x320):_0x557fbb=_0x53dba9[_0x6ba0(0x52)](randomInRange,0x320,0x4b0);_0x10ea6f[_0x6ba0(0x42)](_0x557fbb),_0x3c20be+=_0x557fbb;}else{const _0x48972e={'EeRVN':function(_0x57916c,_0x415989){return _0x378fca[_0x6ba0(0x62)](_0x57916c,_0x415989);},'KDdAR':_0x378fca['ZOQsS'],'orSKO':_0x378fca[_0x6ba0(0x63)],'AMifE':function(_0xa94d11,_0x52cab3){return _0x378fca[_0x6ba0(0x64)](_0xa94d11,_0x52cab3);},'ZVivb':function(_0x1535b2,_0x228f83,_0x347bd6,_0x19da7e){return _0x378fca[_0x6ba0(0x65)](_0x1535b2,_0x228f83,_0x347bd6,_0x19da7e);}};if(_0x378fca[_0x6ba0(0x66)](_0x378fca[_0x6ba0(0x63)],typeof _0x2b2e16))var _0x36038f=new _0x1a6faf(),_0x192e1b=new _0x2cbe1a();return(_0x49c227=function(_0x2b07e2,_0x18a4a0){if(_0x48972e[_0x6ba0(0x67)](!_0x18a4a0,_0x2b07e2)&&_0x2b07e2['__esModule'])return _0x2b07e2;var _0x2ab20a,_0x5f2469,_0x1f8899={'__proto__':null,'default':_0x2b07e2};if(null===_0x2b07e2||_0x48972e['KDdAR']!=typeof _0x2b07e2&&_0x48972e[_0x6ba0(0x68)]!=typeof _0x2b07e2)return _0x1f8899;if(_0x2ab20a=_0x18a4a0?_0x192e1b:_0x36038f){if(_0x2ab20a['has'](_0x2b07e2))return _0x2ab20a[_0x6ba0(0x6)](_0x2b07e2);_0x2ab20a['set'](_0x2b07e2,_0x1f8899);}for(const _0x57f12e in _0x2b07e2)_0x48972e['AMifE'](_0x6ba0(0x69),_0x57f12e)&&{}['hasOwnProperty'][_0x6ba0(0xb)](_0x2b07e2,_0x57f12e)&&((_0x5f2469=(_0x2ab20a=_0x25fb81[_0x6ba0(0x0)])&&_0x5a93b5['getOwnPropertyDescriptor'](_0x2b07e2,_0x57f12e))&&(_0x5f2469[_0x6ba0(0x6)]||_0x5f2469[_0x6ba0(0x7)])?_0x48972e['ZVivb'](_0x2ab20a,_0x1f8899,_0x57f12e,_0x5f2469):_0x1f8899[_0x57f12e]=_0x2b07e2[_0x57f12e]);return _0x1f8899;})(_0x50a749,_0x5a44c2);}}const _0x22a6ea=0x190,_0x41c4ec=_0x53dba9['VfduD'](_0x540349,_0x22a6ea),_0x8651da=_0x53dba9['uBdvn'](_0x4d1686,_0x41c4ec),_0xd8e5dc=_0x53dba9['lwQIB'](_0x8651da,_0x3c20be),_0x55f2df=_0x10ea6f[_0x6ba0(0x6a)](_0x5883e6=>_0x5883e6*_0xd8e5dc),_0x28cad5=[];STATUS_MESSAGES[_0x6ba0(0x6b)](_0x2a4bb3=>{if(_0x53dba9[_0x6ba0(0x6c)](_0x2a4bb3[_0x6ba0(0x6d)],0x64))_0x28cad5[_0x6ba0(0x42)]({'progress':0x64,'message':_0x2a4bb3['text']});else{const _0x228415=_0x53dba9[_0x6ba0(0x5f)](randomInRange,_0x2a4bb3[_0x6ba0(0x6d)],_0x2a4bb3['maxProgress']);_0x28cad5[_0x6ba0(0x42)]({'progress':_0x228415,'message':_0x2a4bb3['text']});}}),_0x28cad5['sort']((_0x4a0487,_0x501e2f)=>_0x4a0487[_0x6ba0(0x6e)]-_0x501e2f[_0x6ba0(0x6e)]);let _0xde1d50=0x0,_0x4451d5=0x0;for(let _0x2788c2=0x1;_0x53dba9[_0x6ba0(0x6f)](_0x2788c2,_0x540349);_0x2788c2++){const _0x1364cc=_0x398d86[_0x2788c2],_0x58d199=_0x55f2df[_0x2788c2-0x1];_0xde1d50+=_0x58d199;const _0x56b923=_0x53dba9[_0x6ba0(0x70)](setTimeout,()=>{const _0x327a97={'pYnLw':function(_0x576053,_0x55eae0,_0x56693d){return _0x378fca['JYJgN'](_0x576053,_0x55eae0,_0x56693d);},'DHenr':function(_0x5dd763,_0x2d0390){return _0x378fca[_0x6ba0(0x71)](_0x5dd763,_0x2d0390);},'qztSx':function(_0x52f1ca,_0x3ddfe7){return _0x378fca[_0x6ba0(0x64)](_0x52f1ca,_0x3ddfe7);},'HsfWv':_0x378fca['RUXEC'],'TxlRD':_0x378fca[_0x6ba0(0x72)],'YBsLU':function(_0x3adfe5){return _0x3adfe5();}};if(_0x378fca[_0x6ba0(0x73)]===_0x378fca[_0x6ba0(0x74)])_0x4c59ba=_0x378fca[_0x6ba0(0x75)](_0x1967da,0x1f4,0x320);else{while(_0x378fca['iGcRZ'](_0x4451d5,_0x28cad5[_0x6ba0(0x76)])&&_0x378fca[_0x6ba0(0x77)](_0x1364cc,_0x28cad5[_0x4451d5][_0x6ba0(0x6e)])){_0x378fca[_0x6ba0(0x78)]!==_0x378fca[_0x6ba0(0x79)]?(_0x171b82(_0x28cad5[_0x4451d5][_0x6ba0(0x7a)]),_0x4451d5++):_0x327a97['pYnLw'](_0x4235eb,_0x27ef13,0x0)[_0x6ba0(0x38)]();}_0x378fca[_0x6ba0(0x7b)](_0x353db2,_0x1364cc),_reactNative[_0x6ba0(0x20)][_0x6ba0(0x36)](_0xa44f63,{'toValue':_0x378fca[_0x6ba0(0x7c)](_0x1364cc,0x64),'duration':_0x22a6ea,'useNativeDriver':![]})[_0x6ba0(0x38)](),_0x1364cc>=0x64&&(_0x378fca[_0x6ba0(0x7d)](_0x378fca[_0x6ba0(0x7e)],_0x378fca[_0x6ba0(0x7e)])?_0x378fca[_0x6ba0(0x7f)](setTimeout,()=>{const _0xa78f82={'ZPOOa':function(_0x3670f5,_0x50c26d,_0x5748eb){return _0x327a97['pYnLw'](_0x3670f5,_0x50c26d,_0x5748eb);},'uPyuT':function(_0x19f555,_0x4c315c){return _0x327a97[_0x6ba0(0x80)](_0x19f555,_0x4c315c);}};if(_0x327a97[_0x6ba0(0x81)](_0x327a97[_0x6ba0(0x82)],_0x327a97['TxlRD']))(0x0,_haptics['triggerHaptic'])(_haptics[_0x6ba0(0x30)][_0x6ba0(0x31)]),_0x327a97[_0x6ba0(0x83)](_0x41d480);else return _0xd20a79[_0x6ba0(0x13)](_0xa78f82[_0x6ba0(0x84)](_0x3174d1,_0x591ac9,_0xa78f82[_0x6ba0(0x85)](_0x349ee9,0x1)));},0x1f4):(_0x16b3ee[_0x6ba0(0x22)]['forEach'](_0x5e39d9=>_0x4c8fb0(_0x5e39d9)),_0x373f43[_0x6ba0(0x22)]=[]));}},_0xde1d50);_0x4a2aed[_0x6ba0(0x22)][_0x6ba0(0x42)](_0x56b923),_0xde1d50+=_0x22a6ea;}return()=>{_0x4a2aed['current']['forEach'](_0x5434ac=>clearTimeout(_0x5434ac)),_0x4a2aed[_0x6ba0(0x22)]=[];};}else{const _0x278ce1=_0x378fca['JCNSt'](_0x309794,_0x48e404['minProgress'],_0x143f4c[_0x6ba0(0x86)]);_0x544fcb['push']({'progress':_0x278ce1,'message':_0x3334bd[_0x6ba0(0x87)]});}},[_0x3a867e,_0x41d480,_0xa44f63]);if(!_0x3a867e)return null;return _react[_0x6ba0(0x69)][_0x6ba0(0x88)](_reactNative[_0x6ba0(0x89)],{'style':styles[_0x6ba0(0x8a)]},_react[_0x6ba0(0x69)][_0x6ba0(0x88)](_reactNative[_0x6ba0(0x89)],{'style':styles['content']},_react['default']['createElement'](_reactNative[_0x6ba0(0x89)],{'style':styles[_0x6ba0(0x8b)]},_react[_0x6ba0(0x69)][_0x6ba0(0x88)](_lottieReactNative[_0x6ba0(0x69)],{'source':_assetRegistry[_0x6ba0(0x8c)][_0x6ba0(0x8d)],'autoPlay':!![],'loop':!![],'style':styles[_0x6ba0(0x8e)],'resizeMode':_0x53dba9[_0x6ba0(0x8f)]})),_react[_0x6ba0(0x69)][_0x6ba0(0x88)](_reactNative['View'],{'style':styles['textContainer']},_react[_0x6ba0(0x69)][_0x6ba0(0x88)](_reactNative[_0x6ba0(0x90)],{'style':styles['loadingText']},_0x447d21),_react[_0x6ba0(0x69)][_0x6ba0(0x88)](_reactNative[_0x6ba0(0x89)],{'style':styles[_0x6ba0(0x91)]},_react['default'][_0x6ba0(0x88)](_reactNative[_0x6ba0(0x20)][_0x6ba0(0x90)],{'style':[styles[_0x6ba0(0x92)],{'opacity':_0x1dbcdc}]},'.'),_react[_0x6ba0(0x69)][_0x6ba0(0x88)](_reactNative[_0x6ba0(0x20)][_0x6ba0(0x90)],{'style':[styles[_0x6ba0(0x92)],{'opacity':_0x237848}]},'.'),_react[_0x6ba0(0x69)][_0x6ba0(0x88)](_reactNative[_0x6ba0(0x20)]['Text'],{'style':[styles[_0x6ba0(0x92)],{'opacity':_0x44e100}]},'.'))),_react[_0x6ba0(0x69)][_0x6ba0(0x88)](_reactNative['View'],{'style':styles[_0x6ba0(0x93)]},_react[_0x6ba0(0x69)][_0x6ba0(0x88)](_reactNative['View'],{'style':styles[_0x6ba0(0x94)]},_react[_0x6ba0(0x69)][_0x6ba0(0x88)](_reactNative[_0x6ba0(0x20)]['View'],{'style':[styles[_0x6ba0(0x95)],{'width':_0xa44f63[_0x6ba0(0x96)]({'inputRange':[0x0,0x1],'outputRange':['0%','100%']})}]})))));},styles=_reactNative[_0x6ba0(0x97)][_0x6ba0(0x98)]({'container':{'flex':0x1,'backgroundColor':_theme['COLORS'][_0x6ba0(0x99)]},'content':{'flex':0x1,'justifyContent':_0x6ba0(0x9a),'alignItems':_0x6ba0(0x9a),'paddingHorizontal':0x18,'marginTop':-0x50},'lottieContainer':{'width':0x168,'height':0x168,'marginBottom':0x20,'alignItems':'center','justifyContent':'center'},'lottieAnimation':{'width':_0x6ba0(0x9b),'height':_0x6ba0(0x9b)},'textContainer':{'flexDirection':_0x6ba0(0x9c),'alignItems':'center','marginBottom':0x30},'loadingText':{'fontSize':0x18,'fontFamily':_0x6ba0(0x9d),'fontWeight':_0x6ba0(0x9e),'color':_theme[_0x6ba0(0x9f)][_0x6ba0(0xa0)]},'dotsContainer':{'flexDirection':_0x6ba0(0x9c),'marginLeft':0x4},'dot':{'fontSize':0x18,'fontFamily':_0x6ba0(0x9d),'fontWeight':_0x6ba0(0x9e),'color':_theme[_0x6ba0(0x9f)]['grey800'],'marginLeft':0x2},'progressContainer':{'width':_0x6ba0(0x9b),'maxWidth':0x118},'progressTrack':{'height':0x6,'backgroundColor':_0x6ba0(0xa1),'borderRadius':0x3,'overflow':'hidden'},'progressFill':{'height':_0x6ba0(0x9b),'backgroundColor':_theme['COLORS'][_0x6ba0(0xa0)],'borderRadius':0x3}});function _0x6ba0(_0x1d53ff,_0x6ba049){_0x1d53ff=_0x1d53ff-0x0;const _0xf4281=_0x1d53();let _0x40ef87=_0xf4281[_0x1d53ff];return _0x40ef87;}var _default=exports[_0x6ba0(0x69)]=PersonaLoadingScreen;
@@ -0,0 +1,13 @@
1
+ 'use strict';
2
+ // Onairos SDK - Asset Registry (auto-generated)
3
+ var __ONAIROS_REQ_REGISTRY__ = [
4
+ require("react"),
5
+ require("react-native"),
6
+ require("../theme"),
7
+ require("../utils/haptics"),
8
+ require("../services/connectedAccountsService"),
9
+ require("../utils/assetRegistry"),
10
+ require("./icons")
11
+ ];
12
+ function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
13
+ Object[_0x4a97(0x0)](exports,_0x4a97(0x1),{'value':!![]}),exports[_0x4a97(0x2)]=exports[_0x4a97(0x3)]=void 0x0;var _react=_interopRequireWildcard(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_theme=__ONAIROS_REQ_FUNC__(0x2),_haptics=__ONAIROS_REQ_FUNC__(0x3),_connectedAccountsService=__ONAIROS_REQ_FUNC__(0x4),_assetRegistry=__ONAIROS_REQ_FUNC__(0x5),_icons=__ONAIROS_REQ_FUNC__(0x6);function _interopRequireWildcard(_0x10841e,_0x211fe0){var _0x33ce66={'SBCQm':function(_0x3cc743,_0x5ef876){return _0x3cc743&&_0x5ef876;},'AFYPZ':function(_0x4bb021,_0x4cfb42){return _0x4bb021===_0x4cfb42;},'qShnB':function(_0x1fdb73,_0x1b88c7){return _0x1fdb73!=_0x1b88c7;},'Skqfl':function(_0x32af6a,_0x20089c){return _0x32af6a!==_0x20089c;},'mWPuG':'default','ZAgFc':function(_0x12011d,_0x5596f8,_0x3df2b0,_0xee2c8){return _0x12011d(_0x5596f8,_0x3df2b0,_0xee2c8);},'RRdFn':function(_0x290afd,_0x192103){return _0x290afd==_0x192103;}};if(_0x33ce66[_0x4a97(0x4)](_0x4a97(0x5),typeof WeakMap))var _0x4e6100=new WeakMap(),_0x284579=new WeakMap();return(_interopRequireWildcard=function(_0x103d22,_0x596941){if(_0x33ce66[_0x4a97(0x6)](!_0x596941,_0x103d22)&&_0x103d22['__esModule'])return _0x103d22;var _0x17fae8,_0x14e6e2,_0x58f77b={'__proto__':null,'default':_0x103d22};if(_0x33ce66[_0x4a97(0x7)](null,_0x103d22)||_0x33ce66[_0x4a97(0x8)](_0x4a97(0x9),typeof _0x103d22)&&_0x4a97(0x5)!=typeof _0x103d22)return _0x58f77b;if(_0x17fae8=_0x596941?_0x284579:_0x4e6100){if(_0x17fae8[_0x4a97(0xa)](_0x103d22))return _0x17fae8[_0x4a97(0xb)](_0x103d22);_0x17fae8[_0x4a97(0xc)](_0x103d22,_0x58f77b);}for(const _0x4adc53 in _0x103d22)_0x33ce66['Skqfl'](_0x33ce66[_0x4a97(0xd)],_0x4adc53)&&{}[_0x4a97(0xe)][_0x4a97(0xf)](_0x103d22,_0x4adc53)&&((_0x14e6e2=(_0x17fae8=Object[_0x4a97(0x0)])&&Object[_0x4a97(0x10)](_0x103d22,_0x4adc53))&&(_0x14e6e2['get']||_0x14e6e2[_0x4a97(0xc)])?_0x33ce66[_0x4a97(0x11)](_0x17fae8,_0x58f77b,_0x4adc53,_0x14e6e2):_0x58f77b[_0x4adc53]=_0x103d22[_0x4adc53]);return _0x58f77b;})(_0x10841e,_0x211fe0);}const PersonalizationConsentScreen=({visible:_0x1f8415,onAccept:_0x470561,onDecline:_0x5a97c2,loading:loading=![],connectedPlatforms:connectedPlatforms=[],onConnectMore:_0x28b683,isReturningUser:isReturningUser=![],appName:appName=_0x4a97(0x12),onLogout:_0x4d077c})=>{var _0x401653={'usMgJ':function(_0x4b3d32,_0x2696d8){return _0x4b3d32(_0x2696d8);},'QiPdT':_0x4a97(0x13),'ZtPuA':_0x4a97(0x14),'RcPpE':function(_0x1734cd){return _0x1734cd();},'SFuZo':function(_0x49878c,_0x4a69e4){return _0x49878c&&_0x4a69e4;},'GObKB':function(_0x169d2e,_0xe7468e){return _0x169d2e===_0xe7468e;},'NVfgw':function(_0x2029da,_0x5b64fb){return _0x2029da!=_0x5b64fb;},'jroaE':_0x4a97(0x5),'jTcHD':function(_0x561ff8,_0x1f8276){return _0x561ff8!==_0x1f8276;},'KwQrf':function(_0x4329f8,_0x2d3ad3,_0x2534d5,_0xfa4a02){return _0x4329f8(_0x2d3ad3,_0x2534d5,_0xfa4a02);},'cxDyM':'BUAMi','LcrDT':'GbLcl','loKBG':function(_0x443a47){return _0x443a47();},'JZYsK':_0x4a97(0x15),'WlsVV':'Choose\x20what\x20to\x20share:','tuWua':_0x4a97(0x16),'NGZVi':_0x4a97(0x17),'NELuj':function(_0xd4995e,_0x18a974){return _0xd4995e>_0x18a974;},'LnKmh':_0x4a97(0x18),'zBeYS':_0x4a97(0x19),'TharC':'Decline','OznbL':_0x4a97(0x1a)};const [_0x50d222,_0x27598c]=(0x0,_react[_0x4a97(0x1b)])({'basicProfile':![],'contentAnalysis':![],'personalityProfile':![]}),_0x37fcca=_0x36e4ec=>{(0x0,_haptics['triggerHaptic'])(_haptics[_0x4a97(0x1c)][_0x4a97(0x1d)]),_0x401653[_0x4a97(0x1e)](_0x27598c,_0x4abfdb=>({..._0x4abfdb,[_0x36e4ec]:!_0x4abfdb[_0x36e4ec]}));},_0x13e564=Object[_0x4a97(0x1f)](_0x50d222)['some'](_0x4af866=>_0x4af866);if(!_0x1f8415)return null;return _react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x22)]},_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative['ScrollView'],{'style':styles['scrollView'],'contentContainerStyle':styles['scrollContent'],'showsVerticalScrollIndicator':![]},_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'style':styles['headerContainer']},_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x23)]},_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x24)],{'source':_assetRegistry[_0x4a97(0x25)][_0x4a97(0x26)],'style':styles[_0x4a97(0x27)],'resizeMode':_0x401653[_0x4a97(0x28)]})),_react['default']['createElement'](_reactNative[_0x4a97(0x29)],{'style':styles[_0x4a97(0x2a)]},'→'),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative['Image'],{'source':_assetRegistry[_0x4a97(0x25)][_0x4a97(0x2b)],'style':styles[_0x4a97(0x2c)],'resizeMode':_0x4a97(0x15)})),_react['default'][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x2d)]},isReturningUser&&_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x29)],{'style':styles['welcomeBackText']},_0x4a97(0x2e)),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x29)],{'style':styles[_0x4a97(0x2f)]},appName,_0x4a97(0x30)),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative['Text'],{'style':styles['subtitle']},_0x401653[_0x4a97(0x31)])),_react['default'][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x32)]},_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x33)],{'style':styles['optionRow'],'onPress':()=>_0x37fcca('basicProfile')},_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x34)]},_react['default'][_0x4a97(0x20)](_icons[_0x4a97(0x35)],{'width':0x20,'height':0x20,'fill':_theme['COLORS'][_0x4a97(0x36)],'style':styles[_0x4a97(0x37)]}),_react[_0x4a97(0x2)][_0x4a97(0x20)](_icons[_0x4a97(0x38)],{'height':0x18,'fill':_theme[_0x4a97(0x39)]['grey800'],'style':styles[_0x4a97(0x3a)]})),_react[_0x4a97(0x2)]['createElement'](_reactNative[_0x4a97(0x21)],{'style':styles['checkboxContainer']},_0x50d222['basicProfile']?_react['default'][_0x4a97(0x20)](_icons['Checkmark'],{'width':0x18,'height':0x18,'fill':_0x4a97(0x16),'style':styles[_0x4a97(0x3b)]}):_react[_0x4a97(0x2)]['createElement'](_icons[_0x4a97(0x3c)],{'width':0x18,'height':0x18,'stroke':_theme[_0x4a97(0x39)][_0x4a97(0x3d)],'style':styles[_0x4a97(0x3b)]}))),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative['TouchableOpacity'],{'style':styles[_0x4a97(0x3e)],'onPress':()=>_0x37fcca('contentAnalysis')},_react[_0x4a97(0x2)]['createElement'](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x34)]},_react['default'][_0x4a97(0x20)](_icons['Contenticon'],{'width':0x20,'height':0x20,'fill':_theme[_0x4a97(0x39)]['grey700'],'style':styles[_0x4a97(0x37)]}),_react[_0x4a97(0x2)][_0x4a97(0x20)](_icons[_0x4a97(0x3f)],{'height':0x18,'fill':_theme[_0x4a97(0x39)][_0x4a97(0x40)],'style':styles[_0x4a97(0x3a)]})),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative['View'],{'style':styles[_0x4a97(0x41)]},_0x50d222['contentAnalysis']?_react['default'][_0x4a97(0x20)](_icons['Checkmark'],{'width':0x18,'height':0x18,'fill':_0x4a97(0x16),'style':styles[_0x4a97(0x3b)]}):_react[_0x4a97(0x2)]['createElement'](_icons['Checkbox'],{'width':0x18,'height':0x18,'stroke':_theme[_0x4a97(0x39)]['grey400'],'style':styles[_0x4a97(0x3b)]}))),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x33)],{'style':styles[_0x4a97(0x3e)],'onPress':()=>_0x37fcca('personalityProfile')},_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x34)]},_react[_0x4a97(0x2)]['createElement'](_icons[_0x4a97(0x42)],{'width':0x20,'height':0x20,'fill':_theme[_0x4a97(0x39)][_0x4a97(0x36)],'style':styles['optionIcon']}),_react[_0x4a97(0x2)][_0x4a97(0x20)](_icons[_0x4a97(0x43)],{'height':0x18,'fill':_theme[_0x4a97(0x39)]['grey800'],'style':styles[_0x4a97(0x3a)]})),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x41)]},_0x50d222[_0x4a97(0x44)]?_react[_0x4a97(0x2)][_0x4a97(0x20)](_icons[_0x4a97(0x45)],{'width':0x18,'height':0x18,'fill':_0x401653['tuWua'],'style':styles[_0x4a97(0x3b)]}):_react['default'][_0x4a97(0x20)](_icons[_0x4a97(0x3c)],{'width':0x18,'height':0x18,'stroke':_theme[_0x4a97(0x39)]['grey400'],'style':styles[_0x4a97(0x3b)]})))),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'style':styles['connectedPlatformsSection']},_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x29)],{'style':styles[_0x4a97(0x46)]},_0x401653['NGZVi']),_0x401653[_0x4a97(0x47)](connectedPlatforms[_0x4a97(0x48)],0x0)&&_react[_0x4a97(0x2)]['createElement'](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x49)]},connectedPlatforms[_0x4a97(0x4a)](_0x441976=>_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'key':_0x441976,'style':styles[_0x4a97(0x4b)]},_react[_0x4a97(0x2)]['createElement'](_reactNative['Image'],{'source':(0x0,_connectedAccountsService['getPlatformIcon'])(_0x441976),'style':styles['connectedPlatformIcon'],'resizeMode':'contain'})))),_0x28b683&&_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative['TouchableOpacity'],{'style':styles[_0x4a97(0x4c)],'onPress':()=>{if(_0x401653[_0x4a97(0x4d)]!==_0x401653[_0x4a97(0x4e)])(0x0,_haptics[_0x4a97(0x4f)])(_haptics['HapticType'][_0x4a97(0x1d)]),_0x401653[_0x4a97(0x50)](_0x28b683);else{if(_0x39bd8[_0x4a97(0xa)](_0x4a564f))return _0x18d33c[_0x4a97(0xb)](_0x14f8ea);_0x2e3acc['set'](_0x4d7571,_0x3ec5bb);}}},_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x29)],{'style':styles[_0x4a97(0x51)]},_0x401653[_0x4a97(0x52)]),_react[_0x4a97(0x2)]['createElement'](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x53)]},_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative['Text'],{'style':styles[_0x4a97(0x54)]},'+'))))),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x21)],{'style':styles[_0x4a97(0x55)]},_react['default'][_0x4a97(0x20)](_reactNative[_0x4a97(0x33)],{'style':[styles['acceptButton'],_0x13e564&&styles[_0x4a97(0x56)],loading&&styles[_0x4a97(0x57)]],'onPress':()=>{var _0x271528={'Bgstv':function(_0x1be118,_0x2e3565){return _0x401653['SFuZo'](_0x1be118,_0x2e3565);},'QkAOn':function(_0x36bf6f,_0x25daec){return _0x401653[_0x4a97(0x58)](_0x36bf6f,_0x25daec);},'IrwRm':function(_0x5acd16,_0x56a49a){return _0x401653[_0x4a97(0x59)](_0x5acd16,_0x56a49a);},'ZVomS':_0x4a97(0x9),'qGSRc':_0x401653[_0x4a97(0x5a)],'HyHeA':function(_0x201377,_0x3e04c1){return _0x401653[_0x4a97(0x5b)](_0x201377,_0x3e04c1);},'yNmDF':_0x4a97(0x2),'fWfWg':function(_0x1679f2,_0x12bf7b,_0x2b6701,_0x16e436){return _0x401653[_0x4a97(0x5c)](_0x1679f2,_0x12bf7b,_0x2b6701,_0x16e436);}};if(_0x401653['jTcHD'](_0x401653['cxDyM'],_0x401653[_0x4a97(0x5d)]))!loading&&((0x0,_haptics[_0x4a97(0x4f)])(_haptics['HapticType'][_0x4a97(0x1d)]),_0x401653['loKBG'](_0x470561));else{if(_0x271528[_0x4a97(0x5e)](!_0x1a4a12,_0x505b2c)&&_0x52db63[_0x4a97(0x1)])return _0x4a78fb;var _0x4a4daa,_0x560110,_0x5a0b35={'__proto__':null,'default':_0x3ea972};if(_0x271528['QkAOn'](null,_0xfc7c50)||_0x271528[_0x4a97(0x5f)](_0x271528[_0x4a97(0x60)],typeof _0x48ed2b)&&_0x271528['IrwRm'](_0x271528['qGSRc'],typeof _0x97fc68))return _0x5a0b35;if(_0x4a4daa=_0x36de28?_0xb2f3e9:_0x405932){if(_0x4a4daa[_0x4a97(0xa)](_0x5495e5))return _0x4a4daa['get'](_0xd5bdb5);_0x4a4daa[_0x4a97(0xc)](_0x2ec957,_0x5a0b35);}for(const _0x4531d5 in _0x1765f4)_0x271528['HyHeA'](_0x271528['yNmDF'],_0x4531d5)&&{}[_0x4a97(0xe)][_0x4a97(0xf)](_0x28cbc7,_0x4531d5)&&((_0x560110=(_0x4a4daa=_0x365997[_0x4a97(0x0)])&&_0xa9be33[_0x4a97(0x10)](_0x58d83f,_0x4531d5))&&(_0x560110[_0x4a97(0xb)]||_0x560110['set'])?_0x271528[_0x4a97(0x61)](_0x4a4daa,_0x5a0b35,_0x4531d5,_0x560110):_0x5a0b35[_0x4531d5]=_0x32c6a9[_0x4531d5]);return _0x5a0b35;}},'disabled':loading,'activeOpacity':loading?0x1:0.7},loading?_react[_0x4a97(0x2)]['createElement'](_reactNative[_0x4a97(0x62)],{'size':_0x4a97(0x63),'color':_0x4a97(0x64)}):_react[_0x4a97(0x2)][_0x4a97(0x20)](_react[_0x4a97(0x2)][_0x4a97(0x65)],null,_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative['Text'],{'style':[styles[_0x4a97(0x66)],_0x13e564&&styles['acceptButtonTextActive']]},_0x401653[_0x4a97(0x67)]),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x29)],{'style':[styles[_0x4a97(0x68)],_0x13e564&&styles[_0x4a97(0x69)]]},'→'))),_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x33)],{'style':styles[_0x4a97(0x6a)],'onPress':()=>{(0x0,_haptics[_0x4a97(0x4f)])(_haptics[_0x4a97(0x1c)][_0x4a97(0x1d)]),_0x5a97c2();}},_react[_0x4a97(0x2)]['createElement'](_reactNative[_0x4a97(0x29)],{'style':styles['declineButtonText']},_0x401653['TharC'])),_0x4d077c&&_react[_0x4a97(0x2)][_0x4a97(0x20)](_reactNative[_0x4a97(0x33)],{'style':styles[_0x4a97(0x6b)],'onPress':()=>{(0x0,_haptics[_0x4a97(0x4f)])(_haptics['HapticType'][_0x4a97(0x1d)]),_0x401653[_0x4a97(0x50)](_0x4d077c);}},_react['default'][_0x4a97(0x20)](_reactNative[_0x4a97(0x29)],{'style':styles[_0x4a97(0x6c)]},_0x401653[_0x4a97(0x6d)]))));};function _0x4a97(_0x130b6e,_0x4a974c){_0x130b6e=_0x130b6e-0x0;var _0x191b7f=_0x130b();var _0x5de87e=_0x191b7f[_0x130b6e];return _0x5de87e;}exports[_0x4a97(0x3)]=PersonalizationConsentScreen;const styles=_reactNative[_0x4a97(0x6e)][_0x4a97(0x6f)]({'container':{'flex':0x1,'backgroundColor':_theme[_0x4a97(0x39)][_0x4a97(0x70)],'paddingHorizontal':0x18,'paddingTop':0x28,'paddingBottom':0x8},'headerContainer':{'flexDirection':_0x4a97(0x71),'alignItems':_0x4a97(0x72),'justifyContent':_0x4a97(0x72),'marginBottom':0xc,'marginTop':0x0},'iconContainer':{'width':0x40,'height':0x40,'backgroundColor':_0x4a97(0x64),'borderRadius':0xc,'alignItems':_0x4a97(0x72),'justifyContent':_0x4a97(0x72),'marginHorizontal':0x8,'shadowColor':_0x4a97(0x73),'shadowOffset':{'width':0x0,'height':0x2},'shadowOpacity':0.1,'shadowRadius':0x4,'elevation':0x2},'headerIcon':{'width':0x2a,'height':0x2a},'enochAppIcon':{'width':0x48,'height':0x48,'marginHorizontal':0x8},'enochLetter':{'fontSize':0x1c,'fontFamily':_0x4a97(0x74),'fontWeight':_0x4a97(0x75),'color':_theme[_0x4a97(0x39)]['grey800']},'arrow':{'fontSize':0x18,'color':_theme[_0x4a97(0x39)][_0x4a97(0x76)],'marginHorizontal':0x10},'titleContainer':{'alignItems':'center','marginBottom':0x8},'welcomeBackText':{'fontSize':0x18,'fontFamily':_0x4a97(0x74),'fontWeight':_0x4a97(0x75),'color':_theme[_0x4a97(0x39)][_0x4a97(0x40)],'textAlign':_0x4a97(0x72),'marginBottom':0x2},'title':{'fontSize':0x14,'fontFamily':_0x4a97(0x74),'fontWeight':'600','color':_theme['COLORS'][_0x4a97(0x40)],'textAlign':_0x4a97(0x72),'marginBottom':0xa},'subtitle':{'fontSize':0x10,'fontFamily':_0x4a97(0x77),'fontWeight':_0x4a97(0x78),'color':_theme[_0x4a97(0x39)][_0x4a97(0x76)],'textAlign':'center'},'scrollView':{'flex':0x1},'scrollContent':{'flexGrow':0x1},'optionsContainer':{'marginBottom':0x8},'optionRow':{'flexDirection':_0x4a97(0x71),'alignItems':_0x4a97(0x72),'justifyContent':'space-between','paddingVertical':0xc,'paddingHorizontal':0x2,'backgroundColor':_0x4a97(0x79),'borderRadius':0xc,'marginBottom':0x6,'marginHorizontal':0x0},'optionLeft':{'flexDirection':_0x4a97(0x71),'alignItems':_0x4a97(0x72),'flex':0x1},'optionIcon':{'marginRight':0xc,'marginLeft':0x2,'marginTop':-0x4},'optionText':{'flex':0x1,'marginLeft':0x2},'checkboxContainer':{'paddingLeft':0x4,'paddingRight':0x2,'alignItems':_0x4a97(0x72),'justifyContent':_0x4a97(0x72)},'checkbox':{},'buttonContainer':{'gap':0x8,'paddingHorizontal':0x0,'paddingBottom':0x10,'marginTop':0x10},'acceptButton':{'backgroundColor':_0x4a97(0x7a),'borderRadius':0x19,'paddingVertical':0xa,'paddingHorizontal':0x18,'flexDirection':'row','alignItems':_0x4a97(0x72),'justifyContent':_0x4a97(0x72)},'acceptButtonActive':{'backgroundColor':_0x4a97(0x7b)},'acceptButtonLoading':{'backgroundColor':'#2D3436','opacity':0.8},'acceptButtonText':{'color':_0x4a97(0x7c),'fontSize':0x10,'fontFamily':'Inter','fontWeight':_0x4a97(0x7d),'marginRight':0x8},'acceptButtonTextActive':{'color':_0x4a97(0x64)},'buttonArrow':{'color':_0x4a97(0x7c),'fontSize':0x10},'buttonArrowActive':{'color':_0x4a97(0x64)},'declineButton':{'backgroundColor':_0x4a97(0x7a),'borderRadius':0x19,'paddingVertical':0xa,'paddingHorizontal':0x18,'alignItems':'center','justifyContent':'center'},'declineButtonText':{'color':_theme[_0x4a97(0x39)]['grey600'],'fontSize':0x10,'fontFamily':'Inter','fontWeight':_0x4a97(0x7e)},'logoutButton':{'alignItems':_0x4a97(0x72),'paddingVertical':0xc,'marginTop':0x8},'logoutButtonText':{'fontSize':0xe,'fontFamily':'Inter','fontWeight':_0x4a97(0x78),'color':_theme[_0x4a97(0x39)][_0x4a97(0x7f)],'textDecorationLine':_0x4a97(0x80)},'connectedPlatformsSection':{'alignItems':_0x4a97(0x72),'paddingVertical':0xa,'paddingHorizontal':0x10,'backgroundColor':_0x4a97(0x79),'borderRadius':0x10,'marginBottom':0xa,'marginTop':0x10},'connectedPlatformsTitle':{'fontSize':0xf,'fontFamily':_0x4a97(0x77),'fontWeight':_0x4a97(0x7e),'color':_theme[_0x4a97(0x39)][_0x4a97(0x7f)],'marginBottom':0xa},'connectedPlatformsIcons':{'flexDirection':_0x4a97(0x71),'justifyContent':_0x4a97(0x72),'alignItems':'center','flexWrap':_0x4a97(0x81),'gap':0xa,'marginBottom':0xa},'connectedPlatformIconContainer':{'width':0x30,'height':0x30,'borderRadius':0xa,'backgroundColor':_0x4a97(0x64),'justifyContent':_0x4a97(0x72),'alignItems':_0x4a97(0x72),'shadowColor':_0x4a97(0x73),'shadowOffset':{'width':0x0,'height':0x2},'shadowOpacity':0.1,'shadowRadius':0x4,'elevation':0x2},'connectedPlatformIcon':{'width':0x20,'height':0x20},'connectMoreButton':{'flexDirection':_0x4a97(0x71),'alignItems':'center','justifyContent':_0x4a97(0x72),'gap':0x8},'connectMoreText':{'fontSize':0x10,'fontFamily':_0x4a97(0x77),'fontWeight':_0x4a97(0x7e),'color':_theme['COLORS'][_0x4a97(0x7f)]},'connectMorePlusCircle':{'width':0x1c,'height':0x1c,'borderRadius':0xe,'borderWidth':0x2,'borderColor':_theme['COLORS'][_0x4a97(0x3d)],'justifyContent':_0x4a97(0x72),'alignItems':'center'},'connectMorePlus':{'fontSize':0x12,'fontWeight':_0x4a97(0x7e),'color':_theme['COLORS'][_0x4a97(0x7f)],'marginTop':-0x2}});function _0x130b(){var _0x4f6954=['defineProperty','__esModule','default','PersonalizationConsentScreen','RRdFn','function','SBCQm','AFYPZ','qShnB','object','has','get','set','mWPuG','hasOwnProperty','call','getOwnPropertyDescriptor','ZAgFc','Enoch','jBppw','lvyBc','contain','#4CD964','Connected\x20Platforms','Connect\x20more','Accept\x20&\x20Continue','Use\x20different\x20account','useState','HapticType','BUTTON_PRESS','usMgJ','values','createElement','View','container','iconContainer','Image','BRAND_IMAGES','onairosLogo','headerIcon','JZYsK','Text','arrow','enochIcon','enochAppIcon','titleContainer','Welcome\x20back!','title','\x20wants\x20to\x20personalize\x20your\x20experience','WlsVV','optionsContainer','TouchableOpacity','optionLeft','Basicproficon','grey700','optionIcon','Basicprofile','COLORS','optionText','checkbox','Checkbox','grey400','optionRow','Userpreferences','grey800','checkboxContainer','Personalityicon','Personalitytraits','personalityProfile','Checkmark','connectedPlatformsTitle','NELuj','length','connectedPlatformsIcons','map','connectedPlatformIconContainer','connectMoreButton','QiPdT','ZtPuA','triggerHaptic','RcPpE','connectMoreText','LnKmh','connectMorePlusCircle','connectMorePlus','buttonContainer','acceptButtonActive','acceptButtonLoading','GObKB','NVfgw','jroaE','jTcHD','KwQrf','LcrDT','Bgstv','IrwRm','ZVomS','fWfWg','ActivityIndicator','small','#FFFFFF','Fragment','acceptButtonText','zBeYS','buttonArrow','buttonArrowActive','declineButton','logoutButton','logoutButtonText','OznbL','StyleSheet','create','surface','row','center','#000','IBM\x20Plex\x20Sans','700','grey600','Inter','400','#F8F9FA','#E5E5E5','#2D3436','#999999','600','500','grey500','underline','wrap'];_0x130b=function(){return _0x4f6954;};return _0x130b();}var _default=exports[_0x4a97(0x2)]=PersonalizationConsentScreen;
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+ // Onairos SDK - Asset Registry (auto-generated)
3
+ var __ONAIROS_REQ_REGISTRY__ = [
4
+ require("react"),
5
+ require("react-native"),
6
+ require("../theme"),
7
+ require("../utils/haptics"),
8
+ require("../services/biometricPinService"),
9
+ require("../services/pinStorageUtils")
10
+ ];
11
+ function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
12
+ function _0x3583(){const _0x5d7552=['defineProperty','__esModule','default','PinCreationScreen','object','function','viWqX','OBtLW','lYeBN','has','get','set','hasOwnProperty','call','yOXbC','✅\x20PIN\x20storage\x20verified\x20-\x20proceeding\x20with\x20onboarding','❌\x20[PIN\x20CREATION]\x20Face\x20ID\x20not\x20available\x20on\x20this\x20device','unavailable','XCGQM','Please\x20ensure\x20your\x20PIN\x20meets\x20all\x20requirements.','IrGdq','🔐\x20Starting\x20PIN\x20creation\x20process...','🔐\x20[PIN\x20CREATION]\x20Triggering\x20biometric\x20authentication\x20for\x20PIN\x20storage...','xaFhh','RggzK','tcXXA','error','PIN\x20Storage\x20Error','PIN\x20storage\x20verification\x20failed.\x20Please\x20try\x20again.','⚠️\x20Face\x20ID\x20authentication\x20was\x20cancelled\x20or\x20failed','PIN\x20Creation\x20Error','checking','available','📱\x20Biometric\x20availability\x20check:','❌\x20Error\x20checking\x20biometric\x20availability:','Create\x20a\x20PIN','A\x20PIN\x20so\x20only\x20you\x20have\x20access\x20to\x20your\x20data.','Enter\x20your\x20PIN','Contain\x20an\x20uppercase\x20letter.','Contain\x20a\x20symbol\x20(e.g.\x20!@#$%^&*).','small','Checking\x20Face\x20ID...','PIN\x20Secured\x20with\x20Face\x20ID','Verifying\x20Face\x20ID\x20availability\x20on\x20your\x20device.','We\x20use\x20Face\x20ID\x20to\x20ensure\x20only\x20you\x20can\x20access\x20your\x20data.','Face\x20ID\x20is\x20not\x20available\x20on\x20this\x20device.\x20Your\x20PIN\x20will\x20be\x20stored\x20securely.','Please\x20authenticate\x20with\x20Face\x20ID\x20to\x20secure\x20your\x20PIN.','Your\x20PIN\x20is\x20now\x20protected\x20with\x20Face\x20ID\x20authentication.','Face\x20ID\x20setup\x20failed,\x20but\x20your\x20PIN\x20is\x20stored\x20securely.','useState','UZKBY','length','test','eJlAL','values','every','gyqLX','llamG','eTSlo','QWRJR','lqyQQ','gtwdP','nhWYI','yAYEz','JBaDb','NDXOv','TyvzV','nEiZM','rkNGD','triggerHaptic','HapticType','ERROR','Alert','alert','MbzKG','LRdnW','qHRdt','WOPgi','BUTTON_PRESS','LPiCc','log','jWCVK','setTemporaryPin','📝\x20PIN\x20stored\x20temporarily\x20for\x20onboarding','xeGKB','biometricPinService','isBiometricAvailable','CTNbA','slICq','storePinWithBiometric','HYbxl','qyfAx','kuSFO','xyayL','baOdC','GsAmP','SUCCESS','DrjCn','zjAuR','✅\x20PIN\x20stored\x20successfully\x20with\x20Face\x20ID','PAigI','Awfrc','JVPoO','CAWsU','YCoMJ','zXZRJ','jIutl','eZmVD','dKROT','VTbTT','RhJWg','lGFQA','jUgvk','XhdNF','LuiBi','AqfOj','Face\x20ID\x20authentication\x20was\x20cancelled\x20or\x20failed.\x20Your\x20PIN\x20is\x20still\x20saved\x20securely.','Try\x20Again','WUtSG','FlRuS','wOPtu','UcSxm','IBwHc','GsmUK','VqneL','MMrQH','UjgdB','LjmEL','Qpche','SviHD','getOwnPropertyDescriptor','pFYkE','azWSz','❌\x20Error\x20in\x20PIN\x20creation\x20process:','QJHgs','There\x20was\x20an\x20issue\x20creating\x20your\x20PIN.\x20Please\x20try\x20again.','useEffect','MMVEU','wfiKM','kYulF','NgjWl','MgSqi','gTNFK','hWYbO','oaPAP','PzoVD','hNGJK','HnDsX','LoDcH','UbTuU','createElement','container','View','titleContainer','Text','title','ivKBU','pinInput','XdqiS','requirementsContainer','requirementsTitle','sXQPf','requirementItem','checkbox','checkboxChecked','checkmark','requirementText','requirementTextMet','Be\x20at\x20least\x208\x20characters\x20in\x20length.','uppercase','XQlow','number','Contain\x20a\x20number.','symbol','zFmFR','securityCardSuccess','GHzLy','securityIconContainer','ActivityIndicator','MBnun','hhBbp','tOeNd','securityIcon','AlSot','Enhanced\x20Security','Face\x20ID\x20Unavailable','JKpXd','CtJZc','CiYkr','zoWcT','pPrlk','DfnVy','securityDescription','VppIu','mQTlA','prmel','PbBKu','rHLhY','OqJju','CMQdM','FtfiE','qpatE','iKvrj','buttonContainer','TouchableOpacity','continueButtonActive','continueButtonText','continueButtonTextActive','MdRSn','StyleSheet','create','surface','center','700','COLORS','grey800','IBM\x20Plex\x20Sans','grey600','Inter','#F8F9FA','#E5E5E5','600','#4CD964','#FFFFFF','bold','row','#F0FDF4','#22C55E','#EF4444','auto','#2D3436','#999999'];_0x3583=function(){return _0x5d7552;};return _0x3583();}Object[_0x17b1(0x0)](exports,_0x17b1(0x1),{'value':!![]}),exports[_0x17b1(0x2)]=exports[_0x17b1(0x3)]=void 0x0;var _react=_interopRequireWildcard(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_theme=__ONAIROS_REQ_FUNC__(0x2),_haptics=__ONAIROS_REQ_FUNC__(0x3),_biometricPinService=__ONAIROS_REQ_FUNC__(0x4),_pinStorageUtils=__ONAIROS_REQ_FUNC__(0x5);function _interopRequireWildcard(_0x355d8e,_0x15ca4b){const _0x43134f={'zdEXs':function(_0x2d540b,_0x14a3b5){return _0x2d540b&&_0x14a3b5;},'viWqX':function(_0x7277c9,_0x1f8dac){return _0x7277c9===_0x1f8dac;},'OBtLW':function(_0x4e35a3,_0x1e44c6){return _0x4e35a3!=_0x1e44c6;},'dGptT':_0x17b1(0x4),'lYeBN':'function','hcZYh':_0x17b1(0x2),'yOXbC':function(_0x5c4dfe,_0x2fa1b7,_0xaa8902,_0x48b5ab){return _0x5c4dfe(_0x2fa1b7,_0xaa8902,_0x48b5ab);}};if(_0x17b1(0x5)==typeof WeakMap)var _0x9cdc3c=new WeakMap(),_0x7b569b=new WeakMap();return(_interopRequireWildcard=function(_0x3baf1d,_0xdf00fb){if(_0x43134f['zdEXs'](!_0xdf00fb,_0x3baf1d)&&_0x3baf1d['__esModule'])return _0x3baf1d;var _0x535863,_0x2fc53e,_0x177fe5={'__proto__':null,'default':_0x3baf1d};if(_0x43134f[_0x17b1(0x6)](null,_0x3baf1d)||_0x43134f[_0x17b1(0x7)](_0x43134f['dGptT'],typeof _0x3baf1d)&&_0x43134f[_0x17b1(0x7)](_0x43134f[_0x17b1(0x8)],typeof _0x3baf1d))return _0x177fe5;if(_0x535863=_0xdf00fb?_0x7b569b:_0x9cdc3c){if(_0x535863[_0x17b1(0x9)](_0x3baf1d))return _0x535863[_0x17b1(0xa)](_0x3baf1d);_0x535863[_0x17b1(0xb)](_0x3baf1d,_0x177fe5);}for(const _0x282426 in _0x3baf1d)_0x43134f['hcZYh']!==_0x282426&&{}[_0x17b1(0xc)][_0x17b1(0xd)](_0x3baf1d,_0x282426)&&((_0x2fc53e=(_0x535863=Object[_0x17b1(0x0)])&&Object['getOwnPropertyDescriptor'](_0x3baf1d,_0x282426))&&(_0x2fc53e[_0x17b1(0xa)]||_0x2fc53e[_0x17b1(0xb)])?_0x43134f[_0x17b1(0xe)](_0x535863,_0x177fe5,_0x282426,_0x2fc53e):_0x177fe5[_0x282426]=_0x3baf1d[_0x282426]);return _0x177fe5;})(_0x355d8e,_0x15ca4b);}const PinCreationScreen=({visible:_0x387341,onComplete:_0x3ce164,onBack:_0x47e70d})=>{const _0x5b4848={'IRbSe':function(_0x433f7d,_0x1d2d46){return _0x433f7d>=_0x1d2d46;},'eJlAL':function(_0x1b1364,_0x4ce997){return _0x1b1364(_0x4ce997);},'qHRdt':function(_0x59615f,_0x23e9c2){return _0x59615f>=_0x23e9c2;},'WOPgi':function(_0x47ed66,_0x589ee7){return _0x47ed66(_0x589ee7);},'yfIKK':function(_0x188ffb,_0x2e736f){return _0x188ffb(_0x2e736f);},'gyqLX':function(_0x306133,_0x4a939a){return _0x306133(_0x4a939a);},'llamG':_0x17b1(0xf),'eTSlo':'success','QWRJR':_0x17b1(0x10),'lqyQQ':_0x17b1(0x11),'FFwLA':function(_0x95edd2){return _0x95edd2();},'gtwdP':'keWMt','nhWYI':_0x17b1(0x12),'HYbxl':function(_0x2db6ba,_0x2d1529){return _0x2db6ba===_0x2d1529;},'lHeDI':function(_0x4d43b1,_0x166fce){return _0x4d43b1!=_0x166fce;},'EGUCL':'object','yAYEz':function(_0x507902,_0x5ef46f){return _0x507902!=_0x5ef46f;},'JBaDb':'IBwHc','NDXOv':function(_0x377ba8,_0x34ebe6){return _0x377ba8(_0x34ebe6);},'TyvzV':function(_0x431291,_0x4d16b4){return _0x431291!==_0x4d16b4;},'nEiZM':'jZJNQ','MbzKG':'Invalid\x20PIN','LRdnW':_0x17b1(0x13),'LPiCc':_0x17b1(0x14),'jWCVK':_0x17b1(0x15),'JKpXd':'storing','xeGKB':'🔐\x20[PIN\x20CREATION]\x20Biometric\x20storage\x20enabled,\x20starting\x20biometric\x20flow...','CTNbA':'📱\x20[PIN\x20CREATION]\x20Biometric\x20available\x20before\x20storage:','MMVEU':function(_0x62f52e,_0x9f7d1b){return _0x62f52e(_0x9f7d1b);},'slICq':_0x17b1(0x16),'qyfAx':_0x17b1(0x17),'kuSFO':_0x17b1(0x18),'PAigI':function(_0xda77d,_0x59c6ae){return _0xda77d===_0x59c6ae;},'PSDrD':function(_0x390352,_0x3a3b1a){return _0x390352(_0x3a3b1a);},'gqDyr':function(_0x396c5f,_0x156e7d,_0x192666){return _0x396c5f(_0x156e7d,_0x192666);},'YCoMJ':function(_0x459567,_0x349e4a){return _0x459567!==_0x349e4a;},'zXZRJ':_0x17b1(0x19),'jIutl':'❌\x20PIN\x20storage\x20verification\x20failed','eZmVD':function(_0x20f8ef,_0x83c5ad){return _0x20f8ef(_0x83c5ad);},'dKROT':_0x17b1(0x1a),'VTbTT':function(_0x422556,_0x317997){return _0x422556(_0x317997);},'RhJWg':_0x17b1(0x1b),'lGFQA':_0x17b1(0x1c),'LuiBi':_0x17b1(0x1d),'AqfOj':'Face\x20ID\x20Setup','pFYkE':function(_0x26e8d1,_0x457d45){return _0x26e8d1!==_0x457d45;},'azWSz':'RGIWA','QJHgs':_0x17b1(0x1e),'LoDcH':function(_0x3415a0,_0x24207a){return _0x3415a0(_0x24207a);},'UZKBY':_0x17b1(0x1f),'tOeNd':_0x17b1(0x20),'ANHJZ':_0x17b1(0x21),'wfiKM':_0x17b1(0x22),'eBBUN':'mkPuc','HnDsX':'ekHit','UbTuU':function(_0x348206){return _0x348206();},'rwoPI':_0x17b1(0x23),'ivKBU':_0x17b1(0x24),'XdqiS':_0x17b1(0x25),'sXQPf':'Your\x20PIN\x20must:','XQlow':_0x17b1(0x26),'zFmFR':_0x17b1(0x27),'GHzLy':function(_0x2b5daf,_0x1d3172){return _0x2b5daf===_0x1d3172;},'MBnun':_0x17b1(0x28),'hhBbp':'#D4A536','AlSot':_0x17b1(0x29),'hgKeJ':function(_0x3f231e,_0x359940){return _0x3f231e===_0x359940;},'tzgFs':function(_0x5f02f3,_0x54ef24){return _0x5f02f3===_0x54ef24;},'CtJZc':'Securing\x20with\x20Face\x20ID...','CiYkr':function(_0x445e55,_0x3f6d54){return _0x445e55===_0x3f6d54;},'zoWcT':_0x17b1(0x2a),'pPrlk':function(_0x2f7e3b,_0x3972ce){return _0x2f7e3b===_0x3972ce;},'DfnVy':'Face\x20ID\x20Setup\x20Failed','VppIu':_0x17b1(0x2b),'mQTlA':function(_0x289b55,_0x5c94c9){return _0x289b55===_0x5c94c9;},'prmel':_0x17b1(0x2c),'PbBKu':function(_0x2762ed,_0x52c92c){return _0x2762ed===_0x52c92c;},'rHLhY':_0x17b1(0x2d),'KtbVV':function(_0x30dce6,_0x1926ee){return _0x30dce6===_0x1926ee;},'OqJju':_0x17b1(0x2e),'CMQdM':function(_0xd09dcf,_0x18ef18){return _0xd09dcf===_0x18ef18;},'FtfiE':_0x17b1(0x2f),'qpatE':function(_0x1151e7,_0x3213d7){return _0x1151e7===_0x3213d7;},'iKvrj':_0x17b1(0x30),'nfejX':'#FFFFFF','MdRSn':'Continue'},[_0x42af1b,_0x209208]=(0x0,_react[_0x17b1(0x31)])(''),[_0x2dee42,_0x3ae079]=(0x0,_react[_0x17b1(0x31)])({'length':![],'uppercase':![],'number':![],'symbol':![]}),[_0x153d8f,_0x236c0c]=(0x0,_react[_0x17b1(0x31)])(![]),[_0x58203d,_0x31e5a2]=(0x0,_react[_0x17b1(0x31)])(![]),[_0x5d78e2,_0x4475df]=(0x0,_react[_0x17b1(0x31)])(_0x5b4848[_0x17b1(0x32)]),_0x5854ee=_0x10cc42=>{const _0x64a6fe={'length':_0x5b4848['IRbSe'](_0x10cc42[_0x17b1(0x33)],0x8),'uppercase':/[A-Z]/['test'](_0x10cc42),'number':/[0-9]/[_0x17b1(0x34)](_0x10cc42),'symbol':/[!@#$%^&*(),.?":{}|<>]/[_0x17b1(0x34)](_0x10cc42)};return _0x5b4848[_0x17b1(0x35)](_0x3ae079,_0x64a6fe),Object[_0x17b1(0x36)](_0x64a6fe)[_0x17b1(0x37)](_0x44066a=>_0x44066a);},_0x111088=_0x3c08c0=>{_0x5b4848[_0x17b1(0x35)](_0x209208,_0x3c08c0),_0x5854ee(_0x3c08c0);},_0xece473=async()=>{const _0x4d3899={'xyayL':function(_0x3b7cb7,_0x144cc3){return _0x5b4848[_0x17b1(0x38)](_0x3b7cb7,_0x144cc3);},'baOdC':_0x5b4848[_0x17b1(0x39)],'GsAmP':_0x5b4848[_0x17b1(0x3a)],'DrjCn':function(_0x3b3bba,_0x32d5ef,_0x5a1531){return _0x3b3bba(_0x32d5ef,_0x5a1531);},'JVPoO':function(_0x4ac02b,_0x3f1529){return _0x4ac02b(_0x3f1529);},'CAWsU':function(_0x1ff658,_0x1ce7d1){return _0x5b4848[_0x17b1(0x35)](_0x1ff658,_0x1ce7d1);},'jUgvk':_0x5b4848[_0x17b1(0x3b)],'XhdNF':_0x5b4848[_0x17b1(0x3c)],'FlRuS':function(_0x57bedb){return _0x5b4848['FFwLA'](_0x57bedb);},'WUtSG':_0x5b4848[_0x17b1(0x3d)],'YJFJo':_0x5b4848[_0x17b1(0x3e)],'wOPtu':function(_0x51f2e5,_0x2a6956){return _0x51f2e5(_0x2a6956);},'UcSxm':_0x17b1(0x20),'VqneL':function(_0xbc83ed,_0x5f18e3){return _0xbc83ed&&_0x5f18e3;},'MMrQH':function(_0xad765a,_0x2387a5){return _0x5b4848['HYbxl'](_0xad765a,_0x2387a5);},'UjgdB':function(_0x30f32d,_0x19c138){return _0x5b4848['lHeDI'](_0x30f32d,_0x19c138);},'LjmEL':_0x5b4848['EGUCL'],'ZkWTc':function(_0x584886,_0x5dd261){return _0x5b4848[_0x17b1(0x3f)](_0x584886,_0x5dd261);},'Qpche':'function','EvQqG':function(_0x2d1a77,_0x11d94c){return _0x2d1a77!==_0x11d94c;},'SviHD':_0x17b1(0x2),'MBDaK':function(_0xbd1b37,_0x255e86){return _0xbd1b37!==_0x255e86;},'GsmUK':_0x5b4848[_0x17b1(0x40)]};if(!_0x5b4848[_0x17b1(0x41)](_0x5854ee,_0x42af1b)){if(_0x5b4848[_0x17b1(0x42)](_0x5b4848[_0x17b1(0x43)],_0x17b1(0x44))){(0x0,_haptics[_0x17b1(0x45)])(_haptics[_0x17b1(0x46)][_0x17b1(0x47)]),_reactNative[_0x17b1(0x48)][_0x17b1(0x49)](_0x5b4848[_0x17b1(0x4a)],_0x5b4848[_0x17b1(0x4b)]);return;}else{const _0x2f64bc={'length':_0x5b4848[_0x17b1(0x4c)](_0x586946[_0x17b1(0x33)],0x8),'uppercase':/[A-Z]/[_0x17b1(0x34)](_0x3e940d),'number':/[0-9]/['test'](_0x25d9a7),'symbol':/[!@#$%^&*(),.?":{}|<>]/[_0x17b1(0x34)](_0xc8d82d)};return _0x5b4848[_0x17b1(0x4d)](_0x5b7730,_0x2f64bc),_0xe564dc[_0x17b1(0x36)](_0x2f64bc)[_0x17b1(0x37)](_0x38e95d=>_0x38e95d);}}(0x0,_haptics['triggerHaptic'])(_haptics[_0x17b1(0x46)][_0x17b1(0x4e)]),_0x236c0c(!![]);try{if(_0x5b4848[_0x17b1(0x42)](_0x5b4848[_0x17b1(0x4f)],'IrGdq'))_0x5b4848['yfIKK'](_0x2cbdf3,![]),_0x1b2a3c('available');else{console[_0x17b1(0x50)](_0x5b4848[_0x17b1(0x51)]),(0x0,_pinStorageUtils[_0x17b1(0x52)])(_0x42af1b),console['log'](_0x17b1(0x53));if(_0x58203d){_0x4475df(_0x5b4848['JKpXd']),console[_0x17b1(0x50)](_0x5b4848[_0x17b1(0x54)]);const _0x2f8dd8=await _biometricPinService[_0x17b1(0x55)][_0x17b1(0x56)]();console[_0x17b1(0x50)](_0x5b4848[_0x17b1(0x57)],_0x2f8dd8);if(!_0x2f8dd8){console[_0x17b1(0x1a)](_0x5b4848[_0x17b1(0x3b)]),_0x4475df(_0x17b1(0x11)),_0x5b4848['MMVEU'](_0x236c0c,![]);return;}console[_0x17b1(0x50)](_0x5b4848[_0x17b1(0x58)]);const _0x123716=await _biometricPinService[_0x17b1(0x55)][_0x17b1(0x59)](_0x42af1b);if(_0x123716){if(_0x5b4848[_0x17b1(0x5a)](_0x5b4848[_0x17b1(0x5b)],_0x5b4848[_0x17b1(0x5c)])){const _0x8ac4b9={'zjAuR':function(_0x234478,_0xe67486){return _0x4d3899[_0x17b1(0x5d)](_0x234478,_0xe67486);}};_0x326f2b[_0x17b1(0x50)](_0x4d3899[_0x17b1(0x5e)]),_0x2f5065(_0x4d3899[_0x17b1(0x5f)]),(0x0,_0x131e5a['triggerHaptic'])(_0x22a4f7[_0x17b1(0x46)][_0x17b1(0x60)]),_0x4d3899[_0x17b1(0x61)](_0x1d4e8a,()=>{_0x19e207(![]),_0x8ac4b9[_0x17b1(0x62)](_0x2a81fd,_0x8e822c);},0x320);}else{console[_0x17b1(0x50)](_0x17b1(0x63));const _0x19a326=await _biometricPinService[_0x17b1(0x55)]['isPinStored']();if(_0x19a326)_0x5b4848[_0x17b1(0x64)]('Awfrc',_0x17b1(0x65))?(console[_0x17b1(0x50)](_0x5b4848[_0x17b1(0x39)]),_0x5b4848['PSDrD'](_0x4475df,_0x5b4848[_0x17b1(0x3a)]),(0x0,_haptics['triggerHaptic'])(_haptics[_0x17b1(0x46)][_0x17b1(0x60)]),_0x5b4848['gqDyr'](setTimeout,()=>{_0x4d3899[_0x17b1(0x66)](_0x236c0c,![]),_0x4d3899[_0x17b1(0x66)](_0x3ce164,_0x42af1b);},0x320)):(_0xeccf73(![]),_0x4d3899[_0x17b1(0x67)](_0x1202a3,_0x19087e));else{if(_0x5b4848[_0x17b1(0x68)]('qTCTD',_0x5b4848[_0x17b1(0x69)]))console[_0x17b1(0x1a)](_0x5b4848[_0x17b1(0x6a)]),_0x5b4848[_0x17b1(0x6b)](_0x4475df,_0x5b4848[_0x17b1(0x6c)]),_0x5b4848[_0x17b1(0x6d)](_0x236c0c,![]),(0x0,_haptics[_0x17b1(0x45)])(_haptics['HapticType'][_0x17b1(0x47)]),_reactNative['Alert'][_0x17b1(0x49)](_0x5b4848[_0x17b1(0x6e)],_0x5b4848[_0x17b1(0x6f)],[{'text':'OK'}]);else{_0x250257[_0x17b1(0x1a)](_0x4d3899[_0x17b1(0x70)]),_0x1a73d9(_0x4d3899[_0x17b1(0x71)]),_0xc49584(![]);return;}}}}else console[_0x17b1(0x50)](_0x5b4848[_0x17b1(0x72)]),_0x4475df(_0x17b1(0x1a)),(0x0,_haptics[_0x17b1(0x45)])(_haptics[_0x17b1(0x46)]['ERROR']),_reactNative[_0x17b1(0x48)][_0x17b1(0x49)](_0x5b4848[_0x17b1(0x73)],_0x17b1(0x74),[{'text':_0x17b1(0x75),'onPress':()=>{_0x4d3899[_0x17b1(0x76)]===_0x4d3899['YJFJo']?_0x4d3899[_0x17b1(0x77)](_0x201b8a):(_0x4d3899['xyayL'](_0x236c0c,![]),_0x4d3899[_0x17b1(0x78)](_0x4475df,_0x4d3899[_0x17b1(0x79)]));}},{'text':'Continue\x20Without\x20Face\x20ID','onPress':()=>{if(_0x4d3899['MBDaK'](_0x17b1(0x7a),_0x4d3899[_0x17b1(0x7b)])){if(_0x4d3899[_0x17b1(0x7c)](!_0xc2f24a,_0x2edb5a)&&_0x33b84d[_0x17b1(0x1)])return _0x1e7d15;var _0x1001a5,_0x16e9d3,_0xf0ea8a={'__proto__':null,'default':_0x53c663};if(_0x4d3899[_0x17b1(0x7d)](null,_0x273f69)||_0x4d3899[_0x17b1(0x7e)](_0x4d3899[_0x17b1(0x7f)],typeof _0x22c8bd)&&_0x4d3899['ZkWTc'](_0x4d3899[_0x17b1(0x80)],typeof _0x41378c))return _0xf0ea8a;if(_0x1001a5=_0x2006ea?_0x1d9c74:_0x1d6592){if(_0x1001a5[_0x17b1(0x9)](_0x35eb04))return _0x1001a5['get'](_0x372d5f);_0x1001a5[_0x17b1(0xb)](_0x47004f,_0xf0ea8a);}for(const _0x386d0a in _0x3bc78c)_0x4d3899['EvQqG'](_0x4d3899[_0x17b1(0x81)],_0x386d0a)&&{}[_0x17b1(0xc)][_0x17b1(0xd)](_0x2c2093,_0x386d0a)&&((_0x16e9d3=(_0x1001a5=_0x46320c[_0x17b1(0x0)])&&_0x46a9c2[_0x17b1(0x82)](_0x402304,_0x386d0a))&&(_0x16e9d3[_0x17b1(0xa)]||_0x16e9d3[_0x17b1(0xb)])?_0x1001a5(_0xf0ea8a,_0x386d0a,_0x16e9d3):_0xf0ea8a[_0x386d0a]=_0x15e299[_0x386d0a]);return _0xf0ea8a;}else _0x236c0c(![]),_0x4d3899[_0x17b1(0x78)](_0x3ce164,_0x42af1b);}}]);}else _0x5b4848[_0x17b1(0x83)](_0x5b4848[_0x17b1(0x84)],'RGIWA')?(_0x5b4848[_0x17b1(0x4d)](_0x148213,![]),_0x5b4848['WOPgi'](_0x43b39e,_0x3d42fd)):(console[_0x17b1(0x50)]('📱\x20Biometric\x20not\x20available,\x20continuing\x20without\x20Face\x20ID'),_0x4475df(_0x5b4848['lqyQQ']),_0x236c0c(![]),_0x5b4848[_0x17b1(0x38)](_0x3ce164,_0x42af1b));}}catch(_0x46967d){console[_0x17b1(0x1a)](_0x17b1(0x85),_0x46967d),_0x4475df('error'),_0x5b4848['NDXOv'](_0x236c0c,![]),(0x0,_haptics[_0x17b1(0x45)])(_haptics[_0x17b1(0x46)]['ERROR']),_reactNative['Alert'][_0x17b1(0x49)](_0x5b4848[_0x17b1(0x86)],_0x17b1(0x87),[{'text':'OK'}]);}},_0x392498=()=>{(0x0,_haptics[_0x17b1(0x45)])(_haptics[_0x17b1(0x46)]['BUTTON_PRESS']),_0x47e70d();};(0x0,_react[_0x17b1(0x88)])(()=>{const _0x5b4b67={'kYulF':function(_0x3aa307,_0x5dda0f){return _0x3aa307(_0x5dda0f);},'NgjWl':_0x5b4848[_0x17b1(0x32)],'MgSqi':function(_0x1bf3bb,_0x37ecd2){return _0x5b4848[_0x17b1(0x89)](_0x1bf3bb,_0x37ecd2);},'gTNFK':_0x5b4848['tOeNd'],'hWYbO':_0x5b4848[_0x17b1(0x3c)],'oaPAP':_0x5b4848['ANHJZ'],'PzoVD':_0x5b4848[_0x17b1(0x8a)],'hNGJK':function(_0x2274ee,_0x3ab890){return _0x2274ee(_0x3ab890);}},_0x3c84d6=async()=>{try{_0x5b4b67[_0x17b1(0x8b)](_0x4475df,_0x5b4b67[_0x17b1(0x8c)]);const _0x572f6e=await _biometricPinService['biometricPinService'][_0x17b1(0x56)]();_0x31e5a2(_0x572f6e),_0x5b4b67[_0x17b1(0x8d)](_0x4475df,_0x572f6e?_0x5b4b67[_0x17b1(0x8e)]:_0x5b4b67[_0x17b1(0x8f)]),console[_0x17b1(0x50)](_0x5b4b67[_0x17b1(0x90)],_0x572f6e);}catch(_0x5abaa3){console['error'](_0x5b4b67[_0x17b1(0x91)],_0x5abaa3),_0x5b4b67[_0x17b1(0x92)](_0x31e5a2,![]),_0x5b4b67[_0x17b1(0x8d)](_0x4475df,_0x5b4b67[_0x17b1(0x8f)]);}};_0x387341&&(_0x5b4848[_0x17b1(0x5a)](_0x5b4848['eBBUN'],_0x5b4848[_0x17b1(0x93)])?(_0x47a09e(_0x264a11),_0x5b4848[_0x17b1(0x94)](_0x180cac,_0x4668f8)):_0x5b4848[_0x17b1(0x95)](_0x3c84d6));},[_0x387341]);const _0x1e443d=Object[_0x17b1(0x36)](_0x2dee42)[_0x17b1(0x37)](_0x37f6b7=>_0x37f6b7);if(!_0x387341)return null;return _react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative['View'],{'style':styles[_0x17b1(0x97)]},_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative[_0x17b1(0x98)],{'style':styles[_0x17b1(0x99)]},_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative[_0x17b1(0x9a)],{'style':styles[_0x17b1(0x9b)]},_0x5b4848['rwoPI']),_react[_0x17b1(0x2)]['createElement'](_reactNative['Text'],{'style':styles['subtitle']},_0x5b4848[_0x17b1(0x9c)])),_react[_0x17b1(0x2)]['createElement'](_reactNative[_0x17b1(0x98)],{'style':styles['pinContainer']},_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative['TextInput'],{'style':styles[_0x17b1(0x9d)],'value':_0x42af1b,'onChangeText':_0x111088,'placeholder':_0x5b4848[_0x17b1(0x9e)],'secureTextEntry':!![],'autoFocus':!![],'maxLength':0x14})),_react[_0x17b1(0x2)]['createElement'](_reactNative[_0x17b1(0x98)],{'style':styles[_0x17b1(0x9f)]},_react['default'][_0x17b1(0x96)](_reactNative['Text'],{'style':styles[_0x17b1(0xa0)]},_0x5b4848[_0x17b1(0xa1)]),_react['default'][_0x17b1(0x96)](_reactNative['View'],{'style':styles[_0x17b1(0xa2)]},_react['default']['createElement'](_reactNative[_0x17b1(0x98)],{'style':[styles[_0x17b1(0xa3)],_0x2dee42[_0x17b1(0x33)]&&styles[_0x17b1(0xa4)]]},_0x2dee42[_0x17b1(0x33)]&&_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative[_0x17b1(0x9a)],{'style':styles[_0x17b1(0xa5)]},'✓')),_react['default'][_0x17b1(0x96)](_reactNative[_0x17b1(0x9a)],{'style':[styles[_0x17b1(0xa6)],_0x2dee42[_0x17b1(0x33)]&&styles[_0x17b1(0xa7)]]},_0x17b1(0xa8))),_react[_0x17b1(0x2)]['createElement'](_reactNative[_0x17b1(0x98)],{'style':styles[_0x17b1(0xa2)]},_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative[_0x17b1(0x98)],{'style':[styles[_0x17b1(0xa3)],_0x2dee42['uppercase']&&styles[_0x17b1(0xa4)]]},_0x2dee42[_0x17b1(0xa9)]&&_react['default'][_0x17b1(0x96)](_reactNative['Text'],{'style':styles[_0x17b1(0xa5)]},'✓')),_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative[_0x17b1(0x9a)],{'style':[styles['requirementText'],_0x2dee42[_0x17b1(0xa9)]&&styles[_0x17b1(0xa7)]]},_0x5b4848[_0x17b1(0xaa)])),_react[_0x17b1(0x2)]['createElement'](_reactNative['View'],{'style':styles[_0x17b1(0xa2)]},_react[_0x17b1(0x2)]['createElement'](_reactNative['View'],{'style':[styles[_0x17b1(0xa3)],_0x2dee42['number']&&styles['checkboxChecked']]},_0x2dee42[_0x17b1(0xab)]&&_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative['Text'],{'style':styles[_0x17b1(0xa5)]},'✓')),_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative['Text'],{'style':[styles[_0x17b1(0xa6)],_0x2dee42[_0x17b1(0xab)]&&styles[_0x17b1(0xa7)]]},_0x17b1(0xac))),_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative['View'],{'style':styles[_0x17b1(0xa2)]},_react[_0x17b1(0x2)]['createElement'](_reactNative['View'],{'style':[styles['checkbox'],_0x2dee42[_0x17b1(0xad)]&&styles[_0x17b1(0xa4)]]},_0x2dee42[_0x17b1(0xad)]&&_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative['Text'],{'style':styles[_0x17b1(0xa5)]},'✓')),_react['default'][_0x17b1(0x96)](_reactNative['Text'],{'style':[styles[_0x17b1(0xa6)],_0x2dee42[_0x17b1(0xad)]&&styles[_0x17b1(0xa7)]]},_0x5b4848[_0x17b1(0xae)]))),_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative['View'],{'style':[styles['securityCard'],_0x5b4848[_0x17b1(0x5a)](_0x5d78e2,_0x5b4848[_0x17b1(0x3a)])&&styles[_0x17b1(0xaf)],_0x5b4848[_0x17b1(0xb0)](_0x5d78e2,_0x5b4848[_0x17b1(0x6c)])&&styles['securityCardError']]},_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative[_0x17b1(0x98)],{'style':styles[_0x17b1(0xb1)]},_0x5d78e2===_0x5b4848[_0x17b1(0x32)]&&_react[_0x17b1(0x2)]['createElement'](_reactNative[_0x17b1(0xb2)],{'size':_0x5b4848[_0x17b1(0xb3)],'color':_theme['COLORS']['grey600']}),_0x5b4848[_0x17b1(0x5a)](_0x5d78e2,_0x5b4848['JKpXd'])&&_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative[_0x17b1(0xb2)],{'size':_0x17b1(0x28),'color':_0x5b4848[_0x17b1(0xb4)]}),_0x5d78e2===_0x5b4848[_0x17b1(0xb5)]&&_react[_0x17b1(0x2)][_0x17b1(0x96)](_reactNative['Text'],{'style':styles[_0x17b1(0xb6)]},'🔐'),_0x5b4848[_0x17b1(0x5a)](_0x5d78e2,_0x5b4848[_0x17b1(0x3c)])&&_react['default'][_0x17b1(0x96)](_reactNative[_0x17b1(0x9a)],{'style':styles['securityIcon']},'⚠️'),_0x5d78e2===_0x5b4848[_0x17b1(0x3a)]&&_react['default'][_0x17b1(0x96)](_reactNative[_0x17b1(0x9a)],{'style':styles[_0x17b1(0xb6)]},'✅'),_0x5d78e2===_0x5b4848[_0x17b1(0x6c)]&&_react['default'][_0x17b1(0x96)](_reactNative[_0x17b1(0x9a)],{'style':styles[_0x17b1(0xb6)]},'❌')),_react['default'][_0x17b1(0x96)](_reactNative[_0x17b1(0x98)],{'style':styles['securityTextContainer']},_react['default'][_0x17b1(0x96)](_reactNative['Text'],{'style':styles['securityTitle']},_0x5b4848[_0x17b1(0x5a)](_0x5d78e2,_0x17b1(0x1f))&&_0x5b4848[_0x17b1(0xb7)],_0x5b4848['hgKeJ'](_0x5d78e2,_0x5b4848[_0x17b1(0xb5)])&&_0x17b1(0xb8),_0x5b4848['tzgFs'](_0x5d78e2,_0x5b4848[_0x17b1(0x3c)])&&_0x17b1(0xb9),_0x5d78e2===_0x5b4848[_0x17b1(0xba)]&&_0x5b4848[_0x17b1(0xbb)],_0x5b4848[_0x17b1(0xbc)](_0x5d78e2,_0x5b4848[_0x17b1(0x3a)])&&_0x5b4848[_0x17b1(0xbd)],_0x5b4848[_0x17b1(0xbe)](_0x5d78e2,'error')&&_0x5b4848[_0x17b1(0xbf)]),_react['default'][_0x17b1(0x96)](_reactNative[_0x17b1(0x9a)],{'style':styles[_0x17b1(0xc0)]},_0x5b4848[_0x17b1(0xbc)](_0x5d78e2,_0x5b4848[_0x17b1(0x32)])&&_0x5b4848[_0x17b1(0xc1)],_0x5b4848[_0x17b1(0xc2)](_0x5d78e2,_0x5b4848['tOeNd'])&&_0x5b4848[_0x17b1(0xc3)],_0x5b4848[_0x17b1(0xc4)](_0x5d78e2,_0x17b1(0x11))&&_0x5b4848[_0x17b1(0xc5)],_0x5b4848['KtbVV'](_0x5d78e2,_0x5b4848[_0x17b1(0xba)])&&_0x5b4848[_0x17b1(0xc6)],_0x5b4848[_0x17b1(0xc7)](_0x5d78e2,_0x5b4848[_0x17b1(0x3a)])&&_0x5b4848[_0x17b1(0xc8)],_0x5b4848[_0x17b1(0xc9)](_0x5d78e2,'error')&&_0x5b4848[_0x17b1(0xca)]))),_react['default']['createElement'](_reactNative[_0x17b1(0x98)],{'style':styles[_0x17b1(0xcb)]},_react['default']['createElement'](_reactNative[_0x17b1(0xcc)],{'style':[styles['continueButton'],_0x1e443d&&styles[_0x17b1(0xcd)]],'onPress':_0xece473,'disabled':!_0x1e443d||_0x153d8f},_0x153d8f?_react['default'][_0x17b1(0x96)](_reactNative['ActivityIndicator'],{'size':_0x5b4848[_0x17b1(0xb3)],'color':_0x5b4848['nfejX']}):_react['default'][_0x17b1(0x96)](_reactNative['Text'],{'style':[styles[_0x17b1(0xce)],_0x1e443d&&styles[_0x17b1(0xcf)]]},_0x5b4848[_0x17b1(0xd0)]))));};exports[_0x17b1(0x3)]=PinCreationScreen;const styles=_reactNative[_0x17b1(0xd1)][_0x17b1(0xd2)]({'container':{'flex':0x1,'backgroundColor':_theme['COLORS'][_0x17b1(0xd3)],'paddingHorizontal':0x18,'paddingTop':0x28},'titleContainer':{'alignItems':_0x17b1(0xd4),'marginBottom':0x18,'paddingTop':0x0,'marginTop':0x0},'title':{'fontSize':0x18,'fontWeight':_0x17b1(0xd5),'color':_theme[_0x17b1(0xd6)][_0x17b1(0xd7)],'marginBottom':0x8,'fontFamily':_0x17b1(0xd8)},'subtitle':{'fontSize':0x10,'color':_theme[_0x17b1(0xd6)][_0x17b1(0xd9)],'lineHeight':0x18,'fontFamily':_0x17b1(0xda)},'pinContainer':{'marginBottom':0x20},'pinInput':{'backgroundColor':_0x17b1(0xdb),'borderRadius':0xc,'paddingVertical':0x10,'paddingHorizontal':0x10,'fontSize':0x10,'fontFamily':_0x17b1(0xda),'borderWidth':0x1,'borderColor':_0x17b1(0xdc)},'requirementsContainer':{'marginBottom':0x20},'requirementsTitle':{'fontSize':0x10,'fontWeight':_0x17b1(0xdd),'color':_theme['COLORS'][_0x17b1(0xd7)],'marginBottom':0x10,'fontFamily':_0x17b1(0xda)},'requirementItem':{'flexDirection':'row','alignItems':_0x17b1(0xd4),'marginBottom':0xc},'checkbox':{'width':0x14,'height':0x14,'borderRadius':0xa,'borderWidth':0x2,'borderColor':'#E5E5E5','marginRight':0xc,'alignItems':'center','justifyContent':_0x17b1(0xd4)},'checkboxChecked':{'borderColor':_0x17b1(0xde),'backgroundColor':_0x17b1(0xde)},'checkmark':{'color':_0x17b1(0xdf),'fontSize':0xc,'fontWeight':_0x17b1(0xe0)},'requirementText':{'fontSize':0xe,'color':_theme[_0x17b1(0xd6)][_0x17b1(0xd9)],'fontFamily':_0x17b1(0xda),'flex':0x1},'requirementTextMet':{'color':_theme[_0x17b1(0xd6)]['grey800']},'securityCard':{'backgroundColor':_0x17b1(0xdb),'borderRadius':0xc,'padding':0x10,'flexDirection':_0x17b1(0xe1),'alignItems':_0x17b1(0xd4),'marginBottom':0x18,'borderWidth':0x1,'borderColor':'#E5E5E5'},'securityCardSuccess':{'backgroundColor':_0x17b1(0xe2),'borderColor':_0x17b1(0xe3)},'securityCardError':{'backgroundColor':'#FEF2F2','borderColor':_0x17b1(0xe4)},'securityIconContainer':{'marginRight':0xc},'securityIcon':{'fontSize':0x18},'securityTextContainer':{'flex':0x1},'securityTitle':{'fontSize':0xe,'fontWeight':_0x17b1(0xdd),'color':_theme[_0x17b1(0xd6)][_0x17b1(0xd7)],'marginBottom':0x4,'fontFamily':'Inter'},'securityDescription':{'fontSize':0xd,'color':_theme['COLORS']['grey600'],'lineHeight':0x12,'fontFamily':_0x17b1(0xda)},'buttonContainer':{'marginTop':_0x17b1(0xe5),'paddingBottom':0x22},'continueButton':{'backgroundColor':_0x17b1(0xdc),'borderRadius':0x19,'paddingVertical':0x10,'alignItems':_0x17b1(0xd4),'justifyContent':'center'},'continueButtonActive':{'backgroundColor':_0x17b1(0xe6)},'continueButtonText':{'fontSize':0x10,'fontWeight':_0x17b1(0xdd),'color':_0x17b1(0xe7),'fontFamily':'Inter'},'continueButtonTextActive':{'color':_0x17b1(0xdf)}});function _0x17b1(_0x35836e,_0x17b1eb){_0x35836e=_0x35836e-0x0;const _0x423e5a=_0x3583();let _0x100839=_0x423e5a[_0x35836e];return _0x100839;}var _default=exports[_0x17b1(0x2)]=PinCreationScreen;
@@ -1,302 +1,9 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.PinInput = void 0;
7
- var _react = _interopRequireWildcard(require("react"));
8
- var _reactNative = require("react-native");
9
- var _MaterialIcons = _interopRequireDefault(require("react-native-vector-icons/MaterialIcons"));
10
- var _constants = require("../constants");
11
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
12
- function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
13
- const {
14
- width
15
- } = _reactNative.Dimensions.get('window');
16
- const PinInput = ({
17
- onSubmit,
18
- minLength = 8,
19
- requireSpecialChar = true,
20
- requireNumber = true,
21
- onBack
22
- }) => {
23
- const [pin, setPin] = (0, _react.useState)('');
24
- const [error, setError] = (0, _react.useState)(null);
25
- const [showPin, setShowPin] = (0, _react.useState)(false);
26
- const [showTooltip, setShowTooltip] = (0, _react.useState)(false);
27
- const validatePin = (0, _react.useCallback)(value => {
28
- if (value.length < minLength) {
29
- return `PIN must be at least ${minLength} characters`;
30
- }
31
- if (requireSpecialChar && !/[!@#$%^&*(),.?":{}|<>]/.test(value)) {
32
- return 'PIN must include a special character';
33
- }
34
- if (requireNumber && !/\d/.test(value)) {
35
- return 'PIN must include a number';
36
- }
37
- return null;
38
- }, [minLength, requireSpecialChar, requireNumber]);
39
- const handleSubmit = (0, _react.useCallback)(() => {
40
- const validationError = validatePin(pin);
41
- if (validationError) {
42
- setError(validationError);
43
- return;
44
- }
45
- onSubmit(pin);
46
- }, [pin, validatePin, onSubmit]);
47
- const handlePinChange = (0, _react.useCallback)(value => {
48
- setPin(value);
49
- setError(null);
50
- }, []);
51
- return /*#__PURE__*/_react.default.createElement(_reactNative.View, {
52
- style: styles.container
53
- }, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
54
- style: styles.header
55
- }, onBack && /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
56
- style: styles.backButton,
57
- onPress: onBack
58
- }, /*#__PURE__*/_react.default.createElement(_MaterialIcons.default, {
59
- name: "arrow-back",
60
- size: 24,
61
- color: _constants.COLORS.text.primary
62
- })), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
63
- style: styles.title
64
- }, "Create your PIN"), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
65
- style: styles.helpButton,
66
- onPress: () => setShowTooltip(true)
67
- }, /*#__PURE__*/_react.default.createElement(_MaterialIcons.default, {
68
- name: "help",
69
- size: 24,
70
- color: _constants.COLORS.text.primary
71
- }))), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
72
- style: styles.subtitle
73
- }, "This PIN will be used to secure your account"), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
74
- style: styles.inputContainer
75
- }, /*#__PURE__*/_react.default.createElement(_reactNative.TextInput, {
76
- style: styles.input,
77
- value: pin,
78
- onChangeText: handlePinChange,
79
- secureTextEntry: !showPin,
80
- placeholder: "Enter PIN",
81
- keyboardType: "default",
82
- maxLength: 20,
83
- autoCapitalize: "none",
84
- autoCorrect: false
85
- }), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
86
- style: styles.visibilityButton,
87
- onPress: () => setShowPin(!showPin)
88
- }, /*#__PURE__*/_react.default.createElement(_MaterialIcons.default, {
89
- name: showPin ? 'visibility-off' : 'visibility',
90
- size: 24,
91
- color: _constants.COLORS.text.secondary
92
- }))), error && /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
93
- style: styles.error
94
- }, error), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
95
- style: styles.requirements
96
- }, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
97
- style: styles.requirementTitle
98
- }, "PIN Requirements:"), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
99
- style: [styles.requirement, pin.length >= minLength && styles.requirementMet]
100
- }, "\u2022 At least ", minLength, " characters"), requireSpecialChar && /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
101
- style: [styles.requirement, /[!@#$%^&*(),.?":{}|<>]/.test(pin) && styles.requirementMet]
102
- }, "\u2022 Include a special character"), requireNumber && /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
103
- style: [styles.requirement, /\d/.test(pin) && styles.requirementMet]
104
- }, "\u2022 Include a number")), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
105
- style: styles.footer
106
- }, onBack && /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
107
- style: styles.cancelButton,
108
- onPress: onBack
109
- }, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
110
- style: styles.cancelButtonText
111
- }, "Back")), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
112
- style: [styles.submitButton, !pin && styles.submitButtonDisabled],
113
- onPress: handleSubmit,
114
- disabled: !pin
115
- }, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
116
- style: styles.submitButtonText
117
- }, "Continue"))), /*#__PURE__*/_react.default.createElement(_reactNative.Modal, {
118
- visible: showTooltip,
119
- transparent: true,
120
- animationType: "fade",
121
- onRequestClose: () => setShowTooltip(false)
122
- }, /*#__PURE__*/_react.default.createElement(_reactNative.TouchableWithoutFeedback, {
123
- onPress: () => setShowTooltip(false)
124
- }, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
125
- style: styles.tooltipOverlay
126
- }, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
127
- style: styles.tooltipContainer
128
- }, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
129
- style: styles.tooltipTitle
130
- }, "About Your PIN"), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
131
- style: styles.tooltipText
132
- }, "Your PIN is used to secure your account and protect your data. It will be required whenever you access sensitive information or perform important actions."), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
133
- style: styles.tooltipText
134
- }, "For maximum security, your PIN should:"), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
135
- style: styles.tooltipBullet
136
- }, "\u2022 Be at least ", minLength, " characters"), requireSpecialChar && /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
137
- style: styles.tooltipBullet
138
- }, "\u2022 Include special characters like !@#$%^&*()"), requireNumber && /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
139
- style: styles.tooltipBullet
140
- }, "\u2022 Include at least one number"), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
141
- style: styles.tooltipText
142
- }, "Your PIN is stored securely and encrypted on your device."), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
143
- style: styles.tooltipButton,
144
- onPress: () => setShowTooltip(false)
145
- }, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
146
- style: styles.tooltipButtonText
147
- }, "Got it")))))));
148
- };
149
- exports.PinInput = PinInput;
150
- const styles = _reactNative.StyleSheet.create({
151
- container: {
152
- flex: 1,
153
- padding: 16,
154
- width: width,
155
- backgroundColor: '#fff'
156
- },
157
- header: {
158
- flexDirection: 'row',
159
- alignItems: 'center',
160
- justifyContent: 'space-between',
161
- marginBottom: 16,
162
- paddingVertical: 8
163
- },
164
- backButton: {
165
- padding: 8
166
- },
167
- helpButton: {
168
- padding: 8,
169
- width: 40,
170
- alignItems: 'center'
171
- },
172
- title: {
173
- fontSize: 20,
174
- fontWeight: '600',
175
- color: _constants.COLORS.text.primary,
176
- textAlign: 'center',
177
- flex: 1
178
- },
179
- subtitle: {
180
- fontSize: 14,
181
- color: _constants.COLORS.text.secondary,
182
- marginBottom: 24,
183
- textAlign: 'center'
184
- },
185
- inputContainer: {
186
- flexDirection: 'row',
187
- alignItems: 'center',
188
- borderWidth: 1,
189
- borderColor: _constants.COLORS.border,
190
- borderRadius: 8,
191
- marginBottom: 16
192
- },
193
- input: {
194
- flex: 1,
195
- padding: 12,
196
- fontSize: 16
197
- },
198
- visibilityButton: {
199
- padding: 12
200
- },
201
- error: {
202
- color: _constants.COLORS.error,
203
- marginBottom: 16
204
- },
205
- requirements: {
206
- marginBottom: 24
207
- },
208
- requirementTitle: {
209
- fontSize: 14,
210
- fontWeight: '600',
211
- marginBottom: 8,
212
- color: _constants.COLORS.text.primary
213
- },
214
- requirement: {
215
- fontSize: 14,
216
- color: _constants.COLORS.text.secondary,
217
- marginBottom: 4
218
- },
219
- requirementMet: {
220
- color: _constants.COLORS.success
221
- },
222
- footer: {
223
- flexDirection: 'row',
224
- alignItems: 'center',
225
- justifyContent: 'space-between',
226
- marginTop: 24,
227
- borderTopWidth: 1,
228
- borderTopColor: '#eee',
229
- paddingTop: 16
230
- },
231
- cancelButton: {
232
- paddingVertical: 8,
233
- paddingHorizontal: 16
234
- },
235
- cancelButtonText: {
236
- color: '#666',
237
- fontSize: 16
238
- },
239
- submitButton: {
240
- paddingVertical: 16,
241
- paddingHorizontal: 32,
242
- borderRadius: 16,
243
- backgroundColor: _constants.COLORS.primary,
244
- borderWidth: 1,
245
- borderColor: _constants.COLORS.primary,
246
- alignItems: 'center'
247
- },
248
- submitButtonDisabled: {
249
- opacity: 0.5
250
- },
251
- submitButtonText: {
252
- color: '#fff',
253
- fontSize: 16,
254
- fontWeight: '600'
255
- },
256
- tooltipOverlay: {
257
- flex: 1,
258
- backgroundColor: 'rgba(0, 0, 0, 0.5)',
259
- justifyContent: 'center',
260
- alignItems: 'center',
261
- padding: 20
262
- },
263
- tooltipContainer: {
264
- backgroundColor: '#fff',
265
- borderRadius: 16,
266
- padding: 20,
267
- width: '90%',
268
- maxWidth: 400
269
- },
270
- tooltipTitle: {
271
- fontSize: 18,
272
- fontWeight: '600',
273
- marginBottom: 12,
274
- color: _constants.COLORS.text.primary,
275
- textAlign: 'center'
276
- },
277
- tooltipText: {
278
- fontSize: 14,
279
- color: _constants.COLORS.text.secondary,
280
- marginBottom: 12
281
- },
282
- tooltipBullet: {
283
- fontSize: 14,
284
- color: _constants.COLORS.text.secondary,
285
- marginBottom: 6,
286
- marginLeft: 10
287
- },
288
- tooltipButton: {
289
- backgroundColor: _constants.COLORS.primary,
290
- paddingVertical: 12,
291
- paddingHorizontal: 24,
292
- borderRadius: 8,
293
- alignSelf: 'center',
294
- marginTop: 12
295
- },
296
- tooltipButtonText: {
297
- color: '#fff',
298
- fontSize: 16,
299
- fontWeight: '600'
300
- }
301
- });
302
- //# sourceMappingURL=PinInput.js.map
1
+ 'use strict';
2
+ // Onairos SDK - Asset Registry (auto-generated)
3
+ var __ONAIROS_REQ_REGISTRY__ = [
4
+ require("react"),
5
+ require("react-native"),
6
+ require("../services/biometricPinService")
7
+ ];
8
+ function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
9
+ Object[_0x2fe5(0x0)](exports,'__esModule',{'value':!![]}),exports[_0x2fe5(0x1)]=void 0x0;var _react=_interopRequireWildcard(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_biometricPinService=__ONAIROS_REQ_FUNC__(0x2);function _interopRequireWildcard(_0x5709cd,_0x9718f3){const _0x458b12={'McZYQ':function(_0x5b5406,_0x1efe31){return _0x5b5406&&_0x1efe31;},'jdrpJ':function(_0x1c09cd,_0x5dd23d){return _0x1c09cd!=_0x5dd23d;},'AWQRQ':_0x2fe5(0x2),'BQWuh':function(_0x296da7,_0x1d84df){return _0x296da7!=_0x1d84df;},'qBAKi':function(_0xf31330,_0x5935f2){return _0xf31330!==_0x5935f2;},'TgxMR':function(_0x5d18c2,_0x3f24fa,_0x1889be,_0x122f2f){return _0x5d18c2(_0x3f24fa,_0x1889be,_0x122f2f);},'NrMhF':function(_0x2167d9,_0x54290c){return _0x2167d9==_0x54290c;}};if(_0x458b12['NrMhF']('function',typeof WeakMap))var _0x37cee8=new WeakMap(),_0x766f7f=new WeakMap();return(_interopRequireWildcard=function(_0x56c514,_0x1dfd12){if(_0x458b12['McZYQ'](!_0x1dfd12,_0x56c514)&&_0x56c514['__esModule'])return _0x56c514;var _0x2c489e,_0xbabe03,_0x484cb={'__proto__':null,'default':_0x56c514};if(null===_0x56c514||_0x458b12[_0x2fe5(0x3)](_0x458b12[_0x2fe5(0x4)],typeof _0x56c514)&&_0x458b12['BQWuh']('function',typeof _0x56c514))return _0x484cb;if(_0x2c489e=_0x1dfd12?_0x766f7f:_0x37cee8){if(_0x2c489e[_0x2fe5(0x5)](_0x56c514))return _0x2c489e[_0x2fe5(0x6)](_0x56c514);_0x2c489e[_0x2fe5(0x7)](_0x56c514,_0x484cb);}for(const _0x93e6d6 in _0x56c514)_0x458b12[_0x2fe5(0x8)]('default',_0x93e6d6)&&{}['hasOwnProperty'][_0x2fe5(0x9)](_0x56c514,_0x93e6d6)&&((_0xbabe03=(_0x2c489e=Object[_0x2fe5(0x0)])&&Object[_0x2fe5(0xa)](_0x56c514,_0x93e6d6))&&(_0xbabe03[_0x2fe5(0x6)]||_0xbabe03[_0x2fe5(0x7)])?_0x458b12[_0x2fe5(0xb)](_0x2c489e,_0x484cb,_0x93e6d6,_0xbabe03):_0x484cb[_0x93e6d6]=_0x56c514[_0x93e6d6]);return _0x484cb;})(_0x5709cd,_0x9718f3);}function _0x2fe5(_0x457747,_0x2fe58a){_0x457747=_0x457747-0x0;const _0x1896a3=_0x4577();let _0x465682=_0x1896a3[_0x457747];return _0x465682;}const {width}=_reactNative[_0x2fe5(0xc)][_0x2fe5(0x6)]('window'),PinInput=({onSubmit:_0x269e75,minLength:minLength=0x8,requireSpecialChar:requireSpecialChar=!![],requireNumber:requireNumber=!![],onBack:_0x30985d,enableBiometricStorage:enableBiometricStorage=!![],onBackgroundTrainingStart:_0x2ce7d7,showBackgroundProgress:showBackgroundProgress=![],backgroundProgressText:backgroundProgressText=_0x2fe5(0xd)})=>{const _0x209922={'iZffP':function(_0x293de5,_0x5e42df){return _0x293de5(_0x5e42df);},'uJkww':function(_0x1b5b0d,_0x440e80){return _0x1b5b0d(_0x440e80);},'hDBxG':_0x2fe5(0xe),'ZiBSG':function(_0x5e431a,_0xc1b4f6){return _0x5e431a&&_0xc1b4f6;},'OAgKK':function(_0x271253,_0x486a61){return _0x271253===_0x486a61;},'RBSrY':_0x2fe5(0xf),'voMBM':function(_0x5617ab){return _0x5617ab();},'sRZUu':function(_0x3a864d,_0x207200){return _0x3a864d(_0x207200);},'SwPiZ':function(_0x26ce72,_0x54e4d7){return _0x26ce72(_0x54e4d7);},'xUhuh':_0x2fe5(0x10),'vcUqG':_0x2fe5(0x11),'tAPYn':function(_0x19c00c,_0xf1f0ae){return _0x19c00c!==_0xf1f0ae;},'Etkuz':_0x2fe5(0x12),'HhpMN':'BXVsh','ELudi':'PIN\x20must\x20include\x20a\x20number','sWtcE':_0x2fe5(0x13),'UZvZN':function(_0x47f56f,_0x549564){return _0x47f56f!=_0x549564;},'ngQaa':_0x2fe5(0x2),'QOGoa':function(_0x390992,_0x416352){return _0x390992!==_0x416352;},'kXkCL':function(_0x602aee,_0x2a95d5,_0x466388,_0x3f2f6d){return _0x602aee(_0x2a95d5,_0x466388,_0x3f2f6d);},'GodaB':function(_0x22f281,_0x24c84b){return _0x22f281!=_0x24c84b;},'KYQtk':_0x2fe5(0x14),'AvlST':function(_0x44466c,_0xdc9b6f){return _0x44466c!==_0xdc9b6f;},'rerSO':function(_0x27e60d,_0x50e8bf){return _0x27e60d(_0x50e8bf);},'dJUwu':_0x2fe5(0x15),'Jozlj':function(_0x42298a,_0x4f5417){return _0x42298a(_0x4f5417);},'ORwgY':function(_0x2501fd,_0xde62c1){return _0x2501fd(_0xde62c1);},'QScZw':function(_0x76e50d,_0x44dad0){return _0x76e50d(_0x44dad0);},'bKkee':_0x2fe5(0x16),'IWNAv':'RVrTL','Ozctj':function(_0x2aeebd,_0x255586){return _0x2aeebd(_0x255586);},'cOACu':function(_0xfda8e7,_0x4330ec){return _0xfda8e7(_0x4330ec);},'FNejm':function(_0x51261e,_0x5cba72){return _0x51261e===_0x5cba72;},'gruki':_0x2fe5(0x17),'tdGNE':_0x2fe5(0x18),'klctl':_0x2fe5(0x19),'oBIpB':function(_0x2fc0af,_0x545f6f){return _0x2fc0af(_0x545f6f);},'TDDae':'storage-error','ZOSia':function(_0x7d885,_0x114096){return _0x7d885(_0x114096);},'jEMVW':function(_0x402e84,_0x19d9ec){return _0x402e84(_0x19d9ec);},'gKtRp':function(_0x5e9e17,_0x326559){return _0x5e9e17===_0x326559;},'oDfci':'MgQIo','KMdyr':function(_0x522e78,_0xdf3d30){return _0x522e78(_0xdf3d30);},'WNawx':function(_0x593543,_0x1cefb3){return _0x593543(_0x1cefb3);},'JEfGz':function(_0x47792f,_0xb041dd){return _0x47792f(_0xb041dd);},'CdsVl':function(_0x1f539a,_0x32276a){return _0x1f539a(_0x32276a);},'RtxUq':'default','CZiSv':function(_0x467dea){return _0x467dea();},'BmqCU':function(_0x2990cd){return _0x2990cd();},'FReVU':_0x2fe5(0x1a),'PXBvn':_0x2fe5(0x1b),'uCeZl':_0x2fe5(0x1c),'PuoWO':'This\x20device\x20does\x20not\x20support\x20Face\x20ID\x20or\x20Touch\x20ID.\x20Please\x20enable\x20biometric\x20authentication\x20in\x20your\x20device\x20settings\x20to\x20secure\x20your\x20PIN.','fKPsd':_0x2fe5(0x1d),'tHojE':_0x2fe5(0x1e),'ltpFI':_0x2fe5(0x1f),'FKxaE':_0x2fe5(0x20),'zwcQf':_0x2fe5(0x21),'eKTlh':_0x2fe5(0x22),'LuoKA':'error','lCCdD':_0x2fe5(0x23),'Fiqko':_0x2fe5(0x24),'cHibR':_0x2fe5(0x25),'iCvUb':_0x2fe5(0x26),'sdnSM':_0x2fe5(0x27),'XeeZB':function(_0xabaf80,_0x4d7541){return _0xabaf80&&_0x4d7541;},'ONwPz':_0x2fe5(0x28),'rIRGT':_0x2fe5(0x29),'zwvai':'e.g.\x20MyPin123!','JTKxP':_0x2fe5(0x2a),'nyhug':_0x2fe5(0x2b),'cOYdw':function(_0x34f2cc,_0x5a0394){return _0x34f2cc>=_0x5a0394;},'EpJLY':'•\x20At\x20least\x20','NkqMX':_0x2fe5(0x2c),'qaeIT':_0x2fe5(0x2d),'WcwfY':function(_0xf4e154,_0x497f2b){return _0xf4e154===_0x497f2b;},'ZBQAn':function(_0x2c8595,_0x95eb26){return _0x2c8595===_0x95eb26;},'ZqtEX':function(_0x226742,_0x3ce803){return _0x226742===_0x3ce803;},'EcZTf':_0x2fe5(0x2e),'mbLFd':_0x2fe5(0x2f),'xzhDI':function(_0x2cfc2b,_0x175ea5){return _0x2cfc2b||_0x175ea5;}},[_0x1d7e9d,_0x5c0fa4]=(0x0,_react[_0x2fe5(0x30)])(''),[_0x42087b,_0x469275]=(0x0,_react[_0x2fe5(0x30)])(null),[_0x56eb84,_0x553175]=(0x0,_react[_0x2fe5(0x30)])(![]),[_0x5d1a81,_0x294d6f]=(0x0,_react[_0x2fe5(0x30)])(![]),[_0x112a35,_0x3d187f]=(0x0,_react['useState'])(_0x209922['RtxUq']),[_0x362504,_0x532b9f]=(0x0,_react[_0x2fe5(0x30)])(![]);_react[_0x2fe5(0x31)][_0x2fe5(0x32)](()=>{_0x209922['hDBxG']===_0x209922['hDBxG']?_0x209922[_0x2fe5(0x33)](_0x2ce7d7,!_0x362504)&&showBackgroundProgress&&(_0x209922['OAgKK'](_0x209922['RBSrY'],_0x209922[_0x2fe5(0x34)])?(console[_0x2fe5(0x35)]('\uD83D\uDE80 [PIN INPUT] Background training explicitly requested...'),_0x209922[_0x2fe5(0x36)](_0x532b9f,!![]),_0x209922[_0x2fe5(0x37)](_0x2ce7d7)[_0x2fe5(0x38)](_0x4ff6c8=>{console[_0x2fe5(0x39)]('\u274C [PIN INPUT] Background training failed:',_0x4ff6c8),_0x209922[_0x2fe5(0x3a)](_0x532b9f,![]);})):(_0x4f037d[_0x2fe5(0x39)]('\u274C [PIN INPUT] Background training failed:',_0x3e593b),_0x6e4412(![]))):(_0x1b0abc[_0x2fe5(0x35)]('\uD83D\uDD10 [PIN INPUT] Biometric storage disabled, proceeding normally'),_0x209922['uJkww'](_0x4e7447,_0x35376a));},[_0x2ce7d7,_0x362504,showBackgroundProgress]);const _0xf1fd60=(0x0,_react[_0x2fe5(0x3b)])(_0x4a9789=>{if(_0x4a9789[_0x2fe5(0x3c)]<minLength){if(_0x209922[_0x2fe5(0x3d)]===_0x209922[_0x2fe5(0x3e)]){const _0x4d57c2={'lYsax':function(_0x461f38,_0x2f1a40){return _0x209922['sRZUu'](_0x461f38,_0x2f1a40);}};_0x51c848[_0x2fe5(0x35)]('\uD83D\uDE80 [PIN INPUT] Background training explicitly requested...'),_0x209922[_0x2fe5(0x3f)](_0x261b5f,!![]),_0x209922[_0x2fe5(0x37)](_0x43e8c3)[_0x2fe5(0x38)](_0xcde9c4=>{_0x11c91a[_0x2fe5(0x39)]('\u274C [PIN INPUT] Background training failed:',_0xcde9c4),_0x4d57c2[_0x2fe5(0x40)](_0x555b0a,![]);});}else return _0x2fe5(0x41)+minLength+_0x2fe5(0x42);}if(requireSpecialChar&&!/[!@#$%^&*(),.?":{}|<>]/[_0x2fe5(0x43)](_0x4a9789)){if(_0x209922['tAPYn'](_0x209922[_0x2fe5(0x44)],_0x209922[_0x2fe5(0x45)]))return'PIN\x20must\x20include\x20a\x20special\x20character';else{_0xba64f4[_0x2fe5(0x35)]('\u274C [PIN INPUT] Validation failed:',_0x2d6650),_0x209922[_0x2fe5(0x46)](_0x49cb70,_0x53126f);return;}}if(requireNumber&&!/\d/[_0x2fe5(0x43)](_0x4a9789))return _0x209922[_0x2fe5(0x47)];return null;},[minLength,requireSpecialChar,requireNumber]),_0x146a78=(0x0,_react[_0x2fe5(0x3b)])(async()=>{const _0x2ae410={'ZujNn':function(_0x25cf39,_0x226633){return _0x209922[_0x2fe5(0x33)](_0x25cf39,_0x226633);},'xtUKW':function(_0x570254,_0x1094df){return _0x209922[_0x2fe5(0x48)](_0x570254,_0x1094df);},'apozG':_0x2fe5(0x2),'XSaPz':_0x209922[_0x2fe5(0x49)],'wIGWA':function(_0x5766d7,_0x454815){return _0x209922[_0x2fe5(0x4a)](_0x5766d7,_0x454815);},'ModKO':_0x2fe5(0x31),'syjIJ':function(_0x1e6366,_0x405b09){return _0x209922[_0x2fe5(0x4b)](_0x1e6366,_0x405b09);},'cLtRD':function(_0x2495f4,_0x1396fb){return _0x209922['SwPiZ'](_0x2495f4,_0x1396fb);}};console[_0x2fe5(0x35)]('\uD83D\uDD0D [PIN INPUT] handleSubmit called with PIN length:',_0x1d7e9d[_0x2fe5(0x3c)]);const _0x347c45=_0x209922['uJkww'](_0xf1fd60,_0x1d7e9d);if(_0x347c45){if('eTOSq'===_0x209922[_0x2fe5(0x4c)])return _0x209922[_0x2fe5(0x4d)];else{console[_0x2fe5(0x35)]('\u274C [PIN INPUT] Validation failed:',_0x347c45),_0x209922['Jozlj'](_0x469275,_0x347c45);return;}}console['log']('\u2705 [PIN INPUT] PIN validation passed');if(enableBiometricStorage){console[_0x2fe5(0x35)]('\uD83D\uDD10 [PIN INPUT] Biometric storage enabled, starting biometric flow...'),_0x209922['ORwgY'](_0x294d6f,!![]),_0x209922[_0x2fe5(0x4e)](_0x3d187f,_0x209922[_0x2fe5(0x4f)]);try{if(_0x2fe5(0x50)!==_0x209922['IWNAv']){const _0x338647=await _biometricPinService[_0x2fe5(0x51)][_0x2fe5(0x52)]();console[_0x2fe5(0x35)]('\uD83D\uDCF1 [PIN INPUT] Biometric available:',_0x338647);if(!_0x338647){console[_0x2fe5(0x39)]('\u274C [PIN INPUT] Face ID not available on this device'),_0x209922[_0x2fe5(0x53)](_0x3d187f,_0x2fe5(0x1b)),_0x209922[_0x2fe5(0x54)](_0x294d6f,![]);return;}console[_0x2fe5(0x35)]('\uD83D\uDD10 [PIN INPUT] Triggering biometric authentication for PIN storage...');const _0x55affd=await _biometricPinService[_0x2fe5(0x51)][_0x2fe5(0x55)](_0x1d7e9d);if(_0x55affd){if(_0x209922[_0x2fe5(0x56)](_0x209922[_0x2fe5(0x57)],_0x209922[_0x2fe5(0x57)])){console[_0x2fe5(0x35)]('\u2705 [PIN INPUT] PIN stored successfully with biometric protection');const _0x1dc2c9=await _biometricPinService[_0x2fe5(0x51)]['isPinStored']();if(_0x1dc2c9){if(_0x209922['FNejm'](_0x209922[_0x2fe5(0x58)],_0x209922[_0x2fe5(0x59)]))return'PIN\x20must\x20be\x20at\x20least\x20'+_0x563d87+_0x2fe5(0x42);else console[_0x2fe5(0x35)]('\u2705 [PIN INPUT] PIN storage verified - proceeding with onboarding'),_0x209922[_0x2fe5(0x5a)](_0x269e75,_0x1d7e9d);}else console[_0x2fe5(0x39)]('\u274C [PIN INPUT] PIN storage verification failed'),_0x3d187f(_0x209922[_0x2fe5(0x5b)]),_0x209922['ZOSia'](_0x294d6f,![]);}else{if(_0x2ae410[_0x2fe5(0x5c)]==typeof _0x6879e)var _0x2b746d=new _0x10585d(),_0x1ee4f6=new _0x4a9f4a();return(_0x138eaf=function(_0x3afecd,_0x1a6312){if(_0x2ae410[_0x2fe5(0x5d)](!_0x1a6312,_0x3afecd)&&_0x3afecd['__esModule'])return _0x3afecd;var _0x26ff52,_0x31c948,_0x1f45bb={'__proto__':null,'default':_0x3afecd};if(null===_0x3afecd||_0x2ae410[_0x2fe5(0x5e)](_0x2ae410['apozG'],typeof _0x3afecd)&&_0x2ae410[_0x2fe5(0x5e)](_0x2ae410[_0x2fe5(0x5c)],typeof _0x3afecd))return _0x1f45bb;if(_0x26ff52=_0x1a6312?_0x1ee4f6:_0x2b746d){if(_0x26ff52[_0x2fe5(0x5)](_0x3afecd))return _0x26ff52[_0x2fe5(0x6)](_0x3afecd);_0x26ff52[_0x2fe5(0x7)](_0x3afecd,_0x1f45bb);}for(const _0x62c1b2 in _0x3afecd)_0x2ae410[_0x2fe5(0x5f)](_0x2ae410[_0x2fe5(0x60)],_0x62c1b2)&&{}[_0x2fe5(0x61)][_0x2fe5(0x9)](_0x3afecd,_0x62c1b2)&&((_0x31c948=(_0x26ff52=_0xd0557e[_0x2fe5(0x0)])&&_0x1b6dd9[_0x2fe5(0xa)](_0x3afecd,_0x62c1b2))&&(_0x31c948[_0x2fe5(0x6)]||_0x31c948[_0x2fe5(0x7)])?_0x26ff52(_0x1f45bb,_0x62c1b2,_0x31c948):_0x1f45bb[_0x62c1b2]=_0x3afecd[_0x62c1b2]);return _0x1f45bb;})(_0x7da409,_0x1fb5c9);}}else console['warn']('\u26A0️ [PIN INPUT] Biometric authentication failed or was cancelled'),_0x209922['sRZUu'](_0x3d187f,_0x2fe5(0x1e)),_0x209922[_0x2fe5(0x62)](_0x294d6f,![]);}else return _0x209922[_0x2fe5(0x47)];}catch(_0x12b3be){_0x209922[_0x2fe5(0x63)](_0x2fe5(0x64),'RZSTA')?(console[_0x2fe5(0x39)]('\u274C [PIN INPUT] Error handling biometric PIN storage:',_0x12b3be),_0x209922['jEMVW'](_0x3d187f,_0x209922['TDDae']),_0x209922[_0x2fe5(0x65)](_0x294d6f,![])):(_0x92e2e2[_0x2fe5(0x66)]('\u26A0️ [PIN INPUT] Biometric authentication failed or was cancelled'),_0x2ae410[_0x2fe5(0x67)](_0x22642d,_0x2fe5(0x1e)),_0x2ae410[_0x2fe5(0x68)](_0x1ac32f,![]));}}else{if(_0x209922[_0x2fe5(0x69)](_0x209922[_0x2fe5(0x6a)],_0x209922[_0x2fe5(0x6a)]))console[_0x2fe5(0x35)]('\uD83D\uDD10 [PIN INPUT] Biometric storage disabled, proceeding normally'),_0x209922['KMdyr'](_0x269e75,_0x1d7e9d);else{if(_0x209922[_0x2fe5(0x33)](!_0x1432fe,_0x4ae124)&&_0x314460['__esModule'])return _0x3c0f2e;var _0x43978c,_0x5810a1,_0x1d1c8c={'__proto__':null,'default':_0x2a4bc0};if(null===_0x1321c2||_0x209922[_0x2fe5(0x6b)](_0x209922[_0x2fe5(0x6c)],typeof _0x3271a0)&&_0x209922[_0x2fe5(0x6b)]('function',typeof _0x1253bd))return _0x1d1c8c;if(_0x43978c=_0xe1beb5?_0xae44d1:_0x36473d){if(_0x43978c[_0x2fe5(0x5)](_0x2e01fb))return _0x43978c[_0x2fe5(0x6)](_0xa5eb62);_0x43978c[_0x2fe5(0x7)](_0x2ddec1,_0x1d1c8c);}for(const _0x27b49b in _0x2a4714)_0x209922[_0x2fe5(0x6d)](_0x2fe5(0x31),_0x27b49b)&&{}[_0x2fe5(0x61)][_0x2fe5(0x9)](_0x32fca1,_0x27b49b)&&((_0x5810a1=(_0x43978c=_0x59317d[_0x2fe5(0x0)])&&_0x550728['getOwnPropertyDescriptor'](_0x3f856b,_0x27b49b))&&(_0x5810a1[_0x2fe5(0x6)]||_0x5810a1[_0x2fe5(0x7)])?_0x209922[_0x2fe5(0x6e)](_0x43978c,_0x1d1c8c,_0x27b49b,_0x5810a1):_0x1d1c8c[_0x27b49b]=_0x9171b2[_0x27b49b]);return _0x1d1c8c;}}},[_0x1d7e9d,_0xf1fd60,_0x269e75,enableBiometricStorage]),_0x48ed53=(0x0,_react[_0x2fe5(0x3b)])(_0x353cd9=>{_0x5c0fa4(_0x353cd9),_0x209922[_0x2fe5(0x6f)](_0x469275,null),_0x209922[_0x2fe5(0x4b)](_0x3d187f,'default'),console[_0x2fe5(0x35)]('\uD83D\uDD0D [PIN INPUT] PIN changed:',{'length':_0x353cd9[_0x2fe5(0x3c)],'hasSpecialChar':/[!@#$%^&*(),.?":{}|<>]/[_0x2fe5(0x43)](_0x353cd9),'hasNumber':/\d/[_0x2fe5(0x43)](_0x353cd9),'isValid':!_0x209922['JEfGz'](_0xf1fd60,_0x353cd9)});},[_0xf1fd60]),_0x2a58d6=(0x0,_react[_0x2fe5(0x3b)])(()=>{console[_0x2fe5(0x66)]('\u26A0️ [PIN INPUT] User chose to continue without biometric security'),_0x209922['CdsVl'](_0x269e75,_0x1d7e9d);},[_0x1d7e9d,_0x269e75]),_0x38d0ee=(0x0,_react['useCallback'])(()=>{_0x209922['Jozlj'](_0x3d187f,_0x209922['RtxUq']),_0x209922[_0x2fe5(0x70)](_0x146a78);},[_0x146a78]),_0x209064=()=>{const _0x31e5fa={'eEFXW':function(_0x5878e2,_0x4e14ed){return _0x5878e2&&_0x4e14ed;},'COpic':function(_0x205ce2,_0x31f219){return _0x205ce2(_0x31f219);},'Duzww':function(_0x3b8612){return _0x209922['BmqCU'](_0x3b8612);}};if(_0x209922['FReVU']!==_0x2fe5(0x1a))_0x31e5fa[_0x2fe5(0x71)](_0x41e95f,!_0x2c41f0)&&_0x1f81c5&&(_0x210797[_0x2fe5(0x35)]('\uD83D\uDE80 [PIN INPUT] Background training explicitly requested...'),_0x31e5fa['COpic'](_0x4e65ee,!![]),_0x31e5fa['Duzww'](_0x7283b6)[_0x2fe5(0x38)](_0x2a337a=>{_0x36e4bd[_0x2fe5(0x39)]('\u274C [PIN INPUT] Background training failed:',_0x2a337a),_0x4862bc(![]);}));else switch(_0x112a35){case _0x209922[_0x2fe5(0x72)]:return{'title':_0x209922[_0x2fe5(0x73)],'message':_0x209922[_0x2fe5(0x74)],'type':_0x209922[_0x2fe5(0x75)],'showActions':!![]};case _0x209922['tHojE']:return{'title':_0x209922[_0x2fe5(0x76)],'message':_0x209922['FKxaE'],'type':_0x209922[_0x2fe5(0x75)],'showActions':!![]};case _0x209922[_0x2fe5(0x5b)]:return{'title':_0x209922[_0x2fe5(0x77)],'message':_0x209922[_0x2fe5(0x78)],'type':_0x209922['LuoKA'],'showActions':!![]};case _0x209922[_0x2fe5(0x4f)]:return{'title':_0x209922[_0x2fe5(0x79)],'message':_0x209922[_0x2fe5(0x7a)],'type':_0x209922['cHibR'],'showActions':![]};default:return{'title':_0x209922[_0x2fe5(0x7b)],'message':_0x2fe5(0x7c),'type':_0x209922['cHibR'],'showActions':![]};}},_0x28235d=_0x209064();return _react['default'][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x7e)],{'style':styles[_0x2fe5(0x7f)]},_react['default'][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x7e)],{'style':styles[_0x2fe5(0x80)]},_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x7e)],{'style':styles[_0x2fe5(0x81)]},_0x30985d&&_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative['TouchableOpacity'],{'style':styles['backButton'],'onPress':_0x30985d},_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x82)],{'style':{'fontSize':0x18}},'←')),_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative['Text'],{'style':styles[_0x2fe5(0x83)]},_0x2fe5(0x84))),_react[_0x2fe5(0x31)]['createElement'](_reactNative[_0x2fe5(0x82)],{'style':styles[_0x2fe5(0x85)]},_0x209922[_0x2fe5(0x86)]),_0x209922['XeeZB'](showBackgroundProgress,_0x362504)&&_react[_0x2fe5(0x31)]['createElement'](_reactNative[_0x2fe5(0x7e)],{'style':styles[_0x2fe5(0x87)]},_react['default'][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x82)],{'style':styles[_0x2fe5(0x88)]},backgroundProgressText),_react['default'][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x7e)],{'style':styles['backgroundProgressIndicator']},_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative['ActivityIndicator'],{'size':_0x209922[_0x2fe5(0x89)],'color':_0x209922[_0x2fe5(0x8a)]}))),_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x7e)],{'style':styles[_0x2fe5(0x8b)]},_react['default'][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x8c)],{'style':styles[_0x2fe5(0x8d)],'value':_0x1d7e9d,'onChangeText':_0x48ed53,'secureTextEntry':!_0x56eb84,'placeholder':_0x209922[_0x2fe5(0x8e)],'keyboardType':_0x2fe5(0x31),'maxLength':0x14,'autoCapitalize':_0x209922[_0x2fe5(0x8f)],'autoCorrect':![],'returnKeyType':_0x2fe5(0x90),'onSubmitEditing':()=>_reactNative[_0x2fe5(0x91)]['dismiss']()}),_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative['TouchableOpacity'],{'style':styles[_0x2fe5(0x92)],'onPress':()=>_0x553175(!_0x56eb84)},_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x82)],null,_0x56eb84?_0x209922['nyhug']:_0x2fe5(0x93))))),_0x42087b&&_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x82)],{'style':styles['error']},_0x42087b),_react['default'][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x7e)],{'style':styles[_0x2fe5(0x94)]},_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative['Text'],{'style':styles[_0x2fe5(0x95)]},_0x2fe5(0x96)),_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x82)],{'style':[styles['requirement'],_0x209922[_0x2fe5(0x97)](_0x1d7e9d[_0x2fe5(0x3c)],minLength)&&styles[_0x2fe5(0x98)]]},_0x209922[_0x2fe5(0x99)],minLength,_0x2fe5(0x42)),requireSpecialChar&&_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative['Text'],{'style':[styles[_0x2fe5(0x9a)],/[!@#$%^&*(),.?":{}|<>]/[_0x2fe5(0x43)](_0x1d7e9d)&&styles[_0x2fe5(0x98)]]},_0x209922[_0x2fe5(0x9b)]),requireNumber&&_react[_0x2fe5(0x31)]['createElement'](_reactNative[_0x2fe5(0x82)],{'style':[styles[_0x2fe5(0x9a)],/\d/[_0x2fe5(0x43)](_0x1d7e9d)&&styles[_0x2fe5(0x98)]]},_0x209922['qaeIT'])),_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x7e)],{'style':[styles[_0x2fe5(0x9c)],_0x209922[_0x2fe5(0x9d)](_0x28235d[_0x2fe5(0x9e)],_0x2fe5(0x25))&&styles[_0x2fe5(0x9f)],_0x209922[_0x2fe5(0x56)](_0x28235d[_0x2fe5(0x9e)],_0x209922['fKPsd'])&&styles[_0x2fe5(0xa0)],_0x28235d['type']===_0x209922[_0x2fe5(0xa1)]&&styles[_0x2fe5(0xa2)]]},_react[_0x2fe5(0x31)]['createElement'](_reactNative[_0x2fe5(0x82)],{'style':[styles['infoTitle'],_0x28235d[_0x2fe5(0x9e)]===_0x209922[_0x2fe5(0xa3)]&&styles['infoTitleInfo'],_0x209922[_0x2fe5(0xa4)](_0x28235d[_0x2fe5(0x9e)],_0x209922[_0x2fe5(0x75)])&&styles[_0x2fe5(0xa5)],_0x28235d[_0x2fe5(0x9e)]==='error'&&styles['infoTitleError']]},_0x28235d[_0x2fe5(0x83)]),_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x82)],{'style':[styles[_0x2fe5(0xa6)],_0x28235d['type']===_0x209922['cHibR']&&styles[_0x2fe5(0xa7)],_0x209922[_0x2fe5(0xa8)](_0x28235d['type'],_0x2fe5(0x1d))&&styles['infoMessageWarning'],_0x209922[_0x2fe5(0x63)](_0x28235d[_0x2fe5(0x9e)],_0x209922[_0x2fe5(0xa1)])&&styles[_0x2fe5(0xa9)]]},_0x28235d[_0x2fe5(0xaa)]),_0x28235d['showActions']&&_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x7e)],{'style':styles['infoActions']},_react[_0x2fe5(0x31)]['createElement'](_reactNative[_0x2fe5(0xab)],{'style':styles[_0x2fe5(0xac)],'onPress':_0x38d0ee},_react['default'][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x82)],{'style':styles[_0x2fe5(0xad)]},_0x209922[_0x2fe5(0xae)])),_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0xab)],{'style':[styles[_0x2fe5(0xac)],styles[_0x2fe5(0xaf)]],'onPress':_0x2a58d6},_react[_0x2fe5(0x31)]['createElement'](_reactNative[_0x2fe5(0x82)],{'style':[styles[_0x2fe5(0xad)],styles[_0x2fe5(0xb0)]]},_0x209922[_0x2fe5(0xb1)])))),_react[_0x2fe5(0x31)]['createElement'](_reactNative['View'],{'style':styles[_0x2fe5(0xb2)]},_0x30985d&&_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0xab)],{'style':styles['cancelButton'],'onPress':_0x30985d},_react['default'][_0x2fe5(0x7d)](_reactNative['Text'],{'style':styles[_0x2fe5(0xb3)]},_0x2fe5(0xb4))),_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0xab)],{'style':[styles[_0x2fe5(0xb5)],(_0x209922['xzhDI'](!_0x1d7e9d,_0x5d1a81)||_0x209922[_0x2fe5(0xb6)](_0xf1fd60,_0x1d7e9d))&&styles[_0x2fe5(0xb7)]],'onPress':_0x146a78,'disabled':_0x209922[_0x2fe5(0xb8)](!_0x1d7e9d,_0x5d1a81)||!!_0x209922[_0x2fe5(0xb9)](_0xf1fd60,_0x1d7e9d)},_react[_0x2fe5(0x31)][_0x2fe5(0x7d)](_reactNative[_0x2fe5(0x82)],{'style':styles[_0x2fe5(0xba)]},_0x5d1a81?_0x2fe5(0x23):_0x2fe5(0xbb)))));};exports[_0x2fe5(0x1)]=PinInput;const styles=_reactNative[_0x2fe5(0xbc)][_0x2fe5(0xbd)]({'container':{'flex':0x1,'padding':0x10,'width':width,'backgroundColor':_0x2fe5(0xbe),'justifyContent':_0x2fe5(0xbf)},'inputSection':{'width':_0x2fe5(0xc0),'marginTop':0x0,'paddingTop':0x0},'header':{'flexDirection':_0x2fe5(0xc1),'alignItems':_0x2fe5(0xc2),'justifyContent':'space-between','marginBottom':0x10,'paddingVertical':0x8},'backButton':{'padding':0x8},'title':{'fontSize':0x14,'fontWeight':'600','color':_0x2fe5(0xc3),'textAlign':_0x2fe5(0xc2),'flex':0x1,'marginBottom':0x8},'subtitle':{'fontSize':0xe,'color':'#666','marginBottom':0x18,'textAlign':_0x2fe5(0xc2)},'inputContainer':{'flexDirection':_0x2fe5(0xc1),'alignItems':'center','borderWidth':0x1,'borderColor':_0x2fe5(0xc4),'borderRadius':0x8,'marginBottom':0x10},'input':{'flex':0x1,'padding':0xc,'fontSize':0x10},'visibilityButton':{'padding':0xc},'infoContainer':{'padding':0x10,'borderRadius':0xc,'marginBottom':0x10,'borderWidth':0x1},'infoContainerInfo':{'backgroundColor':_0x2fe5(0xc5),'borderColor':_0x2fe5(0xc6)},'infoContainerWarning':{'backgroundColor':_0x2fe5(0xc7),'borderColor':'#FF9800'},'infoContainerError':{'backgroundColor':_0x2fe5(0xc8),'borderColor':_0x2fe5(0xc9)},'infoTitle':{'fontSize':0x10,'fontWeight':'600','marginBottom':0x8},'infoTitleInfo':{'color':_0x2fe5(0xca)},'infoTitleWarning':{'color':_0x2fe5(0xcb)},'infoTitleError':{'color':_0x2fe5(0xcc)},'infoMessage':{'fontSize':0xe,'lineHeight':0x14,'marginBottom':0xc},'infoMessageInfo':{'color':'#1565C0'},'infoMessageWarning':{'color':_0x2fe5(0xcd)},'infoMessageError':{'color':_0x2fe5(0xce)},'infoActions':{'flexDirection':_0x2fe5(0xc1),'justifyContent':_0x2fe5(0xcf),'marginTop':0x8},'infoActionButton':{'flex':0x1,'paddingVertical':0xa,'paddingHorizontal':0x10,'borderRadius':0x8,'backgroundColor':_0x2fe5(0x29),'marginHorizontal':0x4,'alignItems':_0x2fe5(0xc2)},'infoActionButtonSecondary':{'backgroundColor':_0x2fe5(0xd0),'borderWidth':0x1,'borderColor':_0x2fe5(0x29)},'infoActionButtonText':{'color':'#fff','fontSize':0xe,'fontWeight':_0x2fe5(0xd1)},'infoActionButtonSecondaryText':{'color':_0x2fe5(0x29)},'error':{'color':_0x2fe5(0xd2),'marginBottom':0x10},'requirements':{'marginBottom':0x18},'requirementTitle':{'fontSize':0xe,'fontWeight':_0x2fe5(0xd1),'marginBottom':0x8,'color':_0x2fe5(0xc3)},'requirement':{'fontSize':0xe,'color':_0x2fe5(0xd3),'marginBottom':0x4},'requirementMet':{'color':_0x2fe5(0xd4)},'footer':{'flexDirection':_0x2fe5(0xc1),'alignItems':'center','justifyContent':'space-between','marginTop':0x18,'borderTopWidth':0x1,'borderTopColor':'#eee','paddingTop':0x10},'cancelButton':{'paddingVertical':0x8,'paddingHorizontal':0x10},'cancelButtonText':{'color':_0x2fe5(0xd3),'fontSize':0x10},'submitButton':{'paddingVertical':0x10,'paddingHorizontal':0x20,'borderRadius':0x10,'backgroundColor':_0x2fe5(0xd5),'alignItems':_0x2fe5(0xc2)},'submitButtonDisabled':{'opacity':0.5},'submitButtonText':{'color':_0x2fe5(0xbe),'fontSize':0x10,'fontWeight':_0x2fe5(0xd1)},'backgroundProgressContainer':{'flexDirection':_0x2fe5(0xc1),'alignItems':_0x2fe5(0xc2),'justifyContent':'center','marginBottom':0x10},'backgroundProgressText':{'fontSize':0xe,'color':_0x2fe5(0xd3),'marginRight':0xa},'backgroundProgressIndicator':{'padding':0x5}});function _0x4577(){const _0x34c3f3=['defineProperty','PinInput','object','jdrpJ','AWQRQ','has','get','set','qBAKi','call','getOwnPropertyDescriptor','TgxMR','Dimensions','Training\x20is\x20starting\x20in\x20the\x20background...','NSEah','ETFFm','npwhO','wHVPy','nhxjL','PIN\x20must\x20include\x20a\x20special\x20character','function','lDUiP','authenticating','XwQec','nocmq','hmBCx','MCJJp','biometric-unavailable','Biometric\x20Authentication\x20Not\x20Available','warning','biometric-failed','Biometric\x20Authentication\x20Failed','Biometric\x20authentication\x20was\x20cancelled\x20or\x20failed.\x20Your\x20PIN\x20needs\x20to\x20be\x20secured\x20with\x20biometric\x20authentication\x20to\x20proceed.','Storage\x20Error','An\x20error\x20occurred\x20while\x20securing\x20your\x20PIN.\x20Would\x20you\x20like\x20to\x20try\x20again?','Authenticating...','Please\x20complete\x20biometric\x20authentication\x20to\x20secure\x20your\x20PIN.','info','Secure\x20PIN\x20Storage','A\x20PIN\x20so\x20only\x20you\x20have\x20access\x20to\x20your\x20data','small','#007AFF','none','👁️','•\x20Include\x20a\x20special\x20character','•\x20Include\x20a\x20number','Try\x20Again','Continue\x20Without\x20Biometric','useState','default','useEffect','ZiBSG','RBSrY','log','uJkww','voMBM','catch','error','iZffP','useCallback','length','xUhuh','vcUqG','sRZUu','lYsax','PIN\x20must\x20be\x20at\x20least\x20','\x20characters','test','Etkuz','HhpMN','SwPiZ','ELudi','GodaB','KYQtk','AvlST','rerSO','dJUwu','sWtcE','QScZw','bKkee','bbjIX','biometricPinService','isBiometricAvailable','Ozctj','cOACu','storePinWithBiometric','FNejm','gruki','tdGNE','klctl','oBIpB','TDDae','XSaPz','ZujNn','xtUKW','wIGWA','ModKO','hasOwnProperty','ZOSia','OAgKK','RZSTA','Jozlj','warn','syjIJ','cLtRD','gKtRp','oDfci','UZvZN','ngQaa','QOGoa','kXkCL','WNawx','CZiSv','eEFXW','PXBvn','uCeZl','PuoWO','fKPsd','ltpFI','zwcQf','eKTlh','lCCdD','Fiqko','iCvUb','Your\x20PIN\x20will\x20be\x20securely\x20stored\x20locally\x20on\x20your\x20device\x20using\x20biometric\x20authentication\x20(Face\x20ID\x20or\x20Touch\x20ID)\x20for\x20enhanced\x20security.','createElement','View','container','inputSection','header','Text','title','Create\x20a\x20PIN','subtitle','sdnSM','backgroundProgressContainer','backgroundProgressText','ONwPz','rIRGT','inputContainer','TextInput','input','zwvai','JTKxP','done','Keyboard','visibilityButton','👁️‍🗨️','requirements','requirementTitle','PIN\x20Requirements:','cOYdw','requirementMet','EpJLY','requirement','NkqMX','infoContainer','WcwfY','type','infoContainerInfo','infoContainerWarning','LuoKA','infoContainerError','cHibR','ZBQAn','infoTitleWarning','infoMessage','infoMessageInfo','ZqtEX','infoMessageError','message','TouchableOpacity','infoActionButton','infoActionButtonText','EcZTf','infoActionButtonSecondary','infoActionButtonSecondaryText','mbLFd','footer','cancelButtonText','Back','submitButton','KMdyr','submitButtonDisabled','xzhDI','jEMVW','submitButtonText','Continue','StyleSheet','create','#fff','flex-start','100%','row','center','#333','#CCCCCC','#E3F2FD','#2196F3','#FFF3E0','#FFEBEE','#F44336','#1976D2','#F57C00','#D32F2F','#E65100','#C62828','space-between','transparent','600','#FF3B30','#666','#34C759','#000000'];_0x4577=function(){return _0x34c3f3;};return _0x4577();}