@onairos/react-native 3.4.0 โ 3.5.4
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.
- package/README.md +62 -13
- package/lib/commonjs/api/index.js +9 -145
- package/lib/commonjs/assets/animations/loaderani.json +1 -0
- package/lib/commonjs/assets/animations/persona-animation.json +1 -0
- package/lib/commonjs/assets/fonts/EBGaramond-VariableFont_wght.ttf +0 -0
- package/lib/commonjs/assets/fonts/IBMPlexSans-VariableFont_wdth,wght.ttf +0 -0
- package/lib/commonjs/assets/icons/Facebookicon.png +0 -0
- package/lib/commonjs/assets/icons/Gmail.png +0 -0
- package/lib/commonjs/assets/icons/Linkedinicon.png +0 -0
- package/lib/commonjs/assets/icons/Redditicon.png +0 -0
- package/lib/commonjs/assets/icons/YouTubeicon2.png +0 -0
- package/lib/commonjs/assets/icons/YouTubeicon3.png +0 -0
- package/lib/commonjs/assets/icons/chatgpt.png +0 -0
- package/lib/commonjs/assets/icons/claude.png +0 -0
- package/lib/commonjs/assets/icons/gemini.png +0 -0
- package/lib/commonjs/assets/icons/grok.png +0 -0
- package/lib/commonjs/assets/images/Checkbox.svg +3 -0
- package/lib/commonjs/assets/images/EnochE.svg +19 -0
- package/lib/commonjs/assets/images/Enochicon1.png +0 -0
- package/lib/commonjs/assets/images/Face_ID_logo.png +0 -0
- package/lib/commonjs/assets/images/Facebookicon.png +0 -0
- package/lib/commonjs/assets/images/Gmail.png +0 -0
- package/lib/commonjs/assets/images/Googlelogo.png +0 -0
- package/lib/commonjs/assets/images/Linkedinicon.png +0 -0
- package/lib/commonjs/assets/images/Onairoslogo.png +0 -0
- package/lib/commonjs/assets/images/Personalityprofile.svg +3 -0
- package/lib/commonjs/assets/images/Personalitytraits.svg +3 -0
- package/lib/commonjs/assets/images/Redditicon.png +0 -0
- package/lib/commonjs/assets/images/Userpreferences.svg +3 -0
- package/lib/commonjs/assets/images/YouTubeicon3.png +0 -0
- package/lib/commonjs/assets/images/arrow.svg +20 -0
- package/lib/commonjs/assets/images/basicproficon.svg +43 -0
- package/lib/commonjs/assets/images/basicprofile.svg +3 -0
- package/lib/commonjs/assets/images/chatgpt.png +0 -0
- package/lib/commonjs/assets/images/checkmark.svg +4 -0
- package/lib/commonjs/assets/images/claude.png +0 -0
- package/lib/commonjs/assets/images/contentanalysis.svg +3 -0
- package/lib/commonjs/assets/images/contenticon.svg +23 -0
- package/lib/commonjs/assets/images/gemini.png +0 -0
- package/lib/commonjs/assets/images/grok.png +0 -0
- package/lib/commonjs/assets/images/persona1.png +0 -0
- package/lib/commonjs/assets/images/persona2.png +0 -0
- package/lib/commonjs/assets/images/persona3.png +0 -0
- package/lib/commonjs/assets/images/persona4.png +0 -0
- package/lib/commonjs/assets/images/persona5.png +0 -0
- package/lib/commonjs/assets/images/personalityicon.svg +18 -0
- package/lib/commonjs/assets/images/x-close.svg +3 -0
- package/lib/commonjs/components/BodyText.js +9 -0
- package/lib/commonjs/components/BrandMark.js +10 -0
- package/lib/commonjs/components/CodeInput.js +9 -0
- package/lib/commonjs/components/EmailInput.js +8 -0
- package/lib/commonjs/components/GoogleButton.js +9 -0
- package/lib/commonjs/components/HeadingGroup.js +9 -0
- package/lib/commonjs/components/LLMDataInputModal.js +14 -0
- package/lib/commonjs/components/ModalHeader.js +9 -0
- package/lib/commonjs/components/ModalSheet.js +9 -0
- package/lib/commonjs/components/Onairos.js +14 -374
- package/lib/commonjs/components/OnairosButton.js +13 -309
- package/lib/commonjs/components/OnairosSignInButton.js +12 -0
- package/lib/commonjs/components/Overlay.js +13 -483
- package/lib/commonjs/components/PersonaImage.js +10 -0
- package/lib/commonjs/components/PersonaLoadingScreen.js +12 -0
- package/lib/commonjs/components/PersonalizationConsentScreen.js +13 -0
- package/lib/commonjs/components/PinCreationScreen.js +12 -0
- package/lib/commonjs/components/PinInput.js +9 -302
- package/lib/commonjs/components/PlatformConnectorsStep.js +22 -0
- package/lib/commonjs/components/PlatformList.js +10 -137
- package/lib/commonjs/components/PlatformToggle.js +9 -0
- package/lib/commonjs/components/PrimaryButton.js +10 -0
- package/lib/commonjs/components/SignInMatchAnimation.js +9 -0
- package/lib/commonjs/components/SignInStep.js +12 -0
- package/lib/commonjs/components/UniversalOnboarding.js +29 -1702
- package/lib/commonjs/components/VerificationStep.js +11 -0
- package/lib/commonjs/components/WelcomeScreen.js +21 -0
- package/lib/commonjs/components/icons/Basicproficon.js +8 -0
- package/lib/commonjs/components/icons/Basicprofile.js +8 -0
- package/lib/commonjs/components/icons/Checkbox.js +8 -0
- package/lib/commonjs/components/icons/Checkmark.js +8 -0
- package/lib/commonjs/components/icons/Contentanalysis.js +8 -0
- package/lib/commonjs/components/icons/Contenticon.js +8 -0
- package/lib/commonjs/components/icons/EnochE.js +8 -0
- package/lib/commonjs/components/icons/Personalityicon.js +8 -0
- package/lib/commonjs/components/icons/Personalityprofile.js +8 -0
- package/lib/commonjs/components/icons/Personalitytraits.js +8 -0
- package/lib/commonjs/components/icons/Userpreferences.js +8 -0
- package/lib/commonjs/components/icons/index.js +17 -0
- package/lib/commonjs/components/onboarding/OAuthWebView.js +14 -827
- package/lib/commonjs/components/onboarding/OnboardingHeader.js +10 -74
- package/lib/commonjs/components/onboarding/PinInput.js +10 -283
- package/lib/commonjs/components/onboarding/PlatformConnector.js +11 -249
- package/lib/commonjs/config/api.js +7 -0
- package/lib/commonjs/constants/index.js +7 -83
- package/lib/commonjs/context/AuthContext.js +10 -0
- package/lib/commonjs/hooks/useConnectedAccounts.js +9 -0
- package/lib/commonjs/hooks/useConnections.js +8 -159
- package/lib/commonjs/hooks/useCredentials.js +10 -177
- package/lib/commonjs/hooks/useUserConnections.js +10 -0
- package/lib/commonjs/index.js +35 -106
- package/lib/commonjs/services/SDK_API_KEY_VALIDATION.md +31 -38
- package/lib/commonjs/services/apiClient.js +8 -0
- package/lib/commonjs/services/apiKeyService.js +9 -946
- package/lib/commonjs/services/authService.js +10 -0
- package/lib/commonjs/services/biometricPinService.js +8 -0
- package/lib/commonjs/services/chatGPTConversationExtractor.js +8 -0
- package/lib/commonjs/services/chatGPTConversationService.js +9 -0
- package/lib/commonjs/services/claudeConversationExtractor.js +8 -0
- package/lib/commonjs/services/claudeConversationService.js +9 -0
- package/lib/commonjs/services/connectedAccountsService.js +10 -0
- package/lib/commonjs/services/googleAuthService.js +11 -0
- package/lib/commonjs/services/imageCompressionService.js +7 -0
- package/lib/commonjs/services/jwtStorageService.js +7 -0
- package/lib/commonjs/services/linkedinDOMExtractor.js +7 -0
- package/lib/commonjs/services/linkedinProfileService.js +9 -0
- package/lib/commonjs/services/linkedinScrapingService.js +8 -0
- package/lib/commonjs/services/llmDataStorage.js +8 -0
- package/lib/commonjs/services/mobileTrainingService.js +8 -0
- package/lib/commonjs/services/oauthService.js +11 -390
- package/lib/commonjs/services/pinEncryptionService.js +8 -0
- package/lib/commonjs/services/pinStorageUtils.js +7 -0
- package/lib/commonjs/services/platformAuthService.js +12 -1067
- package/lib/commonjs/services/storageService.js +8 -0
- package/lib/commonjs/services/trainingApiHelpers.js +7 -0
- package/lib/commonjs/services/userConnectionsService.js +10 -0
- package/lib/commonjs/services/youtubeMigrationService.js +10 -0
- package/lib/commonjs/theme/index.js +7 -0
- package/lib/commonjs/types/ambient.d.js +1 -2
- package/lib/commonjs/types/declarations.d.js +1 -2
- package/lib/commonjs/types/index.js +1 -6
- package/lib/commonjs/types/node-fix.d.js +1 -2
- package/lib/commonjs/types/node-override.d.js +1 -2
- package/lib/commonjs/types/opacity.d.js +1 -2
- package/lib/commonjs/types.js +1 -14
- package/lib/commonjs/utils/Portal.js +8 -98
- package/lib/commonjs/utils/api.js +9 -129
- package/lib/commonjs/utils/assetRegistry.js +33 -0
- package/lib/commonjs/utils/auth.js +9 -111
- package/lib/commonjs/utils/crypto.js +8 -62
- package/lib/commonjs/utils/debugHelper.js +1 -64
- package/lib/commonjs/utils/encryption.js +7 -76
- package/lib/commonjs/utils/eventUtils.js +1 -0
- package/lib/commonjs/utils/haptics.js +9 -0
- package/lib/commonjs/utils/imagePreloader.js +1 -0
- package/lib/commonjs/utils/networkDiagnostics.js +8 -0
- package/lib/commonjs/utils/onairosApi.js +9 -350
- package/lib/commonjs/utils/programmaticFlow.js +9 -117
- package/lib/commonjs/utils/retryHelper.js +1 -220
- package/lib/commonjs/utils/secureStorage.js +10 -349
- package/lib/commonjs/utils/webviewScripts/chatgpt.js +1 -0
- package/lib/commonjs/utils/webviewScripts/claude.js +1 -0
- package/lib/commonjs/utils/webviewScripts/index.js +9 -0
- package/lib/commonjs/utils/webviewScripts/linkedin.js +1 -0
- package/lib/module/api/index.js +1 -139
- package/lib/module/assets/animations/loaderani.json +1 -0
- package/lib/module/assets/animations/persona-animation.json +1 -0
- package/lib/module/assets/fonts/EBGaramond-VariableFont_wght.ttf +0 -0
- package/lib/module/assets/fonts/IBMPlexSans-VariableFont_wdth,wght.ttf +0 -0
- package/lib/module/assets/icons/Facebookicon.png +0 -0
- package/lib/module/assets/icons/Gmail.png +0 -0
- package/lib/module/assets/icons/Linkedinicon.png +0 -0
- package/lib/module/assets/icons/Redditicon.png +0 -0
- package/lib/module/assets/icons/YouTubeicon2.png +0 -0
- package/lib/module/assets/icons/YouTubeicon3.png +0 -0
- package/lib/module/assets/icons/chatgpt.png +0 -0
- package/lib/module/assets/icons/claude.png +0 -0
- package/lib/module/assets/icons/farcaster.png +0 -0
- package/lib/module/assets/icons/gemini.png +0 -0
- package/lib/module/assets/icons/grok.png +0 -0
- package/lib/module/assets/icons/instagram.png +0 -0
- package/lib/module/assets/icons/pinterest.png +0 -0
- package/lib/module/assets/icons/swerv_logo.png +0 -0
- package/lib/module/assets/icons/twitter.jpg +0 -0
- package/lib/module/assets/images/Checkbox.svg +3 -0
- package/lib/module/assets/images/EnochE.svg +19 -0
- package/lib/module/assets/images/Enochicon1.png +0 -0
- package/lib/module/assets/images/Face_ID_logo.png +0 -0
- package/lib/module/assets/images/Facebookicon.png +0 -0
- package/lib/module/assets/images/Gmail.png +0 -0
- package/lib/module/assets/images/Googlelogo.png +0 -0
- package/lib/module/assets/images/Linkedinicon.png +0 -0
- package/lib/module/assets/images/Onairoslogo.png +0 -0
- package/lib/module/assets/images/Personalityprofile.svg +3 -0
- package/lib/module/assets/images/Personalitytraits.svg +3 -0
- package/lib/module/assets/images/Redditicon.png +0 -0
- package/lib/module/assets/images/Userpreferences.svg +3 -0
- package/lib/module/assets/images/YouTubeicon3.png +0 -0
- package/lib/module/assets/images/arrow.svg +20 -0
- package/lib/module/assets/images/basicproficon.svg +43 -0
- package/lib/module/assets/images/basicprofile.svg +3 -0
- package/lib/module/assets/images/chatgpt.png +0 -0
- package/lib/module/assets/images/checkmark.svg +4 -0
- package/lib/module/assets/images/claude.png +0 -0
- package/lib/module/assets/images/contentanalysis.svg +3 -0
- package/lib/module/assets/images/contenticon.svg +23 -0
- package/lib/module/assets/images/gemini.png +0 -0
- package/lib/module/assets/images/grok.png +0 -0
- package/lib/module/assets/images/persona1.png +0 -0
- package/lib/module/assets/images/persona2.png +0 -0
- package/lib/module/assets/images/persona3.png +0 -0
- package/lib/module/assets/images/persona4.png +0 -0
- package/lib/module/assets/images/persona5.png +0 -0
- package/lib/module/assets/images/personalityicon.svg +18 -0
- package/lib/module/assets/images/x-close.svg +3 -0
- package/lib/module/components/BodyText.js +1 -0
- package/lib/module/components/BrandMark.js +1 -0
- package/lib/module/components/CodeInput.js +1 -0
- package/lib/module/components/EmailInput.js +1 -0
- package/lib/module/components/GoogleButton.js +1 -0
- package/lib/module/components/HeadingGroup.js +1 -0
- package/lib/module/components/LLMDataInputModal.js +8 -0
- package/lib/module/components/ModalHeader.js +1 -0
- package/lib/module/components/ModalSheet.js +1 -0
- package/lib/module/components/Onairos.js +1 -367
- package/lib/module/components/OnairosButton.js +1 -302
- package/lib/module/components/OnairosSignInButton.js +1 -0
- package/lib/module/components/Overlay.js +1 -474
- package/lib/module/components/PersonaImage.js +1 -0
- package/lib/module/components/PersonaLoadingScreen.js +1 -0
- package/lib/module/components/PersonalizationConsentScreen.js +1 -0
- package/lib/module/components/PinCreationScreen.js +1 -0
- package/lib/module/components/PinInput.js +1 -293
- package/lib/module/components/PlatformConnectorsStep.js +1 -0
- package/lib/module/components/PlatformList.js +1 -129
- package/lib/module/components/PlatformToggle.js +1 -0
- package/lib/module/components/PrimaryButton.js +1 -0
- package/lib/module/components/SignInMatchAnimation.js +1 -0
- package/lib/module/components/SignInStep.js +1 -0
- package/lib/module/components/UniversalOnboarding.js +1 -1693
- package/lib/module/components/VerificationStep.js +1 -0
- package/lib/module/components/WelcomeScreen.js +1 -0
- package/lib/module/components/icons/Basicproficon.js +1 -0
- package/lib/module/components/icons/Basicprofile.js +1 -0
- package/lib/module/components/icons/Checkbox.js +1 -0
- package/lib/module/components/icons/Checkmark.js +1 -0
- package/lib/module/components/icons/Contentanalysis.js +1 -0
- package/lib/module/components/icons/Contenticon.js +1 -0
- package/lib/module/components/icons/EnochE.js +1 -0
- package/lib/module/components/icons/Personalityicon.js +1 -0
- package/lib/module/components/icons/Personalityprofile.js +1 -0
- package/lib/module/components/icons/Personalitytraits.js +1 -0
- package/lib/module/components/icons/Userpreferences.js +1 -0
- package/lib/module/components/icons/index.js +1 -0
- package/lib/module/components/onboarding/OAuthWebView.js +1 -818
- package/lib/module/components/onboarding/OnboardingHeader.js +1 -66
- package/lib/module/components/onboarding/PinInput.js +1 -274
- package/lib/module/components/onboarding/PlatformConnector.js +1 -240
- package/lib/module/config/api.js +1 -0
- package/lib/module/constants/index.js +1 -77
- package/lib/module/context/AuthContext.js +1 -0
- package/lib/module/hooks/useConnectedAccounts.js +1 -0
- package/lib/module/hooks/useConnections.js +1 -152
- package/lib/module/hooks/useCredentials.js +6 -169
- package/lib/module/hooks/useUserConnections.js +1 -0
- package/lib/module/index.js +1 -32
- package/lib/module/services/SDK_API_KEY_VALIDATION.md +31 -38
- package/lib/module/services/apiClient.js +1 -0
- package/lib/module/services/apiKeyService.js +1 -919
- package/lib/module/services/authService.js +1 -0
- package/lib/module/services/biometricPinService.js +1 -0
- package/lib/module/services/chatGPTConversationExtractor.js +1 -0
- package/lib/module/services/chatGPTConversationService.js +1 -0
- package/lib/module/services/claudeConversationExtractor.js +1 -0
- package/lib/module/services/claudeConversationService.js +1 -0
- package/lib/module/services/connectedAccountsService.js +1 -0
- package/lib/module/services/googleAuthService.js +1 -0
- package/lib/module/services/imageCompressionService.js +1 -0
- package/lib/module/services/jwtStorageService.js +1 -0
- package/lib/module/services/linkedinDOMExtractor.js +1 -0
- package/lib/module/services/linkedinProfileService.js +1 -0
- package/lib/module/services/linkedinScrapingService.js +1 -0
- package/lib/module/services/llmDataStorage.js +1 -0
- package/lib/module/services/mobileTrainingService.js +1 -0
- package/lib/module/services/oauthService.js +1 -380
- package/lib/module/services/pinEncryptionService.js +7 -0
- package/lib/module/services/pinStorageUtils.js +1 -0
- package/lib/module/services/platformAuthService.js +1 -1041
- package/lib/module/services/storageService.js +1 -0
- package/lib/module/services/trainingApiHelpers.js +1 -0
- package/lib/module/services/userConnectionsService.js +1 -0
- package/lib/module/services/youtubeMigrationService.js +1 -0
- package/lib/module/theme/index.js +1 -0
- package/lib/module/types.js +1 -10
- package/lib/module/utils/Portal.js +1 -90
- package/lib/module/utils/api.js +1 -117
- package/lib/module/utils/assetRegistry.js +33 -0
- package/lib/module/utils/auth.js +1 -99
- package/lib/module/utils/crypto.js +1 -54
- package/lib/module/utils/debugHelper.js +1 -54
- package/lib/module/utils/encryption.js +1 -67
- package/lib/module/utils/eventUtils.js +1 -0
- package/lib/module/utils/haptics.js +8 -0
- package/lib/module/utils/imagePreloader.js +1 -0
- package/lib/module/utils/networkDiagnostics.js +1 -0
- package/lib/module/utils/onairosApi.js +1 -333
- package/lib/module/utils/programmaticFlow.js +1 -111
- package/lib/module/utils/retryHelper.js +1 -211
- package/lib/module/utils/secureStorage.js +6 -330
- package/lib/module/utils/webviewScripts/chatgpt.js +1 -0
- package/lib/module/utils/webviewScripts/claude.js +1 -0
- package/lib/module/utils/webviewScripts/index.js +1 -0
- package/lib/module/utils/webviewScripts/linkedin.js +1 -0
- package/package.json +62 -39
- package/lib/commonjs/api/index.js.map +0 -1
- package/lib/commonjs/assets/images/email.png +0 -0
- package/lib/commonjs/assets/images/linkedin.png +0 -0
- package/lib/commonjs/assets/images/reddit.png +0 -0
- package/lib/commonjs/assets/images/youtube.png +0 -0
- package/lib/commonjs/components/DataRequestModal.js +0 -228
- package/lib/commonjs/components/DataRequestModal.js.map +0 -1
- package/lib/commonjs/components/DataRequestScreen.js +0 -329
- package/lib/commonjs/components/DataRequestScreen.js.map +0 -1
- package/lib/commonjs/components/EmailVerificationModal.js +0 -320
- package/lib/commonjs/components/EmailVerificationModal.js.map +0 -1
- package/lib/commonjs/components/Onairos.js.map +0 -1
- package/lib/commonjs/components/OnairosButton.js.map +0 -1
- package/lib/commonjs/components/Overlay.js.map +0 -1
- package/lib/commonjs/components/PinInput.js.map +0 -1
- package/lib/commonjs/components/PlatformList.js.map +0 -1
- package/lib/commonjs/components/TrainingModal.js +0 -717
- package/lib/commonjs/components/TrainingModal.js.map +0 -1
- package/lib/commonjs/components/UniversalOnboarding.js.map +0 -1
- package/lib/commonjs/components/UniversalOnboarding.tsx.new +0 -455
- package/lib/commonjs/components/onboarding/OAuthWebView.js.map +0 -1
- package/lib/commonjs/components/onboarding/OnboardingHeader.js.map +0 -1
- package/lib/commonjs/components/onboarding/PinInput.js.map +0 -1
- package/lib/commonjs/components/onboarding/PlatformConnector.js.map +0 -1
- package/lib/commonjs/components/screens/ConnectorScreen.js +0 -146
- package/lib/commonjs/components/screens/ConnectorScreen.js.map +0 -1
- package/lib/commonjs/components/screens/LoadingScreen.js +0 -91
- package/lib/commonjs/components/screens/LoadingScreen.js.map +0 -1
- package/lib/commonjs/components/screens/PinCreationScreen.js +0 -61
- package/lib/commonjs/components/screens/PinCreationScreen.js.map +0 -1
- package/lib/commonjs/constants/index.js.map +0 -1
- package/lib/commonjs/hooks/useConnections.js.map +0 -1
- package/lib/commonjs/hooks/useCredentials.js.map +0 -1
- package/lib/commonjs/index.js.map +0 -1
- package/lib/commonjs/services/apiKeyService.js.map +0 -1
- package/lib/commonjs/services/oauthService.js.map +0 -1
- package/lib/commonjs/services/platformAuthService.js.map +0 -1
- package/lib/commonjs/types/ambient.d.js.map +0 -1
- package/lib/commonjs/types/declarations.d.js.map +0 -1
- package/lib/commonjs/types/index.d.js.map +0 -1
- package/lib/commonjs/types/index.js.map +0 -1
- package/lib/commonjs/types/node-fix.d.js.map +0 -1
- package/lib/commonjs/types/node-override.d.js.map +0 -1
- package/lib/commonjs/types/opacity.d.js.map +0 -1
- package/lib/commonjs/types/types.d.js.map +0 -1
- package/lib/commonjs/types.js.map +0 -1
- package/lib/commonjs/utils/Portal.js.map +0 -1
- package/lib/commonjs/utils/api.js.map +0 -1
- package/lib/commonjs/utils/auth.js.map +0 -1
- package/lib/commonjs/utils/crypto.js.map +0 -1
- package/lib/commonjs/utils/debugHelper.js.map +0 -1
- package/lib/commonjs/utils/encryption.js.map +0 -1
- package/lib/commonjs/utils/onairosApi.js.map +0 -1
- package/lib/commonjs/utils/programmaticFlow.js.map +0 -1
- package/lib/commonjs/utils/retryHelper.js.map +0 -1
- package/lib/commonjs/utils/secureStorage.js.map +0 -1
- package/lib/module/api/index.js.map +0 -1
- package/lib/module/assets/images/email.png +0 -0
- package/lib/module/assets/images/linkedin.png +0 -0
- package/lib/module/assets/images/reddit.png +0 -0
- package/lib/module/assets/images/youtube.png +0 -0
- package/lib/module/components/DataRequestModal.js +0 -220
- package/lib/module/components/DataRequestModal.js.map +0 -1
- package/lib/module/components/DataRequestScreen.js +0 -321
- package/lib/module/components/DataRequestScreen.js.map +0 -1
- package/lib/module/components/EmailVerificationModal.js +0 -311
- package/lib/module/components/EmailVerificationModal.js.map +0 -1
- package/lib/module/components/Onairos.js.map +0 -1
- package/lib/module/components/OnairosButton.js.map +0 -1
- package/lib/module/components/Overlay.js.map +0 -1
- package/lib/module/components/PinInput.js.map +0 -1
- package/lib/module/components/PlatformList.js.map +0 -1
- package/lib/module/components/TrainingModal.js +0 -708
- package/lib/module/components/TrainingModal.js.map +0 -1
- package/lib/module/components/UniversalOnboarding.js.map +0 -1
- package/lib/module/components/UniversalOnboarding.tsx.new +0 -455
- package/lib/module/components/onboarding/OAuthWebView.js.map +0 -1
- package/lib/module/components/onboarding/OnboardingHeader.js.map +0 -1
- package/lib/module/components/onboarding/PinInput.js.map +0 -1
- package/lib/module/components/onboarding/PlatformConnector.js.map +0 -1
- package/lib/module/components/screens/ConnectorScreen.js +0 -138
- package/lib/module/components/screens/ConnectorScreen.js.map +0 -1
- package/lib/module/components/screens/LoadingScreen.js +0 -83
- package/lib/module/components/screens/LoadingScreen.js.map +0 -1
- package/lib/module/components/screens/PinCreationScreen.js +0 -53
- package/lib/module/components/screens/PinCreationScreen.js.map +0 -1
- package/lib/module/constants/index.js.map +0 -1
- package/lib/module/hooks/useConnections.js.map +0 -1
- package/lib/module/hooks/useCredentials.js.map +0 -1
- package/lib/module/index.js.map +0 -1
- package/lib/module/services/apiKeyService.js.map +0 -1
- package/lib/module/services/oauthService.js.map +0 -1
- package/lib/module/services/platformAuthService.js.map +0 -1
- package/lib/module/types/ambient.d.js.map +0 -1
- package/lib/module/types/declarations.d.js.map +0 -1
- package/lib/module/types/index.d.js.map +0 -1
- package/lib/module/types/index.js.map +0 -1
- package/lib/module/types/node-fix.d.js.map +0 -1
- package/lib/module/types/node-override.d.js.map +0 -1
- package/lib/module/types/opacity.d.js.map +0 -1
- package/lib/module/types/types.d.js.map +0 -1
- package/lib/module/types.js.map +0 -1
- package/lib/module/utils/Portal.js.map +0 -1
- package/lib/module/utils/api.js.map +0 -1
- package/lib/module/utils/auth.js.map +0 -1
- package/lib/module/utils/crypto.js.map +0 -1
- package/lib/module/utils/debugHelper.js.map +0 -1
- package/lib/module/utils/encryption.js.map +0 -1
- package/lib/module/utils/onairosApi.js.map +0 -1
- package/lib/module/utils/programmaticFlow.js.map +0 -1
- package/lib/module/utils/retryHelper.js.map +0 -1
- package/lib/module/utils/secureStorage.js.map +0 -1
- package/lib/typescript/api/index.d.ts +0 -8
- package/lib/typescript/api/index.d.ts.map +0 -1
- package/lib/typescript/components/DataRequestModal.d.ts +0 -11
- package/lib/typescript/components/DataRequestModal.d.ts.map +0 -1
- package/lib/typescript/components/DataRequestScreen.d.ts +0 -11
- package/lib/typescript/components/DataRequestScreen.d.ts.map +0 -1
- package/lib/typescript/components/EmailVerificationModal.d.ts +0 -11
- package/lib/typescript/components/EmailVerificationModal.d.ts.map +0 -1
- package/lib/typescript/components/Onairos.d.ts +0 -4
- package/lib/typescript/components/Onairos.d.ts.map +0 -1
- package/lib/typescript/components/OnairosButton.d.ts +0 -12
- package/lib/typescript/components/OnairosButton.d.ts.map +0 -1
- package/lib/typescript/components/Overlay.d.ts +0 -4
- package/lib/typescript/components/Overlay.d.ts.map +0 -1
- package/lib/typescript/components/PinInput.d.ts +0 -4
- package/lib/typescript/components/PinInput.d.ts.map +0 -1
- package/lib/typescript/components/PlatformList.d.ts +0 -4
- package/lib/typescript/components/PlatformList.d.ts.map +0 -1
- package/lib/typescript/components/TrainingModal.d.ts +0 -4
- package/lib/typescript/components/TrainingModal.d.ts.map +0 -1
- package/lib/typescript/components/UniversalOnboarding.d.ts +0 -4
- package/lib/typescript/components/UniversalOnboarding.d.ts.map +0 -1
- package/lib/typescript/components/onboarding/OAuthWebView.d.ts +0 -10
- package/lib/typescript/components/onboarding/OAuthWebView.d.ts.map +0 -1
- package/lib/typescript/components/onboarding/OnboardingHeader.d.ts +0 -11
- package/lib/typescript/components/onboarding/OnboardingHeader.d.ts.map +0 -1
- package/lib/typescript/components/onboarding/PinInput.d.ts +0 -4
- package/lib/typescript/components/onboarding/PinInput.d.ts.map +0 -1
- package/lib/typescript/components/onboarding/PlatformConnector.d.ts +0 -13
- package/lib/typescript/components/onboarding/PlatformConnector.d.ts.map +0 -1
- package/lib/typescript/components/screens/ConnectorScreen.d.ts +0 -9
- package/lib/typescript/components/screens/ConnectorScreen.d.ts.map +0 -1
- package/lib/typescript/components/screens/LoadingScreen.d.ts +0 -9
- package/lib/typescript/components/screens/LoadingScreen.d.ts.map +0 -1
- package/lib/typescript/components/screens/PinCreationScreen.d.ts +0 -10
- package/lib/typescript/components/screens/PinCreationScreen.d.ts.map +0 -1
- package/lib/typescript/constants/index.d.ts +0 -53
- package/lib/typescript/constants/index.d.ts.map +0 -1
- package/lib/typescript/hooks/useConnections.d.ts +0 -9
- package/lib/typescript/hooks/useConnections.d.ts.map +0 -1
- package/lib/typescript/hooks/useCredentials.d.ts +0 -9
- package/lib/typescript/hooks/useCredentials.d.ts.map +0 -1
- package/lib/typescript/index.d.ts +0 -18
- package/lib/typescript/index.d.ts.map +0 -1
- package/lib/typescript/services/apiKeyService.d.ts +0 -132
- package/lib/typescript/services/apiKeyService.d.ts.map +0 -1
- package/lib/typescript/services/oauthService.d.ts +0 -50
- package/lib/typescript/services/oauthService.d.ts.map +0 -1
- package/lib/typescript/services/platformAuthService.d.ts +0 -144
- package/lib/typescript/services/platformAuthService.d.ts.map +0 -1
- package/lib/typescript/types/index.d.ts +0 -231
- package/lib/typescript/types/index.d.ts.map +0 -1
- package/lib/typescript/types.d.ts +0 -270
- package/lib/typescript/types.d.ts.map +0 -1
- package/lib/typescript/utils/Portal.d.ts +0 -14
- package/lib/typescript/utils/Portal.d.ts.map +0 -1
- package/lib/typescript/utils/api.d.ts +0 -6
- package/lib/typescript/utils/api.d.ts.map +0 -1
- package/lib/typescript/utils/auth.d.ts +0 -6
- package/lib/typescript/utils/auth.d.ts.map +0 -1
- package/lib/typescript/utils/crypto.d.ts +0 -4
- package/lib/typescript/utils/crypto.d.ts.map +0 -1
- package/lib/typescript/utils/debugHelper.d.ts +0 -29
- package/lib/typescript/utils/debugHelper.d.ts.map +0 -1
- package/lib/typescript/utils/encryption.d.ts +0 -19
- package/lib/typescript/utils/encryption.d.ts.map +0 -1
- package/lib/typescript/utils/onairosApi.d.ts +0 -87
- package/lib/typescript/utils/onairosApi.d.ts.map +0 -1
- package/lib/typescript/utils/programmaticFlow.d.ts +0 -23
- package/lib/typescript/utils/programmaticFlow.d.ts.map +0 -1
- package/lib/typescript/utils/retryHelper.d.ts +0 -69
- package/lib/typescript/utils/retryHelper.d.ts.map +0 -1
- package/lib/typescript/utils/secureStorage.d.ts +0 -94
- package/lib/typescript/utils/secureStorage.d.ts.map +0 -1
- package/src/api/index.ts +0 -111
- package/src/assets/images/email.png +0 -0
- package/src/assets/images/linkedin.png +0 -0
- package/src/assets/images/onairos_logo.png +0 -0
- package/src/assets/images/reddit.png +0 -0
- package/src/assets/images/youtube.png +0 -0
- package/src/components/DataRequestModal.tsx +0 -227
- package/src/components/DataRequestScreen.tsx +0 -356
- package/src/components/EmailVerificationModal.tsx +0 -364
- package/src/components/Onairos.tsx +0 -425
- package/src/components/OnairosButton.tsx +0 -359
- package/src/components/Overlay.tsx +0 -506
- package/src/components/PinInput.tsx +0 -343
- package/src/components/PlatformList.tsx +0 -145
- package/src/components/TrainingModal.tsx +0 -737
- package/src/components/UniversalOnboarding.tsx +0 -1839
- package/src/components/UniversalOnboarding.tsx.new +0 -455
- package/src/components/onboarding/OAuthWebView.tsx +0 -838
- package/src/components/onboarding/OnboardingHeader.tsx +0 -70
- package/src/components/onboarding/PinInput.tsx +0 -356
- package/src/components/onboarding/PlatformConnector.tsx +0 -302
- package/src/components/screens/ConnectorScreen.tsx +0 -153
- package/src/components/screens/LoadingScreen.tsx +0 -100
- package/src/components/screens/PinCreationScreen.tsx +0 -67
- package/src/constants/index.ts +0 -83
- package/src/hooks/useConnections.ts +0 -163
- package/src/hooks/useCredentials.ts +0 -175
- package/src/index.js +0 -14
- package/src/index.ts +0 -50
- package/src/services/SDK_API_KEY_VALIDATION.md +0 -428
- package/src/services/apiKeyService.ts +0 -979
- package/src/services/oauthService.ts +0 -412
- package/src/services/platformAuthService.ts +0 -1113
- package/src/types/ambient.d.ts +0 -29
- package/src/types/declarations.d.ts +0 -26
- package/src/types/index.d.ts +0 -274
- package/src/types/index.ts +0 -244
- package/src/types/node-fix.d.ts +0 -19
- package/src/types/node-override.d.ts +0 -24
- package/src/types/opacity.d.ts +0 -16
- package/src/types/types.d.ts +0 -18
- package/src/types.ts +0 -298
- package/src/utils/Portal.tsx +0 -83
- package/src/utils/api.js +0 -112
- package/src/utils/auth.js +0 -104
- package/src/utils/crypto.js +0 -60
- package/src/utils/debugHelper.ts +0 -53
- package/src/utils/encryption.ts +0 -69
- package/src/utils/onairosApi.ts +0 -391
- package/src/utils/programmaticFlow.ts +0 -113
- package/src/utils/retryHelper.ts +0 -275
- package/src/utils/secureStorage.ts +0 -361
- package/types/index.d.ts +0 -218
- package/types/node-env.d.ts +0 -15
- /package/{src/assets/images โ lib/commonjs/assets/icons}/farcaster.png +0 -0
- /package/{src/assets/images โ lib/commonjs/assets/icons}/instagram.png +0 -0
- /package/{src/assets/images โ lib/commonjs/assets/icons}/pinterest.png +0 -0
- /package/{src/assets/images โ lib/commonjs/assets/icons}/swerv_logo.png +0 -0
- /package/{src/assets/images โ lib/commonjs/assets/icons}/twitter.jpg +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
// Onairos SDK - Asset Registry (auto-generated)
|
|
3
|
+
var __ONAIROS_REQ_REGISTRY__ = [
|
|
4
|
+
require("react"),
|
|
5
|
+
require("react-native"),
|
|
6
|
+
require("../theme"),
|
|
7
|
+
require("../utils/haptics"),
|
|
8
|
+
require("./PersonaImage"),
|
|
9
|
+
require("./PrimaryButton"),
|
|
10
|
+
require("./PersonalizationConsentScreen"),
|
|
11
|
+
require("./PinCreationScreen"),
|
|
12
|
+
require("./PersonaLoadingScreen"),
|
|
13
|
+
require("../hooks/useConnections"),
|
|
14
|
+
require("../services/connectedAccountsService"),
|
|
15
|
+
require("../services/platformAuthService"),
|
|
16
|
+
require("./onboarding/OAuthWebView"),
|
|
17
|
+
require("../utils/webviewScripts"),
|
|
18
|
+
require("../services/pinStorageUtils"),
|
|
19
|
+
require("@react-native-async-storage/async-storage")
|
|
20
|
+
];
|
|
21
|
+
function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
|
|
22
|
+
Object[_0x2bf9(0x0)](exports,_0x2bf9(0x1),{'value':!![]}),exports[_0x2bf9(0x2)]=void 0x0;var _react=_interopRequireWildcard(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_theme=__ONAIROS_REQ_FUNC__(0x2),_haptics=__ONAIROS_REQ_FUNC__(0x3),_PersonaImage=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x4)),_PrimaryButton=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x5)),_PersonalizationConsentScreen=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x6)),_PinCreationScreen=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x7)),_PersonaLoadingScreen=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x8)),_useConnections=__ONAIROS_REQ_FUNC__(0x9),_connectedAccountsService=__ONAIROS_REQ_FUNC__(0xa),_platformAuthService=__ONAIROS_REQ_FUNC__(0xb),_OAuthWebView=__ONAIROS_REQ_FUNC__(0xc),_webviewScripts=__ONAIROS_REQ_FUNC__(0xd),_pinStorageUtils=__ONAIROS_REQ_FUNC__(0xe),_asyncStorage=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0xf));function _interopRequireDefault(_0x327d72){return _0x327d72&&_0x327d72['__esModule']?_0x327d72:{'default':_0x327d72};}function _interopRequireWildcard(_0x502f48,_0x5bcf4a){const _0x32e6db={'BYKZK':function(_0x5d58fd,_0x2d3e23){return _0x5d58fd(_0x2d3e23);},'AYfWz':function(_0x14d00d,_0x2ebb2c){return _0x14d00d===_0x2ebb2c;},'ttFpi':function(_0x3b51b3,_0xd8d74a){return _0x3b51b3!=_0xd8d74a;},'QYHXL':_0x2bf9(0x3),'SVCXg':function(_0x596dba,_0x15b7fc){return _0x596dba===_0x15b7fc;},'xgjsg':'NxGzb','zEecs':function(_0x5cdc69,_0x1176d3){return _0x5cdc69!==_0x1176d3;},'oRaBd':function(_0x5d7bb4,_0x4f0402,_0x321313,_0x27d52a){return _0x5d7bb4(_0x4f0402,_0x321313,_0x27d52a);},'hwZtK':function(_0x57a152,_0x250494){return _0x57a152==_0x250494;},'evVZn':_0x2bf9(0x4)};if(_0x32e6db[_0x2bf9(0x5)](_0x32e6db['evVZn'],typeof WeakMap))var _0x39720a=new WeakMap(),_0x4b49c1=new WeakMap();return(_interopRequireWildcard=function(_0x546930,_0xa3ff6f){const _0x56f4f5={'GdEVq':function(_0x3c3ead,_0x14271a){return _0x32e6db['BYKZK'](_0x3c3ead,_0x14271a);}};if(!_0xa3ff6f&&_0x546930&&_0x546930['__esModule'])return _0x546930;var _0x480a71,_0x5c4feb,_0x5786d8={'__proto__':null,'default':_0x546930};if(_0x32e6db[_0x2bf9(0x6)](null,_0x546930)||_0x32e6db[_0x2bf9(0x7)](_0x32e6db[_0x2bf9(0x8)],typeof _0x546930)&&_0x2bf9(0x4)!=typeof _0x546930)return _0x5786d8;if(_0x480a71=_0xa3ff6f?_0x4b49c1:_0x39720a){if(_0x32e6db['SVCXg'](_0x2bf9(0x9),_0x32e6db[_0x2bf9(0xa)]))(0x0,_0x29f35a[_0x2bf9(0xb)])(_0x84ec53[_0x2bf9(0xc)][_0x2bf9(0xd)]),_0x56f4f5[_0x2bf9(0xe)](_0x42627c,![]);else{if(_0x480a71['has'](_0x546930))return _0x480a71[_0x2bf9(0xf)](_0x546930);_0x480a71[_0x2bf9(0x10)](_0x546930,_0x5786d8);}}for(const _0x52a117 in _0x546930)_0x32e6db['zEecs'](_0x2bf9(0x2),_0x52a117)&&{}[_0x2bf9(0x11)]['call'](_0x546930,_0x52a117)&&((_0x5c4feb=(_0x480a71=Object[_0x2bf9(0x0)])&&Object[_0x2bf9(0x12)](_0x546930,_0x52a117))&&(_0x5c4feb['get']||_0x5c4feb[_0x2bf9(0x10)])?_0x32e6db[_0x2bf9(0x13)](_0x480a71,_0x5786d8,_0x52a117,_0x5c4feb):_0x5786d8[_0x52a117]=_0x546930[_0x52a117]);return _0x5786d8;})(_0x502f48,_0x5bcf4a);}const PlatformConnectorsStep=({onUpdate:_0x1f7897,onSkip:_0x2eb15e,loading:loading=![],onPinComplete:_0x3368d3,onReviewerBypass:_0x122c04,allowedPlatforms:_0x561b40,recommendedPlatforms:_0x33eeed})=>{const _0x1a0dba={'qqQML':function(_0x477691,_0x3cb058){return _0x477691(_0x3cb058);},'ehDqD':function(_0x2056ab,_0x14cf1e){return _0x2056ab===_0x14cf1e;},'ygRfH':'cbaPh','xdEsx':function(_0x5de311,_0x23913){return _0x5de311!==_0x23913;},'sDizP':_0x2bf9(0x14),'trIeD':_0x2bf9(0x15),'SoSTq':function(_0x366966,_0x471fdd){return _0x366966!==_0x471fdd;},'STEzc':_0x2bf9(0x16),'fGmvs':function(_0x428fa5,_0x6eaccf){return _0x428fa5&&_0x6eaccf;},'TLfGb':function(_0x18c6ce,_0x1de264){return _0x18c6ce!==_0x1de264;},'WFUGw':_0x2bf9(0x17),'VUScc':_0x2bf9(0x18),'GcPcm':function(_0x29a2d0,_0xf15481){return _0x29a2d0===_0xf15481;},'Tqjzn':function(_0x561781,_0x190683){return _0x561781===_0x190683;},'RMamo':function(_0x42bf3e,_0x955cd6){return _0x42bf3e===_0x955cd6;},'aKecr':function(_0x16beb0,_0x36db96){return _0x16beb0===_0x36db96;},'MtEWO':function(_0x1ebc1,_0x40d039){return _0x1ebc1*_0x40d039;},'laSNL':function(_0x469a42,_0x132b32){return _0x469a42*_0x132b32;},'JbTht':_0x2bf9(0x19),'ejpla':function(_0xbeb18b,_0x189db6){return _0xbeb18b!==_0x189db6;},'zgvEj':_0x2bf9(0x1a),'fMeKk':'Error\x20initializing\x20username:','UmwGC':function(_0x1693ff,_0x583bd6){return _0x1693ff(_0x583bd6);},'iKYQs':function(_0x2704f5,_0x4ea565){return _0x2704f5(_0x4ea565);},'GNJNm':function(_0x37da6a,_0x4e2e58){return _0x37da6a(_0x4e2e58);},'prLOZ':_0x2bf9(0x1b),'PZMRj':function(_0x20f464,_0x3b474b){return _0x20f464===_0x3b474b;},'TqbMb':_0x2bf9(0x1c),'NXqQr':_0x2bf9(0x1d),'iGclu':'pLUOO','BTgJh':function(_0x315d1c,_0x1bfb87){return _0x315d1c-_0x1bfb87;},'Hflxh':function(_0x53428f,_0x328190){return _0x53428f(_0x328190);},'vYtAi':function(_0x358b98,_0x549a04){return _0x358b98>_0x549a04;},'HGeIu':'jhWvo','UufjE':'IcPPq','PSFsU':function(_0x2db73c,_0x5783f3){return _0x2db73c(_0x5783f3);},'nfdUR':'eqQKJ','FGrho':function(_0xf1f053,_0x14c5ab){return _0xf1f053>_0x14c5ab;},'YavqT':'wwVqP','SAUcj':'EoYMa','SqiKQ':function(_0x5ae730,_0x403de){return _0x5ae730(_0x403de);},'KsFxE':function(_0x394d18,_0x21b0a5){return _0x394d18(_0x21b0a5);},'eYUzY':function(_0x5d2579){return _0x5d2579();},'ggVCz':function(_0x58114e){return _0x58114e();},'YVttK':function(_0xbcf88b,_0x825190){return _0xbcf88b(_0x825190);},'NzaYX':function(_0x4722e4,_0x1f735f,_0x4b1c89){return _0x4722e4(_0x1f735f,_0x4b1c89);},'NtmiK':function(_0xb8520f,_0x5cfd6e){return _0xb8520f!==_0x5cfd6e;},'TsFFL':'ghwHX','qQvBO':_0x2bf9(0x1e),'DMPoS':'wEMsh','bPbtp':'โ\x20[TOGGLE]\x20No\x20username\x20available\x20-\x20cannot\x20proceed\x20with\x20OAuth','kOxwJ':_0x2bf9(0x1f),'zmqnE':function(_0x1f6eb8,_0x2dbcd5){return _0x1f6eb8(_0x2dbcd5);},'GisRV':function(_0x40bcfd,_0x3079da){return _0x40bcfd===_0x3079da;},'oApqK':'KJSvm','iCUrf':_0x2bf9(0x20),'mwCfz':function(_0x38d0dc,_0x3ab396){return _0x38d0dc(_0x3ab396);},'kiReV':function(_0x4e484f,_0x448867){return _0x4e484f(_0x448867);},'KSAiZ':_0x2bf9(0x21),'WekCd':function(_0xa93fc0,_0x93c0d1){return _0xa93fc0(_0x93c0d1);},'hUvsi':function(_0x58332e,_0x15eb0e){return _0x58332e(_0x15eb0e);},'KmofH':function(_0xcf807f,_0x12d098){return _0xcf807f!==_0x12d098;},'nbctg':_0x2bf9(0x22),'RCwuA':function(_0x326328,_0x5292d4){return _0x326328(_0x5292d4);},'CInli':_0x2bf9(0x23),'MmSXi':function(_0x34ffad,_0x3fd757){return _0x34ffad(_0x3fd757);},'FGDVi':function(_0x124b87,_0x55aeb6){return _0x124b87+_0x55aeb6;},'zBJah':'...','fNIOs':'NULL','kXkCh':function(_0x4ea5ac,_0x1302b8){return _0x4ea5ac!==_0x1302b8;},'WniJo':_0x2bf9(0x24),'gMvVZ':_0x2bf9(0x25),'EsLSY':'ODQjR','yXRiw':function(_0x57bca9,_0xed501a){return _0x57bca9(_0xed501a);},'gguly':function(_0x1852b3,_0x15375f){return _0x1852b3===_0x15375f;},'GUasF':'DDBhO','VHHyX':function(_0x3fbcde,_0x3b7df2){return _0x3fbcde(_0x3b7df2);},'hzsJN':_0x2bf9(0x26),'dUonk':function(_0x4aa4d7,_0x37b32e){return _0x4aa4d7(_0x37b32e);},'xNJiI':function(_0x4ffa06,_0x149b0a,_0x36b6f2){return _0x4ffa06(_0x149b0a,_0x36b6f2);},'LVIxS':function(_0x42dd4a,_0x541ee7){return _0x42dd4a(_0x541ee7);},'DWKBV':function(_0x3fb6d3,_0x1db673){return _0x3fb6d3(_0x1db673);},'cWJji':function(_0x482362,_0x40a784){return _0x482362(_0x40a784);},'pRgDj':function(_0x65c54e,_0x4e6274){return _0x65c54e(_0x4e6274);},'xbgZH':_0x2bf9(0x27),'aaMzS':_0x2bf9(0x28),'vPAGD':function(_0x278a21,_0x161634){return _0x278a21(_0x161634);},'ozqWS':function(_0x20f7e5,_0x1d1a7d){return _0x20f7e5(_0x1d1a7d);},'zRkyA':_0x2bf9(0x29),'fbNwz':_0x2bf9(0x2a),'ydNNx':function(_0x54c104,_0x5c6fdb){return _0x54c104===_0x5c6fdb;},'XJFEV':'uqONL','onJXm':'oqUUu','pwrNk':function(_0x301d99,_0x158ba5){return _0x301d99===_0x158ba5;},'TshDK':_0x2bf9(0x2b),'Nuhrb':function(_0xf6f4de,_0x232cd4){return _0xf6f4de!==_0x232cd4;},'xpVAd':_0x2bf9(0x2c),'QTuzD':function(_0x273552,_0x314fd6){return _0x273552(_0x314fd6);},'CXhIm':_0x2bf9(0x2d),'uDtag':function(_0xdbd866,_0x59cf8f){return _0xdbd866!==_0x59cf8f;},'Unlbz':_0x2bf9(0x2e),'MAZBo':_0x2bf9(0x2f),'objAE':function(_0x174e01,_0x39b5b8){return _0x174e01!==_0x39b5b8;},'Nymzp':_0x2bf9(0x30),'OTdsC':'aeWBl','vTtzT':function(_0x3a3adb,_0x309bf0,_0x1f7fe4){return _0x3a3adb(_0x309bf0,_0x1f7fe4);},'Rthhy':function(_0x1900b2,_0x2d80b2){return _0x1900b2(_0x2d80b2);},'GIiOG':function(_0x11ba6e,_0x5aee50){return _0x11ba6e!==_0x5aee50;},'LqiTy':_0x2bf9(0x31),'zajQa':function(_0x495d6b,_0x2f8d8b){return _0x495d6b(_0x2f8d8b);},'AUPYO':'RcDul','cHxeU':function(_0x397738,_0xf8bd25){return _0x397738(_0xf8bd25);},'urdkl':'TPZmj','FbwVM':function(_0x49d63c,_0x2a593a,_0xe393e){return _0x49d63c(_0x2a593a,_0xe393e);},'XRhIF':function(_0x424ade,_0x244302){return _0x424ade(_0x244302);},'KJkqS':function(_0x3cb298,_0xf0af84){return _0x3cb298===_0xf0af84;},'PuXdQ':'itKRR','nQajW':function(_0x1ceb0e,_0x294817){return _0x1ceb0e||_0x294817;},'KjVMy':function(_0x32810b,_0x11039a){return _0x32810b+_0x11039a;},'PrISx':function(_0x25fdda,_0x1b05dd){return _0x25fdda+_0x1b05dd;},'cYKOo':_0x2bf9(0x32),'UlTDF':_0x2bf9(0x33),'VDNTU':_0x2bf9(0x34),'qxEqp':function(_0x58208d,_0x312d55){return _0x58208d||_0x312d55;},'FUeOy':function(_0x5528cf,_0x1ff6d9){return _0x5528cf(_0x1ff6d9);},'PsFAK':'cKYEY','SJMGB':_0x2bf9(0x35),'rzZUG':function(_0x3ba954,_0x55d7eb){return _0x3ba954===_0x55d7eb;},'WNYFd':_0x2bf9(0x36),'cXaCD':function(_0x24b187,_0x480759){return _0x24b187===_0x480759;},'eqIXI':function(_0x380b58,_0x541041){return _0x380b58===_0x541041;},'bJjJt':_0x2bf9(0x37),'ATxhL':'contain','sVfBm':function(_0x2f3604,_0x356ced){return _0x2f3604+_0x356ced;},'FISld':function(_0x296ff1,_0x32987e){return _0x296ff1+_0x32987e;},'kamyP':function(_0x1e64c3,_0x51bf4e){return _0x1e64c3===_0x51bf4e;},'eVzeB':function(_0x28d892,_0xaca90e){return _0x28d892===_0xaca90e;},'FQdJY':_0x2bf9(0x38),'HpSMg':function(_0x4f5b49){return _0x4f5b49();},'QBJbd':'youtube','ZNaFt':_0x2bf9(0x39),'TDXDL':_0x2bf9(0x3a),'JAOPl':'reddit','ZIyFC':_0x2bf9(0x3b),'muhTU':_0x2bf9(0x3c),'Lzqkt':_0x2bf9(0x3d),'uMmav':'pinterest','ftpaa':'Use\x20your\x20pins,\x20boards,\x20and\x20interests\x20to\x20enrich\x20your\x20model.','TULvI':_0x2bf9(0x3e),'XKPVy':_0x2bf9(0x3f),'ftLgX':'chatgpt','ETMqC':_0x2bf9(0x40),'vRnSv':'Claude','Fplgr':_0x2bf9(0x41),'RBDLf':_0x2bf9(0x42),'ERJpq':_0x2bf9(0x43),'dkyHw':'Use\x20your\x20Gemini\x20conversations\x20to\x20enrich\x20your\x20model.','PWJtj':'Grok','birjL':_0x2bf9(0x44),'huoqM':_0x2bf9(0x45),'DbzIV':function(_0x398650,_0x52f9b4){return _0x398650<=_0x52f9b4;},'BZGqx':'normal','rJYzo':function(_0x8bd1cc,_0x49bfff){return _0x8bd1cc>_0x49bfff;},'KNJll':_0x2bf9(0x46),'cOXiK':function(_0x33ad96,_0x2996e7){return _0x33ad96===_0x2996e7;},'XWdWf':function(_0x4e62e6,_0x316d53){return _0x4e62e6||_0x316d53;},'uhVyx':_0x2bf9(0x47),'blPAF':'Skip'},[_0x26e29e,_0xd716d2]=(0x0,_react[_0x2bf9(0x48)])(new Set()),[_0x4e6bd3,_0x3ae0fe]=(0x0,_react[_0x2bf9(0x48)])(![]),[_0x436ab6,_0x5d2693]=(0x0,_react[_0x2bf9(0x48)])(![]),[_0x56752c,_0x3a1768]=(0x0,_react[_0x2bf9(0x48)])(![]),[_0x1e5de1,_0x26a0e3]=(0x0,_react[_0x2bf9(0x48)])(''),[_0x2f328e,_0x302707]=(0x0,_react[_0x2bf9(0x48)])({}),[_0x2f3c2b,_0x311fb9]=(0x0,_react['useState'])(![]),[_0x437896,_0x4f7cf4]=(0x0,_react[_0x2bf9(0x48)])(''),[_0x3b5e54,_0x46d59f]=(0x0,_react[_0x2bf9(0x48)])(''),[_0x4e95a5,_0x1bc680]=(0x0,_react[_0x2bf9(0x48)])(null),[_0x430186,_0x34e724]=(0x0,_react[_0x2bf9(0x48)])(0x0),_0x542367=(0x0,_react[_0x2bf9(0x49)])(new _reactNative[(_0x2bf9(0x4a))][(_0x2bf9(0x4b))](0x0))[_0x2bf9(0x4c)],[_0x3a6783,_0x338c11]=(0x0,_react[_0x2bf9(0x48)])(''),_0x49799d=(0x0,_react[_0x2bf9(0x49)])(null),[_0x5e58c6,_0x5b96bd]=(0x0,_react[_0x2bf9(0x48)])(!![]),_0x3727fb=(0x0,_react[_0x2bf9(0x49)])(new _reactNative[(_0x2bf9(0x4a))][(_0x2bf9(0x4b))](0x0))[_0x2bf9(0x4c)],[_0x382e05,_0xd68ab]=(0x0,_react[_0x2bf9(0x48)])(0x0),_0x11f09b=(0x0,_react[_0x2bf9(0x49)])(0x0),[_0xf69b7e,_0xd62899]=(0x0,_react[_0x2bf9(0x48)])(''),[_0x2123f1,_0x41c1d3]=(0x0,_react[_0x2bf9(0x48)])(0x0),[_0xeefc0f,_0x5bc7fe]=(0x0,_react[_0x2bf9(0x48)])('Initializing...'),[_0x44e2b5,_0x4a53a8]=(0x0,_react[_0x2bf9(0x48)])(![]),[_0x28a971,_0x1403cd]=(0x0,_react[_0x2bf9(0x48)])(![]),[_0x249ec0,_0x2323a6]=(0x0,_react[_0x2bf9(0x48)])(null),[_0x27d519,_0x3b0c8e]=(0x0,_react['useState'])(null),_0x2ce124=(0x0,_react[_0x2bf9(0x49)])(null),[_0x44c265,_0x4874f3]=(0x0,_react['useState'])(![]),[_0x1d43ef,_0x4dd033]=(0x0,_react[_0x2bf9(0x48)])(''),[_0x192671,_0x17f2b7]=(0x0,_react['useState'])(null),[_0x424e67,_0x58748b]=(0x0,_react[_0x2bf9(0x48)])(![]),[_0x6e9925,_0x15171a]=(0x0,_react[_0x2bf9(0x48)])(![]),[_0x290bc0,_0x5dda04]=(0x0,_react[_0x2bf9(0x48)])(null),{connectPlatform:_0x133d81,disconnectPlatform:_0x4d72d4,isConnecting:_0x6259b5}=(0x0,_useConnections[_0x2bf9(0x4d)])(),_0x534880=null;(0x0,_react[_0x2bf9(0x4e)])(()=>{const _0x1a7af6={'OOYne':function(_0x58311c,_0x56d87c){return _0x1a0dba[_0x2bf9(0x4f)](_0x58311c,_0x56d87c);},'TrhNN':_0x1a0dba[_0x2bf9(0x50)],'PRRMP':function(_0x58d88a,_0x2b4353){return _0x1a0dba[_0x2bf9(0x51)](_0x58d88a,_0x2b4353);},'xfMri':function(_0x25481d,_0x2cb42f){return _0x25481d===_0x2cb42f;},'sQuBl':_0x1a0dba[_0x2bf9(0x52)],'NRTOC':_0x1a0dba['NXqQr'],'HgUvz':_0x2bf9(0x53)};if(_0x1a0dba['PZMRj'](_0x1a0dba[_0x2bf9(0x54)],_0x1a0dba['iGclu'])){const _0x4ffd4e=async()=>{const _0x25c6a6={'KNPxs':function(_0x1ecc1e,_0xc16f8d){return _0x1a0dba[_0x2bf9(0x55)](_0x1ecc1e,_0xc16f8d);}};if(_0x1a0dba['ehDqD'](_0x2bf9(0x56),_0x1a0dba[_0x2bf9(0x57)]))_0x32e082[_0x2bf9(0x58)](_0x2bf9(0x59)+_0x2124a3+_0x2bf9(0x5a),_0x2cbf80),_0x4ed6dd(_0x2f4d18),_0x25c6a6[_0x2bf9(0x5b)](_0x5ecff4,!![]);else try{if(_0x1a0dba[_0x2bf9(0x5c)](_0x1a0dba['sDizP'],_0x1a0dba[_0x2bf9(0x5d)])){const _0x12f9ea=await _asyncStorage[_0x2bf9(0x2)][_0x2bf9(0x5e)]('onairos_username');if(_0x12f9ea&&!_0xf69b7e){if(_0x1a0dba[_0x2bf9(0x5f)](_0x2bf9(0x60),_0x1a0dba[_0x2bf9(0x61)])){_0x1a0dba['qqQML'](_0xd62899,_0x12f9ea);return;}else{_0x45aea2['log'](_0x2bf9(0x62)+_0x38c9c1+_0x2bf9(0x63)),_0x23480b(_0x36101d),_0x423c94(_0x224a45=>({..._0x224a45,[_0xfc784]:_0x2bf9(0x1b)}));const _0x3f9434=(0x0,_0x2d4852['getLLMPlatformUrl'])(_0x3bb2b0);_0x3f9434?(_0x45428d['log'](_0x2bf9(0x59)+_0x4a18be+'\x20URL:',_0x3f9434),_0x243723(_0x3f9434),_0x1a7af6[_0x2bf9(0x64)](_0x154357,!![])):(_0x408562[_0x2bf9(0x2c)]('โ\x20[LLM]\x20No\x20URL\x20configured\x20for\x20platform:\x20'+_0x35b2ec),_0x1a7af6[_0x2bf9(0x64)](_0x2b13c5,_0x105288=>({..._0x105288,[_0x47fdac]:_0x2bf9(0x2c)})),(0x0,_0x517a2c[_0x2bf9(0xb)])(_0x68e4dd[_0x2bf9(0xc)]['ERROR']));return;}}if(_0x1a0dba[_0x2bf9(0x65)](_0x534880,!_0xf69b7e)){if(_0x1a0dba['TLfGb'](_0x1a0dba[_0x2bf9(0x66)],_0x1a0dba[_0x2bf9(0x67)])){var _0x2cf574;const _0x243351=(_0x1a0dba[_0x2bf9(0x68)](_0x534880,null)||_0x534880===void 0x0||_0x1a0dba[_0x2bf9(0x69)](_0x2cf574=_0x534880[_0x2bf9(0x6a)],null)||_0x1a0dba[_0x2bf9(0x6b)](_0x2cf574,void 0x0)?void 0x0:_0x2cf574[_0x2bf9(0x6c)]('@')[0x0])||(_0x1a0dba[_0x2bf9(0x6d)](_0x534880,null)||_0x1a0dba[_0x2bf9(0x6e)](_0x534880,void 0x0)?void 0x0:_0x534880[_0x2bf9(0x6f)])||_0x2bf9(0x70)+Math['floor'](_0x1a0dba[_0x2bf9(0x71)](Math[_0x2bf9(0x72)](),0x2710));_0x1a0dba[_0x2bf9(0x55)](_0xd62899,_0x243351),await _asyncStorage[_0x2bf9(0x2)][_0x2bf9(0x73)](_0x2bf9(0x19),_0x243351);return;}else return _0x6f6b69[_0x2bf9(0x2)]['createElement'](_0x507d76['default'],{'visible':_0x1a0b59,'onComplete':_0x2558fe,'onBack':_0x4fce88});}if(!_0xf69b7e){const _0x2ff16d=_0x2bf9(0x74)+Math[_0x2bf9(0x75)](_0x1a0dba[_0x2bf9(0x76)](Math['random'](),0x2710));_0xd62899(_0x2ff16d),await _asyncStorage[_0x2bf9(0x2)][_0x2bf9(0x73)](_0x1a0dba['JbTht'],_0x2ff16d);}}else{const _0x4ca964=_0x40d8b5[_0x2bf9(0x77)](_0x55f8dd=>_0x55f8dd['id']===_0x48b999);if(!_0x4ca964)return null;const _0x5bfb3c=_0x2d04f0[_0x2bf9(0x78)](_0x1fcc0f),_0x2057f6=_0xab00[_0x4c6a45]===_0x1a7af6[_0x2bf9(0x79)],_0x1ee794=_0x1a7af6[_0x2bf9(0x7a)](_0x5c4a2e,null)||_0x1a7af6[_0x2bf9(0x7b)](_0x59e15b,void 0x0)?void 0x0:_0x2e6797[_0x2bf9(0x7c)](_0x58ffe2);return _0x40f954[_0x2bf9(0x2)][_0x2bf9(0x7d)](_0x4f06e7['View'],{'style':_0xc2b467[_0x2bf9(0x7e)]},_0x4058ea[_0x2bf9(0x2)]['createElement'](_0x43588b[_0x2bf9(0x7f)],{'style':_0x2ce519[_0x2bf9(0x80)]},_0x1701f4[_0x2bf9(0x2)][_0x2bf9(0x7d)](_0x4fca10[_0x2bf9(0x81)],{'style':_0x5dba5a[_0x2bf9(0x82)]},_0x4ca964[_0x2bf9(0x6f)]),_0x1ee794&&_0x46542d[_0x2bf9(0x2)][_0x2bf9(0x7d)](_0x42d228[_0x2bf9(0x7f)],{'style':_0x251ec6[_0x2bf9(0x83)]},_0x259601[_0x2bf9(0x2)][_0x2bf9(0x7d)](_0x5aa501['Text'],{'style':_0x4ca48c[_0x2bf9(0x84)]},_0x1a7af6['sQuBl'])),_0x110d34[_0x2bf9(0x2)]['createElement'](_0x38abd4[_0x2bf9(0x85)],{'activeOpacity':0.8,'onPress':()=>!_0x2057f6&&_0xb02af4(_0x6c0c4,!_0x5bfb3c),'disabled':_0x2057f6,'style':[_0x583875[_0x2bf9(0x86)],{'backgroundColor':_0x5bfb3c?_0x1a7af6[_0x2bf9(0x87)]:_0x1a7af6['HgUvz']}]},_0x32d123[_0x2bf9(0x2)][_0x2bf9(0x7d)](_0x2dcfcf[_0x2bf9(0x7f)],{'style':[_0x4fc45b[_0x2bf9(0x88)],{'transform':[{'translateX':_0x5bfb3c?0x14:0x0}]}]}))),_0x24c172[_0x2bf9(0x2)]['createElement'](_0x7f8f65['View'],{'style':_0x478334['descriptionContainer']},_0x13ed4d[_0x2bf9(0x2)][_0x2bf9(0x7d)](_0x13e9e5[_0x2bf9(0x81)],{'style':_0x547bf4['platformCardDescription']},_0x4ca964[_0x2bf9(0x89)])));}}catch(_0x13dca0){if(_0x1a0dba[_0x2bf9(0x8a)]('sRcZO',_0x1a0dba[_0x2bf9(0x8b)]))_0x1cd31b(_0x39c201=>({..._0x39c201,[_0x31208a]:_0x2bf9(0x2c)})),(0x0,_0x393bc9[_0x2bf9(0xb)])(_0x58c94f[_0x2bf9(0xc)]['ERROR']);else{console[_0x2bf9(0x2c)](_0x1a0dba['fMeKk'],_0x13dca0);const _0x9d8c1a=_0x2bf9(0x70)+Math[_0x2bf9(0x75)](Math[_0x2bf9(0x72)]()*0x2710);_0x1a0dba[_0x2bf9(0x8c)](_0xd62899,_0x9d8c1a);}}};_0x4ffd4e();}else _0x577308['error'](_0x2bf9(0x8d)+_0x22e230),_0x1a0dba[_0x2bf9(0x8e)](_0x283a07,_0x24ffd5=>({..._0x24ffd5,[_0xa787ce]:_0x2bf9(0x2c)})),(0x0,_0x132213[_0x2bf9(0xb)])(_0x3e1be7[_0x2bf9(0xc)][_0x2bf9(0x8f)]);},[_0x534880,_0xf69b7e]),(0x0,_react[_0x2bf9(0x4e)])(()=>{_0x5e58c6&&_reactNative[_0x2bf9(0x4a)][_0x2bf9(0x90)](_reactNative[_0x2bf9(0x4a)]['sequence']([_reactNative[_0x2bf9(0x4a)][_0x2bf9(0x91)](_0x3727fb,{'toValue':0x1,'duration':0x3e8,'useNativeDriver':!![]}),_reactNative['Animated']['timing'](_0x3727fb,{'toValue':0x0,'duration':0x3e8,'useNativeDriver':!![]})]))['start']();},[_0x5e58c6]);const _0x254adc=(0x0,_react[_0x2bf9(0x92)])(_0xebf9d5=>{const _0x451ef8={'DiSpz':function(_0x3e09e1,_0x35be7d){return _0x3e09e1(_0x35be7d);},'FZaZg':function(_0x314ec3,_0x2d6f3f){return _0x314ec3(_0x2d6f3f);}},_0x1d2a22=_0xebf9d5[_0x2bf9(0x93)][_0x2bf9(0x94)]['x'],_0x7d569e=_0xebf9d5[_0x2bf9(0x93)]['layoutMeasurement'][_0x2bf9(0x95)],_0x2d9bf9=_0xebf9d5[_0x2bf9(0x93)][_0x2bf9(0x96)]['width'];_0x11f09b[_0x2bf9(0x4c)]=_0x1d2a22;const _0x286b4d=_0x1a0dba[_0x2bf9(0x97)](_0x2d9bf9,_0x7d569e),_0x5d1dc7=_0x286b4d>0x0?_0x1d2a22/_0x286b4d:0x0;_0x1a0dba[_0x2bf9(0x98)](_0xd68ab,_0x5d1dc7),_0x1a0dba[_0x2bf9(0x99)](_0x1d2a22,0xa)&&_0x5e58c6&&(_0x1a0dba[_0x2bf9(0x68)](_0x1a0dba['HGeIu'],_0x1a0dba[_0x2bf9(0x9a)])?(_0x451ef8[_0x2bf9(0x9b)](_0x129bab,![]),_0x451ef8['FZaZg'](_0x1f3e5f,!![])):_0x1a0dba[_0x2bf9(0x9c)](_0x5b96bd,![]));},[_0x5e58c6]),_0x46d36e=[{'id':_0x1a0dba['QBJbd'],'name':_0x1a0dba[_0x2bf9(0x9d)],'icon':(0x0,_connectedAccountsService[_0x2bf9(0x9e)])(_0x1a0dba[_0x2bf9(0x9f)]),'description':_0x1a0dba[_0x2bf9(0xa0)],'isChatPlatform':![]},{'id':_0x1a0dba[_0x2bf9(0xa1)],'name':_0x1a0dba[_0x2bf9(0xa2)],'icon':(0x0,_connectedAccountsService[_0x2bf9(0x9e)])(_0x2bf9(0xa3)),'description':_0x1a0dba[_0x2bf9(0xa4)],'isChatPlatform':![]},{'id':'pinterest','name':_0x1a0dba[_0x2bf9(0xa5)],'icon':(0x0,_connectedAccountsService['getPlatformIcon'])(_0x1a0dba[_0x2bf9(0xa6)]),'description':_0x1a0dba[_0x2bf9(0xa7)],'isChatPlatform':![]},{'id':_0x2bf9(0x2d),'name':_0x1a0dba[_0x2bf9(0xa8)],'icon':(0x0,_connectedAccountsService[_0x2bf9(0x9e)])(_0x1a0dba[_0x2bf9(0xa9)]),'description':'Use\x20your\x20professional\x20network\x20and\x20career\x20interests\x20to\x20enrich\x20your\x20model.','isChatPlatform':![]},{'id':_0x1a0dba[_0x2bf9(0xaa)],'name':_0x1a0dba[_0x2bf9(0xab)],'icon':(0x0,_connectedAccountsService[_0x2bf9(0x9e)])('gmail'),'description':_0x2bf9(0xac),'isChatPlatform':![]},{'id':_0x1a0dba[_0x2bf9(0xad)],'name':_0x2bf9(0xae),'icon':(0x0,_connectedAccountsService[_0x2bf9(0x9e)])(_0x1a0dba[_0x2bf9(0xad)]),'description':_0x2bf9(0xaf),'isChatPlatform':!![]},{'id':_0x1a0dba[_0x2bf9(0xb0)],'name':_0x1a0dba[_0x2bf9(0xb1)],'icon':(0x0,_connectedAccountsService['getPlatformIcon'])(_0x1a0dba[_0x2bf9(0xb0)]),'description':_0x1a0dba[_0x2bf9(0xb2)],'isChatPlatform':!![]},{'id':_0x1a0dba['RBDLf'],'name':_0x1a0dba[_0x2bf9(0xb3)],'icon':(0x0,_connectedAccountsService[_0x2bf9(0x9e)])(_0x1a0dba['RBDLf']),'description':_0x1a0dba[_0x2bf9(0xb4)],'isChatPlatform':!![]},{'id':_0x1a0dba['bJjJt'],'name':_0x1a0dba[_0x2bf9(0xb5)],'icon':(0x0,_connectedAccountsService[_0x2bf9(0x9e)])(_0x1a0dba[_0x2bf9(0xb6)]),'description':_0x1a0dba[_0x2bf9(0xb7)],'isChatPlatform':!![]}],_0x4d571b=_0x561b40?_0x561b40[_0x2bf9(0xb8)](_0x433c83=>_0x46d36e['find'](_0x29958c=>_0x29958c['id']===_0x433c83))[_0x2bf9(0xb9)](_0x32d9f2=>_0x32d9f2!==undefined):_0x46d36e;(0x0,_react[_0x2bf9(0x4e)])(()=>{const _0x2b6ecb={'MjofK':function(_0x3568ae,_0x130a17){return _0x1a0dba['PSFsU'](_0x3568ae,_0x130a17);}};if(_0x1a0dba[_0x2bf9(0x6d)](_0x1a0dba[_0x2bf9(0xba)],'vsnEg'))_0x2b6ecb[_0x2bf9(0xbb)](_0x1e49a8,_0xb63d00);else{if(_0x1a0dba['FGrho'](_0x4d571b[_0x2bf9(0xbc)],0x0)){const _0x1063c4=_0x4d571b[0x0]['id'];(!_0x3a6783||!_0x4d571b[_0x2bf9(0x77)](_0x10959f=>_0x10959f['id']===_0x3a6783))&&(_0x1a0dba['ejpla'](_0x1a0dba[_0x2bf9(0xbd)],_0x1a0dba[_0x2bf9(0xbe)])?_0x1a0dba[_0x2bf9(0xbf)](_0x338c11,_0x1063c4):_0x2192d2(!![]));}}},[_0x561b40,_0x4d571b[_0x2bf9(0xbc)]]);const _0x46e75e=async(_0x529244,_0x3c04f3)=>{const _0x40223a={'FhIBj':function(_0x1f01d0,_0x6a8ae1){return _0x1a0dba[_0x2bf9(0x98)](_0x1f01d0,_0x6a8ae1);},'yfums':function(_0x2ebf26,_0x53c08a){return _0x1a0dba[_0x2bf9(0xc0)](_0x2ebf26,_0x53c08a);},'VGLzL':function(_0x205caf){return _0x1a0dba[_0x2bf9(0xc1)](_0x205caf);},'SYkOW':function(_0x15d388,_0x505b3c,_0x40e4ca){return _0x1a0dba[_0x2bf9(0xc2)](_0x15d388,_0x505b3c,_0x40e4ca);},'JysuO':function(_0x5de435,_0x432fff){return _0x1a0dba[_0x2bf9(0xbf)](_0x5de435,_0x432fff);}};if(_0x1a0dba[_0x2bf9(0xc3)](_0x1a0dba[_0x2bf9(0xc4)],_0x1a0dba[_0x2bf9(0xc5)])){(0x0,_haptics['triggerHaptic'])(_haptics[_0x2bf9(0xc)][_0x2bf9(0xd)]),console[_0x2bf9(0x58)](_0x2bf9(0xc6)+_0x529244+_0x2bf9(0xc7)+_0x3c04f3);try{if(_0x3c04f3){const _0x1ffd60=await _asyncStorage[_0x2bf9(0x2)]['getItem'](_0x1a0dba[_0x2bf9(0xc8)]),_0x4aa4c6=_0x1ffd60||_0xf69b7e;console[_0x2bf9(0x58)](_0x2bf9(0xc9)+_0x1ffd60+_0x2bf9(0xca)+_0xf69b7e+'\x22,\x20valid:\x20\x22'+_0x4aa4c6+'\x22');if(!_0x4aa4c6||_0x1a0dba[_0x2bf9(0x6d)](_0x4aa4c6[_0x2bf9(0xcb)](),'')){if(_0x1a0dba[_0x2bf9(0x68)](_0x2bf9(0xcc),_0x1a0dba[_0x2bf9(0xcd)])){console[_0x2bf9(0x2c)](_0x1a0dba[_0x2bf9(0xce)]);return;}else(0x0,_0x5aeeac['triggerHaptic'])(_0x20ce6e[_0x2bf9(0xc)][_0x2bf9(0xd)]),_0x1a0dba[_0x2bf9(0xcf)](_0x34a10c,![]);}const _0xf47cb9=_0x46d36e['find'](_0x2c1df9=>_0x2c1df9['id']===_0x529244),_0x2d4453=(_0xf47cb9===null||_0x1a0dba[_0x2bf9(0x51)](_0xf47cb9,void 0x0)?void 0x0:_0xf47cb9['isChatPlatform'])||(0x0,_webviewScripts[_0x2bf9(0xd0)])(_0x529244);if(_0x2d4453){if(_0x1a0dba[_0x2bf9(0x5c)](_0x1a0dba[_0x2bf9(0xd1)],'sDGwy')){if(_0x36e5ec[_0x2bf9(0x78)](_0x4265e4))return _0x3be325[_0x2bf9(0xf)](_0x41865a);_0x13de9c[_0x2bf9(0x10)](_0x4324cb,_0x5cb894);}else{console['log'](_0x2bf9(0x62)+_0x529244+'\x20login\x20and\x20export...'),_0x1a0dba[_0x2bf9(0x8c)](_0x46d59f,_0x529244),_0x1a0dba[_0x2bf9(0xd2)](_0x302707,_0x5ae578=>({..._0x5ae578,[_0x529244]:_0x2bf9(0x1b)}));const _0x49770f=(0x0,_webviewScripts[_0x2bf9(0xd3)])(_0x529244);_0x49770f?(console[_0x2bf9(0x58)](_0x2bf9(0x59)+_0x529244+'\x20URL:',_0x49770f),_0x4f7cf4(_0x49770f),_0x1a0dba[_0x2bf9(0x4f)](_0x311fb9,!![])):(console[_0x2bf9(0x2c)](_0x2bf9(0x8d)+_0x529244),_0x302707(_0x353a3d=>({..._0x353a3d,[_0x529244]:_0x2bf9(0x2c)})),(0x0,_haptics['triggerHaptic'])(_haptics[_0x2bf9(0xc)]['ERROR']));return;}}if((0x0,_webviewScripts[_0x2bf9(0xd4)])(_0x529244)){if(_0x1a0dba['GisRV'](_0x1a0dba[_0x2bf9(0xd5)],_0x1a0dba['iCUrf']))return _0x39598e['default'][_0x2bf9(0x7d)](_0x487cff['default'],{'visible':_0x2c73db,'onComplete':_0x3aecff});else{console[_0x2bf9(0x58)]('๐ผ\x20[LINKEDIN]\x20Opening\x20WebView\x20for\x20LinkedIn\x20login...'),_0x1a0dba['zmqnE'](_0x46d59f,_0x529244),_0x1a0dba[_0x2bf9(0xd6)](_0x302707,_0x39c491=>({..._0x39c491,[_0x529244]:_0x2bf9(0x1b)}));const _0x4ccc36=_0x2bf9(0xd7);console[_0x2bf9(0x58)](_0x2bf9(0xd8),_0x4ccc36),_0x1a0dba[_0x2bf9(0xd9)](_0x4f7cf4,_0x4ccc36),_0x1a0dba['YVttK'](_0x311fb9,!![]);return;}}if((0x0,_platformAuthService[_0x2bf9(0xda)])(_0x529244)){if(_0x1a0dba[_0x2bf9(0x5c)](_0x1a0dba[_0x2bf9(0xdb)],_0x1a0dba[_0x2bf9(0xdb)]))_0x254a1c(_0x4359e0=>({..._0x4359e0,[_0x391b5a]:_0x2bf9(0x2c)})),(0x0,_0x1a6cae[_0x2bf9(0xb)])(_0x150f4a[_0x2bf9(0xc)]['ERROR']);else{_0x1a0dba[_0x2bf9(0xdc)](_0x46d59f,_0x529244),_0x1a0dba[_0x2bf9(0xdd)](_0x302707,_0x2012b9=>({..._0x2012b9,[_0x529244]:_0x2bf9(0x1b)}));const _0x57792d=await(0x0,_platformAuthService[_0x2bf9(0xde)])(_0x529244,_0x4aa4c6);if(_0x57792d){if(_0x1a0dba[_0x2bf9(0xdf)](_0x2bf9(0xe0),_0x1a0dba['nbctg'])){const _0x467b54=new Set(_0x26e29e);_0x467b54[_0x2bf9(0xe1)](_0x529244),_0xd716d2(_0x467b54),_0x1a0dba['RCwuA'](_0x302707,_0x2a0f55=>({..._0x2a0f55,[_0x529244]:_0x2bf9(0xe2)})),(0x0,_haptics['triggerHaptic'])(_haptics[_0x2bf9(0xc)][_0x2bf9(0xe3)]);}else _0x40223a[_0x2bf9(0xe4)](_0x39f397,_0x437237=>{const _0x49c3de=new _0x560f76(_0x437237);return _0x49c3de[_0x2bf9(0xe1)](_0x200f4c),_0x49c3de;}),(0x0,_0xdce35e['triggerHaptic'])(_0x24d71a[_0x2bf9(0xc)][_0x2bf9(0xe3)]),_0x2ae268[_0x2bf9(0x58)](_0x2bf9(0xe5)+_0x3cf03e),_0x40223a[_0x2bf9(0xe6)](_0x50884b,null);}else'vMmps'!==_0x1a0dba[_0x2bf9(0xe7)]?((0x0,_0x5bdbaf[_0x2bf9(0xb)])(_0x1da179['HapticType']['SUCCESS']),_0x1cf9af[_0x2bf9(0xe8)]['vibrate']([0x0,0x64,0x32,0x64]),_0x1a0dba[_0x2bf9(0xc1)](_0x4cfdb8)):(_0x302707(_0x28f085=>({..._0x28f085,[_0x529244]:'error'})),(0x0,_haptics[_0x2bf9(0xb)])(_haptics[_0x2bf9(0xc)][_0x2bf9(0x8f)]));}}else{console[_0x2bf9(0x58)]('๐\x20[TOGGLE]\x20Starting\x20OAuth\x20flow\x20for\x20'+_0x529244+_0x2bf9(0xe9)),_0x1a0dba[_0x2bf9(0xea)](_0x46d59f,_0x529244),_0x302707(_0x58b073=>({..._0x58b073,[_0x529244]:_0x2bf9(0x1b)}));const _0x1d9d04=await(0x0,_platformAuthService[_0x2bf9(0xeb)])(_0x529244,_0x4aa4c6);console[_0x2bf9(0x58)](_0x2bf9(0xec)+_0x529244+':',_0x1d9d04?_0x1a0dba[_0x2bf9(0xed)](_0x1d9d04[_0x2bf9(0xee)](0x0,0x32),_0x1a0dba['zBJah']):_0x1a0dba['fNIOs']),_0x1d9d04?_0x1a0dba[_0x2bf9(0xef)](_0x1a0dba['WniJo'],_0x1a0dba[_0x2bf9(0xf0)])?(console[_0x2bf9(0x58)](_0x2bf9(0xf1)+_0x529244),_0x1a0dba[_0x2bf9(0xbf)](_0x4f7cf4,_0x1d9d04),_0x311fb9(!![])):_0x2c831a&&_0x1a0dba['ggVCz'](_0x154eae):(console['error'](_0x2bf9(0xf2)+_0x529244+_0x2bf9(0xf3)),_0x1a0dba[_0x2bf9(0xc0)](_0x302707,_0xdd04a5=>({..._0xdd04a5,[_0x529244]:_0x2bf9(0x2c)})),(0x0,_haptics['triggerHaptic'])(_haptics[_0x2bf9(0xc)][_0x2bf9(0x8f)]));}}else{if(_0x2bf9(0xf4)!==_0x1a0dba[_0x2bf9(0xf5)]){if(_0x1a0dba[_0x2bf9(0x99)](_0x2617b2[_0x2bf9(0xbc)],0x0)){const _0x38ccb9=_0x54a8a7[0x0]['id'];(!_0x4fac3a||!_0x321b98['find'](_0x2a538=>_0x2a538['id']===_0x349317))&&_0x1a0dba[_0x2bf9(0x55)](_0x40c123,_0x38ccb9);}}else{await _0x1a0dba[_0x2bf9(0xdc)](_0x4d72d4,_0x529244);const _0x230400=new Set(_0x26e29e);_0x230400['delete'](_0x529244),_0xd716d2(_0x230400),_0x1a0dba[_0x2bf9(0xf6)](_0x302707,_0x175bfb=>({..._0x175bfb,[_0x529244]:'disconnected'})),(0x0,_haptics[_0x2bf9(0xb)])(_haptics['HapticType'][_0x2bf9(0xd)]),await _asyncStorage[_0x2bf9(0x2)]['removeItem'](_0x2bf9(0xf7)+_0x529244);}}}catch(_0x2a3283){console[_0x2bf9(0x2c)]('Error\x20toggling\x20platform\x20'+_0x529244+':',_0x2a3283),_0x1a0dba[_0x2bf9(0xbf)](_0x302707,_0x339a0b=>({..._0x339a0b,[_0x529244]:'error'})),(0x0,_haptics[_0x2bf9(0xb)])(_haptics[_0x2bf9(0xc)][_0x2bf9(0x8f)]);}}else{_0x13f911[_0x2bf9(0x4a)][_0x2bf9(0x91)](_0x1666cd,{'toValue':0x1,'duration':0xfa0,'useNativeDriver':![]})[_0x2bf9(0xf8)]();const _0x485819=_0x40223a[_0x2bf9(0xf9)](_0x267000,()=>{(0x0,_0x2f8a63[_0x2bf9(0xb)])(_0x247d82['HapticType'][_0x2bf9(0xe3)]),_0x365699[_0x2bf9(0xe8)][_0x2bf9(0xfa)]([0x0,0x64,0x32,0x64]),_0x40223a[_0x2bf9(0xfb)](_0x3b49d1);},0xfa0);_0x40223a[_0x2bf9(0xfc)](_0x32fcc6,_0x485819);}},_0x3a1ae7=async()=>{(0x0,_haptics[_0x2bf9(0xb)])(_haptics[_0x2bf9(0xc)][_0x2bf9(0xd)]),_0x58748b(!![]);try{_0x1a0dba['gguly'](_0x2bf9(0xfd),_0x1a0dba[_0x2bf9(0xfe)])?((0x0,_0x585772['triggerHaptic'])(_0x399762[_0x2bf9(0xc)][_0x2bf9(0xd)]),_0x27103d&&_0x252637()):_0x1a0dba[_0x2bf9(0xff)](_0x5d2693,!![]);}finally{_0x1a0dba[_0x2bf9(0x4f)](_0x58748b,![]);}},_0x17a839=()=>{_0x1a0dba[_0x2bf9(0x69)](_0x1a0dba['hzsJN'],_0x2bf9(0x100))?(_0x26c108(_0x305b4d),_0x57e1cd(null)):((0x0,_haptics[_0x2bf9(0xb)])(_haptics['HapticType'][_0x2bf9(0xd)]),_0x2eb15e&&_0x1a0dba[_0x2bf9(0xc1)](_0x2eb15e));},_0xdca4f3=async()=>{(0x0,_haptics[_0x2bf9(0xb)])(_haptics[_0x2bf9(0xc)][_0x2bf9(0xd)]),_0x1a0dba['LVIxS'](_0x15171a,!![]),await new Promise(_0x3a3cff=>setTimeout(_0x3a3cff,0x32));try{if(_0x3368d3)await _0x1a0dba[_0x2bf9(0x101)](_0x3368d3,_0x1e5de1);else{if(_0x2bf9(0x102)!==_0x2bf9(0x103))await _0x1a0dba['DWKBV'](_0x1f7897,Array['from'](_0x26e29e));else{const _0x3f21eb={'YpHus':function(_0x25fd05,_0x5b4083){return _0x1a0dba[_0x2bf9(0x104)](_0x25fd05,_0x5b4083);}},_0x2f30c8=_0x1a0dba[_0x2bf9(0x105)](_0x3da398,()=>{_0x3f21eb[_0x2bf9(0x106)](_0x462787,_0x3e70fe=>{const _0x24aef1=new _0x572dac(_0x3e70fe);return _0x24aef1[_0x2bf9(0xe1)](_0x21f2e6),_0x24aef1;}),(0x0,_0x3f8b50[_0x2bf9(0xb)])(_0x49f26f['HapticType']['SUCCESS']),_0x448160['log'](_0x2bf9(0xe5)+_0x4b657f),_0x3f21eb[_0x2bf9(0x106)](_0x570457,null);},0x12c);return()=>_0xba09ad(_0x2f30c8);}}}finally{_0x1a0dba[_0x2bf9(0x107)](_0x15171a,![]);}},_0x359b94=()=>{(0x0,_haptics['triggerHaptic'])(_haptics['HapticType'][_0x2bf9(0xd)]),_0x1a0dba[_0x2bf9(0xd6)](_0x3ae0fe,![]);},_0x1298c5=async _0x277bcb=>{_0x26a0e3(_0x277bcb),(0x0,_pinStorageUtils['setTemporaryPin'])(_0x277bcb),_0x1a0dba[_0x2bf9(0x108)](_0x5d2693,![]),_0x3a1768(!![]);},_0x55d23b=()=>{if(_0x1a0dba['gguly'](_0x1a0dba['xbgZH'],_0x1a0dba[_0x2bf9(0x109)])){const _0x3bfde6=new _0x2510f8(_0x5ced32);return _0x3bfde6['add'](_0x135cb6),_0x3bfde6;}else _0x1a0dba[_0x2bf9(0x10a)](_0x3a1768,![]),_0x1a0dba[_0x2bf9(0x10b)](_0x3ae0fe,!![]);},_0x31329d=async _0x1a2aaa=>{const _0x51ae27={'HbAyK':function(_0x40f810,_0x50ae34){return _0x40f810(_0x50ae34);},'expOV':function(_0x5784bf,_0x29f163){return _0x1a0dba[_0x2bf9(0x65)](_0x5784bf,_0x29f163);},'xiIhI':function(_0x42911d,_0x2fb88a,_0x48d9c7){return _0x42911d(_0x2fb88a,_0x48d9c7);},'DODRf':function(_0x5b18ce,_0x45bd59){return _0x1a0dba[_0x2bf9(0x4f)](_0x5b18ce,_0x45bd59);}};if(_0x1a0dba[_0x2bf9(0x5f)](_0x1a0dba[_0x2bf9(0x10c)],_0x1a0dba[_0x2bf9(0x10d)])){if(_0x3b5e54){if(_0x1a0dba[_0x2bf9(0x10e)](_0x1a0dba['XJFEV'],_0x1a0dba[_0x2bf9(0x10f)])){const _0x505270={'coVvU':function(_0x7a191c,_0x2fb991){return _0x51ae27[_0x2bf9(0x110)](_0x7a191c,_0x2fb991);}};if(_0x51ae27[_0x2bf9(0x111)](_0x7ba71c,!_0x5852c9)){const _0x41fc89=_0x51ae27[_0x2bf9(0x112)](_0x416467,()=>{_0x42aa9e(_0x126f84=>{const _0x109b9a=new _0x1f9f0f(_0x126f84);return _0x109b9a['add'](_0x3dfe40),_0x109b9a;}),(0x0,_0x456d8d['triggerHaptic'])(_0xdb80f6['HapticType'][_0x2bf9(0xe3)]),_0x308602[_0x2bf9(0x58)](_0x2bf9(0xe5)+_0x3c0069),_0x505270[_0x2bf9(0x113)](_0x4c5d3a,null);},0x12c);return()=>_0x59788c(_0x41fc89);}}else _0x1a0dba[_0x2bf9(0x114)](_0x1a2aaa,_0x1a0dba[_0x2bf9(0x115)])||_0x1a0dba[_0x2bf9(0x116)](_0x1a2aaa,_0x1a0dba[_0x2bf9(0x117)])?(_0x1a0dba[_0x2bf9(0x118)](_0x5dda04,_0x3b5e54),_0x302707(_0x455b6e=>({..._0x455b6e,[_0x3b5e54]:_0x2bf9(0xe2)})),(0x0,_webviewScripts[_0x2bf9(0xd0)])(_0x3b5e54)&&(await _asyncStorage['default']['setItem'](_0x2bf9(0xf7)+_0x3b5e54,JSON[_0x2bf9(0x119)]({'connected':!![],'platform':_0x3b5e54,'connectedAt':new Date()[_0x2bf9(0x11a)]()})),console[_0x2bf9(0x58)]('โ
\x20[LLM]\x20'+_0x3b5e54+_0x2bf9(0x11b))),_0x1a0dba[_0x2bf9(0x114)](_0x3b5e54[_0x2bf9(0x11c)](),_0x1a0dba['CXhIm'])&&(_0x1a0dba[_0x2bf9(0x11d)](_0x1a0dba[_0x2bf9(0x11e)],_0x2bf9(0x11f))?(await _asyncStorage[_0x2bf9(0x2)][_0x2bf9(0x73)](_0x2bf9(0x120),JSON['stringify']({'connected':!![],'platform':_0x1a0dba[_0x2bf9(0xa9)],'connectedAt':new Date()[_0x2bf9(0x11a)]()})),console[_0x2bf9(0x58)]('โ
\x20[LINKEDIN]\x20Connection\x20stored\x20locally')):_0x51ae27[_0x2bf9(0x121)](_0x2817a4,![]))):_0x1a0dba[_0x2bf9(0x122)](_0x1a0dba[_0x2bf9(0x123)],'ypyxr')?_0x1a0dba[_0x2bf9(0xdd)](_0x42e33b,![]):(_0x1a0dba['yXRiw'](_0x302707,_0x2ce7ba=>({..._0x2ce7ba,[_0x3b5e54]:_0x2bf9(0x2c)})),(0x0,_haptics[_0x2bf9(0xb)])(_haptics['HapticType'][_0x2bf9(0x8f)]));}_0x1a0dba[_0x2bf9(0xff)](_0x311fb9,![]),_0x4f7cf4(''),_0x1a0dba[_0x2bf9(0xf6)](_0x46d59f,'');}else _0x1a0dba['MmSXi'](_0x4b1503,![]),_0x4f70d2(''),_0x31488c&&_0x1a0dba[_0x2bf9(0x124)](_0x2b9427,_0x4047f3=>({..._0x4047f3,[_0x449537]:_0x2bf9(0x125)})),_0x1f5654('');};(0x0,_react[_0x2bf9(0x4e)])(()=>{if(_0x1a0dba[_0x2bf9(0x126)](_0x2bf9(0x127),_0x1a0dba[_0x2bf9(0x128)])){if(_0x1a0dba[_0x2bf9(0x65)](_0x290bc0,!_0x2f3c2b)){if(_0x1a0dba[_0x2bf9(0x129)]===_0x2bf9(0x12a)){const _0x3508ca=_0x1a0dba['vTtzT'](setTimeout,()=>{_0xd716d2(_0x20856f=>{const _0x5265ba=new Set(_0x20856f);return _0x5265ba[_0x2bf9(0xe1)](_0x290bc0),_0x5265ba;}),(0x0,_haptics[_0x2bf9(0xb)])(_haptics[_0x2bf9(0xc)]['SUCCESS']),console['log'](_0x2bf9(0xe5)+_0x290bc0),_0x5dda04(null);},0x12c);return()=>clearTimeout(_0x3508ca);}else _0x21dddb[_0x2bf9(0x2c)](_0x2bf9(0x12b)+_0x49d5fc+':',_0x2477fe),_0x2118fa(_0x28630f=>({..._0x28630f,[_0x470c28]:'error'})),(0x0,_0x2794b8[_0x2bf9(0xb)])(_0x1eb8f2[_0x2bf9(0xc)][_0x2bf9(0x8f)]);}}else{const _0x454ece=new _0x1309ea(_0x66183e);_0x454ece[_0x2bf9(0xe1)](_0x38f868),_0x219427(_0x454ece),_0x1a0dba[_0x2bf9(0xea)](_0x1981f0,_0x406b8c=>({..._0x406b8c,[_0x3ab48c]:_0x2bf9(0xe2)})),(0x0,_0x4a0ac7[_0x2bf9(0xb)])(_0x35f5ca[_0x2bf9(0xc)][_0x2bf9(0xe3)]);}},[_0x290bc0,_0x2f3c2b]);const _0x38890d=()=>{_0x1a0dba[_0x2bf9(0x12c)](_0x311fb9,![]),_0x1a0dba['dUonk'](_0x4f7cf4,''),_0x3b5e54&&_0x1a0dba[_0x2bf9(0x118)](_0x302707,_0x2046bf=>({..._0x2046bf,[_0x3b5e54]:_0x2bf9(0x125)})),_0x1a0dba[_0x2bf9(0x12d)](_0x46d59f,'');},_0x229d28=()=>{_0x1a0dba[_0x2bf9(0x12e)](_0x1a0dba['LqiTy'],_0x1a0dba[_0x2bf9(0x12f)])?_0xe1eb0a(![]):_0x1a0dba[_0x2bf9(0x130)](_0x5d2693,![]);},_0x4610c2=()=>{const _0x33c7c3={'JINWn':function(_0x281a0d,_0xc1047d){return _0x1a0dba[_0x2bf9(0x55)](_0x281a0d,_0xc1047d);}};_0x122c04&&(_0x1a0dba[_0x2bf9(0x131)]!=='avLVj'?_0x1a0dba[_0x2bf9(0xc1)](_0x122c04):(_0x5dc909[_0x2bf9(0x2c)](_0x2bf9(0xf2)+_0x51a3fb+_0x2bf9(0xf3)),_0x33c7c3['JINWn'](_0x21a1b8,_0x5d70f0=>({..._0x5d70f0,[_0x6d9b2b]:_0x2bf9(0x2c)})),(0x0,_0x14fa06[_0x2bf9(0xb)])(_0x4399bc['HapticType'][_0x2bf9(0x8f)])));},_0x163056=()=>{const _0x3078ab={'mnYUr':function(_0x49413c,_0x20aad2){return _0x1a0dba[_0x2bf9(0x132)](_0x49413c,_0x20aad2);}};if(_0x1a0dba['gguly'](_0x1a0dba['urdkl'],_0x2bf9(0x133)))_0x3078ab[_0x2bf9(0x134)](_0xf27793,_0x5e1db9=>({..._0x5e1db9,[_0x45bd5b]:_0x2bf9(0x125)}));else{_reactNative[_0x2bf9(0x4a)]['timing'](_0x542367,{'toValue':0x1,'duration':0xfa0,'useNativeDriver':![]})[_0x2bf9(0xf8)]();const _0x3c37ac=_0x1a0dba[_0x2bf9(0x135)](setTimeout,()=>{(0x0,_haptics[_0x2bf9(0xb)])(_haptics[_0x2bf9(0xc)]['SUCCESS']),_reactNative[_0x2bf9(0xe8)]['vibrate']([0x0,0x64,0x32,0x64]),_0x4610c2();},0xfa0);_0x1a0dba[_0x2bf9(0xc0)](_0x1bc680,_0x3c37ac);}},_0x362722=()=>{_0x4e95a5&&(_0x1a0dba['cHxeU'](clearTimeout,_0x4e95a5),_0x1a0dba[_0x2bf9(0xff)](_0x1bc680,null)),_0x542367[_0x2bf9(0x136)](0x0),_reactNative[_0x2bf9(0x4a)][_0x2bf9(0x91)](_0x542367,{'toValue':0x0,'duration':0xc8,'useNativeDriver':![]})['start']();};(0x0,_react['useEffect'])(()=>{const _0x2f7c5b={'LpxnE':function(_0x2c2e37,_0x2ecb0f){return _0x2c2e37(_0x2ecb0f);}};if(_0x1a0dba['KJkqS'](_0x1a0dba[_0x2bf9(0x137)],_0x2bf9(0x138)))return()=>{_0x4e95a5&&_0x2f7c5b[_0x2bf9(0x139)](clearTimeout,_0x4e95a5);};else _0x1a0dba[_0x2bf9(0x13a)](_0x4d355c,![]);},[_0x4e95a5]),(0x0,_react[_0x2bf9(0x4e)])(()=>{_0x1a0dba[_0x2bf9(0x13b)]!==_0x2bf9(0x34)?_0x1a0dba[_0x2bf9(0x13c)](_0x2a62e4,_0x4432aa)&&_0x2d1020[_0x2bf9(0x58)](_0x2bf9(0x13d)+_0x3632fb+_0x2bf9(0x13e)+(_0x5e9b43?_0x1a0dba[_0x2bf9(0x13f)](_0x1a0dba[_0x2bf9(0x140)](_0x1a0dba[_0x2bf9(0x141)],_0x1955e4[_0x2bf9(0xee)](0x0,0x28)),_0x1a0dba[_0x2bf9(0x142)]):_0x2bf9(0x143))):_0x1a0dba[_0x2bf9(0x144)](_0x2f3c2b,_0x437896)&&console['log'](_0x2bf9(0x13d)+_0x2f3c2b+_0x2bf9(0x13e)+(_0x437896?_0x1a0dba[_0x2bf9(0x13f)](_0x1a0dba['KjVMy'](_0x1a0dba[_0x2bf9(0x141)],_0x437896[_0x2bf9(0xee)](0x0,0x28)),_0x1a0dba[_0x2bf9(0x142)]):_0x2bf9(0x143)));},[_0x2f3c2b,_0x437896]);const _0x5a8ae0=Math[_0x2bf9(0x145)](0x5,Math[_0x2bf9(0x146)](0x1,_0x26e29e[_0x2bf9(0x147)]+0x1)),_0x2d58b9=0x50,_0x1abc08=0x46;if(_0x436ab6)return _react[_0x2bf9(0x2)]['createElement'](_PinCreationScreen['default'],{'visible':_0x436ab6,'onComplete':_0x1298c5,'onBack':_0x229d28});if(_0x56752c)return _react['default'][_0x2bf9(0x7d)](_PersonaLoadingScreen[_0x2bf9(0x2)],{'visible':_0x56752c,'onComplete':_0x55d23b});if(_0x2f3c2b&&_0x437896)return console[_0x2bf9(0x58)]('โ
\x20[WEBVIEW]\x20Rendering\x20OAuthWebView\x20for\x20'+_0x3b5e54+_0x2bf9(0x148)+_0x437896[_0x2bf9(0xee)](0x0,0x3c)+'...'),_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_OAuthWebView[_0x2bf9(0x149)],{'url':_0x437896,'platform':_0x3b5e54,'onClose':_0x38890d,'onSuccess':_0x31329d,'onComplete':_0x38890d,'username':_0xf69b7e});const _0x2e31b7=()=>{(0x0,_haptics['triggerHaptic'])(_haptics['HapticType'][_0x2bf9(0xd)]),_0x3ae0fe(![]);};if(_0x4e6bd3)return _react[_0x2bf9(0x2)]['createElement'](_PersonalizationConsentScreen[_0x2bf9(0x2)],{'visible':_0x4e6bd3,'onAccept':_0xdca4f3,'onDecline':_0x359b94,'connectedPlatforms':Array[_0x2bf9(0x14a)](_0x26e29e),'onConnectMore':_0x2e31b7,'loading':_0x6e9925});return _react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':styles[_0x2bf9(0x14b)]},_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':styles['headingContainer']},_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x81)],{'style':styles['title']},'Connect\x20platforms'),_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x81)],{'style':styles[_0x2bf9(0x14c)]},_0x1a0dba[_0x2bf9(0x14d)])),_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':styles[_0x2bf9(0x14e)]},_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_PersonaImage['default'],{'level':_0x5a8ae0,'style':styles[_0x2bf9(0x14f)]}),_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative['ScrollView'],{'ref':_0x49799d,'horizontal':!![],'style':[styles[_0x2bf9(0x150)],{'bottom':_0x2d58b9}],'contentContainerStyle':[styles[_0x2bf9(0x151)],_0x1a0dba[_0x2bf9(0x152)](_0x4d571b[_0x2bf9(0xbc)],0x4)&&styles[_0x2bf9(0x153)]],'showsHorizontalScrollIndicator':![],'onScroll':_0x254adc,'scrollEventThrottle':0x10,'decelerationRate':_0x1a0dba[_0x2bf9(0x154)],'scrollEnabled':_0x1a0dba[_0x2bf9(0x155)](_0x4d571b[_0x2bf9(0xbc)],0x4)},_0x4d571b['map'](_0x30b84b=>{const _0x525975={'RocCY':function(_0x1633ed,_0x326ee0){return _0x1a0dba['FUeOy'](_0x1633ed,_0x326ee0);}};if(_0x1a0dba[_0x2bf9(0x156)]===_0x1a0dba['SJMGB'])_0x525975['RocCY'](_0x3c802b,_0x136113),(0x0,_0xe0ba90['setTemporaryPin'])(_0x4cf3b6),_0x525975[_0x2bf9(0x157)](_0x1fe9cf,![]),_0x525975[_0x2bf9(0x157)](_0x559bec,!![]);else{const _0x3bdabc=_0x1a0dba['gguly'](_0x3a6783,_0x30b84b['id']),_0x978339=_0x26e29e[_0x2bf9(0x78)](_0x30b84b['id']),_0x161cc2=_0x1a0dba[_0x2bf9(0x158)](_0x2f328e[_0x30b84b['id']],_0x2bf9(0x1b));return _react['default']['createElement'](_reactNative['TouchableOpacity'],{'key':_0x30b84b['id'],'style':[styles[_0x2bf9(0x159)],_0x3bdabc&&styles[_0x2bf9(0x15a)]],'onPress':()=>{(0x0,_haptics[_0x2bf9(0xb)])(_haptics[_0x2bf9(0xc)][_0x2bf9(0xd)]),_0x1a0dba[_0x2bf9(0x12c)](_0x338c11,_0x30b84b['id']);},'activeOpacity':0.7},_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x15b)],{'source':_0x30b84b['icon'],'style':[styles['platformIcon'],_0x1a0dba[_0x2bf9(0x158)](_0x30b84b['id'],_0x2bf9(0x15c))&&styles[_0x2bf9(0x15d)],_0x30b84b['id']==='pinterest'&&styles[_0x2bf9(0x15e)],_0x1a0dba[_0x2bf9(0x15f)](_0x30b84b['id'],_0x1a0dba[_0x2bf9(0xaa)])&&styles[_0x2bf9(0x160)],_0x30b84b['id']===_0x2bf9(0x161)&&styles['chatgptIcon'],_0x1a0dba[_0x2bf9(0x162)](_0x30b84b['id'],_0x2bf9(0x40))&&styles['claudeIcon'],_0x1a0dba[_0x2bf9(0x163)](_0x30b84b['id'],_0x1a0dba[_0x2bf9(0xb6)])&&styles[_0x2bf9(0x164)]],'resizeMode':_0x1a0dba['ATxhL']}),_0x161cc2&&_react[_0x2bf9(0x2)]['createElement'](_reactNative[_0x2bf9(0x7f)],{'style':styles['connectingDot']}),_0x978339&&_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':styles[_0x2bf9(0x165)]}));}})),_0x4d571b[_0x2bf9(0xbc)]>0x4&&_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':[styles['pageIndicatorContainer'],{'bottom':_0x1abc08}]},_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative['View'],{'style':styles[_0x2bf9(0x166)]},_react['default'][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':[styles['scrollBarThumb'],{'left':_0x382e05*0x38}]}))),_0x5e58c6&&_0x4d571b['length']>0x4&&_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x4a)][_0x2bf9(0x7f)],{'style':[styles[_0x2bf9(0x167)],{'transform':[{'translateX':_0x3727fb[_0x2bf9(0x168)]({'inputRange':[0x0,0x1],'outputRange':[0x0,0x8]})}],'opacity':_0x3727fb[_0x2bf9(0x168)]({'inputRange':[0x0,0x1],'outputRange':[0.5,0x1]})}]},_react[_0x2bf9(0x2)]['createElement'](_reactNative[_0x2bf9(0x81)],{'style':styles[_0x2bf9(0x169)]},'โบ'))),_react['default'][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':styles[_0x2bf9(0x16a)]},_0x3a6783&&((()=>{const _0x10da74={'OPWUU':function(_0x1ee8ee,_0xb7639f){return _0x1a0dba[_0x2bf9(0x16b)](_0x1ee8ee,_0xb7639f);},'sVxgC':function(_0xea5259,_0x321e74){return _0x1a0dba[_0x2bf9(0x16c)](_0xea5259,_0x321e74);},'ddRVg':_0x1a0dba[_0x2bf9(0x142)],'GKHrO':'NULL'};if(_0x1a0dba['NtmiK'](_0x2bf9(0x16d),_0x2bf9(0x16d)))_0x22f56b[_0x2bf9(0x58)](_0x2bf9(0x13d)+_0x5c9953+_0x2bf9(0x13e)+(_0x1f8ddd?_0x10da74['OPWUU'](_0x10da74[_0x2bf9(0x16e)](_0x2bf9(0x32),_0xbd8f0a['substring'](0x0,0x28)),_0x10da74[_0x2bf9(0x16f)]):_0x10da74[_0x2bf9(0x170)]));else{const _0x52ba71=_0x4d571b[_0x2bf9(0x77)](_0x427289=>_0x427289['id']===_0x3a6783);if(!_0x52ba71)return null;const _0x254db2=_0x26e29e[_0x2bf9(0x78)](_0x3a6783),_0x559003=_0x1a0dba[_0x2bf9(0x171)](_0x2f328e[_0x3a6783],_0x1a0dba[_0x2bf9(0x50)]),_0x3b9fec=_0x1a0dba[_0x2bf9(0x172)](_0x33eeed,null)||_0x33eeed===void 0x0?void 0x0:_0x33eeed['includes'](_0x3a6783);return _react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':styles[_0x2bf9(0x7e)]},_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative['View'],{'style':styles['cardHeader']},_react['default'][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x81)],{'style':styles['platformCardTitle']},_0x52ba71[_0x2bf9(0x6f)]),_0x3b9fec&&_react[_0x2bf9(0x2)]['createElement'](_reactNative[_0x2bf9(0x7f)],{'style':styles[_0x2bf9(0x83)]},_react['default'][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x81)],{'style':styles[_0x2bf9(0x84)]},_0x1a0dba[_0x2bf9(0x52)])),_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative['TouchableOpacity'],{'activeOpacity':0.8,'onPress':()=>!_0x559003&&_0x46e75e(_0x3a6783,!_0x254db2),'disabled':_0x559003,'style':[styles['customToggleTrack'],{'backgroundColor':_0x254db2?_0x1a0dba[_0x2bf9(0x173)]:_0x2bf9(0x53)}]},_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':[styles[_0x2bf9(0x88)],{'transform':[{'translateX':_0x254db2?0x14:0x0}]}]}))),_react['default'][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':styles[_0x2bf9(0x174)]},_react[_0x2bf9(0x2)]['createElement'](_reactNative[_0x2bf9(0x81)],{'style':styles[_0x2bf9(0x175)]},_0x52ba71[_0x2bf9(0x89)])));}})())),_react['default'][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x7f)],{'style':styles[_0x2bf9(0x176)]},_react[_0x2bf9(0x2)]['createElement'](_reactNative['View'],{'style':styles[_0x2bf9(0x177)]},_react[_0x2bf9(0x2)]['createElement'](_PrimaryButton[_0x2bf9(0x2)],{'label':_0x1a0dba[_0x2bf9(0x178)],'onPress':_0x3a1ae7,'disabled':loading||_0x1a0dba['cOXiK'](_0x26e29e[_0x2bf9(0x147)],0x0)||_0x6259b5||_0x424e67,'loading':_0x1a0dba[_0x2bf9(0x179)](loading,_0x6259b5)||_0x424e67}),_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative[_0x2bf9(0x85)],{'style':styles[_0x2bf9(0x17a)],'activeOpacity':0x1,'onPressIn':_0x163056,'onPressOut':_0x362722,'onPress':()=>{if(_0x1a0dba[_0x2bf9(0x17b)]!==_0x2bf9(0x17c))_0x1a0dba['vYtAi'](_0x26e29e[_0x2bf9(0x147)],0x0)&&!loading&&!_0x6259b5&&!_0x424e67&&_0x1a0dba['HpSMg'](_0x3a1ae7);else return _0x5cf073[_0x2bf9(0x58)](_0x2bf9(0x17d)+_0x24c103+_0x2bf9(0x148)+_0x2ab64c['substring'](0x0,0x3c)+_0x2bf9(0xe9)),_0xe3a76c['default'][_0x2bf9(0x7d)](_0x3ff025[_0x2bf9(0x149)],{'url':_0x3cfaca,'platform':_0x33145d,'onClose':_0x60e58f,'onSuccess':_0x4c3778,'onComplete':_0x32473e,'username':_0x991a98});}},_react[_0x2bf9(0x2)][_0x2bf9(0x7d)](_reactNative['Animated']['View'],{'style':[styles[_0x2bf9(0x17e)],{'width':_0x542367[_0x2bf9(0x168)]({'inputRange':[0x0,0x1],'outputRange':['0%',_0x1a0dba[_0x2bf9(0x17f)]]})}]}))),_0x2eb15e&&_react['default'][_0x2bf9(0x7d)](_reactNative['TouchableOpacity'],{'style':styles[_0x2bf9(0x180)],'onPress':_0x17a839},_react['default'][_0x2bf9(0x7d)](_reactNative['Text'],{'style':styles[_0x2bf9(0x181)]},_0x1a0dba['blPAF']))));},styles=_reactNative[_0x2bf9(0x182)][_0x2bf9(0x183)]({'container':{'flex':0x1,'backgroundColor':_theme[_0x2bf9(0x184)][_0x2bf9(0x185)],'paddingHorizontal':0x18},'headingContainer':{'width':_0x2bf9(0x47),'marginBottom':_theme[_0x2bf9(0x186)]['sm'],'paddingTop':0x8,'marginTop':0x8},'title':{'fontFamily':_0x2bf9(0x187),'fontWeight':_0x2bf9(0x188),'fontSize':0x18,'lineHeight':0x20,'color':_theme[_0x2bf9(0x184)][_0x2bf9(0x189)],'textAlign':_0x2bf9(0x18a),'marginBottom':0x4},'subtitle':{'fontFamily':'Inter','fontWeight':_0x2bf9(0x18b),'fontSize':0x10,'lineHeight':0x18,'color':_theme['COLORS'][_0x2bf9(0x18c)],'textAlign':'left'},'personaContainer':{'alignItems':_0x2bf9(0x18d),'position':_0x2bf9(0x18e),'marginTop':-0xa,'marginBottom':-0x50,'height':0x1c2},'largePersona':{'width':0x1f4,'height':0x1f4},'platformIconsOverlay':{'position':_0x2bf9(0x18f),'width':_0x2bf9(0x47),'height':0x46,'zIndex':0xa},'platformIconsScrollContent':{'flexDirection':_0x2bf9(0x190),'alignItems':'center','paddingHorizontal':0x14,'gap':0x18},'platformIconsCentered':{'flexGrow':0x1,'justifyContent':_0x2bf9(0x18d)},'platformIconButton':{'width':0x34,'height':0x34,'borderRadius':0x1a,'backgroundColor':_0x2bf9(0x191),'justifyContent':_0x2bf9(0x18d),'alignItems':_0x2bf9(0x18d),'borderWidth':0x3,'borderColor':'transparent','shadowColor':_0x2bf9(0x192),'shadowOffset':{'width':0x0,'height':0x2},'shadowOpacity':0.15,'shadowRadius':0x4,'elevation':0x4},'platformIconButtonSelected':{'borderColor':_0x2bf9(0x193),'backgroundColor':_0x2bf9(0x194)},'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':_0x2bf9(0x18f),'top':0x2,'right':0x2,'width':0xc,'height':0xc,'borderRadius':0x6,'backgroundColor':'#FFA500','borderWidth':0x2,'borderColor':_theme[_0x2bf9(0x184)]['surface']},'connectedDot':{'position':_0x2bf9(0x18f),'top':0x2,'right':0x2,'width':0xc,'height':0xc,'borderRadius':0x6,'backgroundColor':_0x2bf9(0x1d),'borderWidth':0x2,'borderColor':_theme['COLORS'][_0x2bf9(0x185)]},'cardContainer':{'alignItems':_0x2bf9(0x18d),'marginTop':0x20,'marginBottom':_theme[_0x2bf9(0x186)]['md']},'platformCard':{'width':0x147,'backgroundColor':_0x2bf9(0x191),'borderRadius':0x10,'padding':0x8,'shadowColor':_0x2bf9(0x192),'shadowOffset':{'width':0x0,'height':0x2},'shadowOpacity':0.1,'shadowRadius':0x8,'elevation':0x3,'gap':0xa},'cardHeader':{'flexDirection':_0x2bf9(0x190),'alignItems':_0x2bf9(0x18d),'justifyContent':_0x2bf9(0x195)},'platformCardTitle':{'fontSize':0x10,'fontWeight':'600','color':_theme['COLORS']['grey800'],'fontFamily':'IBM\x20Plex\x20Sans'},'recommendedBadge':{'backgroundColor':_0x2bf9(0x194),'paddingHorizontal':0xc,'paddingVertical':0x6,'borderRadius':0x10,'marginLeft':0x8},'recommendedBadgeText':{'fontSize':0xc,'fontWeight':_0x2bf9(0x196),'color':_0x2bf9(0x197),'fontFamily':_0x2bf9(0x187)},'customToggleTrack':{'width':0x32,'height':0x1e,'borderRadius':0xf,'padding':0x2,'marginLeft':_0x2bf9(0x198),'marginRight':0x8,'justifyContent':_0x2bf9(0x18d)},'customToggleThumb':{'width':0x1a,'height':0x1a,'borderRadius':0xd,'backgroundColor':_0x2bf9(0x191),'shadowColor':_0x2bf9(0x192),'shadowOffset':{'width':0x0,'height':0x2},'shadowOpacity':0.2,'shadowRadius':0x2,'elevation':0x2},'descriptionContainer':{'backgroundColor':_0x2bf9(0x199),'borderRadius':0x8,'padding':0x8},'platformCardDescription':{'fontSize':0xd,'lineHeight':0x12,'color':_theme[_0x2bf9(0x184)]['grey600'],'fontFamily':'Inter'},'bottomButtonContainer':{'marginTop':_0x2bf9(0x198),'paddingBottom':_theme['SPACING']['xl'],'paddingHorizontal':_theme[_0x2bf9(0x186)]['md']},'buttonWrapper':{'position':_0x2bf9(0x18e)},'buttonOverlay':{'position':'absolute','top':0x0,'left':0x0,'right':0x0,'bottom':0x0,'borderRadius':0xc,'overflow':_0x2bf9(0x19a)},'holdProgressBar':{'position':_0x2bf9(0x18f),'bottom':0x0,'left':0x0,'height':0x4,'backgroundColor':'#10B981','borderRadius':0x2},'skipButton':{'alignItems':'center','paddingVertical':0x10},'skipButtonText':{'fontSize':0x10,'fontFamily':'Inter','fontWeight':'500','color':_theme[_0x2bf9(0x184)][_0x2bf9(0x18c)]},'pageIndicatorContainer':{'position':'absolute','alignSelf':_0x2bf9(0x18d),'zIndex':0xb},'scrollBarTrack':{'width':0x50,'height':0x4,'backgroundColor':_theme[_0x2bf9(0x184)]['grey300'],'borderRadius':0x2,'position':_0x2bf9(0x18e),'overflow':_0x2bf9(0x19a)},'scrollBarThumb':{'position':_0x2bf9(0x18f),'width':0x18,'height':0x4,'backgroundColor':_theme[_0x2bf9(0x184)][_0x2bf9(0x18c)],'borderRadius':0x2,'left':0x0},'scrollIndicator':{'position':'absolute','bottom':0x3c,'right':0x1e,'zIndex':0xc},'scrollIndicatorText':{'fontSize':0x20,'color':_theme['COLORS'][_0x2bf9(0x19b)],'fontWeight':_0x2bf9(0x19c)}});function _0x2bf9(_0x455f49,_0x2bf907){_0x455f49=_0x455f49-0x0;const _0xda01f2=_0x455f();let _0x5b852c=_0xda01f2[_0x455f49];return _0x5b852c;}var _default=exports[_0x2bf9(0x2)]=PlatformConnectorsStep;function _0x455f(){const _0x33b82c=['defineProperty','__esModule','default','object','function','hwZtK','AYfWz','ttFpi','QYHXL','CclQS','xgjsg','triggerHaptic','HapticType','BUTTON_PRESS','GdEVq','get','set','hasOwnProperty','getOwnPropertyDescriptor','oRaBd','EtOTJ','alidV','njwfR','QxHIM','FigZB','onairos_username','sRcZO','connecting','Highly\x20Recommended','#10B981','Cjqjt','sDGwy','vTZen','NISLk','FujxV','vMmps','XzSvX','vxlaD','RMRUn','uzbnY','wJCyu','cpxkf','IKMRq','success','error','linkedin','aIRbS','WjNEa','YNMLI','ywOAz','SET\x20(','...)','ZuKTL','ODccN','gmail','grok','GTVJs','YouTube','Use\x20your\x20watch\x20history,\x20likes,\x20and\x20subscriptions\x20to\x20enrich\x20your\x20model.','Reddit','Use\x20your\x20posts\x20and\x20comments\x20to\x20enrich\x20your\x20model.','Pinterest','LinkedIn','Gmail','claude','Use\x20your\x20Claude\x20conversations\x20to\x20enrich\x20your\x20model.','gemini','Gemini','Use\x20your\x20Grok\x20conversations\x20from\x20X\x20to\x20enrich\x20your\x20model.','More\x20connections,\x20smarter\x20personalization.','Continue','100%','useState','useRef','Animated','Value','current','useConnections','useEffect','GNJNm','prLOZ','PZMRj','TqbMb','#9CA3AF','iGclu','qqQML','tgTyI','ygRfH','log','๐\x20[LLM]\x20Opening\x20','\x20URL:','KNPxs','xdEsx','trIeD','getItem','SoSTq','lkntt','STEzc','๐ค\x20[LLM]\x20Opening\x20WebView\x20for\x20','\x20login\x20and\x20export...','OOYne','fGmvs','WFUGw','VUScc','GcPcm','ehDqD','email','Tqjzn','split','RMamo','aKecr','name','user_','MtEWO','random','setItem','mobile_user_','floor','laSNL','find','has','TrhNN','PRRMP','xfMri','includes','createElement','platformCard','View','cardHeader','Text','platformCardTitle','recommendedBadge','recommendedBadgeText','TouchableOpacity','customToggleTrack','NRTOC','customToggleThumb','description','ejpla','zgvEj','UmwGC','โ\x20[LLM]\x20No\x20URL\x20configured\x20for\x20platform:\x20','iKYQs','ERROR','loop','timing','useCallback','nativeEvent','contentOffset','width','contentSize','BTgJh','Hflxh','vYtAi','UufjE','DiSpz','PSFsU','ZNaFt','getPlatformIcon','QBJbd','TDXDL','JAOPl','ZIyFC','reddit','muhTU','Lzqkt','uMmav','ftpaa','TULvI','CXhIm','WNYFd','XKPVy','Use\x20your\x20email\x20information\x20to\x20enrich\x20your\x20model.','ftLgX','ChatGPT','Use\x20your\x20ChatGPT\x20conversations\x20and\x20memories\x20to\x20enrich\x20your\x20model.','ETMqC','vRnSv','Fplgr','ERJpq','dkyHw','PWJtj','bJjJt','birjL','map','filter','nfdUR','MjofK','length','YavqT','SAUcj','SqiKQ','YVttK','eYUzY','NzaYX','NtmiK','TsFFL','qQvBO','๐\x20[TOGGLE]\x20Platform\x20toggle:\x20','\x20=\x20','JbTht','๐ค\x20[TOGGLE]\x20Username\x20check\x20-\x20stored:\x20\x22','\x22,\x20state:\x20\x22','trim','wEMsh','DMPoS','bPbtp','KsFxE','isLLMPlatform','kOxwJ','zmqnE','getLLMPlatformUrl','isLinkedInPlatform','oApqK','mwCfz','https://www.linkedin.com/login','๐\x20[LINKEDIN]\x20Opening\x20LinkedIn\x20URL:','kiReV','hasNativeSDK','KSAiZ','WekCd','hUvsi','initiateNativeAuth','KmofH','kIURU','add','connected','SUCCESS','FhIBj','โ
\x20[PERSONA]\x20Applied\x20pending\x20connection:\x20','yfums','CInli','Vibration','...','MmSXi','initiateOAuth','๐\x20[TOGGLE]\x20OAuth\x20URL\x20result\x20for\x20','FGDVi','substring','kXkCh','gMvVZ','โ
\x20[TOGGLE]\x20Setting\x20WebView\x20state\x20-\x20showing\x20modal\x20for\x20','โ\x20[TOGGLE]\x20OAuth\x20failed\x20for\x20','\x20-\x20no\x20URL\x20returned','ODQjR','EsLSY','yXRiw','@onairos:llm_connected:','start','SYkOW','vibrate','VGLzL','JysuO','wxdiX','GUasF','VHHyX','Rqqqp','RCwuA','efUyz','vRzPa','dUonk','xNJiI','YpHus','cWJji','pRgDj','aaMzS','vPAGD','ozqWS','zRkyA','fbNwz','ydNNx','onJXm','HbAyK','expOV','xiIhI','coVvU','pwrNk','TshDK','Nuhrb','xpVAd','QTuzD','stringify','toISOString','\x20connection\x20stored\x20locally','toLowerCase','uDtag','Unlbz','HhnDy','@onairos:linkedin_connected','DODRf','gguly','MAZBo','LVIxS','disconnected','objAE','WXzMP','Nymzp','OTdsC','aeWBl','Error\x20toggling\x20platform\x20','Rthhy','DWKBV','GIiOG','LqiTy','zajQa','AUPYO','cHxeU','HYUZl','mnYUr','FbwVM','setValue','PuXdQ','itKRR','LpxnE','XRhIF','VDNTU','nQajW','๐\x20[STATE]\x20WebView\x20state\x20changed\x20-\x20showOAuthWebView:\x20',',\x20oauthUrl:\x20','KjVMy','PrISx','cYKOo','UlTDF','NULL','qxEqp','min','max','size','\x20with\x20URL:\x20','OAuthWebView','from','container','subtitle','huoqM','personaContainer','largePersona','platformIconsOverlay','platformIconsScrollContent','DbzIV','platformIconsCentered','BZGqx','rJYzo','PsFAK','RocCY','GisRV','platformIconButton','platformIconButtonSelected','Image','youtube','youtubeIcon','pinterestIcon','rzZUG','gmailIcon','chatgpt','cXaCD','eqIXI','grokIcon','connectedDot','scrollBarTrack','scrollIndicator','interpolate','scrollIndicatorText','cardContainer','sVfBm','FISld','razxX','sVxgC','ddRVg','GKHrO','kamyP','eVzeB','NXqQr','descriptionContainer','platformCardDescription','bottomButtonContainer','buttonWrapper','KNJll','XWdWf','buttonOverlay','FQdJY','GYUmN','โ
\x20[WEBVIEW]\x20Rendering\x20OAuthWebView\x20for\x20','holdProgressBar','uhVyx','skipButton','skipButtonText','StyleSheet','create','COLORS','surface','SPACING','IBM\x20Plex\x20Sans','700','grey800','left','400','grey600','center','relative','absolute','row','#FFFFFF','#000','#3B82F6','#EFF6FF','space-between','600','#2563EB','auto','#F9FAFB','hidden','grey500','bold'];_0x455f=function(){return _0x33b82c;};return _0x455f();}
|
|
@@ -1,137 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
var _constants =
|
|
11
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
12
|
-
const PlatformList = ({
|
|
13
|
-
connections,
|
|
14
|
-
onToggle,
|
|
15
|
-
isLoading,
|
|
16
|
-
canProceed,
|
|
17
|
-
onProceed
|
|
18
|
-
}) => {
|
|
19
|
-
const renderPlatformItem = (platform, isConnected) => {
|
|
20
|
-
const platformConfig = _constants.PLATFORMS[platform];
|
|
21
|
-
if (!platformConfig) return null;
|
|
22
|
-
return /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
23
|
-
key: platform,
|
|
24
|
-
style: styles.platformContainer
|
|
25
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
26
|
-
style: styles.platformHeader
|
|
27
|
-
}, /*#__PURE__*/_react.default.createElement(_MaterialIcons.default, {
|
|
28
|
-
name: platformConfig.icon,
|
|
29
|
-
size: 24,
|
|
30
|
-
color: platformConfig.color
|
|
31
|
-
}), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
32
|
-
style: styles.platformName
|
|
33
|
-
}, platformConfig.name)), platformConfig.description && /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
34
|
-
style: styles.platformDescription
|
|
35
|
-
}, platformConfig.description), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
36
|
-
style: [styles.connectButton, isConnected ? styles.connectedButton : styles.disconnectedButton],
|
|
37
|
-
onPress: () => onToggle(platform, !isConnected),
|
|
38
|
-
disabled: isLoading
|
|
39
|
-
}, isLoading ? /*#__PURE__*/_react.default.createElement(_reactNative.ActivityIndicator, {
|
|
40
|
-
color: "#fff"
|
|
41
|
-
}) : /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
42
|
-
style: styles.buttonText
|
|
43
|
-
}, isConnected ? 'Disconnect' : 'Connect')));
|
|
44
|
-
};
|
|
45
|
-
return /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
46
|
-
style: styles.container
|
|
47
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
48
|
-
style: styles.title
|
|
49
|
-
}, "Connect your platforms"), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
50
|
-
style: styles.subtitle
|
|
51
|
-
}, "Connect at least 2 platforms to proceed"), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
52
|
-
style: styles.platformsList
|
|
53
|
-
}, Object.entries(connections).map(([platform, status]) => renderPlatformItem(platform, !!status))), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
54
|
-
style: [styles.proceedButton, !canProceed && styles.disabledButton],
|
|
55
|
-
onPress: onProceed,
|
|
56
|
-
disabled: !canProceed || isLoading
|
|
57
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
58
|
-
style: styles.proceedButtonText
|
|
59
|
-
}, "Proceed")));
|
|
60
|
-
};
|
|
61
|
-
exports.PlatformList = PlatformList;
|
|
62
|
-
const styles = _reactNative.StyleSheet.create({
|
|
63
|
-
container: {
|
|
64
|
-
flex: 1,
|
|
65
|
-
padding: 16
|
|
66
|
-
},
|
|
67
|
-
title: {
|
|
68
|
-
fontSize: 20,
|
|
69
|
-
fontWeight: '600',
|
|
70
|
-
marginBottom: 8,
|
|
71
|
-
color: _constants.COLORS.text.primary
|
|
72
|
-
},
|
|
73
|
-
subtitle: {
|
|
74
|
-
fontSize: 14,
|
|
75
|
-
color: _constants.COLORS.text.secondary,
|
|
76
|
-
marginBottom: 24
|
|
77
|
-
},
|
|
78
|
-
platformsList: {
|
|
79
|
-
flex: 1
|
|
80
|
-
},
|
|
81
|
-
platformContainer: {
|
|
82
|
-
backgroundColor: '#fff',
|
|
83
|
-
borderRadius: 12,
|
|
84
|
-
padding: 16,
|
|
85
|
-
marginBottom: 16,
|
|
86
|
-
borderWidth: 1,
|
|
87
|
-
borderColor: _constants.COLORS.border
|
|
88
|
-
},
|
|
89
|
-
platformHeader: {
|
|
90
|
-
flexDirection: 'row',
|
|
91
|
-
alignItems: 'center',
|
|
92
|
-
marginBottom: 8
|
|
93
|
-
},
|
|
94
|
-
platformName: {
|
|
95
|
-
fontSize: 16,
|
|
96
|
-
fontWeight: '600',
|
|
97
|
-
marginLeft: 12,
|
|
98
|
-
color: _constants.COLORS.text.primary
|
|
99
|
-
},
|
|
100
|
-
platformDescription: {
|
|
101
|
-
fontSize: 14,
|
|
102
|
-
color: _constants.COLORS.text.secondary,
|
|
103
|
-
marginBottom: 16
|
|
104
|
-
},
|
|
105
|
-
connectButton: {
|
|
106
|
-
paddingVertical: 8,
|
|
107
|
-
paddingHorizontal: 16,
|
|
108
|
-
borderRadius: 8,
|
|
109
|
-
alignItems: 'center'
|
|
110
|
-
},
|
|
111
|
-
connectedButton: {
|
|
112
|
-
backgroundColor: _constants.COLORS.success
|
|
113
|
-
},
|
|
114
|
-
disconnectedButton: {
|
|
115
|
-
backgroundColor: _constants.COLORS.primary
|
|
116
|
-
},
|
|
117
|
-
buttonText: {
|
|
118
|
-
color: '#fff',
|
|
119
|
-
fontWeight: '600'
|
|
120
|
-
},
|
|
121
|
-
proceedButton: {
|
|
122
|
-
backgroundColor: _constants.COLORS.primary,
|
|
123
|
-
paddingVertical: 16,
|
|
124
|
-
borderRadius: 12,
|
|
125
|
-
alignItems: 'center',
|
|
126
|
-
marginTop: 16
|
|
127
|
-
},
|
|
128
|
-
disabledButton: {
|
|
129
|
-
opacity: 0.5
|
|
130
|
-
},
|
|
131
|
-
proceedButtonText: {
|
|
132
|
-
color: '#fff',
|
|
133
|
-
fontSize: 16,
|
|
134
|
-
fontWeight: '600'
|
|
135
|
-
}
|
|
136
|
-
});
|
|
137
|
-
//# sourceMappingURL=PlatformList.js.map
|
|
1
|
+
'use strict';
|
|
2
|
+
// Onairos SDK - Asset Registry (auto-generated)
|
|
3
|
+
var __ONAIROS_REQ_REGISTRY__ = [
|
|
4
|
+
require("react"),
|
|
5
|
+
require("react-native"),
|
|
6
|
+
require("react-native-vector-icons/MaterialIcons"),
|
|
7
|
+
require("../constants")
|
|
8
|
+
];
|
|
9
|
+
function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
|
|
10
|
+
function _0x23f7(){var _0xbc0b43=['__esModule','PlatformList','#fff','Connect','Connect\x20your\x20platforms','Connect\x20at\x20least\x202\x20platforms\x20to\x20proceed','createElement','default','View','platformHeader','color','Text','platformName','name','description','platformDescription','TouchableOpacity','connectButton','connectedButton','ActivityIndicator','NjPdq','buttonText','Disconnect','container','title','glWLw','subtitle','luBap','platformsList','map','disabledButton','evlII','CfdyU','StyleSheet','COLORS','text','primary','secondary','border','row','center','600','success'];_0x23f7=function(){return _0xbc0b43;};return _0x23f7();}Object['defineProperty'](exports,_0xf392(0x0),{'value':!![]}),exports[_0xf392(0x1)]=void 0x0;function _0xf392(_0x23f7b9,_0xf3920c){_0x23f7b9=_0x23f7b9-0x0;var _0x42b523=_0x23f7();var _0x4a42ea=_0x42b523[_0x23f7b9];return _0x4a42ea;}var _react=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_MaterialIcons=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x2)),_constants=__ONAIROS_REQ_FUNC__(0x3);function _interopRequireDefault(_0xff2145){return _0xff2145&&_0xff2145['__esModule']?_0xff2145:{'default':_0xff2145};}const PlatformList=({connections:_0x384faa,onToggle:_0x5b4329,isLoading:_0x1d2b58,canProceed:_0x337702,onProceed:_0xc4a90e})=>{var _0x313a11={'NjPdq':_0xf392(0x2),'CeSNK':_0xf392(0x3),'glWLw':_0xf392(0x4),'luBap':_0xf392(0x5),'evlII':function(_0x3680c2,_0x51c5e7){return _0x3680c2||_0x51c5e7;},'CfdyU':'Proceed'};const _0x23daf1=(_0x559c49,_0x32ddeb)=>{const _0x152211=_constants['PLATFORMS'][_0x559c49];if(!_0x152211)return null;return _react['default'][_0xf392(0x6)](_reactNative['View'],{'key':_0x559c49,'style':styles['platformContainer']},_react[_0xf392(0x7)][_0xf392(0x6)](_reactNative[_0xf392(0x8)],{'style':styles[_0xf392(0x9)]},_react['default'][_0xf392(0x6)](_MaterialIcons[_0xf392(0x7)],{'name':_0x152211['icon'],'size':0x18,'color':_0x152211[_0xf392(0xa)]}),_react['default']['createElement'](_reactNative[_0xf392(0xb)],{'style':styles[_0xf392(0xc)]},_0x152211[_0xf392(0xd)])),_0x152211[_0xf392(0xe)]&&_react[_0xf392(0x7)][_0xf392(0x6)](_reactNative[_0xf392(0xb)],{'style':styles[_0xf392(0xf)]},_0x152211[_0xf392(0xe)]),_react[_0xf392(0x7)][_0xf392(0x6)](_reactNative[_0xf392(0x10)],{'style':[styles[_0xf392(0x11)],_0x32ddeb?styles[_0xf392(0x12)]:styles['disconnectedButton']],'onPress':()=>_0x5b4329(_0x559c49,!_0x32ddeb),'disabled':_0x1d2b58},_0x1d2b58?_react[_0xf392(0x7)][_0xf392(0x6)](_reactNative[_0xf392(0x13)],{'color':_0x313a11[_0xf392(0x14)]}):_react['default'][_0xf392(0x6)](_reactNative['Text'],{'style':styles[_0xf392(0x15)]},_0x32ddeb?_0xf392(0x16):_0x313a11['CeSNK'])));};return _react[_0xf392(0x7)][_0xf392(0x6)](_reactNative[_0xf392(0x8)],{'style':styles[_0xf392(0x17)]},_react[_0xf392(0x7)][_0xf392(0x6)](_reactNative[_0xf392(0xb)],{'style':styles[_0xf392(0x18)]},_0x313a11[_0xf392(0x19)]),_react['default'][_0xf392(0x6)](_reactNative[_0xf392(0xb)],{'style':styles[_0xf392(0x1a)]},_0x313a11[_0xf392(0x1b)]),_react[_0xf392(0x7)][_0xf392(0x6)](_reactNative[_0xf392(0x8)],{'style':styles[_0xf392(0x1c)]},Object['entries'](_0x384faa)[_0xf392(0x1d)](([_0x403de1,_0x422712])=>_0x23daf1(_0x403de1,!!_0x422712))),_react['default']['createElement'](_reactNative[_0xf392(0x10)],{'style':[styles['proceedButton'],!_0x337702&&styles[_0xf392(0x1e)]],'onPress':_0xc4a90e,'disabled':_0x313a11[_0xf392(0x1f)](!_0x337702,_0x1d2b58)},_react[_0xf392(0x7)][_0xf392(0x6)](_reactNative[_0xf392(0xb)],{'style':styles['proceedButtonText']},_0x313a11[_0xf392(0x20)])));};exports[_0xf392(0x1)]=PlatformList;const styles=_reactNative[_0xf392(0x21)]['create']({'container':{'flex':0x1,'padding':0x10},'title':{'fontSize':0x14,'fontWeight':'600','marginBottom':0x8,'color':_constants[_0xf392(0x22)][_0xf392(0x23)][_0xf392(0x24)]},'subtitle':{'fontSize':0xe,'color':_constants[_0xf392(0x22)]['text'][_0xf392(0x25)],'marginBottom':0x18},'platformsList':{'flex':0x1},'platformContainer':{'backgroundColor':_0xf392(0x2),'borderRadius':0xc,'padding':0x10,'marginBottom':0x10,'borderWidth':0x1,'borderColor':_constants[_0xf392(0x22)][_0xf392(0x26)]},'platformHeader':{'flexDirection':_0xf392(0x27),'alignItems':_0xf392(0x28),'marginBottom':0x8},'platformName':{'fontSize':0x10,'fontWeight':_0xf392(0x29),'marginLeft':0xc,'color':_constants[_0xf392(0x22)][_0xf392(0x23)][_0xf392(0x24)]},'platformDescription':{'fontSize':0xe,'color':_constants['COLORS'][_0xf392(0x23)]['secondary'],'marginBottom':0x10},'connectButton':{'paddingVertical':0x8,'paddingHorizontal':0x10,'borderRadius':0x8,'alignItems':_0xf392(0x28)},'connectedButton':{'backgroundColor':_constants['COLORS'][_0xf392(0x2a)]},'disconnectedButton':{'backgroundColor':_constants[_0xf392(0x22)][_0xf392(0x24)]},'buttonText':{'color':_0xf392(0x2),'fontWeight':_0xf392(0x29)},'proceedButton':{'backgroundColor':_constants[_0xf392(0x22)]['primary'],'paddingVertical':0x10,'borderRadius':0xc,'alignItems':_0xf392(0x28),'marginTop':0x10},'disabledButton':{'opacity':0.5},'proceedButtonText':{'color':'#fff','fontSize':0x10,'fontWeight':_0xf392(0x29)}});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
// Onairos SDK - Asset Registry (auto-generated)
|
|
3
|
+
var __ONAIROS_REQ_REGISTRY__ = [
|
|
4
|
+
require("react"),
|
|
5
|
+
require("react-native"),
|
|
6
|
+
require("../theme")
|
|
7
|
+
];
|
|
8
|
+
function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
|
|
9
|
+
function _0xbce0(){const _0x2def8b=['defineProperty','__esModule','default','#E5E5E5','#4CD964','ios','#FFFFFF','fullWidthContainer','compactContainer','container','TouchableOpacity','createElement','topRow','View','leftContent','Image','icon','FUGhR','compactIcon','wSxoE','textContent','compactPlatformName','platformName','name','Switch','ZVMMU','qfbDN','eqggl','wyIvv','kEgdx','descriptionBox','Text','fullWidthDescription','description','compactDescription','StyleSheet','space-between','COLORS','surface','row','center','#F5F5F5','600','grey800','Inter','400','grey600'];_0xbce0=function(){return _0x2def8b;};return _0xbce0();}function _0x31af(_0xbce0d4,_0x31afee){_0xbce0d4=_0xbce0d4-0x0;const _0x12bde6=_0xbce0();let _0x42b260=_0x12bde6[_0xbce0d4];return _0x42b260;}Object[_0x31af(0x0)](exports,_0x31af(0x1),{'value':!![]}),exports[_0x31af(0x2)]=void 0x0;var _react=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_theme=__ONAIROS_REQ_FUNC__(0x2);function _interopRequireDefault(_0x1fcdd8){return _0x1fcdd8&&_0x1fcdd8['__esModule']?_0x1fcdd8:{'default':_0x1fcdd8};}const PlatformToggle=({platform:_0x3d58d0,isEnabled:_0x87275e,onToggle:_0x21fd1a,compact:compact=![],isLast:isLast=![],fullWidth:fullWidth=![],customIconSize:_0x214988,onLongPress:_0x31d64e,onPressOut:_0x48762d})=>{const _0xee98d0={'eTaTJ':function(_0x27c5ec,_0x377b59,_0x186adc){return _0x27c5ec(_0x377b59,_0x186adc);},'FUGhR':function(_0x252668,_0x1bbdb3){return _0x252668-_0x1bbdb3;},'wSxoE':'contain','kEgdx':_0x31af(0x3),'ZVMMU':_0x31af(0x4),'qfbDN':function(_0x13e528,_0x397693){return _0x13e528===_0x397693;},'eqggl':_0x31af(0x5),'wyIvv':_0x31af(0x6)},_0x347e05=()=>{_0xee98d0['eTaTJ'](_0x21fd1a,_0x3d58d0['id'],!_0x87275e);},_0x429e21=fullWidth?styles[_0x31af(0x7)]:compact?styles[_0x31af(0x8)]:styles[_0x31af(0x9)];return _react[_0x31af(0x2)]['createElement'](_reactNative[_0x31af(0xa)],{'style':[_0x429e21,!isLast&&compact&&styles['borderBottom']],'onLongPress':_0x31d64e,'onPressOut':_0x48762d,'activeOpacity':_0x31d64e?0.7:0x1,'disabled':!_0x31d64e},_react[_0x31af(0x2)][_0x31af(0xb)](_reactNative['View'],{'style':styles[_0x31af(0xc)]},_react[_0x31af(0x2)]['createElement'](_reactNative[_0x31af(0xd)],{'style':styles[_0x31af(0xe)]},_react[_0x31af(0x2)][_0x31af(0xb)](_reactNative[_0x31af(0xf)],{'source':_0x3d58d0[_0x31af(0x10)],'style':_0x214988?{'width':_0x214988,'height':_0x214988,'marginRight':0xc-_0xee98d0[_0x31af(0x11)](_0x214988,0x1c)}:fullWidth?styles[_0x31af(0x12)]:compact?styles[_0x31af(0x12)]:styles[_0x31af(0x10)],'resizeMode':_0xee98d0[_0x31af(0x13)]}),_react['default']['createElement'](_reactNative[_0x31af(0xd)],{'style':styles[_0x31af(0x14)]},_react[_0x31af(0x2)]['createElement'](_reactNative['Text'],{'style':fullWidth?styles[_0x31af(0x15)]:compact?styles[_0x31af(0x15)]:styles[_0x31af(0x16)]},_0x3d58d0[_0x31af(0x17)]))),_react[_0x31af(0x2)][_0x31af(0xb)](_reactNative[_0x31af(0x18)],{'value':_0x87275e,'onValueChange':_0x347e05,'trackColor':{'false':_0xee98d0['kEgdx'],'true':_0xee98d0[_0x31af(0x19)]},'thumbColor':_0xee98d0[_0x31af(0x1a)](_reactNative['Platform']['OS'],_0xee98d0[_0x31af(0x1b)])?undefined:_0x87275e?'#FFFFFF':_0xee98d0[_0x31af(0x1c)],'ios_backgroundColor':_0xee98d0[_0x31af(0x1d)],'style':compact?styles['compactSwitch']:undefined})),fullWidth&&_react[_0x31af(0x2)][_0x31af(0xb)](_reactNative['View'],{'style':styles[_0x31af(0x1e)]},_react[_0x31af(0x2)][_0x31af(0xb)](_reactNative[_0x31af(0x1f)],{'style':styles[_0x31af(0x20)]},_0x3d58d0[_0x31af(0x21)])),!fullWidth&&_react['default']['createElement'](_reactNative[_0x31af(0x1f)],{'style':compact?styles[_0x31af(0x22)]:styles[_0x31af(0x21)]},_0x3d58d0[_0x31af(0x21)]));},styles=_reactNative[_0x31af(0x23)]['create']({'container':{'flexDirection':'row','alignItems':'center','justifyContent':_0x31af(0x24),'paddingVertical':0x10,'paddingHorizontal':0x10,'backgroundColor':_theme[_0x31af(0x25)][_0x31af(0x26)],'borderRadius':0xc,'marginBottom':0xc,'borderWidth':0x1,'borderColor':'#E5E5E5'},'compactContainer':{'flexDirection':_0x31af(0x27),'alignItems':_0x31af(0x28),'justifyContent':_0x31af(0x24),'paddingVertical':0x10,'paddingHorizontal':0x10,'backgroundColor':_theme['COLORS'][_0x31af(0x26)]},'fullWidthContainer':{'flexDirection':'column','paddingVertical':0x8,'paddingHorizontal':0x2,'backgroundColor':_theme['COLORS'][_0x31af(0x26)],'marginBottom':0x4,'marginHorizontal':0x0},'topRow':{'flexDirection':'row','alignItems':_0x31af(0x28),'justifyContent':_0x31af(0x24),'marginBottom':0x4},'descriptionBox':{'backgroundColor':_0x31af(0x29),'borderRadius':0x8,'paddingVertical':0x8,'paddingHorizontal':0x4,'marginTop':0x2},'borderBottom':{'borderBottomWidth':0x1,'borderBottomColor':_0x31af(0x3)},'leftContent':{'flexDirection':_0x31af(0x27),'alignItems':_0x31af(0x28),'flex':0x1},'icon':{'width':0x20,'height':0x20,'marginRight':0xc},'compactIcon':{'width':0x1c,'height':0x1c,'marginRight':0xc},'textContent':{'flex':0x1},'platformName':{'fontSize':0x10,'fontFamily':'Inter','fontWeight':_0x31af(0x2a),'color':_theme['COLORS'][_0x31af(0x2b)],'marginBottom':0x2},'compactPlatformName':{'fontSize':0x10,'fontFamily':_0x31af(0x2c),'fontWeight':_0x31af(0x2a),'color':_theme['COLORS'][_0x31af(0x2b)],'marginBottom':0x2},'description':{'fontSize':0xe,'fontFamily':'Inter','fontWeight':_0x31af(0x2d),'color':_theme['COLORS'][_0x31af(0x2e)],'lineHeight':0x14},'compactDescription':{'fontSize':0xc,'fontFamily':'Inter','fontWeight':'400','color':_theme[_0x31af(0x25)][_0x31af(0x2e)],'lineHeight':0x10},'fullWidthDescription':{'fontSize':0xd,'fontFamily':_0x31af(0x2c),'fontWeight':'400','color':_theme[_0x31af(0x25)][_0x31af(0x2e)],'lineHeight':0x12},'compactSwitch':{'transform':[{'scaleX':0.9},{'scaleY':0.9}]}});var _default=exports[_0x31af(0x2)]=PlatformToggle;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
// Onairos SDK - Asset Registry (auto-generated)
|
|
3
|
+
var __ONAIROS_REQ_REGISTRY__ = [
|
|
4
|
+
require("react"),
|
|
5
|
+
require("react-native"),
|
|
6
|
+
require("react-native-linear-gradient"),
|
|
7
|
+
require("../theme")
|
|
8
|
+
];
|
|
9
|
+
function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
|
|
10
|
+
Object[_0x2d35(0x0)](exports,_0x2d35(0x1),{'value':!![]}),exports[_0x2d35(0x2)]=exports[_0x2d35(0x3)]=exports['IconCircle']=void 0x0;function _0x3766(){const _0x4899b6=['defineProperty','__esModule','default','PrimaryButton','object','function','VOCSb','vchkL','ghBBz','createElement','outerPill','outerShadow','disabled','fyGxu','COLORS','btnGradStart','btnGradEnd','baseGradient','View','pressedOverlay','textContainer','label','yfXGx','get','hasOwnProperty','call','set','DSGEI','iconCircle','FAQQI','iconCircleGradientStart','absoluteFill','iconContent','Text','arrowText','IconCircle','Get\x20Started','button','small','useState','TouchableOpacity','FnhWG','AInop','ActivityIndicator','btnLabel','iconPosition','StyleSheet','create','btnBorder','hidden','100%','relative','#000000','absoluteFillObject','absolute','center','transparent','Inter','600','rgba(0,0,0,0.25)'];_0x3766=function(){return _0x4899b6;};return _0x3766();}var _react=_interopRequireWildcard(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_reactNativeLinearGradient=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x2)),_theme=__ONAIROS_REQ_FUNC__(0x3);function _interopRequireDefault(_0x3338a8){return _0x3338a8&&_0x3338a8[_0x2d35(0x1)]?_0x3338a8:{'default':_0x3338a8};}function _interopRequireWildcard(_0x3fb27e,_0x35f097){const _0x4950ab={'dovZq':function(_0x31da75,_0x29cfb4){return _0x31da75||_0x29cfb4;},'vchkL':function(_0x2a3acb,_0x461f1d){return _0x2a3acb!==_0x461f1d;},'ghBBz':'XNNxb','keXSX':function(_0x2cb1d7,_0x46bc8a){return _0x2cb1d7===_0x46bc8a;},'yfXGx':_0x2d35(0x4),'iLDjI':_0x2d35(0x5),'DSGEI':function(_0x559795,_0x523d7a,_0x216fcc,_0x3fe210){return _0x559795(_0x523d7a,_0x216fcc,_0x3fe210);},'VOCSb':function(_0x896536,_0x3bde20){return _0x896536==_0x3bde20;}};if(_0x4950ab[_0x2d35(0x6)](_0x2d35(0x5),typeof WeakMap))var _0x5d2413=new WeakMap(),_0x2a570f=new WeakMap();return(_interopRequireWildcard=function(_0xb80d83,_0x47bb1c){const _0x282572={'fyGxu':function(_0x409d3a,_0x536bf7){return _0x4950ab['dovZq'](_0x409d3a,_0x536bf7);}};if(_0x4950ab[_0x2d35(0x7)](_0x4950ab[_0x2d35(0x8)],_0x4950ab[_0x2d35(0x8)])){const [_0x2a8b43,_0x287b91]=(0x0,_0x5c8e42['useState'])(![]),_0x1d02cd=()=>_0x287b91(!![]),_0x58d660=()=>_0x287b91(![]);return _0x168514[_0x2d35(0x2)][_0x2d35(0x9)](_0x5bcf7d['TouchableOpacity'],{'style':[_0x2d0e6f[_0x2d35(0xa)],!_0x48f998&&_0x23ffe[_0x2d35(0xb)],_0x6f6c6e&&_0x47071a[_0x2d35(0xc)],_0x2fa7d8],'onPress':_0xf5f6e7,'onPressIn':_0x1d02cd,'onPressOut':_0x58d660,'disabled':_0x282572[_0x2d35(0xd)](_0x182f58,_0x28742c),'activeOpacity':0x1,'testID':_0xaab247,'accessibilityLabel':_0x4dcb0e,'accessibilityRole':'button'},_0x3974ca[_0x2d35(0x2)]['createElement'](_0x448057['default'],{'colors':[_0x2a87ba[_0x2d35(0xe)][_0x2d35(0xf)],_0x396444['COLORS'][_0x2d35(0x10)]],'style':_0x58d7da[_0x2d35(0x11)],'start':{'x':0x0,'y':0x0},'end':{'x':0x0,'y':0x1}}),_0x2a8b43&&_0xf7d42e[_0x2d35(0x2)][_0x2d35(0x9)](_0x1b0e4d[_0x2d35(0x12)],{'style':_0x5b12f4[_0x2d35(0x13)]}),_0x59ab58[_0x2d35(0x2)]['createElement'](_0xb000eb[_0x2d35(0x12)],{'style':_0x2f1ec8[_0x2d35(0x14)]},_0x53049e?_0x219029['default'][_0x2d35(0x9)](_0xf28bbf['ActivityIndicator'],{'color':_0x1f3c7f[_0x2d35(0xe)]['btnLabel'],'size':'small'}):_0x422f39[_0x2d35(0x2)]['createElement'](_0x2e9d3c['Text'],{'style':[_0x23657c[_0x2d35(0x15)],_0x9b9861]},_0x59d3b4)),_0x2dc487[_0x2d35(0x2)][_0x2d35(0x9)](_0x5a753a['View'],{'style':_0x560c36['iconPosition']},!_0xd09143&&(_0x45dbc3||_0x3a034a[_0x2d35(0x2)][_0x2d35(0x9)](_0x24e344,null))));}else{if(!_0x47bb1c&&_0xb80d83&&_0xb80d83[_0x2d35(0x1)])return _0xb80d83;var _0x4982fd,_0x574fc8,_0x32e4e3={'__proto__':null,'default':_0xb80d83};if(_0x4950ab['keXSX'](null,_0xb80d83)||_0x4950ab[_0x2d35(0x16)]!=typeof _0xb80d83&&_0x4950ab['iLDjI']!=typeof _0xb80d83)return _0x32e4e3;if(_0x4982fd=_0x47bb1c?_0x2a570f:_0x5d2413){if(_0x4982fd['has'](_0xb80d83))return _0x4982fd[_0x2d35(0x17)](_0xb80d83);_0x4982fd['set'](_0xb80d83,_0x32e4e3);}for(const _0x415c01 in _0xb80d83)_0x2d35(0x2)!==_0x415c01&&{}[_0x2d35(0x18)][_0x2d35(0x19)](_0xb80d83,_0x415c01)&&((_0x574fc8=(_0x4982fd=Object[_0x2d35(0x0)])&&Object['getOwnPropertyDescriptor'](_0xb80d83,_0x415c01))&&(_0x574fc8[_0x2d35(0x17)]||_0x574fc8[_0x2d35(0x1a)])?_0x4950ab[_0x2d35(0x1b)](_0x4982fd,_0x32e4e3,_0x415c01,_0x574fc8):_0x32e4e3[_0x415c01]=_0xb80d83[_0x415c01]);return _0x32e4e3;}})(_0x3fb27e,_0x35f097);}const IconCircle=({size:size=0x28,children:_0x165dc0})=>{const _0x403b2a={'FAQQI':function(_0x2a5552,_0xd23c56){return _0x2a5552/_0xd23c56;}};return _react[_0x2d35(0x2)][_0x2d35(0x9)](_reactNative[_0x2d35(0x12)],{'style':[styles[_0x2d35(0x1c)],{'width':size,'height':size,'borderRadius':_0x403b2a[_0x2d35(0x1d)](size,0x2)}]},_react[_0x2d35(0x2)]['createElement'](_reactNativeLinearGradient['default'],{'colors':[_theme[_0x2d35(0xe)][_0x2d35(0x1e)],_theme[_0x2d35(0xe)]['iconCircleGradientEnd']],'style':[_reactNative['StyleSheet'][_0x2d35(0x1f)],{'borderRadius':size/0x2}],'start':{'x':0x0,'y':0x0},'end':{'x':0x0,'y':0x1}}),_react['default'][_0x2d35(0x9)](_reactNative['View'],{'style':styles[_0x2d35(0x20)]},_0x165dc0||_react['default']['createElement'](_reactNative[_0x2d35(0x21)],{'style':styles[_0x2d35(0x22)]},'โ')));};exports[_0x2d35(0x23)]=IconCircle;function _0x2d35(_0x3766c2,_0x2d3586){_0x3766c2=_0x3766c2-0x0;const _0xb1d0cd=_0x3766();let _0xf6aed3=_0xb1d0cd[_0x3766c2];return _0xf6aed3;}const PrimaryButton=({label:label=_0x2d35(0x24),onPress:_0x41b980,iconRight:_0x4d7abf,loading:loading=![],disabled:disabled=![],testID:_0x490b51,style:_0x5beffa,textStyle:_0x32aad4})=>{const _0x3ce255={'FnhWG':function(_0x9bdfb,_0xbab355){return _0x9bdfb||_0xbab355;},'AInop':_0x2d35(0x25),'tdhpF':_0x2d35(0x26)},[_0x4e815b,_0x1439de]=(0x0,_react[_0x2d35(0x27)])(![]),_0x53607a=()=>_0x1439de(!![]),_0x367433=()=>_0x1439de(![]);return _react['default'][_0x2d35(0x9)](_reactNative[_0x2d35(0x28)],{'style':[styles[_0x2d35(0xa)],!disabled&&styles[_0x2d35(0xb)],disabled&&styles['disabled'],_0x5beffa],'onPress':_0x41b980,'onPressIn':_0x53607a,'onPressOut':_0x367433,'disabled':_0x3ce255[_0x2d35(0x29)](disabled,loading),'activeOpacity':0x1,'testID':_0x490b51,'accessibilityLabel':label,'accessibilityRole':_0x3ce255[_0x2d35(0x2a)]},_react['default'][_0x2d35(0x9)](_reactNativeLinearGradient[_0x2d35(0x2)],{'colors':[_theme[_0x2d35(0xe)]['btnGradStart'],_theme['COLORS'][_0x2d35(0x10)]],'style':styles[_0x2d35(0x11)],'start':{'x':0x0,'y':0x0},'end':{'x':0x0,'y':0x1}}),_0x4e815b&&_react[_0x2d35(0x2)]['createElement'](_reactNative[_0x2d35(0x12)],{'style':styles[_0x2d35(0x13)]}),_react[_0x2d35(0x2)]['createElement'](_reactNative['View'],{'style':styles['textContainer']},loading?_react['default'][_0x2d35(0x9)](_reactNative[_0x2d35(0x2b)],{'color':_theme['COLORS'][_0x2d35(0x2c)],'size':_0x3ce255['tdhpF']}):_react[_0x2d35(0x2)][_0x2d35(0x9)](_reactNative['Text'],{'style':[styles[_0x2d35(0x15)],_0x32aad4]},label)),_react[_0x2d35(0x2)][_0x2d35(0x9)](_reactNative[_0x2d35(0x12)],{'style':styles[_0x2d35(0x2d)]},!loading&&(_0x4d7abf||_react[_0x2d35(0x2)][_0x2d35(0x9)](IconCircle,null))));};exports[_0x2d35(0x3)]=PrimaryButton;const styles=_reactNative[_0x2d35(0x2e)][_0x2d35(0x2f)]({'outerPill':{'height':0x30,'borderRadius':0x64,'borderWidth':0x1,'borderColor':_theme['COLORS'][_0x2d35(0x30)],'overflow':_0x2d35(0x31),'width':_0x2d35(0x32),'position':_0x2d35(0x33)},'outerShadow':{'shadowColor':_0x2d35(0x34),'shadowOffset':{'width':0x14,'height':0x1e},'shadowOpacity':0.1,'shadowRadius':0x28,'elevation':0x8},'disabled':{'opacity':0.65,'shadowOpacity':0x0,'elevation':0x0},'baseGradient':{..._reactNative[_0x2d35(0x2e)][_0x2d35(0x35)],'borderRadius':0x64},'pressedOverlay':{..._reactNative['StyleSheet']['absoluteFillObject'],'backgroundColor':'rgba(0,0,0,0.1)','borderRadius':0x64},'textContainer':{'position':_0x2d35(0x36),'left':0x0,'right':0x0,'top':0x0,'bottom':0x0,'justifyContent':_0x2d35(0x37),'alignItems':_0x2d35(0x37),'backgroundColor':_0x2d35(0x38)},'iconPosition':{'position':_0x2d35(0x36),'right':0x4,'top':0x4,'bottom':0x4,'width':0x28,'justifyContent':_0x2d35(0x37),'alignItems':_0x2d35(0x37),'backgroundColor':_0x2d35(0x38)},'label':{'fontFamily':_0x2d35(0x39),'fontWeight':_0x2d35(0x3a),'fontSize':0x10,'color':_theme[_0x2d35(0xe)][_0x2d35(0x2c)],'textAlign':_0x2d35(0x37),'backgroundColor':_0x2d35(0x38)},'iconCircle':{'justifyContent':'center','alignItems':'center','borderWidth':0x1,'borderColor':_0x2d35(0x3b)},'iconContent':{'justifyContent':_0x2d35(0x37),'alignItems':_0x2d35(0x37),'backgroundColor':_0x2d35(0x38)},'arrowText':{'fontSize':0x14,'color':_theme[_0x2d35(0xe)][_0x2d35(0x2c)],'fontWeight':'600','opacity':0.95,'backgroundColor':_0x2d35(0x38)}});var _default=exports[_0x2d35(0x2)]=PrimaryButton;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
// Onairos SDK - Asset Registry (auto-generated)
|
|
3
|
+
var __ONAIROS_REQ_REGISTRY__ = [
|
|
4
|
+
require("react"),
|
|
5
|
+
require("react-native"),
|
|
6
|
+
require("react-native-linear-gradient")
|
|
7
|
+
];
|
|
8
|
+
function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
|
|
9
|
+
function _0x11ac(){const _0x461cc3=['defineProperty','__esModule','default','qAEKg','rUaHp','object','function','CcWsq','hewap','FJcnH','StfXF','YLLLf','EnHfL','TzCZA','get','set','hasOwnProperty','call','getOwnPropertyDescriptor','oLUrg','CojgA','bOMLp','has','dRyoc','Dimensions','complete','found','bGvZM','NKfhr','searching','none','Finding\x20Your\x20Matches','#E9C46A','Searching\x20for\x20potential\x20connections\x20based\x20on\x20your\x20profile...','\x20potential\x20connections\x20for\x20you!','We\x27ll\x20send\x20match\x20notifications\x20to\x20','#f5e7c1','Continue','XAsKV','useState','Value','useEffect','lTTWm','PuGxT','pdNBg','dYrUG','iCAYd','IMkQn','VvLbj','yVbSX','Pvrcq','Animated','timing','start','DjEuK','iohCu','OYIAy','OenWO','CEMYz','euWHS','qsrwZ','parallel','Ebppc','floor','random','gngZS','createElement','Modal','aJWnZ','View','gUZzV','Fragment','ActivityIndicator','loader','Text','message','ehdCH','title','Matches\x20Found!','matchCircle','matchCount','We\x27ve\x20found\x20','XQUqA','Complete\x20your\x20profile\x20to\x20see\x20who\x20they\x20are.','BOywS','WjPmn','@...','button','eEJhM','#DDB957','gradientButton','ZdQuM','create','rgba(0,0,0,0.7)','#FFFFFF','#000','600','#333','center','#555','#777','bold','hidden'];_0x11ac=function(){return _0x461cc3;};return _0x11ac();}function _0x4fd7(_0x11ac34,_0x4fd70d){_0x11ac34=_0x11ac34-0x0;const _0x2bd683=_0x11ac();let _0x1e14bc=_0x2bd683[_0x11ac34];return _0x1e14bc;}Object[_0x4fd7(0x0)](exports,_0x4fd7(0x1),{'value':!![]}),exports[_0x4fd7(0x2)]=void 0x0;var _react=_interopRequireWildcard(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_reactNativeLinearGradient=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x2));function _interopRequireDefault(_0x19ccbe){return _0x19ccbe&&_0x19ccbe['__esModule']?_0x19ccbe:{'default':_0x19ccbe};}function _interopRequireWildcard(_0x546a81,_0x48d27a){const _0x5ea8ee={'CojgA':function(_0x2d6c6b,_0xf40c01){return _0x2d6c6b&&_0xf40c01;},'EnHfL':function(_0x3b7d69,_0x5a77bb){return _0x3b7d69===_0x5a77bb;},'TzCZA':function(_0x2d0496,_0x25a4f0){return _0x2d0496!=_0x25a4f0;},'XbQLL':function(_0x24fe27,_0xd3a7c8){return _0x24fe27!==_0xd3a7c8;},'oLUrg':function(_0x2d000b,_0x2a6515,_0x8b5523,_0x367115){return _0x2d000b(_0x2a6515,_0x8b5523,_0x367115);},'FJcnH':function(_0x4e3a23,_0x504613){return _0x4e3a23===_0x504613;},'StfXF':_0x4fd7(0x3),'YLLLf':_0x4fd7(0x4),'bOMLp':_0x4fd7(0x5),'hewap':_0x4fd7(0x6),'dRyoc':function(_0x4da8e1,_0x196f99){return _0x4da8e1!==_0x196f99;},'knBik':_0x4fd7(0x2),'CcWsq':function(_0x17ce9b,_0x578003){return _0x17ce9b==_0x578003;}};if(_0x5ea8ee[_0x4fd7(0x7)](_0x5ea8ee[_0x4fd7(0x8)],typeof WeakMap))var _0x276973=new WeakMap(),_0x52a57d=new WeakMap();return(_interopRequireWildcard=function(_0x29fef5,_0xcab5eb){if(_0x5ea8ee[_0x4fd7(0x9)](_0x5ea8ee[_0x4fd7(0xa)],_0x5ea8ee[_0x4fd7(0xb)])){if(_0x5ea8ee['CojgA'](!_0x23dea0,_0x3a7a74)&&_0x50f42c[_0x4fd7(0x1)])return _0x1e4cc4;var _0x1193f5,_0x207f62,_0x2468fa={'__proto__':null,'default':_0x1c9775};if(_0x5ea8ee[_0x4fd7(0xc)](null,_0x16129b)||_0x5ea8ee[_0x4fd7(0xd)](_0x4fd7(0x5),typeof _0x5919be)&&_0x5ea8ee[_0x4fd7(0xd)](_0x4fd7(0x6),typeof _0x59c0bf))return _0x2468fa;if(_0x1193f5=_0x1ff895?_0x19c6ed:_0x532348){if(_0x1193f5['has'](_0x1cc849))return _0x1193f5[_0x4fd7(0xe)](_0x9f4f1c);_0x1193f5[_0x4fd7(0xf)](_0x1cc900,_0x2468fa);}for(const _0x47bbf5 in _0x5e1e45)_0x5ea8ee['XbQLL']('default',_0x47bbf5)&&{}[_0x4fd7(0x10)][_0x4fd7(0x11)](_0x26da5f,_0x47bbf5)&&((_0x207f62=(_0x1193f5=_0x1453ec[_0x4fd7(0x0)])&&_0x112005[_0x4fd7(0x12)](_0x3f7697,_0x47bbf5))&&(_0x207f62['get']||_0x207f62[_0x4fd7(0xf)])?_0x5ea8ee[_0x4fd7(0x13)](_0x1193f5,_0x2468fa,_0x47bbf5,_0x207f62):_0x2468fa[_0x47bbf5]=_0x393111[_0x47bbf5]);return _0x2468fa;}else{if(_0x5ea8ee[_0x4fd7(0x14)](!_0xcab5eb,_0x29fef5)&&_0x29fef5[_0x4fd7(0x1)])return _0x29fef5;var _0x406207,_0x2f1991,_0x20eeb7={'__proto__':null,'default':_0x29fef5};if(_0x5ea8ee[_0x4fd7(0xc)](null,_0x29fef5)||_0x5ea8ee[_0x4fd7(0xd)](_0x5ea8ee[_0x4fd7(0x15)],typeof _0x29fef5)&&_0x5ea8ee[_0x4fd7(0xd)](_0x5ea8ee[_0x4fd7(0x8)],typeof _0x29fef5))return _0x20eeb7;if(_0x406207=_0xcab5eb?_0x52a57d:_0x276973){if(_0x406207[_0x4fd7(0x16)](_0x29fef5))return _0x406207[_0x4fd7(0xe)](_0x29fef5);_0x406207[_0x4fd7(0xf)](_0x29fef5,_0x20eeb7);}for(const _0x163420 in _0x29fef5)_0x5ea8ee[_0x4fd7(0x17)](_0x5ea8ee['knBik'],_0x163420)&&{}[_0x4fd7(0x10)][_0x4fd7(0x11)](_0x29fef5,_0x163420)&&((_0x2f1991=(_0x406207=Object[_0x4fd7(0x0)])&&Object[_0x4fd7(0x12)](_0x29fef5,_0x163420))&&(_0x2f1991[_0x4fd7(0xe)]||_0x2f1991[_0x4fd7(0xf)])?_0x406207(_0x20eeb7,_0x163420,_0x2f1991):_0x20eeb7[_0x163420]=_0x29fef5[_0x163420]);return _0x20eeb7;}})(_0x546a81,_0x48d27a);}const {width,height}=_reactNative[_0x4fd7(0x18)]['get']('window'),SignInMatchAnimation=({email:_0x579380,visible:_0x36e358,onComplete:_0x1f3f32})=>{const _0x544471={'pdNBg':_0x4fd7(0x19),'Ebppc':function(_0x20396a,_0x578f4b){return _0x20396a+_0x578f4b;},'NVCPp':function(_0x4b62c4,_0x2f6151){return _0x4b62c4(_0x2f6151);},'PuGxT':_0x4fd7(0x1a),'nVGPs':function(_0x1d11c8,_0x32ca0b,_0x558c4b){return _0x1d11c8(_0x32ca0b,_0x558c4b);},'lTTWm':function(_0x592dd8,_0x1fe8cb){return _0x592dd8+_0x1fe8cb;},'dYrUG':function(_0x329be7,_0x46f020){return _0x329be7===_0x46f020;},'iCAYd':'qJTxZ','VvLbj':_0x4fd7(0x1b),'yVbSX':_0x4fd7(0x1c),'szcVU':function(_0x250d88,_0x17eb23,_0x37d96d){return _0x250d88(_0x17eb23,_0x37d96d);},'XAsKV':_0x4fd7(0x1d),'aJWnZ':_0x4fd7(0x1e),'gUZzV':function(_0x5f5cf0,_0x1809db){return _0x5f5cf0===_0x1809db;},'DzaXu':_0x4fd7(0x1f),'eWPUt':_0x4fd7(0x20),'ehdCH':_0x4fd7(0x21),'GNONs':function(_0x1596eb,_0x24eec1){return _0x1596eb===_0x24eec1;},'XQUqA':_0x4fd7(0x22),'BOywS':function(_0x52f881,_0x4f9f91){return _0x52f881===_0x4f9f91;},'WjPmn':'Welcome\x20to\x20Enoch!','hdvOt':_0x4fd7(0x23),'eEJhM':_0x4fd7(0x24),'ZdQuM':_0x4fd7(0x25)},[_0x27278f,_0x1fb2c8]=(0x0,_react['useState'])(_0x544471[_0x4fd7(0x26)]),[_0x66250b,_0x473185]=(0x0,_react[_0x4fd7(0x27)])(0x0),_0x1a6aa0=(0x0,_react[_0x4fd7(0x27)])(new _reactNative['Animated']['Value'](0x0))[0x0],_0x5ab1d2=(0x0,_react[_0x4fd7(0x27)])(new _reactNative['Animated'][(_0x4fd7(0x28))](0.9))[0x0];(0x0,_react[_0x4fd7(0x29)])(()=>{const _0x13b6fc={'iohCu':function(_0x2d1d0b,_0x3091ad){return _0x544471[_0x4fd7(0x2a)](_0x2d1d0b,_0x3091ad);},'OYIAy':function(_0x447cb8,_0x2c2920){return _0x447cb8*_0x2c2920;},'OenWO':function(_0x47b68d,_0x3c305d){return _0x544471['NVCPp'](_0x47b68d,_0x3c305d);},'CEMYz':_0x544471[_0x4fd7(0x2b)],'DjEuK':function(_0x558f24,_0x7dffd7,_0x457974){return _0x558f24(_0x7dffd7,_0x457974);},'Pvrcq':_0x544471[_0x4fd7(0x2c)]};if(_0x544471[_0x4fd7(0x2d)](_0x544471[_0x4fd7(0x2e)],_0x4fd7(0x2f)))_0x2780fe();else{if(_0x36e358){if(_0x544471[_0x4fd7(0x2d)](_0x544471[_0x4fd7(0x30)],_0x544471[_0x4fd7(0x31)])){const _0x4216c8={'euWHS':function(_0x171ae,_0x26fbcf){return _0x171ae(_0x26fbcf);},'qsrwZ':_0x13b6fc[_0x4fd7(0x32)]};_0x4bedc8[_0x4fd7(0x33)]['parallel']([_0x3deed9[_0x4fd7(0x33)][_0x4fd7(0x34)](_0x2f6335,{'toValue':0x1,'duration':0x258,'useNativeDriver':!![]}),_0x5d4fd2[_0x4fd7(0x33)][_0x4fd7(0x34)](_0x4a26cf,{'toValue':0x1,'duration':0x258,'useNativeDriver':!![]})])[_0x4fd7(0x35)](),_0x13b6fc[_0x4fd7(0x36)](_0xedd250,()=>{const _0x203ff0=_0x13b6fc[_0x4fd7(0x37)](_0x2b9d94['floor'](_0x13b6fc[_0x4fd7(0x38)](_0x399e8d['random'](),0x6)),0x3);_0x13b6fc[_0x4fd7(0x39)](_0x29aac6,_0x203ff0),_0x18e66a(_0x13b6fc[_0x4fd7(0x3a)]),_0x13b6fc['DjEuK'](_0x491fde,()=>{_0x4216c8[_0x4fd7(0x3b)](_0x1749bc,_0x4216c8[_0x4fd7(0x3c)]);},0xbb8);},0x9c4);}else _reactNative[_0x4fd7(0x33)][_0x4fd7(0x3d)]([_reactNative[_0x4fd7(0x33)]['timing'](_0x1a6aa0,{'toValue':0x1,'duration':0x258,'useNativeDriver':!![]}),_reactNative[_0x4fd7(0x33)][_0x4fd7(0x34)](_0x5ab1d2,{'toValue':0x1,'duration':0x258,'useNativeDriver':!![]})])['start'](),_0x544471['szcVU'](setTimeout,()=>{const _0x21222e={'gngZS':_0x544471['pdNBg']},_0x5ae861=_0x544471[_0x4fd7(0x3e)](Math[_0x4fd7(0x3f)](Math[_0x4fd7(0x40)]()*0x6),0x3);_0x544471['NVCPp'](_0x473185,_0x5ae861),_0x1fb2c8(_0x544471[_0x4fd7(0x2b)]),_0x544471['nVGPs'](setTimeout,()=>{_0x1fb2c8(_0x21222e[_0x4fd7(0x41)]);},0xbb8);},0x9c4);}}},[_0x36e358,_0x1a6aa0,_0x5ab1d2]);const _0x340ad6=()=>{_reactNative[_0x4fd7(0x33)][_0x4fd7(0x3d)]([_reactNative[_0x4fd7(0x33)][_0x4fd7(0x34)](_0x1a6aa0,{'toValue':0x0,'duration':0x190,'useNativeDriver':!![]}),_reactNative[_0x4fd7(0x33)]['timing'](_0x5ab1d2,{'toValue':0.9,'duration':0x190,'useNativeDriver':!![]})])[_0x4fd7(0x35)](()=>{_0x1f3f32();});};if(!_0x36e358)return null;return _react[_0x4fd7(0x2)][_0x4fd7(0x42)](_reactNative[_0x4fd7(0x43)],{'visible':_0x36e358,'transparent':!![],'animationType':_0x544471[_0x4fd7(0x44)]},_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_reactNative['View'],{'style':styles['container']},_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_reactNative['Animated'][_0x4fd7(0x45)],{'style':[styles['content'],{'opacity':_0x1a6aa0,'transform':[{'scale':_0x5ab1d2}]}]},_0x544471[_0x4fd7(0x46)](_0x27278f,_0x4fd7(0x1d))&&_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_react[_0x4fd7(0x2)][_0x4fd7(0x47)],null,_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_reactNative['Text'],{'style':styles['title']},_0x544471['DzaXu']),_react['default']['createElement'](_reactNative[_0x4fd7(0x48)],{'size':'large','color':_0x544471['eWPUt'],'style':styles[_0x4fd7(0x49)]}),_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_reactNative[_0x4fd7(0x4a)],{'style':styles[_0x4fd7(0x4b)]},_0x544471[_0x4fd7(0x4c)])),_0x544471['GNONs'](_0x27278f,_0x544471[_0x4fd7(0x2b)])&&_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_react['default'][_0x4fd7(0x47)],null,_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_reactNative[_0x4fd7(0x4a)],{'style':styles[_0x4fd7(0x4d)]},_0x4fd7(0x4e)),_react['default'][_0x4fd7(0x42)](_reactNative[_0x4fd7(0x45)],{'style':styles[_0x4fd7(0x4f)]},_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_reactNative[_0x4fd7(0x4a)],{'style':styles[_0x4fd7(0x50)]},_0x66250b)),_react[_0x4fd7(0x2)]['createElement'](_reactNative['Text'],{'style':styles[_0x4fd7(0x4b)]},_0x4fd7(0x51),_0x66250b,_0x544471[_0x4fd7(0x52)]),_react['default'][_0x4fd7(0x42)](_reactNative[_0x4fd7(0x4a)],{'style':styles['subMessage']},_0x4fd7(0x53))),_0x544471[_0x4fd7(0x54)](_0x27278f,_0x544471['pdNBg'])&&_react[_0x4fd7(0x2)]['createElement'](_react[_0x4fd7(0x2)][_0x4fd7(0x47)],null,_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_reactNative['Text'],{'style':styles['title']},_0x544471[_0x4fd7(0x55)]),_react['default']['createElement'](_reactNative['Text'],{'style':styles['message']},_0x544471['hdvOt'],_0x579380['split']('@')[0x0],_0x4fd7(0x56)),_react[_0x4fd7(0x2)]['createElement'](_reactNative['TouchableOpacity'],{'style':styles[_0x4fd7(0x57)],'onPress':_0x340ad6},_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_reactNativeLinearGradient[_0x4fd7(0x2)],{'colors':[_0x544471[_0x4fd7(0x58)],'#E9C46A',_0x4fd7(0x59)],'start':{'x':0x0,'y':0x0},'end':{'x':0x1,'y':0x0},'style':styles[_0x4fd7(0x5a)]},_react[_0x4fd7(0x2)][_0x4fd7(0x42)](_reactNative[_0x4fd7(0x4a)],{'style':styles['buttonText']},_0x544471[_0x4fd7(0x5b)])))))));},styles=_reactNative['StyleSheet'][_0x4fd7(0x5c)]({'container':{'flex':0x1,'backgroundColor':_0x4fd7(0x5d),'justifyContent':'center','alignItems':'center'},'content':{'width':width*0.85,'backgroundColor':_0x4fd7(0x5e),'borderRadius':0x14,'padding':0x18,'alignItems':'center','shadowColor':_0x4fd7(0x5f),'shadowOffset':{'width':0x0,'height':0x4},'shadowOpacity':0.3,'shadowRadius':0x8,'elevation':0xa},'title':{'fontSize':0x18,'fontWeight':_0x4fd7(0x60),'color':_0x4fd7(0x61),'marginBottom':0x14,'textAlign':_0x4fd7(0x62)},'loader':{'marginVertical':0x18},'message':{'fontSize':0x12,'color':_0x4fd7(0x63),'textAlign':_0x4fd7(0x62),'marginBottom':0x10,'lineHeight':0x18},'subMessage':{'fontSize':0x10,'color':_0x4fd7(0x64),'textAlign':_0x4fd7(0x62),'marginTop':0x8},'matchCircle':{'width':0x64,'height':0x64,'borderRadius':0x32,'backgroundColor':'#E9C46A','justifyContent':_0x4fd7(0x62),'alignItems':_0x4fd7(0x62),'marginVertical':0x14},'matchCount':{'fontSize':0x28,'fontWeight':_0x4fd7(0x65),'color':'#FFFFFF'},'button':{'width':'100%','marginTop':0x18,'borderRadius':0x8,'overflow':_0x4fd7(0x66)},'gradientButton':{'paddingVertical':0xe,'alignItems':'center','justifyContent':_0x4fd7(0x62)},'buttonText':{'color':_0x4fd7(0x61),'fontSize':0x10,'fontWeight':_0x4fd7(0x60)}});var _default=exports[_0x4fd7(0x2)]=SignInMatchAnimation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
// Onairos SDK - Asset Registry (auto-generated)
|
|
3
|
+
var __ONAIROS_REQ_REGISTRY__ = [
|
|
4
|
+
require("react"),
|
|
5
|
+
require("react-native"),
|
|
6
|
+
require("../theme"),
|
|
7
|
+
require("./EmailInput"),
|
|
8
|
+
require("./GoogleButton"),
|
|
9
|
+
require("./PrimaryButton")
|
|
10
|
+
];
|
|
11
|
+
function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
|
|
12
|
+
Object[_0xfcb1(0x0)](exports,_0xfcb1(0x1),{'value':!![]}),exports['default']=exports[_0xfcb1(0x2)]=void 0x0;var _react=_interopRequireWildcard(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_theme=__ONAIROS_REQ_FUNC__(0x2),_EmailInput=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x3)),_GoogleButton=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x4)),_PrimaryButton=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x5));function _interopRequireDefault(_0x529b9f){return _0x529b9f&&_0x529b9f[_0xfcb1(0x1)]?_0x529b9f:{'default':_0x529b9f};}function _interopRequireWildcard(_0x358f9d,_0x4cf6a9){const _0x462a63={'LEzgh':'\x20Did\x20you\x20mean\x20.com?','juMgP':function(_0x4f5c4c,_0x2e80f5){return _0x4f5c4c&&_0x2e80f5;},'PfRbf':function(_0x1dbef9,_0x2e9999){return _0x1dbef9!=_0x2e9999;},'OFIdi':_0xfcb1(0x3),'HVFEy':function(_0x594fe0,_0x11126e){return _0x594fe0!=_0x11126e;},'tpXnO':_0xfcb1(0x4),'EkgdW':function(_0x2466e9,_0x5bb5fd){return _0x2466e9===_0x5bb5fd;},'RcJSd':_0xfcb1(0x5),'tcUuo':function(_0x2de2e4,_0x25b196,_0x2f11eb,_0x3eaafd){return _0x2de2e4(_0x25b196,_0x2f11eb,_0x3eaafd);},'CYZAC':function(_0x47216d,_0x293b65){return _0x47216d==_0x293b65;}};if(_0x462a63[_0xfcb1(0x6)](_0xfcb1(0x4),typeof WeakMap))var _0x5bd260=new WeakMap(),_0x3f6186=new WeakMap();return(_interopRequireWildcard=function(_0x266ca9,_0x50e600){if(_0x462a63[_0xfcb1(0x7)](!_0x50e600,_0x266ca9)&&_0x266ca9['__esModule'])return _0x266ca9;var _0x3bda9a,_0x21c2e0,_0x588a42={'__proto__':null,'default':_0x266ca9};if(null===_0x266ca9||_0x462a63[_0xfcb1(0x8)](_0x462a63[_0xfcb1(0x9)],typeof _0x266ca9)&&_0x462a63['HVFEy'](_0x462a63[_0xfcb1(0xa)],typeof _0x266ca9))return _0x588a42;if(_0x3bda9a=_0x50e600?_0x3f6186:_0x5bd260){if(_0x462a63[_0xfcb1(0xb)](_0xfcb1(0xc),_0xfcb1(0xc))){if(_0x3bda9a[_0xfcb1(0xd)](_0x266ca9))return _0x3bda9a['get'](_0x266ca9);_0x3bda9a['set'](_0x266ca9,_0x588a42);}else _0x2bdc0f=_0x462a63['LEzgh'];}for(const _0x1e6d21 in _0x266ca9)_0x462a63['RcJSd']!==_0x1e6d21&&{}['hasOwnProperty'][_0xfcb1(0xe)](_0x266ca9,_0x1e6d21)&&((_0x21c2e0=(_0x3bda9a=Object[_0xfcb1(0x0)])&&Object['getOwnPropertyDescriptor'](_0x266ca9,_0x1e6d21))&&(_0x21c2e0['get']||_0x21c2e0[_0xfcb1(0xf)])?_0x462a63[_0xfcb1(0x10)](_0x3bda9a,_0x588a42,_0x1e6d21,_0x21c2e0):_0x588a42[_0x1e6d21]=_0x266ca9[_0x1e6d21]);return _0x588a42;})(_0x358f9d,_0x4cf6a9);}const VALID_TLDS=new Set([_0xfcb1(0x11),_0xfcb1(0x12),'net',_0xfcb1(0x13),_0xfcb1(0x14),_0xfcb1(0x15),_0xfcb1(0x16),'io','co','ai',_0xfcb1(0x17),'dev',_0xfcb1(0x18),_0xfcb1(0x19),_0xfcb1(0x1a),_0xfcb1(0x1b),_0xfcb1(0x1c),'biz','me','tv','cc','xyz','uk','us','ca','au','de','fr','it','es','nl','be','ch','at','se','no','dk','fi','jp','cn','kr','in','br','mx','ar','ru','pl','cz','ie','nz','za','sg','hk','tw','pt','gr','tr','il','ae','sa','eg','ng','ke','gh','ph','id','my','th','vn',_0xfcb1(0x1d),'com.au',_0xfcb1(0x1e),'co.za','com.br',_0xfcb1(0x1f),_0xfcb1(0x20),_0xfcb1(0x21),_0xfcb1(0x22),_0xfcb1(0x23),_0xfcb1(0x24),_0xfcb1(0x25),_0xfcb1(0x26)]),INVALID_TLDS=new Set([_0xfcb1(0x27),_0xfcb1(0x28),_0xfcb1(0x29),'ocm','cm',_0xfcb1(0x2a),_0xfcb1(0x2b),'om',_0xfcb1(0x2c),_0xfcb1(0x2d),_0xfcb1(0x2e),_0xfcb1(0x2f),'og',_0xfcb1(0x30),'rog','rg',_0xfcb1(0x31),'ne',_0xfcb1(0x32),_0xfcb1(0x33),_0xfcb1(0x34),'oi',_0xfcb1(0x35),_0xfcb1(0x36),_0xfcb1(0x37),_0xfcb1(0x38),_0xfcb1(0x39),'gmal',_0xfcb1(0x3a),_0xfcb1(0x3b),_0xfcb1(0x3c),_0xfcb1(0x3d),'yahooo','yaho',_0xfcb1(0x3e),_0xfcb1(0x3f),_0xfcb1(0x40),_0xfcb1(0x41)]),validateEmail=_0x57952b=>{const _0x2f1be9={'OAxKU':function(_0x130648,_0x379d37){return _0x130648(_0x379d37);},'XmTvJ':function(_0x3a7c13,_0x4a1dd0){return _0x3a7c13&&_0x4a1dd0;},'OwxkI':function(_0x19b50c,_0x2ed49c){return _0x19b50c===_0x2ed49c;},'PrZeR':function(_0x2a25ce,_0x4df207){return _0x2a25ce!=_0x4df207;},'eWbHt':_0xfcb1(0x4),'hmIQS':function(_0xa9d93c,_0x2b20f3){return _0xa9d93c!==_0x2b20f3;},'mTkoH':_0xfcb1(0x5),'fYOgC':function(_0x1eed7a,_0xcb6b13){return _0x1eed7a==_0xcb6b13;},'IOZqZ':_0xfcb1(0x42),'rjcob':function(_0x24849c,_0x6b2256){return _0x24849c(_0x6b2256);},'DvyxU':_0xfcb1(0x43),'PSAQV':function(_0x2c66dc,_0x38452f){return _0x2c66dc+_0x38452f;},'TXgbX':function(_0x433d01,_0x5c035a){return _0x433d01<_0x5c035a;},'cXufg':function(_0x302e7c,_0x4d9408){return _0x302e7c-_0x4d9408;},'aNbCT':function(_0x5757ac,_0x3a8163){return _0x5757ac-_0x3a8163;},'FpCUW':function(_0x1a1c13,_0x4a821b){return _0x1a1c13!==_0x4a821b;},'zuKuH':_0xfcb1(0x44),'seVbq':function(_0x45e938,_0xa0ee17){return _0x45e938===_0xa0ee17;},'gItOv':_0xfcb1(0x28),'vudLv':function(_0x5ad8b0,_0x1f8ce1){return _0x5ad8b0===_0x1f8ce1;},'mXuJY':_0xfcb1(0x2a),'kPPFA':function(_0x5e7b7,_0x25dc95){return _0x5e7b7===_0x25dc95;},'DoPZe':_0xfcb1(0x2c),'gLkxZ':'comn','yIrCK':_0xfcb1(0x45),'NoEFI':_0xfcb1(0x46),'GwOEn':_0xfcb1(0x47),'HxxYZ':function(_0x33e5b3,_0x36c424){return _0x33e5b3===_0x36c424;},'jJNKQ':'ogr','Xqafd':function(_0x1b2286,_0x3d9fc9){return _0x1b2286===_0x3d9fc9;},'FQmSA':_0xfcb1(0x48),'ioWhu':_0xfcb1(0x49),'JUjIF':_0xfcb1(0x31),'cRAWk':function(_0x10bc45,_0x1d003b){return _0x10bc45===_0x1d003b;},'XWiXm':_0xfcb1(0x32),'xnQlt':_0xfcb1(0x33),'iiDFb':_0xfcb1(0x36),'eaWKw':function(_0x5e8cf0,_0x33c58f){return _0x5e8cf0!==_0x33c58f;},'ELWGH':_0xfcb1(0x4a),'nGQkb':function(_0x596f5c,_0x36f28b){return _0x596f5c<=_0x36f28b;},'nuQKg':_0xfcb1(0x4b),'wdRBX':_0xfcb1(0x4c),'DcDOH':_0xfcb1(0x4d),'eRLsa':_0xfcb1(0x4e),'Pmsft':_0xfcb1(0x4f),'KOpUZ':_0xfcb1(0x50),'OvOMB':_0xfcb1(0x51),'kbqCI':_0xfcb1(0x52),'FbIzL':_0xfcb1(0x53),'jQZCI':_0xfcb1(0x11),'ymPPt':_0xfcb1(0x54),'fuwsQ':'yahoo.com.br','zwktH':_0xfcb1(0x55),'cFrFU':_0xfcb1(0x56),'nokEf':_0xfcb1(0x57),'PBriw':function(_0x210f87,_0x408e95){return _0x210f87===_0x408e95;},'jJnFy':_0xfcb1(0x58)},_0x9c5537=_0x57952b[_0xfcb1(0x59)]()['toLowerCase'](),_0x4f904a=/^[^\s@]+@[^\s@]+\.[^\s@]+$/;if(!_0x4f904a[_0xfcb1(0x5a)](_0x9c5537))return{'isValid':![],'error':_0x2f1be9[_0xfcb1(0x5b)]};const _0x253d66=_0x9c5537[_0xfcb1(0x5c)]('@'),_0x5c16ba=_0x9c5537['substring'](_0x2f1be9[_0xfcb1(0x5d)](_0x253d66,0x1)),_0x5a338e=_0x5c16ba[_0xfcb1(0x5e)]('.');if(_0x2f1be9[_0xfcb1(0x5f)](_0x5a338e[_0xfcb1(0x60)],0x2))return{'isValid':![],'error':_0x2f1be9[_0xfcb1(0x5b)]};const _0x2d18e2=_0x5a338e[_0x2f1be9[_0xfcb1(0x61)](_0x5a338e['length'],0x1)],_0x134a12=_0x5a338e['length']>=0x2?_0x5a338e[_0x2f1be9['aNbCT'](_0x5a338e[_0xfcb1(0x60)],0x2)]+'.'+_0x2d18e2:'';if(INVALID_TLDS[_0xfcb1(0xd)](_0x2d18e2)){if(_0x2f1be9[_0xfcb1(0x62)](_0x2f1be9[_0xfcb1(0x63)],_0xfcb1(0x64))){let _0x422ef8='';if(_0x2f1be9['seVbq'](_0x2d18e2,_0xfcb1(0x27))||_0x2d18e2===_0x2f1be9['gItOv']||_0x2f1be9['seVbq'](_0x2d18e2,_0xfcb1(0x29))||_0x2f1be9[_0xfcb1(0x65)](_0x2d18e2,_0xfcb1(0x66))||_0x2f1be9[_0xfcb1(0x67)](_0x2d18e2,_0x2f1be9[_0xfcb1(0x68)])||_0x2f1be9[_0xfcb1(0x69)](_0x2d18e2,_0x2f1be9[_0xfcb1(0x6a)])||_0x2f1be9[_0xfcb1(0x65)](_0x2d18e2,_0x2f1be9[_0xfcb1(0x6b)])||_0x2d18e2==='copm')_0x2f1be9[_0xfcb1(0x67)](_0x2f1be9[_0xfcb1(0x6c)],_0x2f1be9[_0xfcb1(0x6d)])?_0x2f1be9[_0xfcb1(0x6e)](_0x52325f,''):_0x422ef8=_0x2f1be9[_0xfcb1(0x6f)];else{if(_0x2f1be9['HxxYZ'](_0x2d18e2,_0x2f1be9[_0xfcb1(0x70)])||_0x2f1be9[_0xfcb1(0x71)](_0x2d18e2,'og')||_0x2f1be9[_0xfcb1(0x71)](_0x2d18e2,_0xfcb1(0x30))||_0x2f1be9[_0xfcb1(0x65)](_0x2d18e2,_0x2f1be9['FQmSA']))_0x422ef8=_0x2f1be9['ioWhu'];else{if(_0x2f1be9['Xqafd'](_0x2d18e2,_0x2f1be9['JUjIF'])||_0x2f1be9['Xqafd'](_0x2d18e2,'ne')||_0x2f1be9[_0xfcb1(0x72)](_0x2d18e2,_0x2f1be9[_0xfcb1(0x73)])||_0x2d18e2===_0x2f1be9[_0xfcb1(0x74)])_0x422ef8=_0xfcb1(0x75);else{if(_0x2d18e2==='oi'||_0x2d18e2===_0xfcb1(0x35)||_0x2f1be9[_0xfcb1(0x65)](_0x2d18e2,_0x2f1be9[_0xfcb1(0x76)])){if(_0x2f1be9[_0xfcb1(0x77)](_0x2f1be9['ELWGH'],_0x2f1be9[_0xfcb1(0x78)])){if(_0x2f1be9['fYOgC']('function',typeof _0x1ae51f))var _0x28b90a=new _0x2ef6ad(),_0x1636b5=new _0x18a3b7();return(_0x265a83=function(_0x4aca53,_0x574431){if(_0x2f1be9[_0xfcb1(0x79)](!_0x574431,_0x4aca53)&&_0x4aca53[_0xfcb1(0x1)])return _0x4aca53;var _0x4cb2e4,_0x4a6ac0,_0x1239ce={'__proto__':null,'default':_0x4aca53};if(_0x2f1be9['OwxkI'](null,_0x4aca53)||_0xfcb1(0x3)!=typeof _0x4aca53&&_0x2f1be9[_0xfcb1(0x7a)](_0x2f1be9['eWbHt'],typeof _0x4aca53))return _0x1239ce;if(_0x4cb2e4=_0x574431?_0x1636b5:_0x28b90a){if(_0x4cb2e4[_0xfcb1(0xd)](_0x4aca53))return _0x4cb2e4[_0xfcb1(0x7b)](_0x4aca53);_0x4cb2e4[_0xfcb1(0xf)](_0x4aca53,_0x1239ce);}for(const _0x351116 in _0x4aca53)_0x2f1be9['hmIQS'](_0x2f1be9[_0xfcb1(0x7c)],_0x351116)&&{}['hasOwnProperty'][_0xfcb1(0xe)](_0x4aca53,_0x351116)&&((_0x4a6ac0=(_0x4cb2e4=_0x23d2b7[_0xfcb1(0x0)])&&_0x20f6af[_0xfcb1(0x7d)](_0x4aca53,_0x351116))&&(_0x4a6ac0[_0xfcb1(0x7b)]||_0x4a6ac0['set'])?_0x4cb2e4(_0x1239ce,_0x351116,_0x4a6ac0):_0x1239ce[_0x351116]=_0x4aca53[_0x351116]);return _0x1239ce;})(_0x3d5e21,_0x43f641);}else _0x422ef8=_0x2f1be9[_0xfcb1(0x7e)];}}}}return{'isValid':![],'error':_0xfcb1(0x7f)+_0x2d18e2+').'+_0x422ef8};}else return{'isValid':![],'error':_0xfcb1(0x43)};}if(_0x2f1be9[_0xfcb1(0x5f)](_0x2d18e2['length'],0x2))return{'isValid':![],'error':_0x2f1be9[_0xfcb1(0x5b)]};const _0x440225=VALID_TLDS[_0xfcb1(0xd)](_0x2d18e2)||VALID_TLDS['has'](_0x134a12);if(!_0x440225&&_0x2f1be9[_0xfcb1(0x80)](_0x2d18e2[_0xfcb1(0x60)],0x2)){if(_0x2f1be9[_0xfcb1(0x81)](_0x2f1be9[_0xfcb1(0x82)],_0x2f1be9['nuQKg']))_0x3863cb=_0x2f1be9['IOZqZ'];else return{'isValid':![],'error':_0xfcb1(0x7f)+_0x2d18e2+_0xfcb1(0x83)};}const _0x59af68=_0x5a338e[_0xfcb1(0x84)](0x0,-0x1)[_0xfcb1(0x85)]('.'),_0x4ce2cf={'gmai':_0x2f1be9['wdRBX'],'gmial':_0x2f1be9[_0xfcb1(0x86)],'gmil':_0x2f1be9[_0xfcb1(0x86)],'gmal':_0x2f1be9[_0xfcb1(0x86)],'gamil':_0x2f1be9[_0xfcb1(0x86)],'outlok':_0x2f1be9['DcDOH'],'outloo':_0x2f1be9[_0xfcb1(0x87)],'outlokk':_0x2f1be9[_0xfcb1(0x87)],'yahooo':_0x2f1be9[_0xfcb1(0x88)],'yaho':_0x2f1be9[_0xfcb1(0x88)],'yhoo':_0x2f1be9[_0xfcb1(0x88)],'hotmai':_0xfcb1(0x4f),'hotmal':_0x2f1be9['Pmsft'],'hotmial':_0x2f1be9[_0xfcb1(0x89)],'iclod':_0xfcb1(0x50),'iclould':_0x2f1be9['KOpUZ']};if(_0x4ce2cf[_0x59af68])return{'isValid':![],'error':'Did\x20you\x20mean\x20'+_0x4ce2cf[_0x59af68]+'.'+_0x2d18e2+'?'};const _0x3e9066=[_0x2f1be9['wdRBX'],_0x2f1be9[_0xfcb1(0x88)],'hotmail',_0x2f1be9[_0xfcb1(0x87)],'icloud',_0x2f1be9[_0xfcb1(0x8a)],_0x2f1be9[_0xfcb1(0x8b)],_0x2f1be9['FbIzL']],_0x11918f={'gmail':_0x2f1be9['jQZCI'],'yahoo':_0x2f1be9['jQZCI'],'hotmail':_0xfcb1(0x11),'outlook':_0x2f1be9['jQZCI'],'icloud':_0x2f1be9[_0xfcb1(0x8c)],'aol':_0xfcb1(0x11),'protonmail':_0x2f1be9[_0xfcb1(0x8c)],'zoho':_0x2f1be9['jQZCI']};if(_0x3e9066[_0xfcb1(0x8d)](_0x59af68)&&_0x2f1be9[_0xfcb1(0x62)](_0x2d18e2,_0x11918f[_0x59af68])){const _0x4dc6b0=[_0xfcb1(0x8e),_0x2f1be9[_0xfcb1(0x8f)],_0x2f1be9['fuwsQ'],_0xfcb1(0x90),_0x2f1be9[_0xfcb1(0x91)],_0x2f1be9[_0xfcb1(0x92)],_0x2f1be9['nokEf']],_0xece234=_0x59af68+'.'+_0x2d18e2;if(!_0x4dc6b0[_0xfcb1(0x8d)](_0xece234)){if(_0x2f1be9[_0xfcb1(0x93)](_0x2f1be9[_0xfcb1(0x94)],_0x2f1be9[_0xfcb1(0x94)]))return{'isValid':![],'error':'Did\x20you\x20mean\x20'+_0x59af68+'.'+_0x11918f[_0x59af68]+'?'};else _0x2f1be9['OAxKU'](_0x3747b8,_0x227565),_0x4d4a70&&_0x2f1be9[_0xfcb1(0x95)](_0x11355c,'');}}return{'isValid':!![]};},SignInStep=({onEmailSubmit:_0x4c71ac,onGoogleSignIn:_0x1eea59,onContinue:_0x141923,loading:loading=![],error:error='',initialEmail:initialEmail=''})=>{const _0x219902={'FkMOc':'Please\x20enter\x20a\x20valid\x20email\x20address','Vpjfx':_0xfcb1(0x96),'tBBzz':function(_0x2011b7,_0x4bd3ce){return _0x2011b7(_0x4bd3ce);},'pICeP':function(_0x3707a2,_0x3b12f0){return _0x3707a2(_0x3b12f0);},'RapRx':function(_0x4b84b8,_0x38bf10){return _0x4b84b8===_0x38bf10;},'BoFpt':function(_0xccb76a,_0x3e5332){return _0xccb76a!==_0x3e5332;},'wQnuw':_0xfcb1(0x97),'BcUyJ':_0xfcb1(0x5a),'tGZbe':function(_0xc16b47,_0x398397){return _0xc16b47(_0x398397);},'DSDrR':_0xfcb1(0x98),'kcdNG':_0xfcb1(0x99),'LflxR':_0xfcb1(0x9a),'bxLkG':function(_0x5ef8f9,_0x2cb607){return _0x5ef8f9(_0x2cb607);},'otGxp':_0xfcb1(0x9b),'cTvrP':function(_0x115332,_0x2c9147){return _0x115332===_0x2c9147;},'FYdKO':_0xfcb1(0x9c),'nfXaN':_0xfcb1(0x9d),'qCycX':_0xfcb1(0x9e),'BgSIu':function(_0x3fa182,_0x21cbd7){return _0x3fa182===_0x21cbd7;},'RRYKP':'ios','sePlI':_0xfcb1(0x9f),'aswoE':_0xfcb1(0xa0),'YLyHk':'Build\x20your\x20Onairos\x20persona\x20to\x20own\x20your\x20digital\x20identity','CcNDv':_0xfcb1(0xa1),'LDCJu':_0xfcb1(0xa2),'LbDHS':'Your\x20email','msrIw':_0xfcb1(0xa3),'jSOWo':function(_0x3ae89c,_0x1cc6fc){return _0x3ae89c||_0x1cc6fc;},'KfpXi':function(_0x2812ea,_0x292bc6){return _0x2812ea||_0x292bc6;}},[_0x35cb10,_0x55fc99]=(0x0,_react[_0xfcb1(0xa4)])(initialEmail),[_0x15f649,_0x33a81e]=(0x0,_react[_0xfcb1(0xa4)])(![]),[_0x40a396,_0x5da6f0]=(0x0,_react[_0xfcb1(0xa4)])(''),_0x56a337=_0x177ac6=>{if('ziJkX'===_0x219902[_0xfcb1(0xa5)])_0x219902[_0xfcb1(0xa6)](_0x55fc99,_0x177ac6),_0x40a396&&_0x219902[_0xfcb1(0xa7)](_0x5da6f0,'');else return{'isValid':![],'error':_0x219902[_0xfcb1(0xa8)]};},_0x14bc4d=()=>{const _0x42b681={'tfAoV':function(_0xa662f1,_0x4c2188){return _0xa662f1===_0x4c2188;},'BjDGZ':function(_0x1042c1,_0x37dd47){return _0x219902['RapRx'](_0x1042c1,_0x37dd47);},'Nacuo':_0xfcb1(0x9d)};if(_0x219902[_0xfcb1(0xa9)](_0x219902[_0xfcb1(0xaa)],_0x219902[_0xfcb1(0xaa)])){const _0x42402f=_0x41f3c9[_0xfcb1(0xab)][_0xfcb1(0xac)](_0x42b681[_0xfcb1(0xad)],()=>_0x29e970(!![])),_0x5559cd=_0x12efa6[_0xfcb1(0xab)]['addListener']('keyboardDidHide',()=>_0x204336(![]));return()=>{_0x5559cd===null||_0x42b681[_0xfcb1(0xae)](_0x5559cd,void 0x0)||_0x5559cd[_0xfcb1(0xaf)](),_0x42b681[_0xfcb1(0xb0)](_0x42402f,null)||_0x42402f===void 0x0||_0x42402f[_0xfcb1(0xaf)]();};}else{if(_0x219902[_0xfcb1(0xb1)](_0x35cb10[_0xfcb1(0xb2)]()[_0xfcb1(0x59)](),_0xfcb1(0xb3))){console[_0xfcb1(0xb4)]('๐\x20Reviewer\x20bypass\x20detected\x20in\x20new\x20UI'),_0x4c71ac(_0xfcb1(0x9b));return;}if(_0x35cb10['toLowerCase']()[_0xfcb1(0x59)]()===_0x219902['BcUyJ']){console[_0xfcb1(0xb4)](_0xfcb1(0xb5)),_0x219902[_0xfcb1(0xb6)](_0x4c71ac,_0x219902[_0xfcb1(0xb7)]);return;}if(_0x35cb10[_0xfcb1(0x59)]()){const _0x707138=_0x219902[_0xfcb1(0xb6)](validateEmail,_0x35cb10);if(!_0x707138[_0xfcb1(0xb8)]){console['log'](_0xfcb1(0xb9),_0x707138['error']),_0x219902[_0xfcb1(0xa7)](_0x5da6f0,_0x707138[_0xfcb1(0xba)]||_0x219902[_0xfcb1(0xbb)]);return;}console[_0xfcb1(0xb4)](_0x219902[_0xfcb1(0xbc)]),_0x5da6f0(''),_0x219902['bxLkG'](_0x4c71ac,_0x35cb10[_0xfcb1(0x59)]());}}};return(0x0,_react[_0xfcb1(0xbd)])(()=>{const _0x42b81e={'oEkUx':_0xfcb1(0xbe),'WHYBO':function(_0x29ba87,_0x363da3){return _0x29ba87===_0x363da3;},'qTCyl':function(_0x2c07cf,_0x5e3e20){return _0x219902[_0xfcb1(0xb1)](_0x2c07cf,_0x5e3e20);}};if(_0x219902['cTvrP'](_0x219902[_0xfcb1(0xbf)],_0x219902[_0xfcb1(0xbf)])){const _0x21b65c=_reactNative['Keyboard']['addListener'](_0x219902['nfXaN'],()=>_0x33a81e(!![])),_0x4ea62f=_reactNative[_0xfcb1(0xab)][_0xfcb1(0xac)](_0x219902[_0xfcb1(0xc0)],()=>_0x33a81e(![]));return()=>{if(_0x42b81e[_0xfcb1(0xc1)]!==_0x42b81e[_0xfcb1(0xc1)]){if(_0x1a44a2[_0xfcb1(0xd)](_0x3d9e8b))return _0x1b49d7[_0xfcb1(0x7b)](_0x544577);_0x2e5c24[_0xfcb1(0xf)](_0x39d696,_0x373e5e);}else _0x4ea62f===null||_0x42b81e['WHYBO'](_0x4ea62f,void 0x0)||_0x4ea62f['remove'](),_0x42b81e[_0xfcb1(0xc2)](_0x21b65c,null)||_0x42b81e[_0xfcb1(0xc3)](_0x21b65c,void 0x0)||_0x21b65c[_0xfcb1(0xaf)]();};}else{_0x5ed5fe[_0xfcb1(0xb4)](_0xfcb1(0xc4)),_0x219902[_0xfcb1(0xa7)](_0x3d1bb9,_0x219902[_0xfcb1(0xc5)]);return;}},[]),_react[_0xfcb1(0x5)][_0xfcb1(0xc6)](_reactNative['KeyboardAvoidingView'],{'behavior':_0x219902['BgSIu'](_reactNative[_0xfcb1(0xc7)]['OS'],_0x219902[_0xfcb1(0xc8)])?_0x219902['sePlI']:_0x219902['aswoE'],'style':styles[_0xfcb1(0xc9)]},_react[_0xfcb1(0x5)]['createElement'](_reactNative['View'],{'style':styles['content']},_react[_0xfcb1(0x5)][_0xfcb1(0xc6)](_reactNative[_0xfcb1(0xca)],{'style':styles[_0xfcb1(0xcb)]},_react[_0xfcb1(0x5)]['createElement'](_reactNative[_0xfcb1(0xcc)],{'style':styles[_0xfcb1(0xcd)]},_0x219902[_0xfcb1(0xce)]),_react['default'][_0xfcb1(0xc6)](_reactNative[_0xfcb1(0xcc)],{'style':styles[_0xfcb1(0xcf)]},_0x219902[_0xfcb1(0xd0)])),_react[_0xfcb1(0x5)][_0xfcb1(0xc6)](_reactNative['View'],{'style':styles['inputContainer']},_react[_0xfcb1(0x5)][_0xfcb1(0xc6)](_EmailInput['default'],{'value':_0x35cb10,'onChangeText':_0x56a337,'onSubmitEditing':_0x14bc4d,'returnKeyType':_0x219902[_0xfcb1(0xd1)],'blurOnSubmit':!![],'placeholder':_0x219902['LbDHS'],'placeholderTextColor':_0x219902[_0xfcb1(0xd2)]}),_0x219902['jSOWo'](_0x40a396,error)?_react[_0xfcb1(0x5)][_0xfcb1(0xc6)](_reactNative['Text'],{'style':styles['errorText']},_0x219902[_0xfcb1(0xd3)](_0x40a396,error)):null),_react[_0xfcb1(0x5)]['createElement'](_reactNative[_0xfcb1(0xca)],{'style':styles['dividerContainer']},_react['default'][_0xfcb1(0xc6)](_reactNative[_0xfcb1(0xca)],{'style':styles['dividerLine']}),_react['default'][_0xfcb1(0xc6)](_reactNative[_0xfcb1(0xcc)],{'style':styles['dividerText']},'Or'),_react[_0xfcb1(0x5)][_0xfcb1(0xc6)](_reactNative[_0xfcb1(0xca)],{'style':styles[_0xfcb1(0xd4)]})),_react[_0xfcb1(0x5)][_0xfcb1(0xc6)](_reactNative[_0xfcb1(0xca)],{'style':styles[_0xfcb1(0xd5)]},_react['default'][_0xfcb1(0xc6)](_GoogleButton[_0xfcb1(0x5)],{'onPress':_0x1eea59,'disabled':loading})),_react[_0xfcb1(0x5)]['createElement'](_reactNative[_0xfcb1(0xca)],{'style':styles['spacer']}),_react['default'][_0xfcb1(0xc6)](_reactNative[_0xfcb1(0xca)],{'style':styles['continueContainer']},_react[_0xfcb1(0x5)][_0xfcb1(0xc6)](_PrimaryButton[_0xfcb1(0x5)],{'label':_0xfcb1(0xd6),'onPress':_0x14bc4d,'disabled':loading||!_0x35cb10[_0xfcb1(0x59)](),'loading':loading}))));};exports[_0xfcb1(0x2)]=SignInStep;function _0xfcb1(_0x4f556a,_0xfcb1bd){_0x4f556a=_0x4f556a-0x0;const _0x55ebcd=_0x4f55();let _0x4a7624=_0x55ebcd[_0x4f556a];return _0x4a7624;}const styles=_reactNative['StyleSheet'][_0xfcb1(0xd7)]({'container':{'flex':0x1},'content':{'flex':0x1,'paddingTop':0x18,'paddingHorizontal':0x18},'headingContainer':{'width':_0xfcb1(0xd8),'marginBottom':0x16,'paddingHorizontal':0x0},'title':{'fontFamily':_0xfcb1(0xd9),'fontWeight':_0xfcb1(0xda),'fontSize':0x18,'lineHeight':0x20,'color':_theme[_0xfcb1(0xdb)][_0xfcb1(0xdc)],'textAlign':_0xfcb1(0xdd),'marginBottom':_theme[_0xfcb1(0xde)]['sm']},'subtitle':{'fontFamily':'Inter','fontWeight':_0xfcb1(0xdf),'fontSize':0x10,'lineHeight':0x18,'color':_theme['COLORS'][_0xfcb1(0xe0)],'textAlign':'left'},'inputContainer':{'marginBottom':0x20,'paddingHorizontal':0x0},'dividerContainer':{'flexDirection':_0xfcb1(0xe1),'alignItems':_0xfcb1(0xe2),'marginBottom':0x20,'paddingHorizontal':0x0},'dividerLine':{'flex':0x1,'height':0x1,'backgroundColor':_0xfcb1(0xe3)},'dividerText':{'paddingHorizontal':_theme[_0xfcb1(0xde)]['md'],'fontSize':0xe,'fontFamily':'Inter','fontWeight':'400','color':_theme[_0xfcb1(0xdb)][_0xfcb1(0xe4)]},'googleContainer':{'marginBottom':_theme[_0xfcb1(0xde)]['xl'],'paddingHorizontal':0x0},'spacer':{'flex':0x1,'minHeight':0x14},'continueContainer':{'paddingBottom':_theme[_0xfcb1(0xde)]['xl'],'paddingHorizontal':0x0},'errorText':{'fontSize':0xe,'fontFamily':'Inter','fontWeight':_0xfcb1(0xdf),'color':_0xfcb1(0xe5),'marginTop':0x8,'textAlign':_0xfcb1(0xdd)}});var _default=exports['default']=SignInStep;function _0x4f55(){const _0x2719c4=['defineProperty','__esModule','SignInStep','object','function','default','CYZAC','juMgP','PfRbf','OFIdi','tpXnO','EkgdW','SClPj','has','call','set','tcUuo','com','org','edu','gov','mil','int','app','tech','online','site','web','info','co.uk','co.nz','co.jp','co.kr','co.in','org.uk','net.au','gov.uk','ac.uk','edu.au','con','cmo','vom','cpm','ckm','comm','comn','copm','ogr','orgg','nte','nett','ent','bet','ioo','lio','gmai','gmial','gmil','gamil','outlok','outloo','outlokk','yhoo','hotmai','hotmal','hotmial','\x20Did\x20you\x20mean\x20.io?','Please\x20enter\x20a\x20valid\x20email\x20address','YVJoS','QOyFX','WVqVE','\x20Did\x20you\x20mean\x20.com?','rog','\x20Did\x20you\x20mean\x20.org?','wTGkw','EjGLs','gmail','outlook','yahoo','hotmail','icloud','aol','protonmail','zoho','yahoo.co.jp','outlook.co.uk','hotmail.co.uk','hotmail.co.jp','LanvQ','trim','test','DvyxU','lastIndexOf','PSAQV','split','TXgbX','length','cXufg','FpCUW','zuKuH','wMqCv','vudLv','ocm','OwxkI','mXuJY','kPPFA','DoPZe','gLkxZ','yIrCK','NoEFI','OAxKU','GwOEn','jJNKQ','Xqafd','cRAWk','XWiXm','xnQlt','\x20Did\x20you\x20mean\x20.net?','iiDFb','eaWKw','ELWGH','XmTvJ','PrZeR','get','mTkoH','getOwnPropertyDescriptor','IOZqZ','Invalid\x20email\x20domain\x20(.','nGQkb','hmIQS','nuQKg',').\x20Please\x20check\x20your\x20email.','slice','join','wdRBX','DcDOH','eRLsa','Pmsft','OvOMB','kbqCI','jQZCI','includes','yahoo.co.uk','ymPPt','yahoo.com.au','zwktH','cFrFU','PBriw','jJnFy','rjcob','ziJkX','OtCKt','test@bypass.com','Invalid\x20email\x20address','โ
\x20Email\x20validation\x20passed','reviewer@bypass.com','XaUcR','keyboardDidShow','keyboardDidHide','padding','height','Sign\x20in\x20or\x20create\x20an\x20account','done','#9CA3AF','useState','Vpjfx','tBBzz','pICeP','FkMOc','BoFpt','wQnuw','Keyboard','addListener','Nacuo','tfAoV','remove','BjDGZ','RapRx','toLowerCase','reviewer','log','๐งช\x20Test\x20bypass\x20detected\x20-\x20skipping\x20to\x20verification\x20screen','tGZbe','DSDrR','isValid','โ\x20Email\x20validation\x20failed:','error','kcdNG','LflxR','useEffect','SdYMZ','FYdKO','qCycX','oEkUx','WHYBO','qTCyl','๐\x20Reviewer\x20bypass\x20detected\x20in\x20new\x20UI','otGxp','createElement','Platform','RRYKP','container','View','headingContainer','Text','title','YLyHk','subtitle','CcNDv','LDCJu','msrIw','KfpXi','dividerLine','googleContainer','Continue','create','100%','IBM\x20Plex\x20Sans','700','COLORS','grey800','left','SPACING','400','grey600','row','center','#E5E5E5','grey500','#DC3545'];_0x4f55=function(){return _0x2719c4;};return _0x4f55();}
|