@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 @@
1
+ import React,{useState,useEffect}from'react';import{View,Text,StyleSheet,TouchableOpacity,TextInput,Alert,ActivityIndicator}from'react-native';import{COLORS}from'../theme';import{triggerHaptic,HapticType}from'../utils/haptics';import{biometricPinService}from'../services/biometricPinService';import{setTemporaryPin}from'../services/pinStorageUtils';const PinCreationScreen=({visible:_0x108a5b,onComplete:_0x57f42c,onBack:_0x562db9})=>{const _0x211ab5={'qPWfZ':function(_0x2d5236,_0x57bdda){return _0x2d5236>=_0x57bdda;},'httSL':function(_0x44ba7d,_0x4f4bbe){return _0x44ba7d(_0x4f4bbe);},'tACRZ':function(_0x5c63f2,_0x489fcd){return _0x5c63f2(_0x489fcd);},'fFqmy':function(_0x3eaff2,_0x5473fd){return _0x3eaff2(_0x5473fd);},'SVTRq':_0x155e(0x0),'vKKdV':_0x155e(0x1),'UaRbu':_0x155e(0x2),'xyLIA':_0x155e(0x3),'NDcwS':'Continue\x20Without\x20Face\x20ID','MRptg':function(_0xbc44d4,_0x454c23){return _0xbc44d4===_0x454c23;},'qqMsG':'yfIoE','pFsUf':function(_0x507bc1,_0x1a80ca){return _0x507bc1(_0x1a80ca);},'Hjzof':function(_0x33bf76,_0x5ef839){return _0x33bf76(_0x5ef839);},'YseNf':_0x155e(0x4),'QboeV':function(_0x56121c,_0x409d38){return _0x56121c(_0x409d38);},'smaVZ':'unavailable','ygABa':function(_0x82154,_0x1a26c8){return _0x82154(_0x1a26c8);},'amgED':function(_0x483be5,_0x2965d7){return _0x483be5(_0x2965d7);},'wccuR':function(_0x29d91e,_0x47351b){return _0x29d91e!==_0x47351b;},'sFmbi':'LxdjN','aKSmu':'VQPDp','vlMIU':function(_0x1aeabd,_0x14a6d6){return _0x1aeabd(_0x14a6d6);},'woIbL':function(_0x1ebdd5,_0x3844a7){return _0x1ebdd5(_0x3844a7);},'wBbZE':_0x155e(0x5),'SDYkV':_0x155e(0x6),'UeBZc':'🔐\x20Starting\x20PIN\x20creation\x20process...','wcDIj':_0x155e(0x7),'qCCeP':function(_0x30241b,_0x386025){return _0x30241b(_0x386025);},'bXrAc':_0x155e(0x8),'LnwPP':_0x155e(0x9),'vkKWo':'📱\x20[PIN\x20CREATION]\x20Biometric\x20available\x20before\x20storage:','xRbup':_0x155e(0xa),'GSgmR':function(_0x2dd54a,_0x388ac3){return _0x2dd54a(_0x388ac3);},'ReTDk':_0x155e(0xb),'ZclIZ':'✅\x20PIN\x20stored\x20successfully\x20with\x20Face\x20ID','SgtZv':'✅\x20PIN\x20storage\x20verified\x20-\x20proceeding\x20with\x20onboarding','RSudj':function(_0x101ff3,_0x39228b){return _0x101ff3(_0x39228b);},'QEFpP':_0x155e(0xc),'eDpZE':function(_0x5b954e,_0x57c67c,_0x791682){return _0x5b954e(_0x57c67c,_0x791682);},'LZEiG':_0x155e(0xd),'cGMAU':function(_0x127e2e,_0x29cc6c){return _0x127e2e(_0x29cc6c);},'dhTyJ':_0x155e(0xe),'uTLpY':_0x155e(0xf),'QviJV':_0x155e(0x10),'QgnDy':_0x155e(0x11),'XZEdQ':function(_0xccd12c,_0x1266c2){return _0xccd12c(_0x1266c2);},'OEGMX':function(_0x110089,_0x22aa45){return _0x110089(_0x22aa45);},'yycBA':_0x155e(0x12),'KWIjN':_0x155e(0x13),'RSXNS':_0x155e(0x14),'vplkJ':function(_0x2d5ba3,_0x5f584c){return _0x2d5ba3(_0x5f584c);},'SIQSN':function(_0x49031c,_0x5c7c0e){return _0x49031c(_0x5c7c0e);},'jKgXf':function(_0x51e440,_0x2b88d4){return _0x51e440(_0x2b88d4);},'VXDDS':function(_0x23154c,_0x490079){return _0x23154c(_0x490079);},'ApZIt':function(_0x37ee5d,_0x278671){return _0x37ee5d(_0x278671);},'jwMkr':_0x155e(0x15),'zFDGe':_0x155e(0x16),'fYgSA':function(_0x43a0f7){return _0x43a0f7();},'XAxzd':function(_0x4cf59b,_0x55f2ad){return _0x4cf59b(_0x55f2ad);},'yTXRj':'📱\x20Biometric\x20availability\x20check:','ztLnO':_0x155e(0x17),'fAAdW':_0x155e(0x18),'OcRTU':function(_0x42c2b9){return _0x42c2b9();},'Toccj':function(_0x2d4b7d,_0x385220){return _0x2d4b7d(_0x385220);},'smBGJ':'checking','yhVEm':function(_0xec4cae,_0x4ad35f,_0x21596d){return _0xec4cae(_0x4ad35f,_0x21596d);},'sJOPh':'Create\x20a\x20PIN','cGTHo':_0x155e(0x19),'iwJeY':'Your\x20PIN\x20must:','LHjSN':_0x155e(0x1a),'VvDCx':_0x155e(0x1b),'mRfna':_0x155e(0x1c),'GyGum':'Contain\x20a\x20symbol\x20(e.g.\x20!@#$%^&*).','zJCbg':function(_0x1a35d2,_0x3b036a){return _0x1a35d2===_0x3b036a;},'eOXlR':'small','mBojp':_0x155e(0x1d),'xdDPE':function(_0x17a9fd,_0x4a0bb6){return _0x17a9fd===_0x4a0bb6;},'aBYZK':_0x155e(0x1e),'MfWdr':'Enhanced\x20Security','uzRqQ':_0x155e(0x1f),'rhvAC':function(_0x453bf3,_0x186c16){return _0x453bf3===_0x186c16;},'wuVMl':_0x155e(0x20),'hmPJx':_0x155e(0x21),'RzYWX':function(_0x3854f8,_0x41165b){return _0x3854f8===_0x41165b;},'rRDON':_0x155e(0x22),'lYEBA':_0x155e(0x23),'PLOwp':_0x155e(0x24),'wyZkk':function(_0x2489c8,_0xa91fcf){return _0x2489c8===_0xa91fcf;},'eWJXX':_0x155e(0x25),'kNYnC':_0x155e(0x26),'JdZEU':function(_0xec8d02,_0xaeed6a){return _0xec8d02===_0xaeed6a;},'sKGSs':function(_0x2cc0bd,_0x1d49ce){return _0x2cc0bd||_0x1d49ce;},'INSbE':_0x155e(0x27),'nwIat':_0x155e(0x28)},[_0x6a6717,_0x51c281]=_0x211ab5[_0x155e(0x29)](useState,''),[_0x17f8dc,_0x3c787b]=_0x211ab5['VXDDS'](useState,{'length':![],'uppercase':![],'number':![],'symbol':![]}),[_0x25eb7c,_0xb5d97]=_0x211ab5['ApZIt'](useState,![]),[_0x6a500b,_0x141356]=useState(![]),[_0x10baca,_0x56489d]=_0x211ab5[_0x155e(0x2a)](useState,_0x211ab5[_0x155e(0x2b)]),_0xe14f6a=_0x1d3d8a=>{const _0x1e628d={'length':_0x211ab5[_0x155e(0x2c)](_0x1d3d8a['length'],0x8),'uppercase':/[A-Z]/[_0x155e(0x2d)](_0x1d3d8a),'number':/[0-9]/[_0x155e(0x2d)](_0x1d3d8a),'symbol':/[!@#$%^&*(),.?":{}|<>]/[_0x155e(0x2d)](_0x1d3d8a)};return _0x3c787b(_0x1e628d),Object[_0x155e(0x2e)](_0x1e628d)[_0x155e(0x2f)](_0x90ebd8=>_0x90ebd8);},_0x46983d=_0x1e437c=>{_0x211ab5[_0x155e(0x30)](_0x51c281,_0x1e437c),_0xe14f6a(_0x1e437c);},_0x316ab6=async()=>{const _0x5b2316={'SgVtk':_0x211ab5[_0x155e(0x31)],'QciZP':function(_0x492a5a,_0x5671fb){return _0x211ab5[_0x155e(0x32)](_0x492a5a,_0x5671fb);},'HLmTk':_0x211ab5['smaVZ'],'VJJkS':function(_0x2d35d6,_0x33d49a){return _0x211ab5[_0x155e(0x33)](_0x2d35d6,_0x33d49a);},'JTKEc':function(_0x4e32a7,_0x27523a){return _0x4e32a7(_0x27523a);},'qiHqX':function(_0x2d5c44,_0x9d7e8f){return _0x211ab5['ygABa'](_0x2d5c44,_0x9d7e8f);},'HNxny':_0x211ab5[_0x155e(0x34)]};if(!_0x211ab5[_0x155e(0x35)](_0xe14f6a,_0x6a6717)){if(_0x211ab5[_0x155e(0x36)](_0x211ab5[_0x155e(0x37)],_0x211ab5[_0x155e(0x38)])){_0x211ab5[_0x155e(0x39)](triggerHaptic,HapticType['ERROR']),Alert['alert'](_0x155e(0x3a),_0x155e(0x3b));return;}else _0x83e390(![]),_0x211ab5[_0x155e(0x3c)](_0x548ec8,_0x155e(0x0));}_0x211ab5[_0x155e(0x3d)](triggerHaptic,HapticType[_0x155e(0x3e)]),_0x211ab5['Hjzof'](_0xb5d97,!![]);try{if(_0x211ab5[_0x155e(0x3f)](_0x211ab5['wBbZE'],_0x211ab5[_0x155e(0x40)]))_0x1ab5c0[_0x155e(0x41)](_0x5b2316[_0x155e(0x42)]),_0x5b2316[_0x155e(0x43)](_0x4d00e0,_0x5b2316[_0x155e(0x44)]),_0x5b2316[_0x155e(0x45)](_0x5153c2,![]),_0x5b2316[_0x155e(0x46)](_0x5c4bd3,_0x33b1b3);else{console[_0x155e(0x41)](_0x211ab5[_0x155e(0x47)]),_0x211ab5[_0x155e(0x32)](setTemporaryPin,_0x6a6717),console['log'](_0x211ab5['wcDIj']);if(_0x6a500b){_0x211ab5[_0x155e(0x48)](_0x56489d,_0x211ab5[_0x155e(0x49)]),console[_0x155e(0x41)](_0x211ab5[_0x155e(0x4a)]);const _0x4345f0=await biometricPinService['isBiometricAvailable']();console[_0x155e(0x41)](_0x211ab5[_0x155e(0x4b)],_0x4345f0);if(!_0x4345f0){console[_0x155e(0xe)](_0x211ab5[_0x155e(0x4c)]),_0x211ab5[_0x155e(0x4d)](_0x56489d,_0x211ab5[_0x155e(0x4e)]),_0xb5d97(![]);return;}console['log'](_0x211ab5[_0x155e(0x4f)]);const _0xae29e2=await biometricPinService['storePinWithBiometric'](_0x6a6717);if(_0xae29e2){console[_0x155e(0x41)](_0x211ab5[_0x155e(0x50)]);const _0x24bfb4=await biometricPinService[_0x155e(0x51)]();if(_0x24bfb4)console[_0x155e(0x41)](_0x211ab5[_0x155e(0x52)]),_0x211ab5[_0x155e(0x53)](_0x56489d,_0x211ab5[_0x155e(0x54)]),_0x211ab5[_0x155e(0x32)](triggerHaptic,HapticType[_0x155e(0x55)]),_0x211ab5['eDpZE'](setTimeout,()=>{_0x5b2316[_0x155e(0x46)](_0xb5d97,![]),_0x5b2316[_0x155e(0x46)](_0x57f42c,_0x6a6717);},0x320);else{const _0x47cde8=_0x211ab5['LZEiG']['split']('|');let _0x281ab2=0x0;while(!![]){switch(_0x47cde8[_0x281ab2++]){case'0':triggerHaptic(HapticType[_0x155e(0x56)]);continue;case'1':_0x211ab5[_0x155e(0x48)](_0xb5d97,![]);continue;case'2':_0x211ab5[_0x155e(0x57)](_0x56489d,_0x211ab5['dhTyJ']);continue;case'3':console[_0x155e(0xe)](_0x211ab5['uTLpY']);continue;case'4':Alert['alert'](_0x211ab5['QviJV'],_0x211ab5['QgnDy'],[{'text':'OK'}]);continue;}break;}}}else console[_0x155e(0x41)]('⚠️\x20Face\x20ID\x20authentication\x20was\x20cancelled\x20or\x20failed'),_0x211ab5[_0x155e(0x58)](_0x56489d,_0x211ab5[_0x155e(0x59)]),_0x211ab5[_0x155e(0x29)](triggerHaptic,HapticType[_0x155e(0x56)]),Alert['alert'](_0x155e(0x2),_0x155e(0x3),[{'text':_0x211ab5[_0x155e(0x5a)],'onPress':()=>{_0x5b2316['QciZP'](_0xb5d97,![]),_0x5b2316[_0x155e(0x5b)](_0x56489d,_0x5b2316[_0x155e(0x5c)]);}},{'text':_0x211ab5[_0x155e(0x5d)],'onPress':()=>{const _0x2e17ac={'lJoGQ':function(_0x3163ce,_0x3a1b02){return _0x211ab5['fFqmy'](_0x3163ce,_0x3a1b02);},'hSETt':_0x211ab5['SVTRq'],'Rzxxz':_0x211ab5[_0x155e(0x5e)],'RCnXW':_0x155e(0xe),'fcQIU':_0x211ab5[_0x155e(0x5f)],'UqdbD':_0x211ab5[_0x155e(0x60)],'UYGMo':_0x155e(0x12),'kqxZQ':_0x211ab5[_0x155e(0x5d)]};if(_0x211ab5[_0x155e(0x3f)]('XlQsc',_0x211ab5[_0x155e(0x61)])){const _0x5e26d2={'OtfLm':function(_0x3ac1c1,_0x162403){return _0x2e17ac['lJoGQ'](_0x3ac1c1,_0x162403);},'BBcYw':_0x2e17ac['hSETt'],'QkJDf':function(_0x56b408,_0x23d2a2){return _0x56b408(_0x23d2a2);}};_0x307c2e[_0x155e(0x41)](_0x2e17ac[_0x155e(0x62)]),_0x2e17ac[_0x155e(0x63)](_0xc17995,_0x2e17ac['RCnXW']),_0x2e17ac[_0x155e(0x63)](_0x174099,_0x23ab1b[_0x155e(0x56)]),Alert[_0x155e(0x64)](_0x2e17ac[_0x155e(0x65)],_0x2e17ac['UqdbD'],[{'text':_0x2e17ac[_0x155e(0x66)],'onPress':()=>{_0x5e26d2['OtfLm'](_0x3b1c7c,![]),_0x5e26d2[_0x155e(0x67)](_0x488152,_0x5e26d2[_0x155e(0x68)]);}},{'text':_0x2e17ac[_0x155e(0x69)],'onPress':()=>{_0x5e26d2[_0x155e(0x6a)](_0x55a69e,![]),_0x37c5fe(_0x41ec71);}}]);}else _0x211ab5[_0x155e(0x6b)](_0xb5d97,![]),_0x211ab5[_0x155e(0x3c)](_0x57f42c,_0x6a6717);}}]);}else _0x211ab5[_0x155e(0x6c)]!==_0x211ab5[_0x155e(0x6d)]?(console[_0x155e(0x41)](_0x211ab5[_0x155e(0x31)]),_0x211ab5['vplkJ'](_0x56489d,_0x211ab5[_0x155e(0x4e)]),_0x211ab5[_0x155e(0x6e)](_0xb5d97,![]),_0x211ab5['jKgXf'](_0x57f42c,_0x6a6717)):(_0x211ab5['Hjzof'](_0x3141cd,_0x30c210[_0x155e(0x3e)]),_0x2e3751());}}catch(_0x1de989){console[_0x155e(0xe)]('❌\x20Error\x20in\x20PIN\x20creation\x20process:',_0x1de989),_0x211ab5[_0x155e(0x6f)](_0x56489d,_0x211ab5[_0x155e(0x59)]),_0x211ab5['GSgmR'](_0xb5d97,![]),_0x211ab5[_0x155e(0x70)](triggerHaptic,HapticType[_0x155e(0x56)]),Alert[_0x155e(0x64)](_0x211ab5[_0x155e(0x71)],_0x211ab5[_0x155e(0x72)],[{'text':'OK'}]);}},_0x565e16=()=>{triggerHaptic(HapticType[_0x155e(0x3e)]),_0x211ab5[_0x155e(0x73)](_0x562db9);};_0x211ab5[_0x155e(0x74)](useEffect,()=>{const _0x106c36={'cPbXx':function(_0x1966be,_0x149bcf){return _0x211ab5[_0x155e(0x75)](_0x1966be,_0x149bcf);},'rSWwx':_0x155e(0x76),'ZFkAb':_0x211ab5['yTXRj'],'peemb':_0x211ab5[_0x155e(0x77)]};if(_0x211ab5[_0x155e(0x78)]!==_0x211ab5['fAAdW'])_0x106c36[_0x155e(0x79)](_0x362420,![]),_0x28b096(_0x28fbd9);else{const _0x43f9e3=async()=>{try{_0x56489d(_0x155e(0x7a));const _0x3f1c7f=await biometricPinService['isBiometricAvailable']();_0x106c36[_0x155e(0x79)](_0x141356,_0x3f1c7f),_0x106c36[_0x155e(0x79)](_0x56489d,_0x3f1c7f?_0x155e(0x0):_0x106c36[_0x155e(0x7b)]),console[_0x155e(0x41)](_0x106c36[_0x155e(0x7c)],_0x3f1c7f);}catch(_0x67928f){console[_0x155e(0xe)](_0x106c36[_0x155e(0x7d)],_0x67928f),_0x106c36[_0x155e(0x79)](_0x141356,![]),_0x56489d(_0x106c36['rSWwx']);}};_0x108a5b&&_0x211ab5[_0x155e(0x7e)](_0x43f9e3);}},[_0x108a5b]);const _0x227db3=Object[_0x155e(0x2e)](_0x17f8dc)[_0x155e(0x2f)](_0x1c8a5e=>_0x1c8a5e);if(!_0x108a5b)return null;return React['createElement'](View,{'style':styles[_0x155e(0x7f)]},React[_0x155e(0x80)](View,{'style':styles['titleContainer']},React[_0x155e(0x80)](Text,{'style':styles[_0x155e(0x81)]},_0x211ab5['sJOPh']),React['createElement'](Text,{'style':styles[_0x155e(0x82)]},_0x211ab5['cGTHo'])),React[_0x155e(0x80)](View,{'style':styles[_0x155e(0x83)]},React[_0x155e(0x80)](TextInput,{'style':styles[_0x155e(0x84)],'value':_0x6a6717,'onChangeText':_0x46983d,'placeholder':_0x155e(0x85),'secureTextEntry':!![],'autoFocus':!![],'maxLength':0x14})),React[_0x155e(0x80)](View,{'style':styles['requirementsContainer']},React[_0x155e(0x80)](Text,{'style':styles[_0x155e(0x86)]},_0x211ab5[_0x155e(0x87)]),React[_0x155e(0x80)](View,{'style':styles['requirementItem']},React[_0x155e(0x80)](View,{'style':[styles[_0x155e(0x88)],_0x17f8dc[_0x155e(0x89)]&&styles[_0x155e(0x8a)]]},_0x17f8dc[_0x155e(0x89)]&&React[_0x155e(0x80)](Text,{'style':styles[_0x155e(0x8b)]},'✓')),React[_0x155e(0x80)](Text,{'style':[styles[_0x155e(0x8c)],_0x17f8dc[_0x155e(0x89)]&&styles[_0x155e(0x8d)]]},_0x211ab5[_0x155e(0x8e)])),React[_0x155e(0x80)](View,{'style':styles['requirementItem']},React[_0x155e(0x80)](View,{'style':[styles[_0x155e(0x88)],_0x17f8dc['uppercase']&&styles[_0x155e(0x8a)]]},_0x17f8dc['uppercase']&&React['createElement'](Text,{'style':styles[_0x155e(0x8b)]},'✓')),React[_0x155e(0x80)](Text,{'style':[styles[_0x155e(0x8c)],_0x17f8dc[_0x155e(0x8f)]&&styles[_0x155e(0x8d)]]},_0x211ab5[_0x155e(0x90)])),React[_0x155e(0x80)](View,{'style':styles['requirementItem']},React['createElement'](View,{'style':[styles['checkbox'],_0x17f8dc[_0x155e(0x91)]&&styles[_0x155e(0x8a)]]},_0x17f8dc[_0x155e(0x91)]&&React[_0x155e(0x80)](Text,{'style':styles['checkmark']},'✓')),React[_0x155e(0x80)](Text,{'style':[styles[_0x155e(0x8c)],_0x17f8dc[_0x155e(0x91)]&&styles[_0x155e(0x8d)]]},_0x211ab5[_0x155e(0x92)])),React[_0x155e(0x80)](View,{'style':styles[_0x155e(0x93)]},React[_0x155e(0x80)](View,{'style':[styles['checkbox'],_0x17f8dc[_0x155e(0x94)]&&styles[_0x155e(0x8a)]]},_0x17f8dc[_0x155e(0x94)]&&React['createElement'](Text,{'style':styles['checkmark']},'✓')),React['createElement'](Text,{'style':[styles[_0x155e(0x8c)],_0x17f8dc[_0x155e(0x94)]&&styles[_0x155e(0x8d)]]},_0x211ab5[_0x155e(0x95)]))),React[_0x155e(0x80)](View,{'style':[styles[_0x155e(0x96)],_0x211ab5[_0x155e(0x3f)](_0x10baca,_0x155e(0xc))&&styles[_0x155e(0x97)],_0x211ab5[_0x155e(0x98)](_0x10baca,_0x211ab5[_0x155e(0x59)])&&styles[_0x155e(0x99)]]},React[_0x155e(0x80)](View,{'style':styles['securityIconContainer']},_0x10baca===_0x211ab5[_0x155e(0x2b)]&&React[_0x155e(0x80)](ActivityIndicator,{'size':_0x211ab5[_0x155e(0x9a)],'color':COLORS[_0x155e(0x9b)]}),_0x211ab5[_0x155e(0x3f)](_0x10baca,_0x211ab5['bXrAc'])&&React[_0x155e(0x80)](ActivityIndicator,{'size':_0x155e(0x9c),'color':_0x211ab5['mBojp']}),_0x10baca===_0x155e(0x0)&&React[_0x155e(0x80)](Text,{'style':styles['securityIcon']},'🔐'),_0x10baca===_0x155e(0x76)&&React[_0x155e(0x80)](Text,{'style':styles['securityIcon']},'⚠️'),_0x211ab5[_0x155e(0x98)](_0x10baca,_0x155e(0xc))&&React[_0x155e(0x80)](Text,{'style':styles[_0x155e(0x9d)]},'✅'),_0x211ab5[_0x155e(0x3f)](_0x10baca,_0x211ab5[_0x155e(0x59)])&&React[_0x155e(0x80)](Text,{'style':styles['securityIcon']},'❌')),React[_0x155e(0x80)](View,{'style':styles[_0x155e(0x9e)]},React['createElement'](Text,{'style':styles['securityTitle']},_0x211ab5[_0x155e(0x9f)](_0x10baca,_0x211ab5['smBGJ'])&&_0x211ab5['aBYZK'],_0x211ab5['MRptg'](_0x10baca,_0x211ab5['SVTRq'])&&_0x211ab5[_0x155e(0xa0)],_0x211ab5[_0x155e(0x98)](_0x10baca,_0x211ab5['smaVZ'])&&_0x211ab5[_0x155e(0xa1)],_0x211ab5[_0x155e(0xa2)](_0x10baca,_0x211ab5['bXrAc'])&&_0x211ab5['wuVMl'],_0x211ab5[_0x155e(0xa2)](_0x10baca,_0x211ab5['QEFpP'])&&_0x211ab5[_0x155e(0xa3)],_0x211ab5[_0x155e(0xa4)](_0x10baca,_0x211ab5[_0x155e(0x59)])&&_0x211ab5['rRDON']),React[_0x155e(0x80)](Text,{'style':styles[_0x155e(0xa5)]},_0x10baca===_0x211ab5[_0x155e(0x2b)]&&_0x211ab5[_0x155e(0xa6)],_0x211ab5[_0x155e(0x9f)](_0x10baca,_0x211ab5['SVTRq'])&&_0x211ab5[_0x155e(0xa7)],_0x211ab5[_0x155e(0xa8)](_0x10baca,_0x211ab5[_0x155e(0x4e)])&&_0x155e(0xa9),_0x211ab5['rhvAC'](_0x10baca,_0x211ab5[_0x155e(0x49)])&&_0x211ab5[_0x155e(0xaa)],_0x211ab5[_0x155e(0xa4)](_0x10baca,_0x155e(0xc))&&_0x211ab5[_0x155e(0xab)],_0x211ab5['JdZEU'](_0x10baca,_0x211ab5[_0x155e(0x59)])&&_0x155e(0xac)))),React[_0x155e(0x80)](View,{'style':styles[_0x155e(0xad)]},React[_0x155e(0x80)](TouchableOpacity,{'style':[styles[_0x155e(0xae)],_0x227db3&&styles[_0x155e(0xaf)]],'onPress':_0x316ab6,'disabled':_0x211ab5[_0x155e(0xb0)](!_0x227db3,_0x25eb7c)},_0x25eb7c?React['createElement'](ActivityIndicator,{'size':_0x211ab5[_0x155e(0x9a)],'color':_0x211ab5['INSbE']}):React[_0x155e(0x80)](Text,{'style':[styles[_0x155e(0xb1)],_0x227db3&&styles['continueButtonTextActive']]},_0x211ab5[_0x155e(0xb2)]))));},styles=StyleSheet['create']({'container':{'flex':0x1,'backgroundColor':COLORS['surface'],'paddingHorizontal':0x18,'paddingTop':0x28},'titleContainer':{'alignItems':_0x155e(0xb3),'marginBottom':0x18,'paddingTop':0x0,'marginTop':0x0},'title':{'fontSize':0x18,'fontWeight':_0x155e(0xb4),'color':COLORS[_0x155e(0xb5)],'marginBottom':0x8,'fontFamily':_0x155e(0xb6)},'subtitle':{'fontSize':0x10,'color':COLORS[_0x155e(0x9b)],'lineHeight':0x18,'fontFamily':_0x155e(0xb7)},'pinContainer':{'marginBottom':0x20},'pinInput':{'backgroundColor':_0x155e(0xb8),'borderRadius':0xc,'paddingVertical':0x10,'paddingHorizontal':0x10,'fontSize':0x10,'fontFamily':_0x155e(0xb7),'borderWidth':0x1,'borderColor':_0x155e(0xb9)},'requirementsContainer':{'marginBottom':0x20},'requirementsTitle':{'fontSize':0x10,'fontWeight':_0x155e(0xba),'color':COLORS[_0x155e(0xb5)],'marginBottom':0x10,'fontFamily':'Inter'},'requirementItem':{'flexDirection':_0x155e(0xbb),'alignItems':_0x155e(0xb3),'marginBottom':0xc},'checkbox':{'width':0x14,'height':0x14,'borderRadius':0xa,'borderWidth':0x2,'borderColor':_0x155e(0xb9),'marginRight':0xc,'alignItems':_0x155e(0xb3),'justifyContent':_0x155e(0xb3)},'checkboxChecked':{'borderColor':_0x155e(0xbc),'backgroundColor':_0x155e(0xbc)},'checkmark':{'color':_0x155e(0x27),'fontSize':0xc,'fontWeight':'bold'},'requirementText':{'fontSize':0xe,'color':COLORS[_0x155e(0x9b)],'fontFamily':_0x155e(0xb7),'flex':0x1},'requirementTextMet':{'color':COLORS[_0x155e(0xb5)]},'securityCard':{'backgroundColor':_0x155e(0xb8),'borderRadius':0xc,'padding':0x10,'flexDirection':_0x155e(0xbb),'alignItems':_0x155e(0xb3),'marginBottom':0x18,'borderWidth':0x1,'borderColor':_0x155e(0xb9)},'securityCardSuccess':{'backgroundColor':_0x155e(0xbd),'borderColor':_0x155e(0xbe)},'securityCardError':{'backgroundColor':_0x155e(0xbf),'borderColor':_0x155e(0xc0)},'securityIconContainer':{'marginRight':0xc},'securityIcon':{'fontSize':0x18},'securityTextContainer':{'flex':0x1},'securityTitle':{'fontSize':0xe,'fontWeight':_0x155e(0xba),'color':COLORS[_0x155e(0xb5)],'marginBottom':0x4,'fontFamily':'Inter'},'securityDescription':{'fontSize':0xd,'color':COLORS[_0x155e(0x9b)],'lineHeight':0x12,'fontFamily':_0x155e(0xb7)},'buttonContainer':{'marginTop':_0x155e(0xc1),'paddingBottom':0x22},'continueButton':{'backgroundColor':'#E5E5E5','borderRadius':0x19,'paddingVertical':0x10,'alignItems':_0x155e(0xb3),'justifyContent':_0x155e(0xb3)},'continueButtonActive':{'backgroundColor':_0x155e(0xc2)},'continueButtonText':{'fontSize':0x10,'fontWeight':_0x155e(0xba),'color':_0x155e(0xc3),'fontFamily':_0x155e(0xb7)},'continueButtonTextActive':{'color':_0x155e(0x27)}});export{PinCreationScreen};function _0x155e(_0x58e17e,_0x155e97){_0x58e17e=_0x58e17e-0x0;const _0x2e68aa=_0x58e1();let _0x59b0a0=_0x2e68aa[_0x58e17e];return _0x59b0a0;}export default PinCreationScreen;function _0x58e1(){const _0x2fb4cb=['available','⚠️\x20Face\x20ID\x20authentication\x20was\x20cancelled\x20or\x20failed','Face\x20ID\x20Setup','Face\x20ID\x20authentication\x20was\x20cancelled\x20or\x20failed.\x20Your\x20PIN\x20is\x20still\x20saved\x20securely.','📱\x20Biometric\x20not\x20available,\x20continuing\x20without\x20Face\x20ID','iFupx','LPImo','📝\x20PIN\x20stored\x20temporarily\x20for\x20onboarding','storing','🔐\x20[PIN\x20CREATION]\x20Biometric\x20storage\x20enabled,\x20starting\x20biometric\x20flow...','❌\x20[PIN\x20CREATION]\x20Face\x20ID\x20not\x20available\x20on\x20this\x20device','🔐\x20[PIN\x20CREATION]\x20Triggering\x20biometric\x20authentication\x20for\x20PIN\x20storage...','success','3|2|1|0|4','error','❌\x20PIN\x20storage\x20verification\x20failed','PIN\x20Storage\x20Error','PIN\x20storage\x20verification\x20failed.\x20Please\x20try\x20again.','Try\x20Again','UpMMs','Erntc','PIN\x20Creation\x20Error','There\x20was\x20an\x20issue\x20creating\x20your\x20PIN.\x20Please\x20try\x20again.','❌\x20Error\x20checking\x20biometric\x20availability:','vCcnN','A\x20PIN\x20so\x20only\x20you\x20have\x20access\x20to\x20your\x20data.','Be\x20at\x20least\x208\x20characters\x20in\x20length.','Contain\x20an\x20uppercase\x20letter.','Contain\x20a\x20number.','#D4A536','Checking\x20Face\x20ID...','Face\x20ID\x20Unavailable','Securing\x20with\x20Face\x20ID...','PIN\x20Secured\x20with\x20Face\x20ID','Face\x20ID\x20Setup\x20Failed','Verifying\x20Face\x20ID\x20availability\x20on\x20your\x20device.','We\x20use\x20Face\x20ID\x20to\x20ensure\x20only\x20you\x20can\x20access\x20your\x20data.','Please\x20authenticate\x20with\x20Face\x20ID\x20to\x20secure\x20your\x20PIN.','Your\x20PIN\x20is\x20now\x20protected\x20with\x20Face\x20ID\x20authentication.','#FFFFFF','Continue','OEGMX','Toccj','smBGJ','qPWfZ','test','values','every','httSL','YseNf','QboeV','Hjzof','SVTRq','amgED','wccuR','sFmbi','aKSmu','vlMIU','Invalid\x20PIN','Please\x20ensure\x20your\x20PIN\x20meets\x20all\x20requirements.','tACRZ','woIbL','BUTTON_PRESS','MRptg','SDYkV','log','SgVtk','QciZP','HLmTk','VJJkS','JTKEc','UeBZc','qCCeP','bXrAc','LnwPP','vkKWo','xRbup','GSgmR','smaVZ','ReTDk','ZclIZ','isPinStored','SgtZv','RSudj','QEFpP','SUCCESS','ERROR','cGMAU','XZEdQ','dhTyJ','yycBA','qiHqX','HNxny','NDcwS','vKKdV','UaRbu','xyLIA','qqMsG','Rzxxz','lJoGQ','alert','fcQIU','UYGMo','OtfLm','BBcYw','kqxZQ','QkJDf','pFsUf','KWIjN','RSXNS','SIQSN','VXDDS','ApZIt','jwMkr','zFDGe','fYgSA','yhVEm','XAxzd','unavailable','ztLnO','fAAdW','cPbXx','checking','rSWwx','ZFkAb','peemb','OcRTU','container','createElement','title','subtitle','pinContainer','pinInput','Enter\x20your\x20PIN','requirementsTitle','iwJeY','checkbox','length','checkboxChecked','checkmark','requirementText','requirementTextMet','LHjSN','uppercase','VvDCx','number','mRfna','requirementItem','symbol','GyGum','securityCard','securityCardSuccess','zJCbg','securityCardError','eOXlR','grey600','small','securityIcon','securityTextContainer','xdDPE','MfWdr','uzRqQ','rhvAC','hmPJx','RzYWX','securityDescription','lYEBA','PLOwp','wyZkk','Face\x20ID\x20is\x20not\x20available\x20on\x20this\x20device.\x20Your\x20PIN\x20will\x20be\x20stored\x20securely.','eWJXX','kNYnC','Face\x20ID\x20setup\x20failed,\x20but\x20your\x20PIN\x20is\x20stored\x20securely.','buttonContainer','continueButton','continueButtonActive','sKGSs','continueButtonText','nwIat','center','700','grey800','IBM\x20Plex\x20Sans','Inter','#F8F9FA','#E5E5E5','600','row','#4CD964','#F0FDF4','#22C55E','#FEF2F2','#EF4444','auto','#2D3436','#999999'];_0x58e1=function(){return _0x2fb4cb;};return _0x58e1();}
@@ -1,293 +1 @@
1
- import React, { useState, useCallback } from 'react';
2
- import { View, Text, StyleSheet, TextInput, TouchableOpacity, Dimensions, Modal, TouchableWithoutFeedback } from 'react-native';
3
- import Icon from 'react-native-vector-icons/MaterialIcons';
4
- import { COLORS } from '../constants';
5
- const {
6
- width
7
- } = Dimensions.get('window');
8
- export const PinInput = ({
9
- onSubmit,
10
- minLength = 8,
11
- requireSpecialChar = true,
12
- requireNumber = true,
13
- onBack
14
- }) => {
15
- const [pin, setPin] = useState('');
16
- const [error, setError] = useState(null);
17
- const [showPin, setShowPin] = useState(false);
18
- const [showTooltip, setShowTooltip] = useState(false);
19
- const validatePin = useCallback(value => {
20
- if (value.length < minLength) {
21
- return `PIN must be at least ${minLength} characters`;
22
- }
23
- if (requireSpecialChar && !/[!@#$%^&*(),.?":{}|<>]/.test(value)) {
24
- return 'PIN must include a special character';
25
- }
26
- if (requireNumber && !/\d/.test(value)) {
27
- return 'PIN must include a number';
28
- }
29
- return null;
30
- }, [minLength, requireSpecialChar, requireNumber]);
31
- const handleSubmit = useCallback(() => {
32
- const validationError = validatePin(pin);
33
- if (validationError) {
34
- setError(validationError);
35
- return;
36
- }
37
- onSubmit(pin);
38
- }, [pin, validatePin, onSubmit]);
39
- const handlePinChange = useCallback(value => {
40
- setPin(value);
41
- setError(null);
42
- }, []);
43
- return /*#__PURE__*/React.createElement(View, {
44
- style: styles.container
45
- }, /*#__PURE__*/React.createElement(View, {
46
- style: styles.header
47
- }, onBack && /*#__PURE__*/React.createElement(TouchableOpacity, {
48
- style: styles.backButton,
49
- onPress: onBack
50
- }, /*#__PURE__*/React.createElement(Icon, {
51
- name: "arrow-back",
52
- size: 24,
53
- color: COLORS.text.primary
54
- })), /*#__PURE__*/React.createElement(Text, {
55
- style: styles.title
56
- }, "Create your PIN"), /*#__PURE__*/React.createElement(TouchableOpacity, {
57
- style: styles.helpButton,
58
- onPress: () => setShowTooltip(true)
59
- }, /*#__PURE__*/React.createElement(Icon, {
60
- name: "help",
61
- size: 24,
62
- color: COLORS.text.primary
63
- }))), /*#__PURE__*/React.createElement(Text, {
64
- style: styles.subtitle
65
- }, "This PIN will be used to secure your account"), /*#__PURE__*/React.createElement(View, {
66
- style: styles.inputContainer
67
- }, /*#__PURE__*/React.createElement(TextInput, {
68
- style: styles.input,
69
- value: pin,
70
- onChangeText: handlePinChange,
71
- secureTextEntry: !showPin,
72
- placeholder: "Enter PIN",
73
- keyboardType: "default",
74
- maxLength: 20,
75
- autoCapitalize: "none",
76
- autoCorrect: false
77
- }), /*#__PURE__*/React.createElement(TouchableOpacity, {
78
- style: styles.visibilityButton,
79
- onPress: () => setShowPin(!showPin)
80
- }, /*#__PURE__*/React.createElement(Icon, {
81
- name: showPin ? 'visibility-off' : 'visibility',
82
- size: 24,
83
- color: COLORS.text.secondary
84
- }))), error && /*#__PURE__*/React.createElement(Text, {
85
- style: styles.error
86
- }, error), /*#__PURE__*/React.createElement(View, {
87
- style: styles.requirements
88
- }, /*#__PURE__*/React.createElement(Text, {
89
- style: styles.requirementTitle
90
- }, "PIN Requirements:"), /*#__PURE__*/React.createElement(Text, {
91
- style: [styles.requirement, pin.length >= minLength && styles.requirementMet]
92
- }, "\u2022 At least ", minLength, " characters"), requireSpecialChar && /*#__PURE__*/React.createElement(Text, {
93
- style: [styles.requirement, /[!@#$%^&*(),.?":{}|<>]/.test(pin) && styles.requirementMet]
94
- }, "\u2022 Include a special character"), requireNumber && /*#__PURE__*/React.createElement(Text, {
95
- style: [styles.requirement, /\d/.test(pin) && styles.requirementMet]
96
- }, "\u2022 Include a number")), /*#__PURE__*/React.createElement(View, {
97
- style: styles.footer
98
- }, onBack && /*#__PURE__*/React.createElement(TouchableOpacity, {
99
- style: styles.cancelButton,
100
- onPress: onBack
101
- }, /*#__PURE__*/React.createElement(Text, {
102
- style: styles.cancelButtonText
103
- }, "Back")), /*#__PURE__*/React.createElement(TouchableOpacity, {
104
- style: [styles.submitButton, !pin && styles.submitButtonDisabled],
105
- onPress: handleSubmit,
106
- disabled: !pin
107
- }, /*#__PURE__*/React.createElement(Text, {
108
- style: styles.submitButtonText
109
- }, "Continue"))), /*#__PURE__*/React.createElement(Modal, {
110
- visible: showTooltip,
111
- transparent: true,
112
- animationType: "fade",
113
- onRequestClose: () => setShowTooltip(false)
114
- }, /*#__PURE__*/React.createElement(TouchableWithoutFeedback, {
115
- onPress: () => setShowTooltip(false)
116
- }, /*#__PURE__*/React.createElement(View, {
117
- style: styles.tooltipOverlay
118
- }, /*#__PURE__*/React.createElement(View, {
119
- style: styles.tooltipContainer
120
- }, /*#__PURE__*/React.createElement(Text, {
121
- style: styles.tooltipTitle
122
- }, "About Your PIN"), /*#__PURE__*/React.createElement(Text, {
123
- style: styles.tooltipText
124
- }, "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.createElement(Text, {
125
- style: styles.tooltipText
126
- }, "For maximum security, your PIN should:"), /*#__PURE__*/React.createElement(Text, {
127
- style: styles.tooltipBullet
128
- }, "\u2022 Be at least ", minLength, " characters"), requireSpecialChar && /*#__PURE__*/React.createElement(Text, {
129
- style: styles.tooltipBullet
130
- }, "\u2022 Include special characters like !@#$%^&*()"), requireNumber && /*#__PURE__*/React.createElement(Text, {
131
- style: styles.tooltipBullet
132
- }, "\u2022 Include at least one number"), /*#__PURE__*/React.createElement(Text, {
133
- style: styles.tooltipText
134
- }, "Your PIN is stored securely and encrypted on your device."), /*#__PURE__*/React.createElement(TouchableOpacity, {
135
- style: styles.tooltipButton,
136
- onPress: () => setShowTooltip(false)
137
- }, /*#__PURE__*/React.createElement(Text, {
138
- style: styles.tooltipButtonText
139
- }, "Got it")))))));
140
- };
141
- const styles = StyleSheet.create({
142
- container: {
143
- flex: 1,
144
- padding: 16,
145
- width: width,
146
- backgroundColor: '#fff'
147
- },
148
- header: {
149
- flexDirection: 'row',
150
- alignItems: 'center',
151
- justifyContent: 'space-between',
152
- marginBottom: 16,
153
- paddingVertical: 8
154
- },
155
- backButton: {
156
- padding: 8
157
- },
158
- helpButton: {
159
- padding: 8,
160
- width: 40,
161
- alignItems: 'center'
162
- },
163
- title: {
164
- fontSize: 20,
165
- fontWeight: '600',
166
- color: COLORS.text.primary,
167
- textAlign: 'center',
168
- flex: 1
169
- },
170
- subtitle: {
171
- fontSize: 14,
172
- color: COLORS.text.secondary,
173
- marginBottom: 24,
174
- textAlign: 'center'
175
- },
176
- inputContainer: {
177
- flexDirection: 'row',
178
- alignItems: 'center',
179
- borderWidth: 1,
180
- borderColor: COLORS.border,
181
- borderRadius: 8,
182
- marginBottom: 16
183
- },
184
- input: {
185
- flex: 1,
186
- padding: 12,
187
- fontSize: 16
188
- },
189
- visibilityButton: {
190
- padding: 12
191
- },
192
- error: {
193
- color: COLORS.error,
194
- marginBottom: 16
195
- },
196
- requirements: {
197
- marginBottom: 24
198
- },
199
- requirementTitle: {
200
- fontSize: 14,
201
- fontWeight: '600',
202
- marginBottom: 8,
203
- color: COLORS.text.primary
204
- },
205
- requirement: {
206
- fontSize: 14,
207
- color: COLORS.text.secondary,
208
- marginBottom: 4
209
- },
210
- requirementMet: {
211
- color: COLORS.success
212
- },
213
- footer: {
214
- flexDirection: 'row',
215
- alignItems: 'center',
216
- justifyContent: 'space-between',
217
- marginTop: 24,
218
- borderTopWidth: 1,
219
- borderTopColor: '#eee',
220
- paddingTop: 16
221
- },
222
- cancelButton: {
223
- paddingVertical: 8,
224
- paddingHorizontal: 16
225
- },
226
- cancelButtonText: {
227
- color: '#666',
228
- fontSize: 16
229
- },
230
- submitButton: {
231
- paddingVertical: 16,
232
- paddingHorizontal: 32,
233
- borderRadius: 16,
234
- backgroundColor: COLORS.primary,
235
- borderWidth: 1,
236
- borderColor: COLORS.primary,
237
- alignItems: 'center'
238
- },
239
- submitButtonDisabled: {
240
- opacity: 0.5
241
- },
242
- submitButtonText: {
243
- color: '#fff',
244
- fontSize: 16,
245
- fontWeight: '600'
246
- },
247
- tooltipOverlay: {
248
- flex: 1,
249
- backgroundColor: 'rgba(0, 0, 0, 0.5)',
250
- justifyContent: 'center',
251
- alignItems: 'center',
252
- padding: 20
253
- },
254
- tooltipContainer: {
255
- backgroundColor: '#fff',
256
- borderRadius: 16,
257
- padding: 20,
258
- width: '90%',
259
- maxWidth: 400
260
- },
261
- tooltipTitle: {
262
- fontSize: 18,
263
- fontWeight: '600',
264
- marginBottom: 12,
265
- color: COLORS.text.primary,
266
- textAlign: 'center'
267
- },
268
- tooltipText: {
269
- fontSize: 14,
270
- color: COLORS.text.secondary,
271
- marginBottom: 12
272
- },
273
- tooltipBullet: {
274
- fontSize: 14,
275
- color: COLORS.text.secondary,
276
- marginBottom: 6,
277
- marginLeft: 10
278
- },
279
- tooltipButton: {
280
- backgroundColor: COLORS.primary,
281
- paddingVertical: 12,
282
- paddingHorizontal: 24,
283
- borderRadius: 8,
284
- alignSelf: 'center',
285
- marginTop: 12
286
- },
287
- tooltipButtonText: {
288
- color: '#fff',
289
- fontSize: 16,
290
- fontWeight: '600'
291
- }
292
- });
293
- //# sourceMappingURL=PinInput.js.map
1
+ import React,{useState,useCallback}from'react';import{View,Text,StyleSheet,TextInput,TouchableOpacity,Dimensions,Keyboard,ActivityIndicator}from'react-native';function _0x2ba4(){const _0x10fd33=['get','window','hlYLt','default','This\x20device\x20does\x20not\x20support\x20Face\x20ID\x20or\x20Touch\x20ID.\x20Please\x20enable\x20biometric\x20authentication\x20in\x20your\x20device\x20settings\x20to\x20secure\x20your\x20PIN.','warning','Biometric\x20Authentication\x20Failed','storage-error','Your\x20PIN\x20will\x20be\x20securely\x20stored\x20locally\x20on\x20your\x20device\x20using\x20biometric\x20authentication\x20(Face\x20ID\x20or\x20Touch\x20ID)\x20for\x20enhanced\x20security.','Ewjzs','biometric-unavailable','vxTZM','xHJFB','bPqyG','pQbhn','NgDnn','uTgTo','IdIdP','bvgQf','cWLkI','RTJva','Biometric\x20Authentication\x20Not\x20Available','biometric-failed','Storage\x20Error','info','Secure\x20PIN\x20Storage','Create\x20a\x20PIN','none','👁️','👁️‍🗨️','PIN\x20Requirements:','•\x20At\x20least\x20','•\x20Include\x20a\x20number','error','Back','Continue','XSSbb','LTUBt','iVcaj','MHxRm','useEffect','KOUqN','yajrs','tXLud','VHoRi','pCVMp','RhKPD','catch','leIJR','\x20characters','test','DiRga','HzvPY','muHKn','OOJje','An\x20error\x20occurred\x20while\x20securing\x20your\x20PIN.\x20Would\x20you\x20like\x20to\x20try\x20again?','authenticating','PAVuq','gafJN','owoCn','hVPGy','MrzVR','ZkUPw','log','LBBLf','length','BKTdV','htBTT','PGpty','dRWLT','HgxRJ','wNLhO','gCtJa','SlLDW','UWYDn','vJxVD','DscQR','nlEcz','PIN\x20must\x20be\x20at\x20least\x20','PIN\x20must\x20include\x20a\x20number','tPxwl','JigIs','KGlZm','pmaKh','UoguS','cgxqj','DFzas','Wzhqv','ksNSJ','pIRtM','juIYB','bvSmz','NUmbG','IDBQL','storePinWithBiometric','isPinStored','ibmUa','xVYiy','VTvxv','warn','QHXSG','oArWN','KnTOA','quKQT','DwqQE','LjStl','NOpwT','XHiAY','KgFIs','mWCSV','pSZLf','PIN\x20must\x20include\x20a\x20special\x20character','CmgqS','Fitwf','narQN','tqViW','JvXUw','RoiJn','VrpxN','ubUBR','Dhskh','mXfut','createElement','container','inputSection','backButton','title','bRmnc','backgroundProgressContainer','backgroundProgressIndicator','#007AFF','inputContainer','input','aaUbD','dismiss','visibilityButton','ZCJjD','mZIvE','requirements','requirementTitle','requirement','BNRUp','haLeB','jOMdS','requirementMet','•\x20Include\x20a\x20special\x20character','gDXpp','infoContainer','infoContainerInfo','type','infoContainerError','infoTitle','infoTitleInfo','cHSNb','infoTitleWarning','ckWFN','infoTitleError','ZjLOb','infoMessageWarning','SDsws','aApnB','message','infoActionButton','infoActionButtonText','Try\x20Again','infoActionButtonSecondary','infoActionButtonSecondaryText','Continue\x20Without\x20Biometric','footer','cancelButtonText','knBGn','LFwHp','submitButtonDisabled','submitButtonText','BrWBh','#fff','row','center','space-between','600','#CCCCCC','#E3F2FD','#FFF3E0','#FF9800','#FFEBEE','#F44336','#1976D2','#F57C00','#D32F2F','#E65100','transparent','#FF3B30','#333','#666','#34C759','#eee','#000000'];_0x2ba4=function(){return _0x10fd33;};return _0x2ba4();}import{biometricPinService}from'../services/biometricPinService';const {width}=Dimensions[_0x1895(0x0)](_0x1895(0x1));function _0x1895(_0x2ba447,_0x189512){_0x2ba447=_0x2ba447-0x0;const _0x443f12=_0x2ba4();let _0x512024=_0x443f12[_0x2ba447];return _0x512024;}export const PinInput=({onSubmit:_0x3f9cd1,minLength:minLength=0x8,requireSpecialChar:requireSpecialChar=!![],requireNumber:requireNumber=!![],onBack:_0x34e212,enableBiometricStorage:enableBiometricStorage=!![],onBackgroundTrainingStart:_0x107809,showBackgroundProgress:showBackgroundProgress=![],backgroundProgressText:backgroundProgressText='Training\x20is\x20starting\x20in\x20the\x20background...'})=>{const _0x47d575={'NOpwT':function(_0xf3217a,_0x529686){return _0xf3217a(_0x529686);},'DiRga':'PIN\x20must\x20include\x20a\x20special\x20character','HzvPY':'PIN\x20must\x20include\x20a\x20number','MHxRm':function(_0x5a1e24,_0x38c469){return _0x5a1e24(_0x38c469);},'KOUqN':function(_0x233cf8,_0x3ba5cb){return _0x233cf8===_0x3ba5cb;},'VHoRi':function(_0x12bcd4,_0x1bb1c5){return _0x12bcd4&&_0x1bb1c5;},'pCVMp':_0x1895(0x2),'RhKPD':function(_0x126119){return _0x126119();},'iVcaj':_0x1895(0x3),'cgxqj':function(_0x3ed9b5,_0x2d9090){return _0x3ed9b5(_0x2d9090);},'muHKn':_0x1895(0x4),'cHSNb':_0x1895(0x5),'OOJje':_0x1895(0x6),'xVYiy':_0x1895(0x7),'PAVuq':'Authenticating...','gafJN':'Please\x20complete\x20biometric\x20authentication\x20to\x20secure\x20your\x20PIN.','owoCn':_0x1895(0x8),'hVPGy':function(_0x43cf84,_0x544c15){return _0x43cf84!==_0x544c15;},'MrzVR':_0x1895(0x9),'PvWGg':function(_0x4cd7e9,_0x3352f6){return _0x4cd7e9<_0x3352f6;},'BKTdV':'MfUDj','pmaKh':function(_0x44f3d6){return _0x44f3d6();},'JigIs':function(_0x5bb0c0,_0x19c341){return _0x5bb0c0(_0x19c341);},'KGlZm':function(_0xa36e37,_0x5f0977){return _0xa36e37&&_0x5f0977;},'UoguS':_0x1895(0xa),'DFzas':_0x1895(0xb),'Wzhqv':function(_0x4d5f4c,_0x133940){return _0x4d5f4c(_0x133940);},'ksNSJ':function(_0x241a1b,_0x32d0ee){return _0x241a1b!==_0x32d0ee;},'pIRtM':'fSMjM','juIYB':_0x1895(0xc),'NUmbG':'authenticating','UGEDl':_0x1895(0xd),'fWDXa':_0x1895(0xe),'gIyuu':_0x1895(0xf),'IDBQL':function(_0x55ce3a,_0x9b3c76){return _0x55ce3a(_0x9b3c76);},'Fitwf':function(_0x9ad92a,_0x14787a){return _0x9ad92a(_0x14787a);},'ibmUa':function(_0x2dc665,_0x8aae09){return _0x2dc665(_0x8aae09);},'VTvxv':_0x1895(0x10),'QHXSG':function(_0x42e5e7,_0x492819){return _0x42e5e7(_0x492819);},'nFVCl':function(_0x1ecdf5,_0xe82887){return _0x1ecdf5(_0xe82887);},'DwqQE':'aJvGm','XHiAY':function(_0x5c80ac,_0x304073){return _0x5c80ac(_0x304073);},'KgFIs':function(_0x4913a8,_0x18d7cd){return _0x4913a8(_0x18d7cd);},'pSZLf':_0x1895(0x11),'LTUBt':function(_0x2e0b69,_0x575af9){return _0x2e0b69(_0x575af9);},'CmgqS':_0x1895(0x12),'narQN':function(_0x192b5e,_0x4d5d50){return _0x192b5e!==_0x4d5d50;},'tqViW':_0x1895(0x13),'JvXUw':_0x1895(0x14),'RoiJn':_0x1895(0x15),'VrpxN':_0x1895(0x16),'ubUBR':'Biometric\x20authentication\x20was\x20cancelled\x20or\x20failed.\x20Your\x20PIN\x20needs\x20to\x20be\x20secured\x20with\x20biometric\x20authentication\x20to\x20proceed.','Dhskh':_0x1895(0x17),'QdvSA':'An\x20error\x20occurred\x20while\x20securing\x20your\x20PIN.\x20Would\x20you\x20like\x20to\x20try\x20again?','mXfut':_0x1895(0x18),'sJVys':_0x1895(0x19),'XSSbb':function(_0x4c0831,_0x532e5b){return _0x4c0831(_0x532e5b);},'NnJha':function(_0x1962ab,_0x5b29d3){return _0x1962ab(_0x5b29d3);},'tPxwl':function(_0x40c7ab,_0x20bc82,_0x3cba82){return _0x40c7ab(_0x20bc82,_0x3cba82);},'mWCSV':function(_0x3ec4c3,_0x2997e4,_0x37c53a){return _0x3ec4c3(_0x2997e4,_0x37c53a);},'bRmnc':_0x1895(0x1a),'EioPB':'small','PtTEF':'e.g.\x20MyPin123!','aaUbD':_0x1895(0x1b),'ZCJjD':_0x1895(0x1c),'mZIvE':_0x1895(0x1d),'cubDQ':_0x1895(0x1e),'BNRUp':function(_0x4ac857,_0x245bc5){return _0x4ac857>=_0x245bc5;},'haLeB':_0x1895(0x1f),'jOMdS':'\x20characters','gDXpp':_0x1895(0x20),'mxuPV':function(_0x5d3ef1,_0x207313){return _0x5d3ef1===_0x207313;},'aApnB':_0x1895(0x21),'ckWFN':function(_0x4c4f2e,_0x2dd17b){return _0x4c4f2e===_0x2dd17b;},'ZjLOb':function(_0x14c4b5,_0x3f20bc){return _0x14c4b5===_0x3f20bc;},'uZpYF':function(_0x1f0b94,_0x587e1c){return _0x1f0b94===_0x587e1c;},'SDsws':function(_0xbc70a,_0x28eff9){return _0xbc70a===_0x28eff9;},'knBGn':_0x1895(0x22),'LFwHp':function(_0x512c67,_0x26f133){return _0x512c67||_0x26f133;},'cdsNr':function(_0x3b8752,_0x98927){return _0x3b8752||_0x98927;},'BrWBh':_0x1895(0x23)},[_0x570051,_0x1aef49]=_0x47d575[_0x1895(0x24)](useState,''),[_0x46f8d3,_0x5a3cfe]=_0x47d575['cgxqj'](useState,null),[_0x512d30,_0x32952d]=useState(![]),[_0xbc4ee6,_0x3db709]=_0x47d575[_0x1895(0x25)](useState,![]),[_0x2f0472,_0x280160]=_0x47d575['NnJha'](useState,_0x47d575[_0x1895(0x26)]),[_0x129392,_0x11efc4]=_0x47d575[_0x1895(0x27)](useState,![]);React[_0x1895(0x28)](()=>{const _0x154b61={'leIJR':function(_0x5ab71c,_0xce5df2){return _0x47d575['MHxRm'](_0x5ab71c,_0xce5df2);}};if(_0x47d575[_0x1895(0x29)](_0x1895(0x2a),_0x1895(0x2b)))_0x3b8566[_0x1895(0x21)]('\u274C [PIN INPUT] Background training failed:',_0x1bec89),_0x47d575['NOpwT'](_0x3cf09b,![]);else{if(_0x47d575[_0x1895(0x2c)](_0x107809,!_0x129392)&&showBackgroundProgress){if(_0x47d575[_0x1895(0x2d)]===_0x1895(0x2))console['log']('\uD83D\uDE80 [PIN INPUT] Background training explicitly requested...'),_0x11efc4(!![]),_0x47d575[_0x1895(0x2e)](_0x107809)[_0x1895(0x2f)](_0x59570d=>{console[_0x1895(0x21)]('\u274C [PIN INPUT] Background training failed:',_0x59570d),_0x154b61[_0x1895(0x30)](_0x11efc4,![]);});else{if(_0x8d18d3['length']<_0x49f6dc)return'PIN\x20must\x20be\x20at\x20least\x20'+_0x1d28f1+_0x1895(0x31);if(_0x431eaa&&!/[!@#$%^&*(),.?":{}|<>]/[_0x1895(0x32)](_0x1c1620))return _0x47d575[_0x1895(0x33)];if(_0x7c490&&!/\d/[_0x1895(0x32)](_0x2f6666))return _0x47d575[_0x1895(0x34)];return null;}}}},[_0x107809,_0x129392,showBackgroundProgress]);const _0x1e24d0=useCallback(_0x55e202=>{const _0x4072ed={'ZkUPw':function(_0x2c8441,_0x4478e8){return _0x47d575['NOpwT'](_0x2c8441,_0x4478e8);},'IedJY':_0x47d575[_0x1895(0x26)],'LBBLf':function(_0x344baa,_0x404e27){return _0x47d575['cgxqj'](_0x344baa,_0x404e27);},'htBTT':'Biometric\x20Authentication\x20Not\x20Available','PGpty':_0x47d575[_0x1895(0x35)],'dRWLT':_0x47d575['cHSNb'],'HgxRJ':_0x1895(0x16),'tiXhL':_0x47d575[_0x1895(0x36)],'wNLhO':_0x47d575['xVYiy'],'gCtJa':_0x1895(0x17),'SlLDW':_0x1895(0x37),'ijVHI':_0x1895(0x38),'UWYDn':_0x47d575[_0x1895(0x39)],'vJxVD':_0x47d575[_0x1895(0x3a)],'DscQR':_0x1895(0x19),'nlEcz':_0x47d575[_0x1895(0x3b)]};if(_0x47d575[_0x1895(0x3c)](_0x1895(0x9),_0x47d575[_0x1895(0x3d)]))_0x4072ed[_0x1895(0x3e)](_0x1c6115,_0x1a82b2),_0x1ef576(null),_0x4072ed[_0x1895(0x3e)](_0x35f6b4,_0x4072ed['IedJY']),_0x487286[_0x1895(0x3f)]('\uD83D\uDD0D [PIN INPUT] PIN changed:',{'length':_0x2ed3b8['length'],'hasSpecialChar':/[!@#$%^&*(),.?":{}|<>]/[_0x1895(0x32)](_0x17e0bc),'hasNumber':/\d/[_0x1895(0x32)](_0x38b434),'isValid':!_0x4072ed[_0x1895(0x40)](_0x185cd3,_0x344fd3)});else{if(_0x47d575['PvWGg'](_0x55e202[_0x1895(0x41)],minLength)){if(_0x47d575['hVPGy'](_0x47d575['BKTdV'],_0x47d575[_0x1895(0x42)]))switch(_0xbb8933){case _0x1895(0xa):return{'title':_0x4072ed[_0x1895(0x43)],'message':_0x4072ed[_0x1895(0x44)],'type':_0x4072ed[_0x1895(0x45)],'showActions':!![]};case _0x4072ed[_0x1895(0x46)]:return{'title':_0x4072ed['tiXhL'],'message':'Biometric\x20authentication\x20was\x20cancelled\x20or\x20failed.\x20Your\x20PIN\x20needs\x20to\x20be\x20secured\x20with\x20biometric\x20authentication\x20to\x20proceed.','type':'warning','showActions':!![]};case _0x4072ed[_0x1895(0x47)]:return{'title':_0x4072ed[_0x1895(0x48)],'message':_0x4072ed[_0x1895(0x49)],'type':'error','showActions':!![]};case _0x4072ed['ijVHI']:return{'title':_0x4072ed[_0x1895(0x4a)],'message':_0x4072ed[_0x1895(0x4b)],'type':_0x1895(0x18),'showActions':![]};default:return{'title':_0x4072ed[_0x1895(0x4c)],'message':_0x4072ed[_0x1895(0x4d)],'type':_0x1895(0x18),'showActions':![]};}else return _0x1895(0x4e)+minLength+_0x1895(0x31);}if(requireSpecialChar&&!/[!@#$%^&*(),.?":{}|<>]/['test'](_0x55e202))return _0x47d575[_0x1895(0x33)];if(requireNumber&&!/\d/[_0x1895(0x32)](_0x55e202))return _0x1895(0x4f);return null;}},[minLength,requireSpecialChar,requireNumber]),_0x21edda=_0x47d575[_0x1895(0x50)](useCallback,async()=>{const _0x27bedb={'bvSmz':function(_0x19de8b,_0x4f1c9e){return _0x47d575[_0x1895(0x51)](_0x19de8b,_0x4f1c9e);},'oArWN':function(_0x1e1ea8,_0x33305d){return _0x47d575[_0x1895(0x52)](_0x1e1ea8,_0x33305d);},'KnTOA':function(_0x515d5b){return _0x47d575[_0x1895(0x53)](_0x515d5b);},'quKQT':_0x47d575[_0x1895(0x54)],'BbBGB':function(_0x4342e0,_0x407384){return _0x47d575[_0x1895(0x55)](_0x4342e0,_0x407384);},'LjStl':_0x47d575['xVYiy'],'krqcC':function(_0x34d080,_0x47fe26){return _0x34d080(_0x47fe26);}};if(_0x47d575['DFzas']!==_0x47d575[_0x1895(0x56)])_0x2603cc['log']('\uD83D\uDE80 [PIN INPUT] Background training explicitly requested...'),_0x47d575['MHxRm'](_0x35ab68,!![]),_0x47d575[_0x1895(0x53)](_0x25b2fb)[_0x1895(0x2f)](_0x56b8d8=>{_0x569c5b[_0x1895(0x21)]('\u274C [PIN INPUT] Background training failed:',_0x56b8d8),_0x3a14a9(![]);});else{console[_0x1895(0x3f)]('\uD83D\uDD0D [PIN INPUT] handleSubmit called with PIN length:',_0x570051[_0x1895(0x41)]);const _0x1d93df=_0x47d575[_0x1895(0x57)](_0x1e24d0,_0x570051);if(_0x1d93df){if(_0x47d575[_0x1895(0x58)](_0x47d575[_0x1895(0x59)],_0x47d575[_0x1895(0x5a)])){console[_0x1895(0x3f)]('\u274C [PIN INPUT] Validation failed:',_0x1d93df),_0x47d575[_0x1895(0x27)](_0x5a3cfe,_0x1d93df);return;}else _0x4a821b[_0x1895(0x3f)]('\uD83D\uDD10 [PIN INPUT] Biometric storage disabled, proceeding normally'),_0x27bedb[_0x1895(0x5b)](_0x593f15,_0x5f6bec);}console[_0x1895(0x3f)]('\u2705 [PIN INPUT] PIN validation passed');if(enableBiometricStorage){console['log']('\uD83D\uDD10 [PIN INPUT] Biometric storage enabled, starting biometric flow...'),_0x47d575[_0x1895(0x51)](_0x3db709,!![]),_0x47d575[_0x1895(0x57)](_0x280160,_0x47d575[_0x1895(0x5c)]);try{if(_0x47d575[_0x1895(0x29)](_0x47d575['UGEDl'],_0x47d575['UGEDl'])){const _0x2bdf8d=await biometricPinService['isBiometricAvailable']();console[_0x1895(0x3f)]('\uD83D\uDCF1 [PIN INPUT] Biometric available:',_0x2bdf8d);if(!_0x2bdf8d){if(_0x47d575['fWDXa']===_0x47d575['gIyuu'])return'PIN\x20must\x20include\x20a\x20number';else{console[_0x1895(0x21)]('\u274C [PIN INPUT] Face ID not available on this device'),_0x47d575[_0x1895(0x5d)](_0x280160,_0x47d575[_0x1895(0x54)]),_0x47d575[_0x1895(0x55)](_0x3db709,![]);return;}}console[_0x1895(0x3f)]('\uD83D\uDD10 [PIN INPUT] Triggering biometric authentication for PIN storage...');const _0x33a2e3=await biometricPinService[_0x1895(0x5e)](_0x570051);if(_0x33a2e3){console['log']('\u2705 [PIN INPUT] PIN stored successfully with biometric protection');const _0x58b2df=await biometricPinService[_0x1895(0x5f)]();_0x58b2df?(console[_0x1895(0x3f)]('\u2705 [PIN INPUT] PIN storage verified - proceeding with onboarding'),_0x47d575['Fitwf'](_0x3f9cd1,_0x570051)):(console['error']('\u274C [PIN INPUT] PIN storage verification failed'),_0x47d575[_0x1895(0x60)](_0x280160,_0x47d575[_0x1895(0x61)]),_0x3db709(![]));}else _0x47d575['KOUqN'](_0x47d575[_0x1895(0x62)],_0x47d575[_0x1895(0x62)])?(console[_0x1895(0x63)]('\u26A0️ [PIN INPUT] Biometric authentication failed or was cancelled'),_0x47d575[_0x1895(0x64)](_0x280160,_0x1895(0x16)),_0x47d575['nFVCl'](_0x3db709,![])):_0x27bedb[_0x1895(0x65)](_0x5e2a04,!_0x2ace28)&&_0x5152b4&&(_0x23399d[_0x1895(0x3f)]('\uD83D\uDE80 [PIN INPUT] Background training explicitly requested...'),_0x2acd9f(!![]),_0x27bedb[_0x1895(0x66)](_0x87d13f)[_0x1895(0x2f)](_0x3489a3=>{_0x7231d7[_0x1895(0x21)]('\u274C [PIN INPUT] Background training failed:',_0x3489a3),_0x27bedb['bvSmz'](_0x301a1a,![]);}));}else{_0x22b298[_0x1895(0x21)]('\u274C [PIN INPUT] Face ID not available on this device'),_0x5f3aea(_0x27bedb[_0x1895(0x67)]),_0x27bedb[_0x1895(0x5b)](_0x49e0dd,![]);return;}}catch(_0x3bf77c){_0x47d575[_0x1895(0x29)](_0x47d575[_0x1895(0x68)],_0x47d575[_0x1895(0x68)])?(console[_0x1895(0x21)]('\u274C [PIN INPUT] Error handling biometric PIN storage:',_0x3bf77c),_0x280160(_0x47d575[_0x1895(0x61)]),_0x47d575[_0x1895(0x64)](_0x3db709,![])):(_0x3bd05f['error']('\u274C [PIN INPUT] PIN storage verification failed'),_0x27bedb['BbBGB'](_0x97ec70,_0x27bedb[_0x1895(0x69)]),_0x27bedb['krqcC'](_0x52de51,![]));}}else console['log']('\uD83D\uDD10 [PIN INPUT] Biometric storage disabled, proceeding normally'),_0x47d575[_0x1895(0x6a)](_0x3f9cd1,_0x570051);}},[_0x570051,_0x1e24d0,_0x3f9cd1,enableBiometricStorage]),_0xa084d6=useCallback(_0x4ae2de=>{_0x47d575[_0x1895(0x6b)](_0x1aef49,_0x4ae2de),_0x47d575[_0x1895(0x5d)](_0x5a3cfe,null),_0x47d575[_0x1895(0x6c)](_0x280160,_0x1895(0x3)),console[_0x1895(0x3f)]('\uD83D\uDD0D [PIN INPUT] PIN changed:',{'length':_0x4ae2de['length'],'hasSpecialChar':/[!@#$%^&*(),.?":{}|<>]/[_0x1895(0x32)](_0x4ae2de),'hasNumber':/\d/['test'](_0x4ae2de),'isValid':!_0x47d575['Wzhqv'](_0x1e24d0,_0x4ae2de)});},[_0x1e24d0]),_0x2192c8=_0x47d575[_0x1895(0x6d)](useCallback,()=>{if(_0x47d575[_0x1895(0x6e)]!==_0x1895(0x11))return _0x1895(0x6f);else console['warn']('\u26A0️ [PIN INPUT] User chose to continue without biometric security'),_0x47d575['LTUBt'](_0x3f9cd1,_0x570051);},[_0x570051,_0x3f9cd1]),_0x5b239b=_0x47d575['mWCSV'](useCallback,()=>{if(_0x47d575[_0x1895(0x70)]!=='PgVji')_0x47d575[_0x1895(0x51)](_0x280160,_0x1895(0x3)),_0x47d575['RhKPD'](_0x21edda);else{_0x4df3fb['log']('\u274C [PIN INPUT] Validation failed:',_0x3e510e),_0x47d575[_0x1895(0x71)](_0x16a9ed,_0x57a19e);return;}},[_0x21edda]),_0x1fa94e=()=>{if(_0x47d575[_0x1895(0x72)](_0x47d575[_0x1895(0x73)],_0x47d575[_0x1895(0x74)]))switch(_0x2f0472){case _0x47d575[_0x1895(0x54)]:return{'title':_0x47d575[_0x1895(0x75)],'message':'This\x20device\x20does\x20not\x20support\x20Face\x20ID\x20or\x20Touch\x20ID.\x20Please\x20enable\x20biometric\x20authentication\x20in\x20your\x20device\x20settings\x20to\x20secure\x20your\x20PIN.','type':_0x1895(0x5),'showActions':!![]};case _0x47d575[_0x1895(0x76)]:return{'title':_0x47d575[_0x1895(0x36)],'message':_0x47d575[_0x1895(0x77)],'type':_0x1895(0x5),'showActions':!![]};case _0x47d575[_0x1895(0x61)]:return{'title':_0x47d575[_0x1895(0x78)],'message':_0x47d575['QdvSA'],'type':'error','showActions':!![]};case _0x47d575[_0x1895(0x5c)]:return{'title':_0x47d575[_0x1895(0x39)],'message':'Please\x20complete\x20biometric\x20authentication\x20to\x20secure\x20your\x20PIN.','type':_0x47d575[_0x1895(0x79)],'showActions':![]};default:return{'title':_0x47d575['sJVys'],'message':_0x47d575[_0x1895(0x3b)],'type':_0x47d575['mXfut'],'showActions':![]};}else return _0x1895(0x4e)+_0x1b5aba+_0x1895(0x31);},_0x303cc0=_0x1fa94e();return React[_0x1895(0x7a)](View,{'style':styles[_0x1895(0x7b)]},React[_0x1895(0x7a)](View,{'style':styles[_0x1895(0x7c)]},React[_0x1895(0x7a)](View,{'style':styles['header']},_0x34e212&&React[_0x1895(0x7a)](TouchableOpacity,{'style':styles[_0x1895(0x7d)],'onPress':_0x34e212},React[_0x1895(0x7a)](Text,{'style':{'fontSize':0x18}},'←')),React[_0x1895(0x7a)](Text,{'style':styles[_0x1895(0x7e)]},_0x47d575[_0x1895(0x7f)])),React[_0x1895(0x7a)](Text,{'style':styles['subtitle']},'A\x20PIN\x20so\x20only\x20you\x20have\x20access\x20to\x20your\x20data'),showBackgroundProgress&&_0x129392&&React[_0x1895(0x7a)](View,{'style':styles[_0x1895(0x80)]},React[_0x1895(0x7a)](Text,{'style':styles['backgroundProgressText']},backgroundProgressText),React['createElement'](View,{'style':styles[_0x1895(0x81)]},React[_0x1895(0x7a)](ActivityIndicator,{'size':_0x47d575['EioPB'],'color':_0x1895(0x82)}))),React[_0x1895(0x7a)](View,{'style':styles[_0x1895(0x83)]},React['createElement'](TextInput,{'style':styles[_0x1895(0x84)],'value':_0x570051,'onChangeText':_0xa084d6,'secureTextEntry':!_0x512d30,'placeholder':_0x47d575['PtTEF'],'keyboardType':_0x47d575[_0x1895(0x26)],'maxLength':0x14,'autoCapitalize':_0x47d575[_0x1895(0x85)],'autoCorrect':![],'returnKeyType':'done','onSubmitEditing':()=>Keyboard[_0x1895(0x86)]()}),React[_0x1895(0x7a)](TouchableOpacity,{'style':styles[_0x1895(0x87)],'onPress':()=>_0x32952d(!_0x512d30)},React[_0x1895(0x7a)](Text,null,_0x512d30?_0x47d575[_0x1895(0x88)]:_0x47d575[_0x1895(0x89)])))),_0x46f8d3&&React['createElement'](Text,{'style':styles[_0x1895(0x21)]},_0x46f8d3),React[_0x1895(0x7a)](View,{'style':styles[_0x1895(0x8a)]},React[_0x1895(0x7a)](Text,{'style':styles[_0x1895(0x8b)]},_0x47d575['cubDQ']),React[_0x1895(0x7a)](Text,{'style':[styles[_0x1895(0x8c)],_0x47d575[_0x1895(0x8d)](_0x570051[_0x1895(0x41)],minLength)&&styles['requirementMet']]},_0x47d575[_0x1895(0x8e)],minLength,_0x47d575[_0x1895(0x8f)]),requireSpecialChar&&React[_0x1895(0x7a)](Text,{'style':[styles['requirement'],/[!@#$%^&*(),.?":{}|<>]/[_0x1895(0x32)](_0x570051)&&styles[_0x1895(0x90)]]},_0x1895(0x91)),requireNumber&&React['createElement'](Text,{'style':[styles[_0x1895(0x8c)],/\d/['test'](_0x570051)&&styles[_0x1895(0x90)]]},_0x47d575[_0x1895(0x92)])),React[_0x1895(0x7a)](View,{'style':[styles[_0x1895(0x93)],_0x47d575['mxuPV'](_0x303cc0['type'],_0x47d575[_0x1895(0x79)])&&styles[_0x1895(0x94)],_0x47d575['mxuPV'](_0x303cc0[_0x1895(0x95)],_0x1895(0x5))&&styles['infoContainerWarning'],_0x303cc0[_0x1895(0x95)]===_0x47d575['aApnB']&&styles[_0x1895(0x96)]]},React[_0x1895(0x7a)](Text,{'style':[styles[_0x1895(0x97)],_0x303cc0[_0x1895(0x95)]===_0x47d575[_0x1895(0x79)]&&styles[_0x1895(0x98)],_0x47d575[_0x1895(0x29)](_0x303cc0[_0x1895(0x95)],_0x47d575[_0x1895(0x99)])&&styles[_0x1895(0x9a)],_0x47d575[_0x1895(0x9b)](_0x303cc0['type'],_0x1895(0x21))&&styles[_0x1895(0x9c)]]},_0x303cc0[_0x1895(0x7e)]),React[_0x1895(0x7a)](Text,{'style':[styles['infoMessage'],_0x47d575[_0x1895(0x9d)](_0x303cc0[_0x1895(0x95)],_0x47d575[_0x1895(0x79)])&&styles['infoMessageInfo'],_0x47d575['uZpYF'](_0x303cc0[_0x1895(0x95)],_0x1895(0x5))&&styles[_0x1895(0x9e)],_0x47d575[_0x1895(0x9f)](_0x303cc0[_0x1895(0x95)],_0x47d575[_0x1895(0xa0)])&&styles['infoMessageError']]},_0x303cc0[_0x1895(0xa1)]),_0x303cc0['showActions']&&React[_0x1895(0x7a)](View,{'style':styles['infoActions']},React[_0x1895(0x7a)](TouchableOpacity,{'style':styles[_0x1895(0xa2)],'onPress':_0x5b239b},React['createElement'](Text,{'style':styles[_0x1895(0xa3)]},_0x1895(0xa4))),React['createElement'](TouchableOpacity,{'style':[styles[_0x1895(0xa2)],styles[_0x1895(0xa5)]],'onPress':_0x2192c8},React[_0x1895(0x7a)](Text,{'style':[styles['infoActionButtonText'],styles[_0x1895(0xa6)]]},_0x1895(0xa7))))),React[_0x1895(0x7a)](View,{'style':styles[_0x1895(0xa8)]},_0x34e212&&React[_0x1895(0x7a)](TouchableOpacity,{'style':styles['cancelButton'],'onPress':_0x34e212},React['createElement'](Text,{'style':styles[_0x1895(0xa9)]},_0x47d575[_0x1895(0xaa)])),React[_0x1895(0x7a)](TouchableOpacity,{'style':[styles['submitButton'],(_0x47d575[_0x1895(0xab)](!_0x570051,_0xbc4ee6)||_0x1e24d0(_0x570051))&&styles[_0x1895(0xac)]],'onPress':_0x21edda,'disabled':_0x47d575['cdsNr'](!_0x570051,_0xbc4ee6)||!!_0x47d575[_0x1895(0x51)](_0x1e24d0,_0x570051)},React[_0x1895(0x7a)](Text,{'style':styles[_0x1895(0xad)]},_0xbc4ee6?_0x47d575[_0x1895(0x39)]:_0x47d575[_0x1895(0xae)]))));};const styles=StyleSheet['create']({'container':{'flex':0x1,'padding':0x10,'width':width,'backgroundColor':_0x1895(0xaf),'justifyContent':'flex-start'},'inputSection':{'width':'100%','marginTop':0x0,'paddingTop':0x0},'header':{'flexDirection':_0x1895(0xb0),'alignItems':_0x1895(0xb1),'justifyContent':_0x1895(0xb2),'marginBottom':0x10,'paddingVertical':0x8},'backButton':{'padding':0x8},'title':{'fontSize':0x14,'fontWeight':_0x1895(0xb3),'color':'#333','textAlign':_0x1895(0xb1),'flex':0x1,'marginBottom':0x8},'subtitle':{'fontSize':0xe,'color':'#666','marginBottom':0x18,'textAlign':_0x1895(0xb1)},'inputContainer':{'flexDirection':_0x1895(0xb0),'alignItems':_0x1895(0xb1),'borderWidth':0x1,'borderColor':_0x1895(0xb4),'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':_0x1895(0xb5),'borderColor':'#2196F3'},'infoContainerWarning':{'backgroundColor':_0x1895(0xb6),'borderColor':_0x1895(0xb7)},'infoContainerError':{'backgroundColor':_0x1895(0xb8),'borderColor':_0x1895(0xb9)},'infoTitle':{'fontSize':0x10,'fontWeight':_0x1895(0xb3),'marginBottom':0x8},'infoTitleInfo':{'color':_0x1895(0xba)},'infoTitleWarning':{'color':_0x1895(0xbb)},'infoTitleError':{'color':_0x1895(0xbc)},'infoMessage':{'fontSize':0xe,'lineHeight':0x14,'marginBottom':0xc},'infoMessageInfo':{'color':'#1565C0'},'infoMessageWarning':{'color':_0x1895(0xbd)},'infoMessageError':{'color':'#C62828'},'infoActions':{'flexDirection':_0x1895(0xb0),'justifyContent':_0x1895(0xb2),'marginTop':0x8},'infoActionButton':{'flex':0x1,'paddingVertical':0xa,'paddingHorizontal':0x10,'borderRadius':0x8,'backgroundColor':_0x1895(0x82),'marginHorizontal':0x4,'alignItems':_0x1895(0xb1)},'infoActionButtonSecondary':{'backgroundColor':_0x1895(0xbe),'borderWidth':0x1,'borderColor':_0x1895(0x82)},'infoActionButtonText':{'color':'#fff','fontSize':0xe,'fontWeight':_0x1895(0xb3)},'infoActionButtonSecondaryText':{'color':_0x1895(0x82)},'error':{'color':_0x1895(0xbf),'marginBottom':0x10},'requirements':{'marginBottom':0x18},'requirementTitle':{'fontSize':0xe,'fontWeight':_0x1895(0xb3),'marginBottom':0x8,'color':_0x1895(0xc0)},'requirement':{'fontSize':0xe,'color':_0x1895(0xc1),'marginBottom':0x4},'requirementMet':{'color':_0x1895(0xc2)},'footer':{'flexDirection':_0x1895(0xb0),'alignItems':_0x1895(0xb1),'justifyContent':_0x1895(0xb2),'marginTop':0x18,'borderTopWidth':0x1,'borderTopColor':_0x1895(0xc3),'paddingTop':0x10},'cancelButton':{'paddingVertical':0x8,'paddingHorizontal':0x10},'cancelButtonText':{'color':_0x1895(0xc1),'fontSize':0x10},'submitButton':{'paddingVertical':0x10,'paddingHorizontal':0x20,'borderRadius':0x10,'backgroundColor':_0x1895(0xc4),'alignItems':_0x1895(0xb1)},'submitButtonDisabled':{'opacity':0.5},'submitButtonText':{'color':_0x1895(0xaf),'fontSize':0x10,'fontWeight':_0x1895(0xb3)},'backgroundProgressContainer':{'flexDirection':_0x1895(0xb0),'alignItems':_0x1895(0xb1),'justifyContent':_0x1895(0xb1),'marginBottom':0x10},'backgroundProgressText':{'fontSize':0xe,'color':_0x1895(0xc1),'marginRight':0xa},'backgroundProgressIndicator':{'padding':0x5}});
@@ -0,0 +1,7 @@
1
+
2
+ // Onairos SDK - Asset Registry (auto-generated)
3
+ var __ONAIROS_REQ_REGISTRY__ = [
4
+ require('react-native')
5
+ ];
6
+ function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
7
+ import React,{useState,useEffect,useRef,useCallback}from'react';import{View,Text,StyleSheet,ScrollView,Vibration,TouchableOpacity,Image,Animated}from'react-native';import{COLORS,SPACING}from'../theme';import{triggerHaptic,HapticType}from'../utils/haptics';import _0x1b6dcf from'./PersonaImage';import _0x44726c from'./PrimaryButton';function _0x2457(){const _0x174a90=['Never\x20again','daily','weekly','Once\x20a\x20week','biweekly','Once\x20every\x20two\x20weeks','SFdpi','✅\x20[PLATFORMS]\x20Loaded\x20from\x20user_connected_platforms:','❌\x20[STORAGE]\x20Error\x20saving\x20to\x20user_connected_platforms:','IVOvn','🔄\x20[PLATFORMS]\x20Loading\x20connected\x20platforms\x20from\x20storage...','platform_account_details','DyjJS','cGPkb','✅\x20[PLATFORMS]\x20Loaded\x20from\x20platform_account_details:','grok','@onairos:linkedin_connected','ZKWzI','mYqja','✅\x20[PLATFORMS]\x20Loaded\x20LinkedIn\x20connection','VBMos','❌\x20[PLATFORMS]\x20Error\x20loading\x20connected\x20platforms\x20from\x20storage:','VybHN','KqxXW','nMYHj','onairos_username','DUfLH','auEpP','yBOzm','connecting','Highly\x20Recommended','#10B981','#9CA3AF','pfCpq','IBlfj','VpUps','linkedin','https://www.linkedin.com/login','kWABX','cAQBp','HLBeg','uVhnt','❌\x20[TOGGLE]\x20No\x20username\x20available\x20-\x20cannot\x20proceed\x20with\x20OAuth','akUKR','LFZRq','QasTM','OgyZt','TWaVh','❌\x20[STORAGE]\x20Error\x20removing\x20from\x20user_connected_platforms:','SqquF','SvgmV','Xdsus','xqAfF','qxreR','nJWfP','https://privacy.onairos.io/','eqCYJ','success','error','nFFaP','eqsdn','QhnUT','eCbrO','CIBdH','FBKmN','XpniJ','XDwMC','ThKVX','kPOcf','SET\x20(','zeHiT','gncLs','youtube','czxyK','Initializing...','Use\x20your\x20watch\x20history,\x20likes,\x20and\x20subscriptions\x20to\x20enrich\x20your\x20model.','reddit','Reddit','Use\x20your\x20posts\x20and\x20comments\x20to\x20enrich\x20your\x20model.','Pinterest','Use\x20your\x20pins,\x20boards,\x20and\x20interests\x20to\x20enrich\x20your\x20model.','LinkedIn','Use\x20your\x20professional\x20network\x20and\x20career\x20interests\x20to\x20enrich\x20your\x20model.','Gmail','ChatGPT','Use\x20your\x20ChatGPT\x20conversations\x20and\x20memories\x20to\x20enrich\x20your\x20model.','claude','Claude','Use\x20your\x20Claude\x20conversations\x20to\x20enrich\x20your\x20model.','Gemini','Use\x20your\x20Gemini\x20conversations\x20to\x20enrich\x20your\x20model.','Use\x20your\x20Grok\x20conversations\x20from\x20X\x20to\x20enrich\x20your\x20model.','Mshzq','BDcQc','Connect\x20platforms','More\x20connections,\x20smarter\x20personalization.','normal','Model\x20Refresh\x20Frequency','How\x20often\x20should\x20your\x20model\x20be\x20refreshed\x20with\x20platform\x20data?','Skip','Use\x20different\x20account','lAmek','FxthX','HYAyU','Value','current','fBlbZ','jGbVU','EYoJT','aZHJn','DPTlA','nlIJE','qTLLP','NLbPI','UCOpn','pvCoB','ODPwo','Xtgkp','YZyZi','dTfKH','BKTrd','lNTLz','xnwWM','pJTil','DPMVS','hHasW','yjUeW','ypBrb','EvFos','has','add','ttlmT','...)','RWDRW','LUDtm','EucXw','VMRRH','JPubj','LGEjr','krWAk','ycybR','MImcm','getItem','mtDsf','parse','isArray','IrQCb','Rasvb','dusTt','XZUIh','foesB','platform','pgHeJ','toLowerCase','includes','lzHtl','push','📊\x20[STATE]\x20WebView\x20state\x20changed\x20-\x20showOAuthWebView:\x20','FbbrY','EjWyY','substring','zxIDf','igeVf','log','Uzxjw','map','uONpN','wYLQD','khfyc','@onairos:llm_connected:','connected','OHkoF','aAfMK','tQTbt','✅\x20[PLATFORMS]\x20Loaded\x20LLM\x20platform:\x20','ypVVj','xoeUd','hXOlZ','hUZcJ','iJMEN','OkfzQ','forEach','BruDU','CUotB','from','mCKcc','NkDtq','pUdZK','UrayY','OlUNG','AkCjE','vwluT','cyVjP','VyLgF','eFhXQ','tGzQh','size','XeXUG','qVoQv','email','hMnmv','split','hwQVw','name','vrUro','random','setItem','❌\x20[TOGGLE]\x20OAuth\x20failed\x20for\x20','siIEc','kvmNn','ERROR','mobile_user_','floor','jIdad','user_','hXrar','loop','timing','start','hLLYD','nativeEvent','contentOffset','layoutMeasurement','width','swlPJ','UJUUf','kvnSK','KzUiJ','TLXsp','RJSdC','PBCjl','tgoRY','mIdlm','wiqmu','Ciryn','alxuA','mJTQo','jVAoo','DmZBn','Euqhd','gmail','fOggi','CoCaz','chatgpt','grleP','PDBkj','nKvlk','JZZNk','gemini','MpmBL','filter','aaJDo','tlSAs','length','ICCwa','find','HUsWj','wqfgs','BUTTON_PRESS','HPDoi','XhRsp','wPhtf','tptmb','createElement','platformCard','platformCardTitle','recommendedBadge','recommendedBadgeText','BtoFc','customToggleTrack','VmgoC','ojCpB','description','zOnIK','GVeLu','FJJog','nGapm','UEAkC','🔄\x20[TOGGLE]\x20Platform\x20toggle:\x20','\x20=\x20','cRtJO','ePhhE','\x22,\x20state:\x20\x22','trim','rOQNv','CUTaz','jCZGh','wsmgb','cSHHh','\x20login\x20and\x20export...','dTSxN','🌐\x20[LLM]\x20Opening\x20','\x20URL:','dhZmQ','❌\x20[LLM]\x20No\x20URL\x20configured\x20for\x20platform:\x20','esCnB','Mmjab','mmGJP','RXzYK','TGerU','hqWef','evkQZ','SUCCESS','otTFB','UONPj','🌐\x20[TOGGLE]\x20Starting\x20OAuth\x20flow\x20for\x20','...','🔗\x20[TOGGLE]\x20OAuth\x20URL\x20result\x20for\x20','NULL','✅\x20[TOGGLE]\x20Setting\x20WebView\x20state\x20-\x20showing\x20modal\x20for\x20','mjrJT','\x20-\x20no\x20URL\x20returned','yoDod','KTQMP','itqvw','delete','disconnected','CePDX','VVVSi','user_connected_platforms','stringify','✅\x20[STORAGE]\x20Removed\x20','\x20from\x20user_connected_platforms:','EiAqm','UeyAJ','rQPvs','removeItem','LvFVf','CgdbB','💼\x20[LINKEDIN]\x20Opening\x20WebView\x20for\x20LinkedIn\x20login...','ORBQr','CkRxu','uxNyP','bdJaA','EOpqE','Error\x20toggling\x20platform\x20','hMUKA','VxgWR','uGCLm','BvOYH','czkak','wWadC','myoeI','qRaeR','MlywB','zQNLL','PyBAE','ucyYr','dYOaR','@onairos:model_refresh_frequency','✅\x20[REFRESH]\x20Model\x20refresh\x20frequency\x20set\x20to:\x20','❌\x20[REFRESH]\x20Error\x20saving\x20refresh\x20frequency:','HubMy','aNIuv','wXIkE','Gctxy','Linking','ekBYK','KczdL','ZShhl','DPGTV','qNrNi','qMVOh','OqJro','stDgS','mpjII','uySUl','nPGQs','TCxTg','VfFkX','lnrVw','lDDcs','Aevtl','VktMN','✅\x20[STORAGE]\x20Added\x20','\x20to\x20user_connected_platforms:','✅\x20[LLM]\x20','wDhbr','VtBBp','QolYH','IohTE','aNpjP','xhePI','iSCiS','MzxRA','xNqps','✅\x20[PERSONA]\x20Applied\x20pending\x20connection:\x20','uVtMM','TiNdQ','fzqtm','Dgndv','UXUvf','VpzbS','xdSZS','gYKUt','FFXsU','YbZBz','Trrur','rEuqy','lfFJf','gxBHl','KmMJO','vibrate','bjmJb','Bpumw','lFwSh','KJlfP','hzjwm','HXylD','setValue','oCKnp','BQSxj','pZSbI','TrOrS','elARn','exbsI','RgHGM','yFUzq','sZiKl','GtzAn','Onxed','sTPCX','spTQA','DwTVn','WBuIE','eosYO','PqOvC','NRNGL','✅\x20[WEBVIEW]\x20Rendering\x20OAuthWebView\x20for\x20','\x20with\x20URL:\x20','qIqeX','MkoGi','FmWQG','GVZGr','container','headingContainer','EGRJP','eJiZz','personaContainer','platformIconsScrollContent','JCwjT','IGZtz','platformIconButton','platformIconButtonSelected','qMguQ','CoFzg','youtubeIcon','gmailIcon','ahhmr','Iauax','claudeIcon','rXnvx','connectingDot','connectedDot','sequence','pageIndicatorContainer','scrollBarTrack','scrollBarThumb','View','interpolate','scrollIndicatorText','cardContainer','cardHeader','descriptionContainer','platformCardDescription','refreshFrequencySection','refreshFrequencyTitle','PXDGI','refreshFrequencyDescription','JNwkq','refreshOptionsContainer','value','refreshOptionSelected','refreshRadio','refreshRadioSelected','refreshRadioInner','refreshOptionText','refreshOptionTextSelected','label','privacyLinkText','View\x20Privacy\x20Policy\x20→','bottomButtonContainer','buttonWrapper','Continue','bdaMb','buttonOverlay','NtQAY','VevQS','jpfNH','hfEVU','openURL','izIxv','skipButton','skipButtonText','logoutButton','logoutButtonText','mTYno','create','surface','IBM\x20Plex\x20Sans','700','grey800','Inter','400','grey600','left','center','relative','absolute','100%','row','#FFFFFF','transparent','#000','#FFA500','space-between','#EFF6FF','600','#2563EB','auto','#F9FAFB','#E5E7EB','#8B5CF6','#F5F3FF','#D1D5DB','grey700','#6D28D9','500','grey500','underline','grey300'];_0x2457=function(){return _0x174a90;};return _0x2457();}import _0x2d6eff from'./PersonalizationConsentScreen';import _0x13e07f from'./PinCreationScreen';function _0x1e46(_0x245777,_0x1e46aa){_0x245777=_0x245777-0x0;const _0x4ba1d8=_0x2457();let _0x494f51=_0x4ba1d8[_0x245777];return _0x494f51;}import _0x5b45aa from'./PersonaLoadingScreen';import{useConnections}from'../hooks/useConnections';import{getPlatformIcon}from'../services/connectedAccountsService';import{initiateOAuth,initiateNativeAuth,hasNativeSDK}from'../services/platformAuthService';import{OAuthWebView}from'./onboarding/OAuthWebView';import{isLLMPlatform,getLLMPlatformUrl,isLinkedInPlatform}from'../utils/webviewScripts';import{setTemporaryPin}from'../services/pinStorageUtils';import AsyncStorage from'@react-native-async-storage/async-storage';export const MODEL_REFRESH_OPTIONS=[{'value':'never','label':_0x1e46(0x0)},{'value':_0x1e46(0x1),'label':'Once\x20a\x20day'},{'value':_0x1e46(0x2),'label':_0x1e46(0x3)},{'value':_0x1e46(0x4),'label':_0x1e46(0x5)}];const PlatformConnectorsStep=({onUpdate:_0x56ed6a,onSkip:_0x15ee2a,loading:loading=![],onPinComplete:_0x45d765,onReviewerBypass:_0x56a82b,onLogout:_0x477bbc,allowedPlatforms:_0x519742,recommendedPlatforms:_0x217a80,initialConnectedPlatforms:_0x31972,onRefreshFrequencyChange:_0x429954,initialRefreshFrequency:initialRefreshFrequency='weekly'})=>{const _0x5e428c={'lNTLz':function(_0x2a2228,_0x4c21f0){return _0x2a2228(_0x4c21f0);},'xnwWM':function(_0x3940a0,_0x38f836){return _0x3940a0===_0x38f836;},'pJTil':_0x1e46(0x6),'DPMVS':function(_0x57cfb8,_0xe98a89){return _0x57cfb8>_0xe98a89;},'hHasW':'IFfNn','ReBfV':'xtfAU','LGEjr':function(_0x347a27,_0x10577e){return _0x347a27(_0x10577e);},'IrQCb':_0x1e46(0x7),'JPubj':_0x1e46(0x8),'krWAk':_0x1e46(0x9),'ycybR':'✅\x20[PLATFORMS]\x20Updated\x20connectedPlatforms\x20state\x20with:','MImcm':_0x1e46(0xa),'mtDsf':'user_connected_platforms','Rasvb':_0x1e46(0xb),'WaxdJ':_0x1e46(0xc),'OIlck':_0x1e46(0xd),'Uzxjw':_0x1e46(0xe),'wYLQD':'chatgpt','cupqI':'gemini','khfyc':_0x1e46(0xf),'OHkoF':function(_0x3b1154,_0x523b78){return _0x3b1154!==_0x523b78;},'aAfMK':'SStdd','ypVVj':_0x1e46(0x10),'xoeUd':_0x1e46(0x11),'hXOlZ':_0x1e46(0x12),'yoDod':_0x1e46(0x13),'iJMEN':_0x1e46(0x14),'VMRRH':function(_0x3d5cf2,_0x33b8ad){return _0x3d5cf2(_0x33b8ad);},'EucXw':_0x1e46(0x15),'pYzTL':function(_0x3a088c,_0x58eb93){return _0x3a088c+_0x58eb93;},'RWDRW':'NULL','LUDtm':_0x1e46(0x16),'Trrur':function(_0x5a77f8){return _0x5a77f8();},'IohTE':function(_0x44546c,_0x3f25eb){return _0x44546c(_0x3f25eb);},'AkCjE':'mVaGj','vwluT':_0x1e46(0x17),'cyVjP':_0x1e46(0x18),'VyLgF':_0x1e46(0x19),'eFhXQ':function(_0x4be2ba,_0x285146){return _0x4be2ba&&_0x285146;},'tGzQh':function(_0x3c35da,_0x3b06c1){return _0x3c35da===_0x3b06c1;},'flVFt':'wRKhN','qVoQv':_0x1e46(0x1a),'tptmb':function(_0x5024d1,_0x1ac295){return _0x5024d1===_0x1ac295;},'hMnmv':function(_0x4c2ba6,_0x479ec8){return _0x4c2ba6===_0x479ec8;},'hwQVw':function(_0x4dad7e,_0x7b43b3){return _0x4dad7e===_0x7b43b3;},'vrUro':function(_0x2d32a0,_0x403ca1){return _0x2d32a0*_0x403ca1;},'DPTlA':function(_0x132322,_0x23ee2c){return _0x132322(_0x23ee2c);},'hXrar':function(_0x33e2a8,_0x553b7a){return _0x33e2a8*_0x553b7a;},'FxthX':function(_0x40851a,_0x546bed){return _0x40851a(_0x546bed);},'jIdad':'Error\x20initializing\x20username:','NkDtq':function(_0x2b7782,_0xe74b70){return _0x2b7782===_0xe74b70;},'pUdZK':_0x1e46(0x1b),'UrayY':_0x1e46(0x1c),'hLLYD':function(_0x2c4506){return _0x2c4506();},'swlPJ':function(_0x4d29c5,_0x953d87){return _0x4d29c5-_0x953d87;},'UJUUf':function(_0x1dc23e,_0x50e788){return _0x1dc23e/_0x50e788;},'kvnSK':function(_0x715687,_0x46f0b6){return _0x715687(_0x46f0b6);},'KzUiJ':function(_0x58d4ae,_0x32782e){return _0x58d4ae>_0x32782e;},'HPDoi':function(_0x3e0ca2,_0x5fd9b3){return _0x3e0ca2===_0x5fd9b3;},'XhRsp':_0x1e46(0x1d),'wPhtf':function(_0x3992ce,_0x390dc2){return _0x3992ce===_0x390dc2;},'BtoFc':_0x1e46(0x1e),'VmgoC':_0x1e46(0x1f),'ojCpB':_0x1e46(0x20),'aaJDo':function(_0x5056a8,_0x402037){return _0x5056a8===_0x402037;},'tlSAs':_0x1e46(0x21),'ICCwa':_0x1e46(0x22),'HUsWj':'QUHMX','wqfgs':_0x1e46(0x23),'mJTQo':_0x1e46(0x24),'nlIJE':function(_0x344f7f,_0x4f5268){return _0x344f7f(_0x4f5268);},'FJJog':function(_0x5872dc,_0x42bdd6){return _0x5872dc(_0x42bdd6);},'dhZmQ':function(_0x4e3ec0,_0x5444d3){return _0x4e3ec0(_0x5444d3);},'zOnIK':function(_0x3fc2d9,_0x93e473){return _0x3fc2d9(_0x93e473);},'GVeLu':_0x1e46(0x25),'itqvw':function(_0x594ee7,_0x9e6f40){return _0x594ee7(_0x9e6f40);},'nGapm':function(_0x5674c2,_0x1e96e8){return _0x5674c2!==_0x1e96e8;},'UEAkC':_0x1e46(0x26),'cRtJO':function(_0x2eb2e4,_0x331204){return _0x2eb2e4!==_0x331204;},'ePhhE':_0x1e46(0x27),'sZiKl':function(_0x1572e2,_0x2b0248){return _0x1572e2||_0x2b0248;},'rOQNv':function(_0x122e60,_0x34066b){return _0x122e60!==_0x34066b;},'CUTaz':_0x1e46(0x28),'BVcBQ':_0x1e46(0x29),'jCZGh':_0x1e46(0x2a),'HYAyU':function(_0x284029,_0x28328f){return _0x284029(_0x28328f);},'dTSxN':function(_0xf41dd1,_0x368e0f){return _0xf41dd1(_0x368e0f);},'EYoJT':function(_0x41b756,_0x90f27a){return _0x41b756(_0x90f27a);},'esCnB':function(_0x2a81af,_0x5e01ed){return _0x2a81af(_0x5e01ed);},'Mmjab':function(_0x517e8a,_0x307ffb){return _0x517e8a(_0x307ffb);},'mmGJP':function(_0x3feb15,_0x5d58a3){return _0x3feb15(_0x5d58a3);},'aGHlT':function(_0xed50f2,_0x596be3){return _0xed50f2(_0x596be3);},'RXzYK':function(_0x463223,_0x4ab7eb){return _0x463223(_0x4ab7eb);},'BKTrd':function(_0x205dd9,_0x43bf79,_0x373394){return _0x205dd9(_0x43bf79,_0x373394);},'TGerU':function(_0x5eab1b,_0x2e11ed){return _0x5eab1b===_0x2e11ed;},'skWQu':_0x1e46(0x2b),'hqWef':function(_0x1b5652,_0x10d484){return _0x1b5652(_0x10d484);},'evkQZ':function(_0x1305d5,_0xb047a9){return _0x1305d5(_0xb047a9);},'TiNdQ':function(_0x2b4aae,_0x2876e5){return _0x2b4aae(_0x2876e5);},'otTFB':function(_0x558419,_0x1be9e0){return _0x558419===_0x1be9e0;},'UONPj':_0x1e46(0x2c),'iqxyr':function(_0x5bb582,_0x5976d7){return _0x5bb582(_0x5976d7);},'aNIuv':function(_0x2601b8,_0x1eab3b){return _0x2601b8(_0x1eab3b);},'mjrJT':function(_0x2708cc,_0x1a62f8){return _0x2708cc(_0x1a62f8);},'Xtgkp':function(_0xccc684,_0x340f2b){return _0xccc684(_0x340f2b);},'CePDX':'ufdrr','VVVSi':_0x1e46(0x2d),'EiAqm':_0x1e46(0x2e),'UeyAJ':_0x1e46(0x2f),'rQPvs':_0x1e46(0x30),'LvFVf':_0x1e46(0x31),'hMUKA':function(_0x23fe85,_0x13558e){return _0x23fe85(_0x13558e);},'VxgWR':_0x1e46(0x32),'uGCLm':_0x1e46(0x33),'BvOYH':function(_0x14cff0,_0x2906af){return _0x14cff0(_0x2906af);},'lAmek':function(_0x378e34,_0x12ae95){return _0x378e34(_0x12ae95);},'ajICG':function(_0x47e631,_0x2ac6bf){return _0x47e631===_0x2ac6bf;},'czkak':'KsOBZ','wWadC':function(_0x5e69c9,_0xed23b){return _0x5e69c9(_0xed23b);},'myoeI':function(_0x3eaeac,_0x1e717a){return _0x3eaeac(_0x1e717a);},'rEuqy':function(_0x2305d2,_0x595c2c){return _0x2305d2===_0x595c2c;},'qRaeR':_0x1e46(0x34),'MlywB':function(_0x14f932,_0x38e1b4){return _0x14f932(_0x38e1b4);},'zQNLL':function(_0x7130f3,_0x38ced5){return _0x7130f3(_0x38ced5);},'PyBAE':'ypJrH','HubMy':_0x1e46(0x35),'wXIkE':function(_0x3d7397,_0x29aae3){return _0x3d7397!==_0x29aae3;},'Gctxy':'HaMCh','QNzde':_0x1e46(0x36),'ekBYK':_0x1e46(0x37),'KczdL':'UbDNX','ZShhl':function(_0x58a3e5,_0x569eee){return _0x58a3e5(_0x569eee);},'qmqzN':function(_0x5b8f75,_0x3f29b6){return _0x5b8f75(_0x3f29b6);},'DPGTV':function(_0x169794,_0x4228f8){return _0x169794(_0x4228f8);},'qNrNi':function(_0x4740f3,_0x557075){return _0x4740f3(_0x557075);},'qMVOh':function(_0x3fbf02,_0x3a9c9a){return _0x3fbf02(_0x3a9c9a);},'OqJro':function(_0x1ac30e,_0x971e09){return _0x1ac30e(_0x971e09);},'stDgS':function(_0x4d5271,_0xb0f032){return _0x4d5271===_0xb0f032;},'mpjII':_0x1e46(0x38),'nPGQs':function(_0xc7f48e,_0xf33c9c){return _0xc7f48e===_0xf33c9c;},'TCxTg':_0x1e46(0x39),'VfFkX':function(_0x518c0c,_0x206d9b){return _0x518c0c!==_0x206d9b;},'lnrVw':_0x1e46(0x3a),'lDDcs':function(_0x4c7c1d,_0x3e01ba){return _0x4c7c1d===_0x3e01ba;},'Aevtl':_0x1e46(0x3b),'VktMN':function(_0x22a58d,_0x3af8f4){return _0x22a58d(_0x3af8f4);},'wDhbr':function(_0x501730,_0xd892c2){return _0x501730===_0xd892c2;},'VtBBp':function(_0x1b1158,_0x4c8e20){return _0x1b1158(_0x4c8e20);},'IGNBE':function(_0x3208e9,_0x394f6f){return _0x3208e9(_0x394f6f);},'aNpjP':function(_0x4e0ab4,_0x21bc0e){return _0x4e0ab4&&_0x21bc0e;},'xhePI':_0x1e46(0x3c),'UXUvf':function(_0x3ce917,_0x23ab69){return _0x3ce917(_0x23ab69);},'VpzbS':function(_0x4d59d2,_0x3ab00b){return _0x4d59d2(_0x3ab00b);},'uVtMM':'rVGKG','HNGQg':_0x1e46(0x3d),'sTPCX':function(_0xd38500,_0x176f0a){return _0xd38500(_0x176f0a);},'fzqtm':function(_0x2155b7,_0xecf499){return _0x2155b7!==_0xecf499;},'Dgndv':_0x1e46(0x3e),'aZHJn':function(_0x3d1225,_0x4c65b8){return _0x3d1225(_0x4c65b8);},'jGbVU':function(_0x23cd14,_0x352696){return _0x23cd14(_0x352696);},'gYKUt':function(_0x31c665,_0x55a976){return _0x31c665(_0x55a976);},'FFXsU':function(_0x154fbe,_0xf75574){return _0x154fbe===_0xf75574;},'ZeGeW':'WtJKf','YbZBz':_0x1e46(0x3f),'KmMJO':'Wermn','bjmJb':function(_0x299cda,_0x48413c){return _0x299cda(_0x48413c);},'Bpumw':function(_0x3de5bf,_0x4902ea){return _0x3de5bf===_0x4902ea;},'lFwSh':_0x1e46(0x40),'KJlfP':_0x1e46(0x41),'hzjwm':_0x1e46(0x42),'elARn':function(_0x32cf05,_0x17ffbc){return _0x32cf05!==_0x17ffbc;},'exbsI':_0x1e46(0x43),'pZSbI':function(_0x274ac8,_0x3063d3){return _0x274ac8===_0x3063d3;},'TrOrS':_0x1e46(0x44),'Onxed':function(_0x4837da,_0x108e80){return _0x4837da/_0x108e80;},'DwTVn':function(_0x2aedde,_0x2b236f){return _0x2aedde(_0x2b236f);},'WBuIE':function(_0xada575,_0x54850b){return _0xada575(_0x54850b);},'WAECj':'GtzAn','spTQA':_0x1e46(0x45),'MkoGi':function(_0x35045d,_0x4aa190){return _0x35045d(_0x4aa190);},'FmWQG':function(_0x99648c,_0x471cab){return _0x99648c(_0x471cab);},'GVZGr':function(_0x4db09c,_0x4822e3){return _0x4db09c(_0x4822e3);},'wZanb':function(_0x22a9e3,_0x35aa25){return _0x22a9e3(_0x35aa25);},'ayGwM':_0x1e46(0x46),'qMguQ':'KXWtq','CoFzg':function(_0x30d2bc,_0x2bc56e){return _0x30d2bc(_0x2bc56e);},'IGZtz':_0x1e46(0x47),'TLXsp':_0x1e46(0x48),'wiqmu':'pinterest','DmZBn':'gmail','ahhmr':function(_0x23f3de,_0x471350){return _0x23f3de===_0x471350;},'Iauax':function(_0x1a1fcf,_0x1fe9aa){return _0x1a1fcf===_0x1fe9aa;},'rXnvx':function(_0x392505,_0xfc72fd){return _0x392505===_0xfc72fd;},'VUxXt':'contain','NtQAY':_0x1e46(0x49),'VevQS':function(_0x3073ab,_0x1d7644){return _0x3073ab>_0x1d7644;},'jpfNH':function(_0x34f5ac,_0x3b08fc){return _0x34f5ac!==_0x3b08fc;},'hfEVU':'kifAv','pvCoB':function(_0x1071e2,_0x42dacc){return _0x1071e2(_0x42dacc);},'fBlbZ':function(_0x265996,_0x3c5794){return _0x265996(_0x3c5794);},'qTLLP':function(_0x4ee1bb,_0x1d0554){return _0x4ee1bb(_0x1d0554);},'NLbPI':_0x1e46(0x4a),'UCOpn':function(_0x5544e2,_0x52eec7){return _0x5544e2(_0x52eec7);},'ODPwo':function(_0x30d65e,_0x4b0506){return _0x30d65e(_0x4b0506);},'vQiWT':function(_0x5f0896,_0x11ba20){return _0x5f0896(_0x11ba20);},'YZyZi':function(_0x198ff7,_0x2d424e){return _0x198ff7(_0x2d424e);},'dTfKH':function(_0x4650ff,_0x1e2b17){return _0x4650ff(_0x1e2b17);},'RJSdC':'YouTube','fjtld':_0x1e46(0x4b),'PBCjl':_0x1e46(0x4c),'tgoRY':_0x1e46(0x4d),'mIdlm':_0x1e46(0x4e),'Ciryn':_0x1e46(0x4f),'alxuA':_0x1e46(0x50),'ypMLD':_0x1e46(0x51),'jVAoo':function(_0x1608b4,_0x187b5b){return _0x1608b4(_0x187b5b);},'BMqdI':_0x1e46(0x52),'Euqhd':_0x1e46(0x53),'fOggi':'Use\x20your\x20email\x20information\x20to\x20enrich\x20your\x20model.','CoCaz':_0x1e46(0x54),'grleP':_0x1e46(0x55),'PDBkj':_0x1e46(0x56),'kReQz':_0x1e46(0x57),'nKvlk':function(_0x51210c,_0x16dc99){return _0x51210c(_0x16dc99);},'HjaEH':_0x1e46(0x58),'JZZNk':_0x1e46(0x59),'MpmBL':_0x1e46(0x5a),'OxRHO':_0x1e46(0x5b),'QolYH':function(_0xe62cfa,_0x31fb07,_0x4f25d4){return _0xe62cfa(_0x31fb07,_0x4f25d4);},'eosYO':function(_0x51fe76,_0xbda24f){return _0x51fe76+_0xbda24f;},'PqOvC':function(_0x1d32c4,_0x49131e){return _0x1d32c4!==_0x49131e;},'NRNGL':_0x1e46(0x5c),'qIqeX':_0x1e46(0x5d),'EGRJP':_0x1e46(0x5e),'eJiZz':_0x1e46(0x5f),'JCwjT':_0x1e46(0x60),'PXDGI':_0x1e46(0x61),'JNwkq':_0x1e46(0x62),'bdaMb':function(_0x43b2f8,_0x54fe01){return _0x43b2f8||_0x54fe01;},'izIxv':'100%','BQXkm':_0x1e46(0x63),'mTYno':_0x1e46(0x64)},[_0x48fa92,_0x473cff]=_0x5e428c['qNrNi'](useState,()=>new Set(_0x31972||[])),[_0x523743,_0x56be6b]=_0x5e428c[_0x1e46(0x65)](useState,![]),[_0x45388b,_0x4f4d88]=useState(![]),[_0x2b62aa,_0x4837fa]=_0x5e428c['DwTVn'](useState,![]),[_0x580e5d,_0x16b267]=_0x5e428c['pvCoB'](useState,''),[_0x25ddaa,_0x1519ca]=_0x5e428c[_0x1e46(0x66)](useState,{}),[_0x324281,_0x52d3b2]=useState(![]),[_0x14a66e,_0x33905c]=_0x5e428c['WBuIE'](useState,''),[_0x48eace,_0x30b2d8]=_0x5e428c['DPTlA'](useState,''),[_0x2d7533,_0x51bfb2]=_0x5e428c[_0x1e46(0x65)](useState,null),[_0x3ff07e,_0x5a3834]=_0x5e428c[_0x1e46(0x67)](useState,0x0),_0x496824=useRef(new Animated[(_0x1e46(0x68))](0x0))[_0x1e46(0x69)],[_0x4028fb,_0x36c93c]=_0x5e428c[_0x1e46(0x6a)](useState,''),_0x267a77=_0x5e428c['mjrJT'](useRef,null),[_0x11beba,_0x57667c]=_0x5e428c[_0x1e46(0x6b)](useState,!![]),_0x260ddb=_0x5e428c[_0x1e46(0x6b)](useRef,new Animated[(_0x1e46(0x68))](0x0))['current'],[_0x13941a,_0x2cd4ea]=_0x5e428c[_0x1e46(0x6c)](useState,0x0),_0x447c5a=_0x5e428c[_0x1e46(0x6d)](useRef,0x0),[_0x4ec019,_0x2ec08e]=_0x5e428c[_0x1e46(0x6e)](useState,''),[_0x3e2f89,_0x1e415f]=_0x5e428c[_0x1e46(0x6f)](useState,0x0),[_0x4c53b7,_0x4b6c30]=_0x5e428c[_0x1e46(0x70)](useState,_0x5e428c[_0x1e46(0x71)]),[_0x2e7808,_0x9b9e5b]=useState(![]),[_0x15a9ba,_0x361b46]=_0x5e428c[_0x1e46(0x72)](useState,![]),[_0x11c4c8,_0x3901c4]=_0x5e428c[_0x1e46(0x73)](useState,null),[_0x4e0fda,_0x169342]=_0x5e428c['bjmJb'](useState,null),_0x3800fd=_0x5e428c[_0x1e46(0x74)](useRef,null),[_0x2fe3e2,_0xee413f]=useState(![]),[_0xe99ea1,_0x1a9a9d]=useState(''),[_0x1d6722,_0x2aca2]=_0x5e428c['vQiWT'](useState,null),[_0x33c7c8,_0x3ae4fa]=_0x5e428c[_0x1e46(0x75)](useState,![]),[_0x4e86e6,_0x1f31e1]=_0x5e428c[_0x1e46(0x75)](useState,![]),[_0x7d4592,_0x232523]=_0x5e428c[_0x1e46(0x76)](useState,null),[_0x2d54a2,_0x533507]=_0x5e428c[_0x1e46(0x77)](useState,initialRefreshFrequency),{connectPlatform:_0x2377c0,disconnectPlatform:_0xf18d93,isConnecting:_0x371deb}=useConnections(),_0x4e6988=null;_0x5e428c[_0x1e46(0x78)](useEffect,()=>{const _0xe10ae9={'yjUeW':function(_0x359b70,_0x31500f){return _0x5e428c[_0x1e46(0x79)](_0x359b70,_0x31500f);},'ttlmT':function(_0x17d25b,_0x4618a1){return _0x17d25b(_0x4618a1);},'AnARF':function(_0x3707c7,_0x372b17){return _0x5e428c[_0x1e46(0x79)](_0x3707c7,_0x372b17);},'ypBrb':function(_0xe772be,_0x2b9227){return _0x5e428c[_0x1e46(0x7a)](_0xe772be,_0x2b9227);},'EvFos':_0x5e428c[_0x1e46(0x7b)]};_0x31972&&_0x5e428c[_0x1e46(0x7c)](_0x31972['length'],0x0)&&(_0x5e428c[_0x1e46(0x7d)]===_0x5e428c['ReBfV']?(_0xe10ae9[_0x1e46(0x7e)](_0x32000c,_0x4bb202=>({..._0x4bb202,[_0x31d57f]:_0x1e46(0x3a)})),_0xe10ae9[_0x1e46(0x7e)](_0x409ade,_0x360bc2['ERROR'])):_0x5e428c['LGEjr'](_0x473cff,_0x5a59fb=>{if(_0xe10ae9[_0x1e46(0x7f)](_0xe10ae9[_0x1e46(0x80)],_0xe10ae9[_0x1e46(0x80)])){const _0x32802b=new Set(_0x5a59fb);let _0x57d9d7=![];return _0x31972['forEach'](_0x4601cb=>{!_0x32802b[_0x1e46(0x81)](_0x4601cb)&&(_0x32802b[_0x1e46(0x82)](_0x4601cb),_0x57d9d7=!![]);}),_0x57d9d7?_0x32802b:_0x5a59fb;}else _0xe10ae9[_0x1e46(0x83)](_0x16c63e,_0x22cac4),_0xe10ae9['AnARF'](_0x543931,null);}));},[_0x31972]),useEffect(()=>{const _0x27e30b={'dusTt':function(_0x348dbd,_0x2f5da9){return _0x5e428c['pYzTL'](_0x348dbd,_0x2f5da9);},'XZUIh':_0x1e46(0x45),'foesB':_0x1e46(0x84),'UkpqE':_0x5e428c[_0x1e46(0x85)],'pgHeJ':function(_0x19924c,_0x493546){return _0x5e428c[_0x1e46(0x7a)](_0x19924c,_0x493546);},'lzHtl':_0x5e428c[_0x1e46(0x86)],'tQTbt':_0x5e428c[_0x1e46(0x87)],'OkfzQ':function(_0x3b4d46,_0x243056){return _0x5e428c[_0x1e46(0x88)](_0x3b4d46,_0x243056);}},_0x3316cb=async()=>{const _0x33746b={'uONpN':_0x5e428c['IrQCb'],'hUZcJ':_0x5e428c[_0x1e46(0x89)],'mCKcc':function(_0x35f2c8,_0x32fa4f){return _0x5e428c[_0x1e46(0x8a)](_0x35f2c8,_0x32fa4f);},'BruDU':_0x5e428c[_0x1e46(0x8b)],'CUotB':_0x5e428c[_0x1e46(0x8c)]};try{console['log'](_0x5e428c[_0x1e46(0x8d)]);const _0x3de4ef=[],_0x1d4c67=await AsyncStorage[_0x1e46(0x8e)](_0x5e428c[_0x1e46(0x8f)]);if(_0x1d4c67){const _0x4ff5bc=JSON[_0x1e46(0x90)](_0x1d4c67);Array[_0x1e46(0x91)](_0x4ff5bc)&&(_0x3de4ef['push'](..._0x4ff5bc),console['log'](_0x5e428c[_0x1e46(0x92)],_0x4ff5bc));}const _0x34b546=await AsyncStorage[_0x1e46(0x8e)](_0x5e428c[_0x1e46(0x93)]);if(_0x34b546){const _0x58c148=JSON[_0x1e46(0x90)](_0x34b546);if(Array[_0x1e46(0x91)](_0x58c148)){if(_0x5e428c['WaxdJ']!==_0x5e428c['OIlck'])_0x58c148['forEach'](_0x278115=>{const _0x1a250c={'LaMeq':function(_0x75e2e7,_0x28eef5){return _0x75e2e7||_0x28eef5;},'FbbrY':function(_0x39b6e0,_0x789082){return _0x27e30b[_0x1e46(0x94)](_0x39b6e0,_0x789082);},'EjWyY':_0x27e30b[_0x1e46(0x95)],'zxIDf':_0x27e30b[_0x1e46(0x96)],'igeVf':_0x27e30b['UkpqE']};var _0x1bfa55;const _0x5acaf4=(_0x1bfa55=_0x278115[_0x1e46(0x97)])===null||_0x27e30b[_0x1e46(0x98)](_0x1bfa55,void 0x0)?void 0x0:_0x1bfa55[_0x1e46(0x99)]();_0x5acaf4&&!_0x3de4ef[_0x1e46(0x9a)](_0x5acaf4)&&(_0x27e30b[_0x1e46(0x98)](_0x27e30b['lzHtl'],_0x27e30b[_0x1e46(0x9b)])?_0x3de4ef[_0x1e46(0x9c)](_0x5acaf4):_0x1a250c['LaMeq'](_0x376083,_0x37fd49)&&_0x5813be['log'](_0x1e46(0x9d)+_0x10e054+',\x20oauthUrl:\x20'+(_0x186921?_0x1a250c[_0x1e46(0x9e)](_0x1a250c[_0x1e46(0x9f)],_0x52c274[_0x1e46(0xa0)](0x0,0x28))+_0x1a250c[_0x1e46(0xa1)]:_0x1a250c[_0x1e46(0xa2)])));}),console[_0x1e46(0xa3)](_0x5e428c[_0x1e46(0xa4)],_0x58c148[_0x1e46(0xa5)](_0x2d9b29=>_0x2d9b29[_0x1e46(0x97)]));else{const _0x304882=_0xaed6c7[_0x1e46(0x90)](_0x11e644);_0x1c3ae2['isArray'](_0x304882)&&(_0x3f4622[_0x1e46(0x9c)](..._0x304882),_0x5480bb['log'](_0x33746b[_0x1e46(0xa6)],_0x304882));}}}const _0x27bcfc=[_0x5e428c[_0x1e46(0xa7)],_0x1e46(0x56),_0x5e428c['cupqI'],_0x5e428c[_0x1e46(0xa8)]];for(const _0x41deae of _0x27bcfc){const _0x515226=await AsyncStorage['getItem'](_0x1e46(0xa9)+_0x41deae);if(_0x515226){const _0x2ec0d2=JSON[_0x1e46(0x90)](_0x515226);_0x2ec0d2[_0x1e46(0xaa)]&&!_0x3de4ef['includes'](_0x41deae)&&(_0x5e428c[_0x1e46(0xab)](_0x5e428c['aAfMK'],_0x5e428c[_0x1e46(0xac)])?_0x49a294[_0x1e46(0x3a)](_0x27e30b[_0x1e46(0xad)],_0x342a76):(_0x3de4ef[_0x1e46(0x9c)](_0x41deae),console[_0x1e46(0xa3)](_0x1e46(0xae)+_0x41deae)));}}const _0x1f7768=await AsyncStorage[_0x1e46(0x8e)](_0x5e428c[_0x1e46(0xaf)]);if(_0x1f7768){if(_0x5e428c[_0x1e46(0x7a)](_0x5e428c[_0x1e46(0xb0)],_0x5e428c[_0x1e46(0xb1)]))_0x4e0810[_0x1e46(0x3a)](_0x33746b[_0x1e46(0xb2)],_0x3df398);else{const _0x46bee4=JSON['parse'](_0x1f7768);_0x46bee4['connected']&&!_0x3de4ef[_0x1e46(0x9a)]('linkedin')&&(_0x3de4ef[_0x1e46(0x9c)](_0x1e46(0x24)),console['log'](_0x5e428c['yoDod']));}}_0x5e428c[_0x1e46(0x7c)](_0x3de4ef['length'],0x0)&&(_0x5e428c['OHkoF'](_0x5e428c[_0x1e46(0xb3)],_0x5e428c[_0x1e46(0xb3)])?_0x27e30b[_0x1e46(0xb4)](_0x1cc0dc,![]):_0x5e428c[_0x1e46(0x88)](_0x473cff,_0x500a84=>{const _0x1aa08d=new Set(_0x500a84);let _0x5525b5=![];return _0x3de4ef[_0x1e46(0xb5)](_0x3628d0=>{!_0x1aa08d[_0x1e46(0x81)](_0x3628d0)&&(_0x1aa08d[_0x1e46(0x82)](_0x3628d0),_0x5525b5=!![]);}),_0x5525b5&&(_0x33746b[_0x1e46(0xb6)]===_0x33746b[_0x1e46(0xb6)]?console[_0x1e46(0xa3)](_0x33746b[_0x1e46(0xb7)],Array[_0x1e46(0xb8)](_0x1aa08d)):_0x33746b[_0x1e46(0xb9)](_0x3998d3,![])),_0x5525b5?_0x1aa08d:_0x500a84;}));}catch(_0x2ebfb5){console['error'](_0x5e428c['EucXw'],_0x2ebfb5);}};_0x3316cb();},[]),_0x5e428c[_0x1e46(0x78)](useEffect,()=>{if(_0x5e428c[_0x1e46(0xba)](_0x5e428c[_0x1e46(0xbb)],_0x5e428c[_0x1e46(0xbc)]))_0x1ce7d8(![]);else{const _0x1df6bc=async()=>{const _0x4af0ce={'XeXUG':function(_0x2ecdfc){return _0x5e428c['Trrur'](_0x2ecdfc);},'siIEc':function(_0x3aae50,_0x4822ba){return _0x5e428c['IohTE'](_0x3aae50,_0x4822ba);},'kvmNn':function(_0x173075,_0x16740c){return _0x5e428c[_0x1e46(0x79)](_0x173075,_0x16740c);}};if(_0x1e46(0xbd)!==_0x5e428c[_0x1e46(0xbe)])try{if(_0x5e428c[_0x1e46(0xbf)]!==_0x5e428c[_0x1e46(0xc0)]){const _0x5e6010=await AsyncStorage[_0x1e46(0x8e)](_0x5e428c[_0x1e46(0xc1)]);if(_0x5e428c[_0x1e46(0xc2)](_0x5e6010,!_0x4ec019)){if(_0x5e428c[_0x1e46(0xc3)](_0x5e428c['flVFt'],_0x5e428c['flVFt'])){_0x5e428c[_0x1e46(0x8a)](_0x2ec08e,_0x5e6010);return;}else _0x50f3bd[_0x1e46(0xc4)]>0x0&&!_0x4658a4&&!_0x30f40a&&!_0x19f02f&&_0x4af0ce[_0x1e46(0xc5)](_0x2947d0);}if(_0x5e428c[_0x1e46(0xc2)](_0x4e6988,!_0x4ec019)){if(_0x5e428c[_0x1e46(0xc6)]===_0x5e428c[_0x1e46(0xc6)]){var _0x2fa7d3;const _0x151c4e=(_0x5e428c[_0x1e46(0x7a)](_0x4e6988,null)||_0x5e428c['tptmb'](_0x4e6988,void 0x0)||_0x5e428c['xnwWM'](_0x2fa7d3=_0x4e6988[_0x1e46(0xc7)],null)||_0x5e428c[_0x1e46(0xc8)](_0x2fa7d3,void 0x0)?void 0x0:_0x2fa7d3[_0x1e46(0xc9)]('@')[0x0])||(_0x5e428c[_0x1e46(0xca)](_0x4e6988,null)||_0x4e6988===void 0x0?void 0x0:_0x4e6988[_0x1e46(0xcb)])||'user_'+Math['floor'](_0x5e428c[_0x1e46(0xcc)](Math[_0x1e46(0xcd)](),0x2710));_0x5e428c[_0x1e46(0x6e)](_0x2ec08e,_0x151c4e),await AsyncStorage[_0x1e46(0xce)](_0x5e428c[_0x1e46(0xc1)],_0x151c4e);return;}else _0x2486de[_0x1e46(0x3a)](_0x1e46(0xcf)+_0x811342+'\x20-\x20no\x20URL\x20returned'),_0x4af0ce[_0x1e46(0xd0)](_0x349cb7,_0x73eccf=>({..._0x73eccf,[_0x4af0ee]:'error'})),_0x4af0ce[_0x1e46(0xd1)](_0x169306,_0x3ad239[_0x1e46(0xd2)]);}if(!_0x4ec019){const _0x47ef48=_0x1e46(0xd3)+Math[_0x1e46(0xd4)](_0x5e428c['hXrar'](Math[_0x1e46(0xcd)](),0x2710));_0x5e428c[_0x1e46(0x66)](_0x2ec08e,_0x47ef48),await AsyncStorage[_0x1e46(0xce)](_0x5e428c[_0x1e46(0xc1)],_0x47ef48);}}else _0xeffd20();}catch(_0x4aa26b){console[_0x1e46(0x3a)](_0x5e428c[_0x1e46(0xd5)],_0x4aa26b);const _0x40d53e=_0x1e46(0xd6)+Math[_0x1e46(0xd4)](_0x5e428c[_0x1e46(0xd7)](Math[_0x1e46(0xcd)](),0x2710));_0x5e428c[_0x1e46(0x79)](_0x2ec08e,_0x40d53e);}else _0x25efee&&Animated[_0x1e46(0xd8)](Animated['sequence']([Animated[_0x1e46(0xd9)](_0x3c06ee,{'toValue':0x1,'duration':0x3e8,'useNativeDriver':!![]}),Animated[_0x1e46(0xd9)](_0x1954e9,{'toValue':0x0,'duration':0x3e8,'useNativeDriver':!![]})]))[_0x1e46(0xda)]();};_0x5e428c[_0x1e46(0xdb)](_0x1df6bc);}},[_0x4e6988,_0x4ec019]),_0x5e428c[_0x1e46(0x78)](useEffect,()=>{_0x11beba&&Animated['loop'](Animated['sequence']([Animated[_0x1e46(0xd9)](_0x260ddb,{'toValue':0x1,'duration':0x3e8,'useNativeDriver':!![]}),Animated['timing'](_0x260ddb,{'toValue':0x0,'duration':0x3e8,'useNativeDriver':!![]})]))[_0x1e46(0xda)]();},[_0x11beba]);const _0x149c6a=_0x5e428c[_0x1e46(0x78)](useCallback,_0x33fddc=>{const _0x343f00=_0x33fddc[_0x1e46(0xdc)][_0x1e46(0xdd)]['x'],_0x3bb462=_0x33fddc['nativeEvent'][_0x1e46(0xde)][_0x1e46(0xdf)],_0x2cf9f0=_0x33fddc[_0x1e46(0xdc)]['contentSize'][_0x1e46(0xdf)];_0x447c5a[_0x1e46(0x69)]=_0x343f00;const _0x2bce73=_0x5e428c[_0x1e46(0xe0)](_0x2cf9f0,_0x3bb462),_0x12e733=_0x5e428c[_0x1e46(0x7c)](_0x2bce73,0x0)?_0x5e428c[_0x1e46(0xe1)](_0x343f00,_0x2bce73):0x0;_0x5e428c[_0x1e46(0xe2)](_0x2cd4ea,_0x12e733),_0x5e428c[_0x1e46(0xe3)](_0x343f00,0xa)&&_0x11beba&&_0x5e428c['LGEjr'](_0x57667c,![]);},[_0x11beba]),_0x4301fe=[{'id':_0x5e428c[_0x1e46(0xe4)],'name':_0x5e428c[_0x1e46(0xe5)],'icon':getPlatformIcon(_0x5e428c['TLXsp']),'description':_0x5e428c['fjtld'],'isChatPlatform':![]},{'id':_0x5e428c[_0x1e46(0xe6)],'name':_0x5e428c[_0x1e46(0xe7)],'icon':_0x5e428c[_0x1e46(0x6d)](getPlatformIcon,_0x1e46(0x4c)),'description':_0x5e428c[_0x1e46(0xe8)],'isChatPlatform':![]},{'id':_0x5e428c[_0x1e46(0xe9)],'name':_0x5e428c[_0x1e46(0xea)],'icon':getPlatformIcon('pinterest'),'description':_0x5e428c[_0x1e46(0xeb)],'isChatPlatform':![]},{'id':_0x5e428c[_0x1e46(0xec)],'name':_0x5e428c['ypMLD'],'icon':_0x5e428c[_0x1e46(0xed)](getPlatformIcon,_0x5e428c['mJTQo']),'description':_0x5e428c['BMqdI'],'isChatPlatform':![]},{'id':_0x5e428c[_0x1e46(0xee)],'name':_0x5e428c[_0x1e46(0xef)],'icon':_0x5e428c[_0x1e46(0x6c)](getPlatformIcon,_0x1e46(0xf0)),'description':_0x5e428c[_0x1e46(0xf1)],'isChatPlatform':![]},{'id':_0x5e428c[_0x1e46(0xa7)],'name':_0x5e428c[_0x1e46(0xf2)],'icon':getPlatformIcon(_0x1e46(0xf3)),'description':_0x5e428c[_0x1e46(0xf4)],'isChatPlatform':!![]},{'id':_0x5e428c[_0x1e46(0xf5)],'name':_0x5e428c['kReQz'],'icon':_0x5e428c[_0x1e46(0xf6)](getPlatformIcon,_0x5e428c[_0x1e46(0xf5)]),'description':_0x5e428c['HjaEH'],'isChatPlatform':!![]},{'id':_0x5e428c['cupqI'],'name':_0x5e428c[_0x1e46(0xf7)],'icon':_0x5e428c['myoeI'](getPlatformIcon,_0x1e46(0xf8)),'description':_0x5e428c[_0x1e46(0xf9)],'isChatPlatform':!![]},{'id':_0x5e428c[_0x1e46(0xa8)],'name':'Grok','icon':getPlatformIcon(_0x5e428c[_0x1e46(0xa8)]),'description':_0x5e428c['OxRHO'],'isChatPlatform':!![]}],_0x477df2=_0x519742?_0x519742['map'](_0x555a1e=>_0x4301fe['find'](_0x18fac4=>_0x18fac4['id']===_0x555a1e))[_0x1e46(0xfa)](_0x45f366=>_0x45f366!==undefined):_0x4301fe;_0x5e428c[_0x1e46(0x78)](useEffect,()=>{const _0xaeca2={'EkWFy':function(_0x229912,_0x159698){return _0x229912(_0x159698);}};if(_0x5e428c[_0x1e46(0xfb)](_0x5e428c[_0x1e46(0xfc)],_0x5e428c[_0x1e46(0xfc)])){if(_0x5e428c['KzUiJ'](_0x477df2[_0x1e46(0xfd)],0x0)){if(_0x5e428c[_0x1e46(0xab)](_0x5e428c[_0x1e46(0xfe)],'IBlfj')){const _0x5609d1=new _0x24a0af(_0x28ceb4);let _0x118a72=![];return _0x19202f[_0x1e46(0xb5)](_0x4214d3=>{!_0x5609d1['has'](_0x4214d3)&&(_0x5609d1['add'](_0x4214d3),_0x118a72=!![]);}),_0x118a72&&_0x474bd6[_0x1e46(0xa3)](_0x5e428c[_0x1e46(0x8c)],_0x364a05[_0x1e46(0xb8)](_0x5609d1)),_0x118a72?_0x5609d1:_0x1ad798;}else{const _0x4aa20d=_0x477df2[0x0]['id'];(!_0x4028fb||!_0x477df2[_0x1e46(0xff)](_0x5cb6f6=>_0x5cb6f6['id']===_0x4028fb))&&(_0x5e428c[_0x1e46(0xab)](_0x5e428c[_0x1e46(0x100)],_0x5e428c[_0x1e46(0x101)])?_0x5e428c['lNTLz'](_0x36c93c,_0x4aa20d):(_0xaeca2['EkWFy'](_0x37a75a,_0x6fa42a[_0x1e46(0x102)]),_0x1aee6a(_0x86f614['id'])));}}}else{const _0x2fda50=_0x3f1bfc[_0x1e46(0xff)](_0x34324a=>_0x34324a['id']===_0x434d81);if(!_0x2fda50)return null;const _0x235c91=_0x55115d[_0x1e46(0x81)](_0xc90664),_0x23f3f8=_0x5e428c[_0x1e46(0x103)](_0x4865c3[_0x1e9a96],_0x5e428c[_0x1e46(0x104)]),_0x40d42d=_0x5e428c[_0x1e46(0x105)](_0x597a47,null)||_0x5e428c[_0x1e46(0x106)](_0x258461,void 0x0)?void 0x0:_0xd143f7[_0x1e46(0x9a)](_0x412a4f);return React[_0x1e46(0x107)](View,{'style':_0x2277bb[_0x1e46(0x108)]},React['createElement'](View,{'style':_0x54929a['cardHeader']},React[_0x1e46(0x107)](Text,{'style':_0x4fba[_0x1e46(0x109)]},_0x2fda50[_0x1e46(0xcb)]),_0x40d42d&&React['createElement'](View,{'style':_0x36d959[_0x1e46(0x10a)]},React['createElement'](Text,{'style':_0x1287ad[_0x1e46(0x10b)]},_0x5e428c[_0x1e46(0x10c)])),React[_0x1e46(0x107)](TouchableOpacity,{'activeOpacity':0.8,'onPress':()=>!_0x23f3f8&&_0x2e3375(_0x518a21,!_0x235c91),'disabled':_0x23f3f8,'style':[_0x1e0645[_0x1e46(0x10d)],{'backgroundColor':_0x235c91?_0x5e428c[_0x1e46(0x10e)]:_0x5e428c[_0x1e46(0x10f)]}]},React[_0x1e46(0x107)](View,{'style':[_0x26167b['customToggleThumb'],{'transform':[{'translateX':_0x235c91?0x14:0x0}]}]}))),React['createElement'](View,{'style':_0x52c6d2['descriptionContainer']},React[_0x1e46(0x107)](Text,{'style':_0x4abcf3['platformCardDescription']},_0x2fda50[_0x1e46(0x110)])));}},[_0x519742,_0x477df2[_0x1e46(0xfd)]]);const _0x2dea73=async(_0x2d6f26,_0x412930)=>{const _0x5971c8={'wsmgb':function(_0x500669,_0x72eb66){return _0x500669===_0x72eb66;},'CgdbB':function(_0x726507,_0x37575f){return _0x5e428c[_0x1e46(0x111)](_0x726507,_0x37575f);},'CkRxu':function(_0x3b4281,_0x2cf663){return _0x3b4281(_0x2cf663);},'ORBQr':function(_0x2f8449,_0x24c65c){return _0x2f8449(_0x24c65c);},'uxNyP':_0x5e428c[_0x1e46(0x112)],'bdJaA':function(_0x5ad58d,_0x23c73a){return _0x5e428c[_0x1e46(0x113)](_0x5ad58d,_0x23c73a);},'EOpqE':function(_0x4a153d,_0x29d30c){return _0x5e428c['itqvw'](_0x4a153d,_0x29d30c);}};if(_0x5e428c[_0x1e46(0x114)](_0x5e428c[_0x1e46(0x115)],'NthkJ')){triggerHaptic(HapticType[_0x1e46(0x102)]),console[_0x1e46(0xa3)](_0x1e46(0x116)+_0x2d6f26+_0x1e46(0x117)+_0x412930);try{if(_0x5e428c[_0x1e46(0x118)](_0x5e428c['ePhhE'],_0x5e428c[_0x1e46(0x119)]))_0x164512(_0x39f495);else{if(_0x412930){const _0x30a891=await AsyncStorage[_0x1e46(0x8e)](_0x1e46(0x19)),_0x40d72e=_0x5e428c['sZiKl'](_0x30a891,_0x4ec019);console['log']('👤\x20[TOGGLE]\x20Username\x20check\x20-\x20stored:\x20\x22'+_0x30a891+_0x1e46(0x11a)+_0x4ec019+'\x22,\x20valid:\x20\x22'+_0x40d72e+'\x22');if(!_0x40d72e||_0x5e428c[_0x1e46(0xba)](_0x40d72e[_0x1e46(0x11b)](),'')){if(_0x5e428c[_0x1e46(0x11c)](_0x5e428c[_0x1e46(0x11d)],_0x5e428c['BVcBQ'])){console[_0x1e46(0x3a)](_0x5e428c[_0x1e46(0x11e)]);return;}else{const _0x2acbe8={'cSHHh':function(_0x58bb4d,_0x46f941){return _0x5971c8[_0x1e46(0x11f)](_0x58bb4d,_0x46f941);}},_0x23abc2=_0x2a796f[_0x1e46(0x90)](_0x3a5e9f);_0xd0b350['isArray'](_0x23abc2)&&(_0x23abc2['forEach'](_0x5579eb=>{var _0x213735;const _0x4c8481=_0x2acbe8[_0x1e46(0x120)](_0x213735=_0x5579eb[_0x1e46(0x97)],null)||_0x213735===void 0x0?void 0x0:_0x213735[_0x1e46(0x99)]();_0x4c8481&&!_0x1d9d22[_0x1e46(0x9a)](_0x4c8481)&&_0x1862d8[_0x1e46(0x9c)](_0x4c8481);}),_0x1774a6[_0x1e46(0xa3)]('✅\x20[PLATFORMS]\x20Loaded\x20from\x20platform_account_details:',_0x23abc2[_0x1e46(0xa5)](_0x570cda=>_0x570cda[_0x1e46(0x97)])));}}const _0x40b054=_0x4301fe[_0x1e46(0xff)](_0x49ffe7=>_0x49ffe7['id']===_0x2d6f26),_0x4edf5=(_0x5e428c['HPDoi'](_0x40b054,null)||_0x40b054===void 0x0?void 0x0:_0x40b054['isChatPlatform'])||_0x5e428c[_0x1e46(0x67)](isLLMPlatform,_0x2d6f26);if(_0x4edf5){console[_0x1e46(0xa3)]('🤖\x20[LLM]\x20Opening\x20WebView\x20for\x20'+_0x2d6f26+_0x1e46(0x121)),_0x5e428c['dTSxN'](_0x30b2d8,_0x2d6f26),_0x1519ca(_0x3c95e0=>({..._0x3c95e0,[_0x2d6f26]:_0x1e46(0x1d)}));const _0x59f6c0=_0x5e428c[_0x1e46(0x122)](getLLMPlatformUrl,_0x2d6f26);_0x59f6c0?(console[_0x1e46(0xa3)](_0x1e46(0x123)+_0x2d6f26+_0x1e46(0x124),_0x59f6c0),_0x5e428c[_0x1e46(0x125)](_0x33905c,_0x59f6c0),_0x5e428c[_0x1e46(0x6c)](_0x52d3b2,!![])):(console['error'](_0x1e46(0x126)+_0x2d6f26),_0x5e428c[_0x1e46(0x127)](_0x1519ca,_0xa7c336=>({..._0xa7c336,[_0x2d6f26]:_0x1e46(0x3a)})),_0x5e428c[_0x1e46(0x79)](triggerHaptic,HapticType['ERROR']));return;}if(_0x5e428c[_0x1e46(0x128)](isLinkedInPlatform,_0x2d6f26)){console[_0x1e46(0xa3)]('💼\x20[LINKEDIN]\x20Opening\x20WebView\x20for\x20LinkedIn\x20login...'),_0x30b2d8(_0x2d6f26),_0x5e428c[_0x1e46(0x6f)](_0x1519ca,_0x2fd127=>({..._0x2fd127,[_0x2d6f26]:_0x1e46(0x1d)}));const _0x3ae933=_0x5e428c[_0x1e46(0x112)];console[_0x1e46(0xa3)]('🌐\x20[LINKEDIN]\x20Opening\x20LinkedIn\x20URL:',_0x3ae933),_0x5e428c[_0x1e46(0x122)](_0x33905c,_0x3ae933),_0x5e428c[_0x1e46(0x129)](_0x52d3b2,!![]);return;}if(_0x5e428c['aGHlT'](hasNativeSDK,_0x2d6f26)){_0x5e428c[_0x1e46(0x12a)](_0x30b2d8,_0x2d6f26),_0x1519ca(_0x7952a2=>({..._0x7952a2,[_0x2d6f26]:_0x1e46(0x1d)}));const _0x3ee4c9=await _0x5e428c[_0x1e46(0x78)](initiateNativeAuth,_0x2d6f26,_0x40d72e);if(_0x3ee4c9){if(_0x5e428c[_0x1e46(0x12b)]('yGvhD',_0x5e428c['skWQu'])){const _0x50be8c=new _0x7516fe(_0x5867e1);let _0x308038=![];return _0x31326e[_0x1e46(0xb5)](_0x1df6b8=>{!_0x50be8c[_0x1e46(0x81)](_0x1df6b8)&&(_0x50be8c[_0x1e46(0x82)](_0x1df6b8),_0x308038=!![]);}),_0x308038?_0x50be8c:_0x119359;}else{const _0x5790dc=new Set(_0x48fa92);_0x5790dc[_0x1e46(0x82)](_0x2d6f26),_0x5e428c[_0x1e46(0x12c)](_0x473cff,_0x5790dc),_0x5e428c[_0x1e46(0x125)](_0x1519ca,_0x16554a=>({..._0x16554a,[_0x2d6f26]:_0x1e46(0xaa)})),_0x5e428c[_0x1e46(0x12d)](triggerHaptic,HapticType[_0x1e46(0x12e)]);}}else _0x5e428c[_0x1e46(0x127)](_0x1519ca,_0x437f14=>({..._0x437f14,[_0x2d6f26]:_0x1e46(0x3a)})),_0x5e428c['TiNdQ'](triggerHaptic,HapticType[_0x1e46(0xd2)]);}else{if(_0x5e428c[_0x1e46(0x12f)]('LFZRq',_0x5e428c[_0x1e46(0x130)])){console[_0x1e46(0xa3)](_0x1e46(0x131)+_0x2d6f26+_0x1e46(0x132)),_0x5e428c['iqxyr'](_0x30b2d8,_0x2d6f26),_0x5e428c['aNIuv'](_0x1519ca,_0x14acd5=>({..._0x14acd5,[_0x2d6f26]:_0x1e46(0x1d)}));const _0x4ea72f=await initiateOAuth(_0x2d6f26,_0x40d72e);console[_0x1e46(0xa3)](_0x1e46(0x133)+_0x2d6f26+':',_0x4ea72f?_0x4ea72f[_0x1e46(0xa0)](0x0,0x32)+_0x1e46(0x132):_0x1e46(0x134)),_0x4ea72f?(console[_0x1e46(0xa3)](_0x1e46(0x135)+_0x2d6f26),_0x5e428c[_0x1e46(0x66)](_0x33905c,_0x4ea72f),_0x5e428c[_0x1e46(0x136)](_0x52d3b2,!![])):(console[_0x1e46(0x3a)]('❌\x20[TOGGLE]\x20OAuth\x20failed\x20for\x20'+_0x2d6f26+_0x1e46(0x137)),_0x5e428c[_0x1e46(0x79)](_0x1519ca,_0x372886=>({..._0x372886,[_0x2d6f26]:_0x1e46(0x3a)})),triggerHaptic(HapticType[_0x1e46(0xd2)]));}else{const _0x52452f=_0x23d6e1[_0x1e46(0x90)](_0x1203cc);_0x52452f[_0x1e46(0xaa)]&&!_0xf5d8a7[_0x1e46(0x9a)](_0x1e46(0x24))&&(_0x2e07f3[_0x1e46(0x9c)](_0x5e428c[_0x1e46(0xec)]),_0x1559b7['log'](_0x5e428c[_0x1e46(0x138)]));}}}else{if(_0x1e46(0x139)!=='zrAql'){await _0x5e428c[_0x1e46(0x13a)](_0xf18d93,_0x2d6f26);const _0x5ae955=new Set(_0x48fa92);_0x5ae955[_0x1e46(0x13b)](_0x2d6f26),_0x5e428c[_0x1e46(0x75)](_0x473cff,_0x5ae955),_0x5e428c[_0x1e46(0x122)](_0x1519ca,_0x4a63b1=>({..._0x4a63b1,[_0x2d6f26]:_0x1e46(0x13c)})),triggerHaptic(HapticType[_0x1e46(0x102)]);try{if(_0x5e428c[_0x1e46(0x13d)]!==_0x5e428c[_0x1e46(0x13e)]){const _0x1dd424=await AsyncStorage['getItem'](_0x5e428c[_0x1e46(0x8f)]);if(_0x1dd424){const _0x5a08fd=JSON[_0x1e46(0x90)](_0x1dd424),_0x2844bb=_0x5a08fd[_0x1e46(0xfa)](_0x5501ac=>_0x5501ac['toLowerCase']()!==_0x2d6f26[_0x1e46(0x99)]());await AsyncStorage['setItem'](_0x1e46(0x13f),JSON[_0x1e46(0x140)](_0x2844bb)),console[_0x1e46(0xa3)](_0x1e46(0x141)+_0x2d6f26+_0x1e46(0x142),_0x2844bb);}}else return React[_0x1e46(0x107)](_0x4a1c22,{'visible':_0x3fdf70,'onComplete':_0x43de45,'onBack':_0x54e151});}catch(_0x20451f){_0x5e428c[_0x1e46(0xc8)](_0x5e428c[_0x1e46(0x143)],_0x5e428c[_0x1e46(0x144)])?(_0x5d3956['log'](_0x1e46(0x123)+_0x438b51+_0x1e46(0x124),_0x410afb),_0x5e428c[_0x1e46(0x6f)](_0x2babad,_0x279eb1),_0x5e428c[_0x1e46(0x88)](_0x43aed0,!![])):console['error'](_0x5e428c[_0x1e46(0x145)],_0x20451f);}await AsyncStorage[_0x1e46(0x146)](_0x1e46(0xa9)+_0x2d6f26),_0x2d6f26['toLowerCase']()===_0x5e428c['mJTQo']&&(_0x5e428c[_0x1e46(0x103)](_0x5e428c['LvFVf'],_0x5e428c[_0x1e46(0x147)])?await AsyncStorage[_0x1e46(0x146)](_0x1e46(0x10)):(_0x5971c8[_0x1e46(0x148)](_0x431c70,_0xd89310['BUTTON_PRESS']),_0x5971c8['CkRxu'](_0x45a113,![])));}else{_0x465b8d['log'](_0x1e46(0x149)),_0x5971c8[_0x1e46(0x14a)](_0x5dd44e,_0xece5be),_0x5971c8[_0x1e46(0x14b)](_0x26c7b9,_0x5b41df=>({..._0x5b41df,[_0x41cbba]:_0x1e46(0x1d)}));const _0x3c7d54=_0x5971c8[_0x1e46(0x14c)];_0x4cb08d[_0x1e46(0xa3)]('🌐\x20[LINKEDIN]\x20Opening\x20LinkedIn\x20URL:',_0x3c7d54),_0x5971c8[_0x1e46(0x14d)](_0x1ad9fb,_0x3c7d54),_0x5971c8[_0x1e46(0x14e)](_0x41b503,!![]);return;}}}}catch(_0x919746){console[_0x1e46(0x3a)](_0x1e46(0x14f)+_0x2d6f26+':',_0x919746),_0x5e428c[_0x1e46(0x136)](_0x1519ca,_0x3a8c9d=>({..._0x3a8c9d,[_0x2d6f26]:_0x1e46(0x3a)})),_0x5e428c[_0x1e46(0x150)](triggerHaptic,HapticType[_0x1e46(0xd2)]);}}else _0x5e428c['FJJog'](_0x430489,_0x20c8bc),_0x5013b2(_0x3123e1),_0x5e428c['FxthX'](_0x2c9449,![]),_0x5e428c[_0x1e46(0x125)](_0x10f9aa,!![]);},_0x2179ca=async()=>{if(_0x5e428c[_0x1e46(0x118)](_0x5e428c[_0x1e46(0x151)],_0x5e428c[_0x1e46(0x152)])){_0x5e428c[_0x1e46(0x136)](triggerHaptic,HapticType[_0x1e46(0x102)]),_0x5e428c[_0x1e46(0x75)](_0x3ae4fa,!![]);try{_0x5e428c[_0x1e46(0x153)](_0x4f4d88,!![]);}finally{_0x5e428c[_0x1e46(0x129)](_0x3ae4fa,![]);}}else _0x5412ec(_0x3add47=>({..._0x3add47,[_0x458781]:_0x1e46(0x13c)}));},_0x5a7faf=()=>{_0x5e428c[_0x1e46(0x65)](triggerHaptic,HapticType[_0x1e46(0x102)]),_0x15ee2a&&_0x15ee2a();},_0x3070c8=async()=>{_0x5e428c['Xtgkp'](triggerHaptic,HapticType['BUTTON_PRESS']),_0x5e428c['FJJog'](_0x1f31e1,!![]),await new Promise(_0xcb80b=>setTimeout(_0xcb80b,0x32));try{_0x5e428c['ajICG']('kllmo',_0x5e428c[_0x1e46(0x154)])?_0x1d4744[_0x1e46(0x9c)](_0x240961):_0x45d765?await _0x5e428c[_0x1e46(0x155)](_0x45d765,_0x580e5d):await _0x5e428c[_0x1e46(0x156)](_0x56ed6a,Array[_0x1e46(0xb8)](_0x48fa92));}finally{_0x5e428c['rEuqy'](_0x5e428c[_0x1e46(0x157)],'xqAfF')?_0x5e428c[_0x1e46(0x158)](_0x1f31e1,![]):_0x1ac3da();}},_0x5f2a16=()=>{const _0x3dcca3={'dYOaR':function(_0x3b309a,_0x967955){return _0x5e428c[_0x1e46(0x159)](_0x3b309a,_0x967955);}};if(_0x5e428c[_0x1e46(0x15a)]!==_0x1e46(0x15b))_0x5e428c[_0x1e46(0x6c)](triggerHaptic,HapticType['BUTTON_PRESS']),_0x5e428c['evkQZ'](_0x56be6b,![]);else return()=>{_0x5bdd39&&_0x3dcca3[_0x1e46(0x15c)](_0x500729,_0x587ea0);};},_0x33b68e=async _0x347ef6=>{_0x5e428c['zOnIK'](triggerHaptic,HapticType[_0x1e46(0x102)]),_0x533507(_0x347ef6);try{await AsyncStorage[_0x1e46(0xce)](_0x1e46(0x15d),_0x347ef6),console[_0x1e46(0xa3)](_0x1e46(0x15e)+_0x347ef6);}catch(_0x5182a9){console['error'](_0x1e46(0x15f),_0x5182a9);}if(_0x429954){if(_0x5e428c[_0x1e46(0x160)]!==_0x5e428c[_0x1e46(0x160)])return React['createElement'](_0x4258db,{'visible':_0x16692e,'onComplete':_0x118b7a});else _0x5e428c[_0x1e46(0x161)](_0x429954,_0x347ef6);}},_0x545874=()=>{if(_0x5e428c[_0x1e46(0x162)](_0x5e428c[_0x1e46(0x163)],_0x5e428c['QNzde'])){const Linking=__ONAIROS_REQ_FUNC__(0x0)[_0x1e46(0x164)];Linking['openURL'](_0x5e428c[_0x1e46(0x165)]);}else _0x44ba5a(_0xa76b89);},_0x50091d=async _0x1ac84f=>{_0x5e428c['KczdL']===_0x5e428c[_0x1e46(0x166)]?(_0x5e428c[_0x1e46(0x167)](_0x16b267,_0x1ac84f),_0x5e428c['qmqzN'](setTemporaryPin,_0x1ac84f),_0x5e428c['HYAyU'](_0x4f4d88,![]),_0x5e428c[_0x1e46(0x168)](_0x4837fa,!![])):(_0x25c56d[_0x1e46(0x9c)](_0x47102a),_0xe89d3f['log']('✅\x20[PLATFORMS]\x20Loaded\x20LLM\x20platform:\x20'+_0x1c3b4e));},_0x3332bf=()=>{_0x5e428c[_0x1e46(0x169)](_0x4837fa,![]),_0x5e428c[_0x1e46(0x16a)](_0x56be6b,!![]);},_0x53d702=async _0x4affe1=>{const _0xc4373={'AdUgd':function(_0xe13c85,_0x493abc){return _0x5e428c[_0x1e46(0x16b)](_0xe13c85,_0x493abc);}};if(_0x5e428c[_0x1e46(0x16c)](_0x5e428c[_0x1e46(0x16d)],_0x1e46(0x16e))){const _0x4508fc=new _0x3e8ba9(_0x4016b2);return _0x4508fc[_0x1e46(0x82)](_0xb61db),_0x4508fc;}else{if(_0x48eace){if(_0x5e428c[_0x1e46(0x16f)](_0x4affe1,_0x5e428c[_0x1e46(0x170)])||_0x5e428c[_0x1e46(0x171)](_0x4affe1,_0x5e428c[_0x1e46(0x172)])){if(_0x5e428c[_0x1e46(0x173)](_0x5e428c[_0x1e46(0x174)],_0x1e46(0x3b))){_0x232523(_0x48eace),_0x5e428c[_0x1e46(0x175)](_0x1519ca,_0x26f377=>({..._0x26f377,[_0x48eace]:_0x1e46(0xaa)}));try{const _0x2b012c=await AsyncStorage[_0x1e46(0x8e)](_0x5e428c[_0x1e46(0x8f)]),_0x367457=_0x2b012c?JSON['parse'](_0x2b012c):[];!_0x367457['includes'](_0x48eace[_0x1e46(0x99)]())&&(_0x367457[_0x1e46(0x9c)](_0x48eace[_0x1e46(0x99)]()),await AsyncStorage[_0x1e46(0xce)](_0x1e46(0x13f),JSON[_0x1e46(0x140)](_0x367457)),console[_0x1e46(0xa3)](_0x1e46(0x176)+_0x48eace+_0x1e46(0x177),_0x367457));}catch(_0x2ce887){console[_0x1e46(0x3a)](_0x5e428c[_0x1e46(0x89)],_0x2ce887);}_0x5e428c[_0x1e46(0x159)](isLLMPlatform,_0x48eace)&&(await AsyncStorage[_0x1e46(0xce)](_0x1e46(0xa9)+_0x48eace,JSON['stringify']({'connected':!![],'platform':_0x48eace,'connectedAt':new Date()['toISOString']()})),console['log'](_0x1e46(0x178)+_0x48eace+'\x20connection\x20stored\x20locally')),_0x5e428c[_0x1e46(0x179)](_0x48eace[_0x1e46(0x99)](),_0x5e428c['mJTQo'])&&(await AsyncStorage['setItem'](_0x1e46(0x10),JSON[_0x1e46(0x140)]({'connected':!![],'platform':_0x5e428c[_0x1e46(0xec)],'connectedAt':new Date()['toISOString']()})),console[_0x1e46(0xa3)]('✅\x20[LINKEDIN]\x20Connection\x20stored\x20locally'));}else{const _0x45e06f=new _0xf41a98(_0x551f60);_0x45e06f[_0x1e46(0x82)](_0x1212d3),_0x4669c4(_0x45e06f),_0xc4373['AdUgd'](_0x11d370,_0x2b7c1e=>({..._0x2b7c1e,[_0x24489c]:_0x1e46(0xaa)})),_0x3b0c96(_0x14b471[_0x1e46(0x12e)]);}}else _0x5e428c[_0x1e46(0x17a)](_0x1519ca,_0x2898fe=>({..._0x2898fe,[_0x48eace]:_0x1e46(0x3a)})),triggerHaptic(HapticType[_0x1e46(0xd2)]);}_0x5e428c['IGNBE'](_0x52d3b2,![]),_0x5e428c['zQNLL'](_0x33905c,''),_0x30b2d8('');}};_0x5e428c[_0x1e46(0x17b)](useEffect,()=>{const _0x5b3871={'MzxRA':function(_0x2fb3c7,_0xdff461){return _0x2fb3c7(_0xdff461);},'xNqps':function(_0x4c3d21,_0xd1c6e2){return _0x5e428c[_0x1e46(0x17c)](_0x4c3d21,_0xd1c6e2);}};if(_0x5e428c[_0x1e46(0x17d)](_0x7d4592,!_0x324281)){if(_0x5e428c[_0x1e46(0x173)](_0x5e428c[_0x1e46(0x17e)],_0x1e46(0x17f)))_0x40c669&&_0xc43f38();else{const _0x2f3d78=setTimeout(()=>{_0x5b3871[_0x1e46(0x180)](_0x473cff,_0x5ec99c=>{const _0xff67ca=new Set(_0x5ec99c);return _0xff67ca['add'](_0x7d4592),_0xff67ca;}),_0x5b3871[_0x1e46(0x181)](triggerHaptic,HapticType[_0x1e46(0x12e)]),console[_0x1e46(0xa3)](_0x1e46(0x182)+_0x7d4592),_0x5b3871[_0x1e46(0x180)](_0x232523,null);},0x12c);return()=>clearTimeout(_0x2f3d78);}}},[_0x7d4592,_0x324281]);const _0x18b373=()=>{const _0xac3daa={'xdSZS':_0x5e428c[_0x1e46(0x92)]};_0x5e428c[_0x1e46(0x171)](_0x5e428c[_0x1e46(0x183)],_0x5e428c['HNGQg'])?(_0x5e428c[_0x1e46(0x184)](_0x52d3b2,![]),_0x5e428c['sTPCX'](_0x33905c,''),_0x48eace&&(_0x5e428c[_0x1e46(0x185)](_0x5e428c[_0x1e46(0x186)],_0x5e428c['Dgndv'])?(_0x2fe18d(![]),_0x5e428c[_0x1e46(0x187)](_0x401482,''),_0x84ee57&&_0x5e428c['wWadC'](_0x2c35c6,_0x271d84=>({..._0x271d84,[_0x35ab88]:_0x1e46(0x13c)})),_0x5e428c[_0x1e46(0x188)](_0x1a6834,'')):_0x5e428c[_0x1e46(0x6d)](_0x1519ca,_0x284e16=>({..._0x284e16,[_0x48eace]:_0x1e46(0x13c)}))),_0x5e428c[_0x1e46(0x6b)](_0x30b2d8,'')):(_0x3ddc7b[_0x1e46(0x9c)](..._0x473281),_0x52979c[_0x1e46(0xa3)](_0xac3daa[_0x1e46(0x189)],_0x1db225));},_0x45b3b1=()=>{_0x5e428c[_0x1e46(0x18a)](_0x4f4d88,![]);},_0x3ddea3=()=>{_0x56a82b&&(_0x5e428c[_0x1e46(0x18b)](_0x5e428c['ZeGeW'],_0x5e428c[_0x1e46(0x18c)])?!_0x594c76['has'](_0x38b860)&&(_0x115413[_0x1e46(0x82)](_0x5e18d2),_0x5bd991=!![]):_0x5e428c[_0x1e46(0x18d)](_0x56a82b));},_0x1fb89c=()=>{if(_0x5e428c[_0x1e46(0x18e)]('lfFJf',_0x1e46(0x18f))){Animated[_0x1e46(0xd9)](_0x496824,{'toValue':0x1,'duration':0xfa0,'useNativeDriver':![]})['start']();const _0x16ec7b=_0x5e428c[_0x1e46(0x78)](setTimeout,()=>{_0x5e428c[_0x1e46(0x171)](_0x1e46(0x190),_0x5e428c[_0x1e46(0x191)])?(_0x5e428c['hqWef'](triggerHaptic,HapticType[_0x1e46(0x12e)]),Vibration[_0x1e46(0x192)]([0x0,0x64,0x32,0x64]),_0x5e428c[_0x1e46(0x18d)](_0x3ddea3)):(_0xcf1485(_0x363f77=>({..._0x363f77,[_0xe4781e]:_0x1e46(0x3a)})),_0x57c692(_0x23b351['ERROR']));},0xfa0);_0x5e428c['FJJog'](_0x51bfb2,_0x16ec7b);}else _0x5219c6[_0x1e46(0x3a)](_0x1e46(0x15f),_0x2167ba);},_0x1d948a=()=>{const _0x5c6f08={'HXylD':function(_0x1398a0,_0x3c1b2b){return _0x5e428c[_0x1e46(0x193)](_0x1398a0,_0x3c1b2b);},'oCKnp':_0x5e428c[_0x1e46(0xd5)],'BQSxj':function(_0x2a9794,_0x3094cc){return _0x5e428c['hXrar'](_0x2a9794,_0x3094cc);}};if(_0x5e428c[_0x1e46(0x194)](_0x5e428c[_0x1e46(0x195)],_0x5e428c[_0x1e46(0x195)]))_0x2d7533&&(_0x5e428c[_0x1e46(0x7a)](_0x5e428c[_0x1e46(0x196)],_0x5e428c[_0x1e46(0x197)])?(_0x49a5a5[_0x1e46(0x3a)]('Error\x20toggling\x20platform\x20'+_0x3319c6+':',_0xef6aff),_0x5c6f08[_0x1e46(0x198)](_0x116ec6,_0x1ec977=>({..._0x1ec977,[_0x2938a0]:_0x1e46(0x3a)})),_0x5c6f08['HXylD'](_0x95ea4c,_0x468add['ERROR'])):(_0x5e428c['evkQZ'](clearTimeout,_0x2d7533),_0x5e428c['sTPCX'](_0x51bfb2,null))),_0x496824[_0x1e46(0x199)](0x0),Animated[_0x1e46(0xd9)](_0x496824,{'toValue':0x0,'duration':0xc8,'useNativeDriver':![]})[_0x1e46(0xda)]();else{_0x466060[_0x1e46(0x3a)](_0x5c6f08[_0x1e46(0x19a)],_0x537884);const _0x4f6c9f=_0x1e46(0xd6)+_0x463779['floor'](_0x5c6f08[_0x1e46(0x19b)](_0x4e45b7[_0x1e46(0xcd)](),0x2710));_0x5c6f08['HXylD'](_0xb3c077,_0x4f6c9f);}};useEffect(()=>{const _0x1749e5={'RgHGM':function(_0x696cbe,_0x22928e){return _0x5e428c[_0x1e46(0x167)](_0x696cbe,_0x22928e);},'JTiIv':function(_0x2819d7,_0x495f24){return _0x5e428c[_0x1e46(0x155)](_0x2819d7,_0x495f24);}};if(_0x5e428c[_0x1e46(0x19c)](_0x5e428c[_0x1e46(0x19d)],_0x5e428c[_0x1e46(0x19d)]))return()=>{_0x2d7533&&(_0x5e428c[_0x1e46(0x19e)](_0x5e428c[_0x1e46(0x19f)],'YoPWH')?_0x5e428c['IohTE'](clearTimeout,_0x2d7533):(_0x1749e5[_0x1e46(0x1a0)](_0x2d1839,_0x3dd69a=>{const _0x5ed6aa=new _0x272bd6(_0x3dd69a);return _0x5ed6aa[_0x1e46(0x82)](_0x3d611f),_0x5ed6aa;}),_0x1749e5['JTiIv'](_0x3fb214,_0x20318a[_0x1e46(0x12e)]),_0x4cd415[_0x1e46(0xa3)](_0x1e46(0x182)+_0x327090),_0x1749e5['RgHGM'](_0x6b5968,null)));};else _0x5928d9[_0x1e46(0x3a)](_0x5e428c[_0x1e46(0x145)],_0x51c04b);},[_0x2d7533]),_0x5e428c[_0x1e46(0x78)](useEffect,()=>{if(_0x5e428c[_0x1e46(0xfb)](_0x1e46(0x1a1),_0x1e46(0x1a1))){if(_0x5e428c[_0x1e46(0x1a2)](_0x324281,_0x14a66e)){if(_0x1e46(0x1a3)!==_0x5e428c['WAECj']){const _0x4629f5=_0x1c741d[_0x1e46(0xdc)][_0x1e46(0xdd)]['x'],_0x2120d9=_0x56b5e0['nativeEvent'][_0x1e46(0xde)][_0x1e46(0xdf)],_0x2daf68=_0x35aed7[_0x1e46(0xdc)]['contentSize']['width'];_0x3e5fe9[_0x1e46(0x69)]=_0x4629f5;const _0x5a57d2=_0x2daf68-_0x2120d9,_0x2231be=_0x5e428c[_0x1e46(0xe3)](_0x5a57d2,0x0)?_0x5e428c[_0x1e46(0x1a4)](_0x4629f5,_0x5a57d2):0x0;_0x5e428c[_0x1e46(0x1a5)](_0x5b9be3,_0x2231be),_0x5e428c['DPMVS'](_0x4629f5,0xa)&&_0x248530&&_0x190d9d(![]);}else console['log']('📊\x20[STATE]\x20WebView\x20state\x20changed\x20-\x20showOAuthWebView:\x20'+_0x324281+',\x20oauthUrl:\x20'+(_0x14a66e?_0x5e428c['pYzTL'](_0x5e428c[_0x1e46(0x1a6)],_0x14a66e[_0x1e46(0xa0)](0x0,0x28))+_0x1e46(0x84):_0x5e428c['RWDRW']));}}else _0x4b53ae[_0x1e46(0xa3)]('✅\x20[TOGGLE]\x20Setting\x20WebView\x20state\x20-\x20showing\x20modal\x20for\x20'+_0x4be17f),_0x5e428c[_0x1e46(0x1a7)](_0x2d94fc,_0x1c4a33),_0x5e428c[_0x1e46(0x1a8)](_0x27f5e,!![]);},[_0x324281,_0x14a66e]);const _0x4fa1bc=Math['min'](0x5,Math['max'](0x1,_0x5e428c[_0x1e46(0x1a9)](_0x48fa92[_0x1e46(0xc4)],0x1))),_0x10a630=0x50,_0x5d844e=0x46;if(_0x45388b)return _0x5e428c[_0x1e46(0x1aa)](_0x5e428c[_0x1e46(0x1ab)],'aFaBU')?React[_0x1e46(0x107)](_0x13e07f,{'visible':_0x45388b,'onComplete':_0x50091d,'onBack':_0x45b3b1}):(_0x2d7ea1[_0x1e46(0xa3)](_0x1e46(0x1ac)+_0x537a02+_0x1e46(0x1ad)+_0x1bf88a['substring'](0x0,0x3c)+_0x1e46(0x132)),React['createElement'](_0x470d7f,{'url':_0x22bcca,'platform':_0x85226b,'onClose':_0x18b068,'onSuccess':_0x39f388,'onComplete':_0x3c038d,'username':_0x20e533}));if(_0x2b62aa)return React[_0x1e46(0x107)](_0x5b45aa,{'visible':_0x2b62aa,'onComplete':_0x3332bf});if(_0x5e428c['aNpjP'](_0x324281,_0x14a66e)){if(_0x5e428c['aaJDo'](_0x5e428c['qIqeX'],_0x5e428c[_0x1e46(0x1ae)]))return console[_0x1e46(0xa3)]('✅\x20[WEBVIEW]\x20Rendering\x20OAuthWebView\x20for\x20'+_0x48eace+_0x1e46(0x1ad)+_0x14a66e[_0x1e46(0xa0)](0x0,0x3c)+_0x1e46(0x132)),React[_0x1e46(0x107)](OAuthWebView,{'url':_0x14a66e,'platform':_0x48eace,'onClose':_0x18b373,'onSuccess':_0x53d702,'onComplete':_0x18b373,'username':_0x4ec019});else{const _0x29f938=_0xa9ae0d(()=>{_0x5e428c[_0x1e46(0x1af)](_0x25347d,_0x3c9cd7=>{const _0x3e0312=new _0x56f9f3(_0x3c9cd7);return _0x3e0312[_0x1e46(0x82)](_0x5b8b3c),_0x3e0312;}),_0x5e428c[_0x1e46(0x1b0)](_0xd2913,_0xc8a3f5[_0x1e46(0x12e)]),_0x34476c[_0x1e46(0xa3)](_0x1e46(0x182)+_0x39b7af),_0x5e428c[_0x1e46(0x1a8)](_0x69cc3b,null);},0x12c);return()=>_0x5ec397(_0x29f938);}}const _0x252b75=()=>{_0x5e428c[_0x1e46(0x1b1)](triggerHaptic,HapticType[_0x1e46(0x102)]),_0x5e428c['wZanb'](_0x56be6b,![]);};if(_0x523743)return React[_0x1e46(0x107)](_0x2d6eff,{'visible':_0x523743,'onAccept':_0x3070c8,'onDecline':_0x5f2a16,'connectedPlatforms':Array['from'](_0x48fa92),'onConnectMore':_0x252b75,'loading':_0x4e86e6});return React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1b2)]},React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1b3)]},React[_0x1e46(0x107)](Text,{'style':styles['title']},_0x5e428c[_0x1e46(0x1b4)]),React[_0x1e46(0x107)](Text,{'style':styles['subtitle']},_0x5e428c[_0x1e46(0x1b5)])),React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1b6)]},React[_0x1e46(0x107)](_0x1b6dcf,{'level':_0x4fa1bc,'style':styles['largePersona']}),React[_0x1e46(0x107)](ScrollView,{'ref':_0x267a77,'horizontal':!![],'style':[styles['platformIconsOverlay'],{'bottom':_0x10a630}],'contentContainerStyle':[styles[_0x1e46(0x1b7)],_0x477df2[_0x1e46(0xfd)]<=0x4&&styles['platformIconsCentered']],'showsHorizontalScrollIndicator':![],'onScroll':_0x149c6a,'scrollEventThrottle':0x10,'decelerationRate':_0x5e428c[_0x1e46(0x1b8)],'scrollEnabled':_0x5e428c[_0x1e46(0xe3)](_0x477df2[_0x1e46(0xfd)],0x4)},_0x477df2[_0x1e46(0xa5)](_0x5e5f0d=>{if(_0x5e428c[_0x1e46(0x1b9)]===_0x5e428c[_0x1e46(0x1b9)]){const _0x579b6d=_0x4028fb===_0x5e5f0d['id'],_0x274ed7=_0x48fa92[_0x1e46(0x81)](_0x5e5f0d['id']),_0x297d75=_0x25ddaa[_0x5e5f0d['id']]===_0x5e428c[_0x1e46(0x104)];return React[_0x1e46(0x107)](TouchableOpacity,{'key':_0x5e5f0d['id'],'style':[styles[_0x1e46(0x1ba)],_0x579b6d&&styles[_0x1e46(0x1bb)]],'onPress':()=>{const _0x4bd7b2={'QfQlm':function(_0x1fe521,_0x4d3a1b){return _0x1fe521(_0x4d3a1b);}};if(_0x5e428c[_0x1e46(0x106)](_0x5e428c['ayGwM'],_0x5e428c[_0x1e46(0x1bc)])){if(_0x6df362['length']>0x0){const _0x5a77f7=_0x4a0af1[0x0]['id'];(!_0x37ef58||!_0xcba076['find'](_0x2e0410=>_0x2e0410['id']===_0x559522))&&_0x4bd7b2['QfQlm'](_0x2de788,_0x5a77f7);}}else _0x5e428c[_0x1e46(0x187)](triggerHaptic,HapticType[_0x1e46(0x102)]),_0x5e428c[_0x1e46(0x1bd)](_0x36c93c,_0x5e5f0d['id']);},'activeOpacity':0.7},React['createElement'](Image,{'source':_0x5e5f0d['icon'],'style':[styles['platformIcon'],_0x5e5f0d['id']===_0x5e428c['TLXsp']&&styles[_0x1e46(0x1be)],_0x5e428c[_0x1e46(0x173)](_0x5e5f0d['id'],_0x5e428c[_0x1e46(0xe9)])&&styles['pinterestIcon'],_0x5e428c['aaJDo'](_0x5e5f0d['id'],_0x5e428c[_0x1e46(0xee)])&&styles[_0x1e46(0x1bf)],_0x5e428c[_0x1e46(0x1c0)](_0x5e5f0d['id'],_0x5e428c[_0x1e46(0xa7)])&&styles['chatgptIcon'],_0x5e428c[_0x1e46(0x1c1)](_0x5e5f0d['id'],_0x1e46(0x56))&&styles[_0x1e46(0x1c2)],_0x5e428c[_0x1e46(0x1c3)](_0x5e5f0d['id'],_0x5e428c['khfyc'])&&styles['grokIcon']],'resizeMode':_0x5e428c['VUxXt']}),_0x297d75&&React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1c4)]}),_0x274ed7&&React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1c5)]}));}else Animated[_0x1e46(0xd8)](Animated[_0x1e46(0x1c6)]([Animated['timing'](_0x585d90,{'toValue':0x1,'duration':0x3e8,'useNativeDriver':!![]}),Animated[_0x1e46(0xd9)](_0x529e63,{'toValue':0x0,'duration':0x3e8,'useNativeDriver':!![]})]))[_0x1e46(0xda)]();})),_0x477df2[_0x1e46(0xfd)]>0x4&&React['createElement'](View,{'style':[styles[_0x1e46(0x1c7)],{'bottom':_0x5d844e}]},React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1c8)]},React[_0x1e46(0x107)](View,{'style':[styles[_0x1e46(0x1c9)],{'left':_0x5e428c[_0x1e46(0xcc)](_0x13941a,0x38)}]}))),_0x11beba&&_0x477df2[_0x1e46(0xfd)]>0x4&&React['createElement'](Animated[_0x1e46(0x1ca)],{'style':[styles['scrollIndicator'],{'transform':[{'translateX':_0x260ddb[_0x1e46(0x1cb)]({'inputRange':[0x0,0x1],'outputRange':[0x0,0x8]})}],'opacity':_0x260ddb[_0x1e46(0x1cb)]({'inputRange':[0x0,0x1],'outputRange':[0.5,0x1]})}]},React[_0x1e46(0x107)](Text,{'style':styles[_0x1e46(0x1cc)]},'›'))),React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1cd)]},_0x4028fb&&((()=>{const _0x2cca88=_0x477df2[_0x1e46(0xff)](_0x581285=>_0x581285['id']===_0x4028fb);if(!_0x2cca88)return null;const _0x413449=_0x48fa92[_0x1e46(0x81)](_0x4028fb),_0xd583e4=_0x25ddaa[_0x4028fb]===_0x5e428c[_0x1e46(0x104)],_0x2187ac=_0x5e428c[_0x1e46(0xca)](_0x217a80,null)||_0x217a80===void 0x0?void 0x0:_0x217a80[_0x1e46(0x9a)](_0x4028fb);return React[_0x1e46(0x107)](View,{'style':styles['platformCard']},React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1ce)]},React[_0x1e46(0x107)](Text,{'style':styles['platformCardTitle']},_0x2cca88[_0x1e46(0xcb)]),_0x2187ac&&React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x10a)]},React[_0x1e46(0x107)](Text,{'style':styles[_0x1e46(0x10b)]},_0x1e46(0x1e))),React[_0x1e46(0x107)](TouchableOpacity,{'activeOpacity':0.8,'onPress':()=>!_0xd583e4&&_0x2dea73(_0x4028fb,!_0x413449),'disabled':_0xd583e4,'style':[styles['customToggleTrack'],{'backgroundColor':_0x413449?_0x5e428c['VmgoC']:_0x5e428c['ojCpB']}]},React[_0x1e46(0x107)](View,{'style':[styles['customToggleThumb'],{'transform':[{'translateX':_0x413449?0x14:0x0}]}]}))),React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1cf)]},React[_0x1e46(0x107)](Text,{'style':styles[_0x1e46(0x1d0)]},_0x2cca88['description'])));})())),React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1d1)]},React[_0x1e46(0x107)](Text,{'style':styles[_0x1e46(0x1d2)]},_0x5e428c[_0x1e46(0x1d3)]),React['createElement'](Text,{'style':styles[_0x1e46(0x1d4)]},_0x5e428c[_0x1e46(0x1d5)]),React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1d6)]},MODEL_REFRESH_OPTIONS['map'](_0x33afd0=>React['createElement'](TouchableOpacity,{'key':_0x33afd0[_0x1e46(0x1d7)],'style':[styles['refreshOption'],_0x2d54a2===_0x33afd0[_0x1e46(0x1d7)]&&styles[_0x1e46(0x1d8)]],'onPress':()=>_0x33b68e(_0x33afd0[_0x1e46(0x1d7)]),'activeOpacity':0.7},React[_0x1e46(0x107)](View,{'style':[styles[_0x1e46(0x1d9)],_0x2d54a2===_0x33afd0[_0x1e46(0x1d7)]&&styles[_0x1e46(0x1da)]]},_0x2d54a2===_0x33afd0[_0x1e46(0x1d7)]&&React['createElement'](View,{'style':styles[_0x1e46(0x1db)]})),React[_0x1e46(0x107)](Text,{'style':[styles[_0x1e46(0x1dc)],_0x2d54a2===_0x33afd0[_0x1e46(0x1d7)]&&styles[_0x1e46(0x1dd)]]},_0x33afd0[_0x1e46(0x1de)])))),React[_0x1e46(0x107)](TouchableOpacity,{'onPress':_0x545874,'style':styles['privacyLinkContainer']},React['createElement'](Text,{'style':styles[_0x1e46(0x1df)]},_0x1e46(0x1e0)))),React['createElement'](View,{'style':styles[_0x1e46(0x1e1)]},React[_0x1e46(0x107)](View,{'style':styles[_0x1e46(0x1e2)]},React['createElement'](_0x44726c,{'label':_0x1e46(0x1e3),'onPress':_0x2179ca,'disabled':loading||_0x48fa92['size']===0x0||_0x371deb||_0x33c7c8,'loading':_0x5e428c[_0x1e46(0x1e4)](loading,_0x371deb)||_0x33c7c8}),React[_0x1e46(0x107)](TouchableOpacity,{'style':styles[_0x1e46(0x1e5)],'activeOpacity':0x1,'onPressIn':_0x1fb89c,'onPressOut':_0x1d948a,'onPress':()=>{if(_0x5e428c[_0x1e46(0x162)]('QgfAC',_0x5e428c[_0x1e46(0x1e6)])){if(_0x5e428c[_0x1e46(0x1e7)](_0x48fa92[_0x1e46(0xc4)],0x0)&&!loading&&!_0x371deb&&!_0x33c7c8){if(_0x5e428c[_0x1e46(0x1e8)](_0x5e428c[_0x1e46(0x1e9)],_0x5e428c[_0x1e46(0x1e9)])){const Linking=_0x5e428c[_0x1e46(0x1b1)](_0x269792,0x0)[_0x1e46(0x164)];Linking[_0x1e46(0x1ea)](_0x5e428c[_0x1e46(0x165)]);}else _0x2179ca();}}else return React[_0x1e46(0x107)](_0x4dc363,{'visible':_0x49c15d,'onAccept':_0x3fc327,'onDecline':_0x2d913c,'connectedPlatforms':_0x4f1df1[_0x1e46(0xb8)](_0x55760e),'onConnectMore':_0x189714,'loading':_0x4bb184});}},React['createElement'](Animated[_0x1e46(0x1ca)],{'style':[styles['holdProgressBar'],{'width':_0x496824[_0x1e46(0x1cb)]({'inputRange':[0x0,0x1],'outputRange':['0%',_0x5e428c[_0x1e46(0x1eb)]]})}]}))),_0x15ee2a&&React[_0x1e46(0x107)](TouchableOpacity,{'style':styles[_0x1e46(0x1ec)],'onPress':_0x5a7faf},React[_0x1e46(0x107)](Text,{'style':styles[_0x1e46(0x1ed)]},_0x5e428c['BQXkm'])),_0x477bbc&&React[_0x1e46(0x107)](TouchableOpacity,{'style':styles[_0x1e46(0x1ee)],'onPress':_0x477bbc},React[_0x1e46(0x107)](Text,{'style':styles[_0x1e46(0x1ef)]},_0x5e428c[_0x1e46(0x1f0)]))));},styles=StyleSheet[_0x1e46(0x1f1)]({'container':{'flex':0x1,'backgroundColor':COLORS[_0x1e46(0x1f2)],'paddingHorizontal':0x18},'headingContainer':{'width':'100%','marginBottom':SPACING['sm'],'paddingTop':0x8,'marginTop':0x8},'title':{'fontFamily':_0x1e46(0x1f3),'fontWeight':_0x1e46(0x1f4),'fontSize':0x18,'lineHeight':0x20,'color':COLORS[_0x1e46(0x1f5)],'textAlign':'left','marginBottom':0x4},'subtitle':{'fontFamily':_0x1e46(0x1f6),'fontWeight':_0x1e46(0x1f7),'fontSize':0x10,'lineHeight':0x18,'color':COLORS[_0x1e46(0x1f8)],'textAlign':_0x1e46(0x1f9)},'personaContainer':{'alignItems':_0x1e46(0x1fa),'position':_0x1e46(0x1fb),'marginTop':-0xa,'marginBottom':-0x50,'height':0x1c2},'largePersona':{'width':0x1f4,'height':0x1f4},'platformIconsOverlay':{'position':_0x1e46(0x1fc),'width':_0x1e46(0x1fd),'height':0x46,'zIndex':0xa},'platformIconsScrollContent':{'flexDirection':_0x1e46(0x1fe),'alignItems':'center','paddingHorizontal':0x14,'gap':0x18},'platformIconsCentered':{'flexGrow':0x1,'justifyContent':_0x1e46(0x1fa)},'platformIconButton':{'width':0x34,'height':0x34,'borderRadius':0x1a,'backgroundColor':_0x1e46(0x1ff),'justifyContent':'center','alignItems':'center','borderWidth':0x3,'borderColor':_0x1e46(0x200),'shadowColor':_0x1e46(0x201),'shadowOffset':{'width':0x0,'height':0x2},'shadowOpacity':0.15,'shadowRadius':0x4,'elevation':0x4},'platformIconButtonSelected':{'borderColor':'#3B82F6','backgroundColor':'#EFF6FF'},'platformIcon':{'width':0x1e,'height':0x1e},'youtubeIcon':{'width':0x2a,'height':0x2a},'pinterestIcon':{'width':0x24,'height':0x24},'gmailIcon':{'width':0x24,'height':0x24},'chatgptIcon':{'width':0x1e,'height':0x1e},'claudeIcon':{'width':0x20,'height':0x20},'grokIcon':{'width':0x24,'height':0x24},'connectingDot':{'position':_0x1e46(0x1fc),'top':0x2,'right':0x2,'width':0xc,'height':0xc,'borderRadius':0x6,'backgroundColor':_0x1e46(0x202),'borderWidth':0x2,'borderColor':COLORS[_0x1e46(0x1f2)]},'connectedDot':{'position':'absolute','top':0x2,'right':0x2,'width':0xc,'height':0xc,'borderRadius':0x6,'backgroundColor':_0x1e46(0x1f),'borderWidth':0x2,'borderColor':COLORS[_0x1e46(0x1f2)]},'cardContainer':{'alignItems':_0x1e46(0x1fa),'marginTop':0x20,'marginBottom':SPACING['md']},'platformCard':{'width':0x147,'backgroundColor':_0x1e46(0x1ff),'borderRadius':0x10,'padding':0x8,'shadowColor':'#000','shadowOffset':{'width':0x0,'height':0x2},'shadowOpacity':0.1,'shadowRadius':0x8,'elevation':0x3,'gap':0xa},'cardHeader':{'flexDirection':_0x1e46(0x1fe),'alignItems':'center','justifyContent':_0x1e46(0x203)},'platformCardTitle':{'fontSize':0x10,'fontWeight':'600','color':COLORS[_0x1e46(0x1f5)],'fontFamily':_0x1e46(0x1f3)},'recommendedBadge':{'backgroundColor':_0x1e46(0x204),'paddingHorizontal':0xc,'paddingVertical':0x6,'borderRadius':0x10,'marginLeft':0x8},'recommendedBadgeText':{'fontSize':0xc,'fontWeight':_0x1e46(0x205),'color':_0x1e46(0x206),'fontFamily':_0x1e46(0x1f3)},'customToggleTrack':{'width':0x32,'height':0x1e,'borderRadius':0xf,'padding':0x2,'marginLeft':_0x1e46(0x207),'marginRight':0x8,'justifyContent':_0x1e46(0x1fa)},'customToggleThumb':{'width':0x1a,'height':0x1a,'borderRadius':0xd,'backgroundColor':_0x1e46(0x1ff),'shadowColor':_0x1e46(0x201),'shadowOffset':{'width':0x0,'height':0x2},'shadowOpacity':0.2,'shadowRadius':0x2,'elevation':0x2},'descriptionContainer':{'backgroundColor':_0x1e46(0x208),'borderRadius':0x8,'padding':0x8},'platformCardDescription':{'fontSize':0xd,'lineHeight':0x12,'color':COLORS['grey600'],'fontFamily':_0x1e46(0x1f6)},'refreshFrequencySection':{'paddingHorizontal':SPACING['md'],'paddingVertical':SPACING['lg'],'marginTop':SPACING['lg'],'backgroundColor':_0x1e46(0x208),'borderRadius':0xc,'marginHorizontal':SPACING['md'],'marginBottom':SPACING['md']},'refreshFrequencyTitle':{'fontSize':0x10,'fontWeight':_0x1e46(0x205),'color':COLORS[_0x1e46(0x1f5)],'fontFamily':'IBM\x20Plex\x20Sans','marginBottom':0x4},'refreshFrequencyDescription':{'fontSize':0xd,'color':COLORS[_0x1e46(0x1f8)],'fontFamily':_0x1e46(0x1f6),'marginBottom':0x10},'refreshOptionsContainer':{'gap':0x8},'refreshOption':{'flexDirection':_0x1e46(0x1fe),'alignItems':_0x1e46(0x1fa),'paddingVertical':0xc,'paddingHorizontal':0xc,'backgroundColor':'#FFFFFF','borderRadius':0x8,'borderWidth':0x1,'borderColor':_0x1e46(0x209)},'refreshOptionSelected':{'borderColor':_0x1e46(0x20a),'backgroundColor':_0x1e46(0x20b)},'refreshRadio':{'width':0x14,'height':0x14,'borderRadius':0xa,'borderWidth':0x2,'borderColor':_0x1e46(0x20c),'alignItems':'center','justifyContent':_0x1e46(0x1fa),'marginRight':0xc},'refreshRadioSelected':{'borderColor':_0x1e46(0x20a)},'refreshRadioInner':{'width':0xa,'height':0xa,'borderRadius':0x5,'backgroundColor':_0x1e46(0x20a)},'refreshOptionText':{'fontSize':0xe,'color':COLORS[_0x1e46(0x20d)],'fontFamily':_0x1e46(0x1f6),'fontWeight':_0x1e46(0x1f7)},'refreshOptionTextSelected':{'fontWeight':_0x1e46(0x205),'color':_0x1e46(0x20e)},'privacyLinkContainer':{'marginTop':0x10,'paddingTop':0x10,'borderTopWidth':0x1,'borderTopColor':_0x1e46(0x209),'alignItems':_0x1e46(0x1fa)},'privacyLinkText':{'fontSize':0xe,'color':_0x1e46(0x20a),'fontFamily':'Inter','fontWeight':_0x1e46(0x20f)},'bottomButtonContainer':{'marginTop':'auto','paddingBottom':SPACING['xl'],'paddingHorizontal':SPACING['md']},'buttonWrapper':{'position':_0x1e46(0x1fb)},'buttonOverlay':{'position':_0x1e46(0x1fc),'top':0x0,'left':0x0,'right':0x0,'bottom':0x0,'borderRadius':0xc,'overflow':'hidden'},'holdProgressBar':{'position':_0x1e46(0x1fc),'bottom':0x0,'left':0x0,'height':0x4,'backgroundColor':_0x1e46(0x1f),'borderRadius':0x2},'skipButton':{'alignItems':_0x1e46(0x1fa),'paddingVertical':0x10},'skipButtonText':{'fontSize':0x10,'fontFamily':_0x1e46(0x1f6),'fontWeight':_0x1e46(0x20f),'color':COLORS['grey600']},'logoutButton':{'alignItems':_0x1e46(0x1fa),'paddingVertical':0xc,'marginTop':0x4},'logoutButtonText':{'fontSize':0xe,'fontFamily':_0x1e46(0x1f6),'fontWeight':_0x1e46(0x1f7),'color':COLORS[_0x1e46(0x210)],'textDecorationLine':_0x1e46(0x211)},'pageIndicatorContainer':{'position':_0x1e46(0x1fc),'alignSelf':'center','zIndex':0xb},'scrollBarTrack':{'width':0x50,'height':0x4,'backgroundColor':COLORS[_0x1e46(0x212)],'borderRadius':0x2,'position':'relative','overflow':'hidden'},'scrollBarThumb':{'position':_0x1e46(0x1fc),'width':0x18,'height':0x4,'backgroundColor':COLORS[_0x1e46(0x1f8)],'borderRadius':0x2,'left':0x0},'scrollIndicator':{'position':_0x1e46(0x1fc),'bottom':0x3c,'right':0x1e,'zIndex':0xc},'scrollIndicatorText':{'fontSize':0x20,'color':COLORS['grey500'],'fontWeight':'bold'}});export default PlatformConnectorsStep;