From 00d7125c0c7493af40529d48189d54dfa7de51e4 Mon Sep 17 00:00:00 2001 From: Aman Chaturvedi Date: Tue, 3 Sep 2024 15:55:27 +0530 Subject: [PATCH 001/124] TP-65692 | moving to case reference id --- src/components/utlis/apiHelper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/utlis/apiHelper.ts b/src/components/utlis/apiHelper.ts index 0a78bad9..ce6d47e6 100644 --- a/src/components/utlis/apiHelper.ts +++ b/src/components/utlis/apiHelper.ts @@ -144,9 +144,9 @@ API_URLS[ApiKeys.GET_CASH_COLLECTED] = '/allocation-cycle/cash-collected-split'; API_URLS[ApiKeys.GET_TELEPHONE_NUMBERS] = '/v2/collection-cases/telephones-view/{loanAccountNumber}'; API_URLS[ApiKeys.GET_TELEPHONE_NUMBERS_V2] = '/collections/{loanAccountNumber}/telephones-agent-call-activity-view'; -API_URLS[ApiKeys.FIRESTORE_INCONSISTENCY_INFO] = '/cases/sync-status'; +API_URLS[ApiKeys.FIRESTORE_INCONSISTENCY_INFO] = '/cases/v2/sync-status'; API_URLS[ApiKeys.GET_CASE_DETAILS_FROM_API] = - '/collection-cases/minimal-collection-case-view/{caseId}'; + '/v2/collection-cases/minimal-collection-case-view/{caseId}'; API_URLS[ApiKeys.DAILY_COMMITMENT] = '/daily-commitment'; API_URLS[ApiKeys.GET_PTP_AMOUNT] = '/ptps-due-view/agent-detail'; API_URLS[ApiKeys.GET_VISIBILITY_STATUS] = '/daily-commitment/visibility'; From 69e989c55de98927d7607d8b6fcd0e51054896d1 Mon Sep 17 00:00:00 2001 From: yashmantri Date: Tue, 3 Sep 2024 17:38:30 +0530 Subject: [PATCH 002/124] TP-80791 | Pulse SDK Integration --- android/app/build.gradle | 3 +++ android/app/src/main/AndroidManifest.xml | 1 - .../main/java/com/avapp/MainApplication.java | 17 +++++++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 55822791..c5a8e226 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -321,6 +321,9 @@ dependencies { implementation(platform("com.google.firebase:firebase-bom:32.2.3")) implementation("com.google.firebase:firebase-config-ktx") implementation("com.google.firebase:firebase-analytics-ktx") + implementation 'com.navi.android:pulse:1.6.0' + // debugImplementation 'com.github.chuckerteam.chucker:library:4.0.0' + // implementation 'com.github.chuckerteam.chucker:library-no-op:4.0.0' //noinspection GradleDynamicVersion implementation "com.facebook.react:react-native:+" // From node_modules diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index e458bfaa..6a3fbbe0 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -30,7 +30,6 @@ - test = new HashMap<>(); + test.put(SCREEN_NAME, BuildConfig.APP_NAME); +// PulseManager.INSTANCE.trackEvent("COSMOS_TEST", test); new ANRWatchDog().setIgnoreDebugger(true).setReportMainThreadOnly().setANRListener(error -> { if (error.getCause().getStackTrace().length == 0) { return; @@ -157,6 +172,7 @@ public class MainApplication extends Application implements ReactApplication { if (isAlfredEnabledFromFirebase && AlfredManager.INSTANCE.isAlfredRecordingEnabled() && alfredConfig.getAnrEnableStatus()) { anrEventProperties.put(STACK_TRACE, error.getCause().getStackTrace()[0].toString()); + PulseManager.INSTANCE.trackEvent("COSMOS_ANR", anrEventProperties); AlfredManager.INSTANCE.handleAnrEvent(anrEventProperties); } }).start(); @@ -184,6 +200,7 @@ public class MainApplication extends Application implements ReactApplication { if (stackTraceElement != null) { crashEventProperties.put(STACK_TRACE, stackTraceElement.toString()); } + PulseManager.INSTANCE.trackEvent("COSMOS_CRASH", crashEventProperties); AlfredManager.INSTANCE.handleCrashEvent(crashEventProperties); } } finally { From 30dca65691e884e0f7d5d6247a93b7cdc0d1f324 Mon Sep 17 00:00:00 2001 From: yashmantri Date: Tue, 3 Sep 2024 18:01:33 +0530 Subject: [PATCH 003/124] TP-80791 | Pulse SDK Integration --- android/app/build.gradle | 4 +--- android/app/src/main/java/com/avapp/MainApplication.java | 6 ++++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index c5a8e226..c0a1e43c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -321,9 +321,7 @@ dependencies { implementation(platform("com.google.firebase:firebase-bom:32.2.3")) implementation("com.google.firebase:firebase-config-ktx") implementation("com.google.firebase:firebase-analytics-ktx") - implementation 'com.navi.android:pulse:1.6.0' - // debugImplementation 'com.github.chuckerteam.chucker:library:4.0.0' - // implementation 'com.github.chuckerteam.chucker:library-no-op:4.0.0' + implementation 'com.navi.android:pulse:1.6.0-SNAPSHOT' //noinspection GradleDynamicVersion implementation "com.facebook.react:react-native:+" // From node_modules diff --git a/android/app/src/main/java/com/avapp/MainApplication.java b/android/app/src/main/java/com/avapp/MainApplication.java index b63fb889..b30857a8 100644 --- a/android/app/src/main/java/com/avapp/MainApplication.java +++ b/android/app/src/main/java/com/avapp/MainApplication.java @@ -31,6 +31,8 @@ import com.github.anrwatchdog.ANRWatchDog; import com.microsoft.codepush.react.CodePush; import com.navi.alfred.AlfredConfig; import com.navi.alfred.AlfredManager; +import com.navi.pulse.PulseManager; +import com.navi.pulse.PulseSDKConfig; import android.database.CursorWindow; @@ -106,7 +108,7 @@ public class MainApplication extends Application implements ReactApplication { .setEventBatchSize(1) .setEventInterval(2000) .build(); - PulseManager.INSTANCE.init(pulseConfig, this, null); + PulseManager.INSTANCE.init(pulseConfig, this, null, false); setupAlfredANRWatchDog(alfredConfig); setupAlfredCrashReporting(alfredConfig); @@ -158,7 +160,7 @@ public class MainApplication extends Application implements ReactApplication { private void setupAlfredANRWatchDog(AlfredConfig alfredConfig) { Map test = new HashMap<>(); test.put(SCREEN_NAME, BuildConfig.APP_NAME); -// PulseManager.INSTANCE.trackEvent("COSMOS_TEST", test); + PulseManager.INSTANCE.trackEvent("COSMOS_TEST", test); new ANRWatchDog().setIgnoreDebugger(true).setReportMainThreadOnly().setANRListener(error -> { if (error.getCause().getStackTrace().length == 0) { return; From 66689301ec45374e6929087956415e751cac50ec Mon Sep 17 00:00:00 2001 From: yashmantri Date: Tue, 3 Sep 2024 23:15:33 +0530 Subject: [PATCH 004/124] TP-80791 | Pulse SDK Integration --- .../main/java/com/avapp/DeviceUtilsModule.java | 2 ++ .../src/main/java/com/avapp/MainApplication.java | 15 +++++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/android/app/src/main/java/com/avapp/DeviceUtilsModule.java b/android/app/src/main/java/com/avapp/DeviceUtilsModule.java index 73d0b580..478e0dd0 100644 --- a/android/app/src/main/java/com/avapp/DeviceUtilsModule.java +++ b/android/app/src/main/java/com/avapp/DeviceUtilsModule.java @@ -22,6 +22,7 @@ import com.facebook.react.bridge.ReactContextBaseJavaModule; import com.facebook.react.bridge.ReactMethod; import com.facebook.react.uimanager.UIManagerModule; import com.navi.alfred.AlfredManager; +import com.navi.pulse.PulseManager; import android.content.pm.PackageInfo; import android.os.Environment; @@ -147,6 +148,7 @@ public class DeviceUtilsModule extends ReactContextBaseJavaModule { public void setUserId(String userId) { if (isAlfredEnabledFromFirebase) { AlfredManager.INSTANCE.getConfig$navi_alfred_release().setUserId(userId); + PulseManager.INSTANCE.setUserId(userId); } } diff --git a/android/app/src/main/java/com/avapp/MainApplication.java b/android/app/src/main/java/com/avapp/MainApplication.java index b30857a8..c19b7403 100644 --- a/android/app/src/main/java/com/avapp/MainApplication.java +++ b/android/app/src/main/java/com/avapp/MainApplication.java @@ -86,6 +86,12 @@ public class MainApplication extends Application implements ReactApplication { } } + public String getDestinationUrl(String buildFlavor) { + return "prod".equals(buildFlavor) + ? "https://janus.prod.navi-tech.in/" + : "https://dev-janus.np.navi-tech.in/"; + } + @Override public void onCreate() { super.onCreate(); @@ -104,7 +110,7 @@ public class MainApplication extends Application implements ReactApplication { .setAppName(BuildConfig.APP_NAME) .setAppVersion(String.valueOf(BuildConfig.VERSION_CODE)) .setAppVersionName(BuildConfig.VERSION_NAME) - .setDestinationUrl("https://janus.prod.navi-tech.in/") + .setDestinationUrl(getDestinationUrl(BuildConfig.BUILD_FLAVOR)) .setEventBatchSize(1) .setEventInterval(2000) .build(); @@ -158,9 +164,6 @@ public class MainApplication extends Application implements ReactApplication { } private void setupAlfredANRWatchDog(AlfredConfig alfredConfig) { - Map test = new HashMap<>(); - test.put(SCREEN_NAME, BuildConfig.APP_NAME); - PulseManager.INSTANCE.trackEvent("COSMOS_TEST", test); new ANRWatchDog().setIgnoreDebugger(true).setReportMainThreadOnly().setANRListener(error -> { if (error.getCause().getStackTrace().length == 0) { return; @@ -172,7 +175,7 @@ public class MainApplication extends Application implements ReactApplication { anrEventProperties.put(APP_IN_FOREGROUND, MainActivity.isAppInForeground().toString()); if (isAlfredEnabledFromFirebase && AlfredManager.INSTANCE.isAlfredRecordingEnabled() - && alfredConfig.getAnrEnableStatus()) { + && alfredConfig.getAnrEnableStatus() && MainActivity.isAppInForeground()) { anrEventProperties.put(STACK_TRACE, error.getCause().getStackTrace()[0].toString()); PulseManager.INSTANCE.trackEvent("COSMOS_ANR", anrEventProperties); AlfredManager.INSTANCE.handleAnrEvent(anrEventProperties); @@ -197,7 +200,7 @@ public class MainApplication extends Application implements ReactApplication { crashEventProperties.put(APP_IN_FOREGROUND, MainActivity.isAppInForeground().toString()); if (isAlfredEnabledFromFirebase && AlfredManager.INSTANCE.isAlfredRecordingEnabled() - && alfredConfig.getCrashEnableStatus()) { + && alfredConfig.getCrashEnableStatus() && MainActivity.isAppInForeground()) { StackTraceElement stackTraceElement = exception.getStackTrace()[0]; if (stackTraceElement != null) { crashEventProperties.put(STACK_TRACE, stackTraceElement.toString()); From f218a6b77c8efdae58e3637c6659259503e5fda0 Mon Sep 17 00:00:00 2001 From: yashmantri Date: Wed, 4 Sep 2024 15:32:08 +0530 Subject: [PATCH 005/124] TP-80791 | Pulse SDK Integration --- .../app/src/main/java/com/avapp/DeviceUtilsModule.java | 2 +- .../app/src/main/java/com/avapp/MainApplication.java | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/android/app/src/main/java/com/avapp/DeviceUtilsModule.java b/android/app/src/main/java/com/avapp/DeviceUtilsModule.java index 478e0dd0..dc3eefc1 100644 --- a/android/app/src/main/java/com/avapp/DeviceUtilsModule.java +++ b/android/app/src/main/java/com/avapp/DeviceUtilsModule.java @@ -148,8 +148,8 @@ public class DeviceUtilsModule extends ReactContextBaseJavaModule { public void setUserId(String userId) { if (isAlfredEnabledFromFirebase) { AlfredManager.INSTANCE.getConfig$navi_alfred_release().setUserId(userId); - PulseManager.INSTANCE.setUserId(userId); } + PulseManager.INSTANCE.setUserId(userId); } @ReactMethod diff --git a/android/app/src/main/java/com/avapp/MainApplication.java b/android/app/src/main/java/com/avapp/MainApplication.java index c19b7403..f51c2743 100644 --- a/android/app/src/main/java/com/avapp/MainApplication.java +++ b/android/app/src/main/java/com/avapp/MainApplication.java @@ -107,7 +107,7 @@ public class MainApplication extends Application implements ReactApplication { PulseSDKConfig.Configuration pulseConfig = new PulseSDKConfig.Configuration.Builder() - .setAppName(BuildConfig.APP_NAME) + .setAppName("collections-agent-app") .setAppVersion(String.valueOf(BuildConfig.VERSION_CODE)) .setAppVersionName(BuildConfig.VERSION_NAME) .setDestinationUrl(getDestinationUrl(BuildConfig.BUILD_FLAVOR)) @@ -177,7 +177,9 @@ public class MainApplication extends Application implements ReactApplication { if (isAlfredEnabledFromFirebase && AlfredManager.INSTANCE.isAlfredRecordingEnabled() && alfredConfig.getAnrEnableStatus() && MainActivity.isAppInForeground()) { anrEventProperties.put(STACK_TRACE, error.getCause().getStackTrace()[0].toString()); - PulseManager.INSTANCE.trackEvent("COSMOS_ANR", anrEventProperties); + if("release".equals(BuildConfig.BUILD_TYPE)) { + PulseManager.INSTANCE.trackEvent("COSMOS_ANR", anrEventProperties); + } AlfredManager.INSTANCE.handleAnrEvent(anrEventProperties); } }).start(); @@ -205,7 +207,9 @@ public class MainApplication extends Application implements ReactApplication { if (stackTraceElement != null) { crashEventProperties.put(STACK_TRACE, stackTraceElement.toString()); } - PulseManager.INSTANCE.trackEvent("COSMOS_CRASH", crashEventProperties); + if("release".equals(BuildConfig.BUILD_TYPE)) { + PulseManager.INSTANCE.trackEvent("COSMOS_CRASH", crashEventProperties); + } AlfredManager.INSTANCE.handleCrashEvent(crashEventProperties); } } finally { From d4b6ce3714537eb5bd4229ea9927fc59cc1bfd73 Mon Sep 17 00:00:00 2001 From: Aman Chaturvedi Date: Wed, 4 Sep 2024 19:43:16 +0530 Subject: [PATCH 006/124] TP-65692 | case collection manager --- src/common/Constants.ts | 1 + src/common/TrackingComponent.tsx | 8 ++++- src/components/utlis/apiHelper.ts | 18 ++++++++---- src/hooks/useResyncFirebase.ts | 36 ++++++++++++++++++----- src/screens/auth/ProtectedRouter.tsx | 20 +++++++++++-- src/services/litmusExperiments.service.ts | 2 ++ 6 files changed, 69 insertions(+), 16 deletions(-) diff --git a/src/common/Constants.ts b/src/common/Constants.ts index d2fd3918..9f94934c 100644 --- a/src/common/Constants.ts +++ b/src/common/Constants.ts @@ -1341,6 +1341,7 @@ export const LocalStorageKeys = { LAST_AUDIO_SYNC_TIME: 'lastAudioSyncTime', LAST_ACCOUNTS_SYNC_TIME: 'lastAccountsSyncTime', LAST_CALENDAR_SYNC_TIME: 'lastCalendarSyncTime', + COSMOS_CASE_COLLECTION_MANAGER_ENABLE: 'cosmosCaseCollectionManager', }; export const SourceTextFocused = new Set(['Primary Contact', 'Secondary Contact']); diff --git a/src/common/TrackingComponent.tsx b/src/common/TrackingComponent.tsx index 3f750870..dbd4e17f 100644 --- a/src/common/TrackingComponent.tsx +++ b/src/common/TrackingComponent.tsx @@ -88,7 +88,7 @@ export enum FOREGROUND_TASKS { AUDIO_UPLOAD_JOB = 'AUDIO_UPLOAD_JOB', DATA_SYNC_JOB = 'DATA_SYNC_JOB', NEARBY_CASES_GEOLOCATION_CHECK = 'NEARBY_CASES_GEOLOCATION_CHECK', - WIFI_DETAILS_SYNC = 'WIFI_DETAILS_SYNC' + WIFI_DETAILS_SYNC = 'WIFI_DETAILS_SYNC', } interface ITrackingComponent { @@ -401,6 +401,12 @@ const TrackingComponent: React.FC = ({ children }) => { LitmusExperimentNameMap[LitmusExperimentName.ENABLE_IMAGE_GEO_TAGGING], { 'x-customer-id': GLOBAL.AGENT_ID } ); + getLitmusExperimentResult( + LitmusExperimentNameMap[LitmusExperimentName.COSMOS_CASE_COLLECTION_MANAGER], + { 'x-customer-id': GLOBAL.AGENT_ID } + ).then((response) => { + setAsyncStorageItem(LocalStorageKeys.COSMOS_CASE_COLLECTION_MANAGER_ENABLE, response); + }); updateImageUploadComponent(enableFeedbackImageGeotagging); if ( MS_CLARITY_PROJECT_ID && diff --git a/src/components/utlis/apiHelper.ts b/src/components/utlis/apiHelper.ts index ce6d47e6..d653b5d4 100644 --- a/src/components/utlis/apiHelper.ts +++ b/src/components/utlis/apiHelper.ts @@ -65,7 +65,9 @@ export enum ApiKeys { GET_TELEPHONE_NUMBERS = 'GET_TELEPHONE_NUMBERS', GET_TELEPHONE_NUMBERS_V2 = 'GET_TELEPHONE_NUMBERS_V2', FIRESTORE_INCONSISTENCY_INFO = 'FIRESTORE_INCONSISTENCY_INFO', + FIRESTORE_INCONSISTENCY_INFO_V2 = 'FIRESTORE_INCONSISTENCY_INFO_V2', GET_CASE_DETAILS_FROM_API = 'GET_CASE_DETAILS_FROM_API', + GET_CASE_DETAILS_FROM_API_V2 = 'GET_CASE_DETAILS_FROM_API_V2', DAILY_COMMITMENT = 'DAILY_COMMITMENT', GET_PTP_AMOUNT = 'GET_PTP_AMOUNT', GET_VISIBILITY_STATUS = 'GET_VISIBILITY_STATUS', @@ -143,9 +145,13 @@ API_URLS[ApiKeys.GET_PERFORMANCE_METRICS] = '/allocation-cycle/agent-performance API_URLS[ApiKeys.GET_CASH_COLLECTED] = '/allocation-cycle/cash-collected-split'; API_URLS[ApiKeys.GET_TELEPHONE_NUMBERS] = '/v2/collection-cases/telephones-view/{loanAccountNumber}'; -API_URLS[ApiKeys.GET_TELEPHONE_NUMBERS_V2] = '/collections/{loanAccountNumber}/telephones-agent-call-activity-view'; -API_URLS[ApiKeys.FIRESTORE_INCONSISTENCY_INFO] = '/cases/v2/sync-status'; +API_URLS[ApiKeys.GET_TELEPHONE_NUMBERS_V2] = + '/collections/{loanAccountNumber}/telephones-agent-call-activity-view'; +API_URLS[ApiKeys.FIRESTORE_INCONSISTENCY_INFO] = '/cases/sync-status'; +API_URLS[ApiKeys.FIRESTORE_INCONSISTENCY_INFO_V2] = '/cases/v2/sync-status'; API_URLS[ApiKeys.GET_CASE_DETAILS_FROM_API] = + '/collection-cases/minimal-collection-case-view/{caseId}'; +API_URLS[ApiKeys.GET_CASE_DETAILS_FROM_API_V2] = '/v2/collection-cases/minimal-collection-case-view/{caseId}'; API_URLS[ApiKeys.DAILY_COMMITMENT] = '/daily-commitment'; API_URLS[ApiKeys.GET_PTP_AMOUNT] = '/ptps-due-view/agent-detail'; @@ -171,10 +177,12 @@ API_URLS[ApiKeys.DUE_AMOUNT_SUMMARY] = '/collection-cases/{loanAccountNumber}/am API_URLS[ApiKeys.FEE_WAIVER_HISTORY] = '/collection-cases/{loanAccountNumber}/waiver-history'; API_URLS[ApiKeys.FEE_WAIVER_V2] = '/loan/request/{loanAccountNumber}/adjust-component/v2'; API_URLS[ApiKeys.GET_PIN_CODES_DETAILS] = '/api/v1/pincodes/{pinCode}'; -API_URLS[ApiKeys.CALL_CUSTOMER] = '/call-recording/call-request/{loanAccountNumber}/{telephoneReferenceId}'; +API_URLS[ApiKeys.CALL_CUSTOMER] = + '/call-recording/call-request/{loanAccountNumber}/{telephoneReferenceId}'; API_URLS[ApiKeys.SYNC_ACTIVE_CALL_DETAILS] = '/call-recording/call-status'; API_URLS[ApiKeys.GET_CALL_HISTORY] = '/call-recording/call-history/{loanAccountNumber}'; -API_URLS[ApiKeys.SYNC_CALL_FEEDBACK_NUDGE_DETAILS] = '/call-recording/acknowledge-feedback-nudge/{callId}'; +API_URLS[ApiKeys.SYNC_CALL_FEEDBACK_NUDGE_DETAILS] = + '/call-recording/acknowledge-feedback-nudge/{callId}'; API_URLS[ApiKeys.FETCH_CUSTOMER_DOCUMENTS] = '/documents/{loanAccountNumber}'; API_URLS[ApiKeys.FETCH_AGENT_DOCUMENTS] = '/documents/agent'; API_URLS[ApiKeys.FETCH_DOCUMENT_SPECIFIC_LANGUAGE] = '/documents/language/{loanAccountNumber}'; @@ -346,7 +354,7 @@ axiosInstance.interceptors.response.use( ); axiosInstance.defaults.headers.common['Content-Type'] = 'application/json'; -axiosInstance.defaults.baseURL = BASE_AV_APP_URL; +axiosInstance.defaults.baseURL = 'https://qa-longhorn-server.np.navi-ppl.in/field-app'//BASE_AV_APP_URL; // TODO:: Ideally should happen through middlewares. export const registerNavigateAndDispatch = (dispatchParam: Dispatch) => diff --git a/src/hooks/useResyncFirebase.ts b/src/hooks/useResyncFirebase.ts index 532bad01..1eb7222f 100644 --- a/src/hooks/useResyncFirebase.ts +++ b/src/hooks/useResyncFirebase.ts @@ -2,7 +2,12 @@ import firestore from '@react-native-firebase/firestore'; import { useAppDispatch, useAppSelector } from '@hooks'; import store, { type RootState } from '@store'; import { updateCaseDetailsFirestore } from '@reducers/allCasesSlice'; -import { CLICKSTREAM_EVENT_NAMES, FirestoreUpdateTypes, SyncedSource } from '@common/Constants'; +import { + CLICKSTREAM_EVENT_NAMES, + FirestoreUpdateTypes, + LocalStorageKeys, + SyncedSource, +} from '@common/Constants'; import axiosInstance, { ApiKeys, getApiUrl } from '@utils/apiHelper'; import { getSyncCaseIds } from '@utils/firebaseFallbackUtils'; import { logError } from '@utils/errorUtils'; @@ -15,6 +20,7 @@ import { getFirestoreResyncIntervalInMinutes, } from '@common/AgentActivityConfigurableConstants'; import AsyncStorage from '@react-native-async-storage/async-storage'; +import { getAsyncStorageItem } from '@components/utlis/commonFunctions'; const selectedAgentReferenceIDForMyCases = 'MY_CASES'; @@ -33,10 +39,19 @@ const useResyncFirebase = () => { const selectedAgentRefId = store?.getState()?.user?.selectedAgent?.referenceId || ''; const refIdForLoggedInAndSelectedUser = selectedAgentRefId === selectedAgentReferenceIDForMyCases ? refId : selectedAgentRefId; - const _getCaseDetailsFromApi = (caseId: string) => { - const getCaseDetailsFromApiUrl = getApiUrl(ApiKeys.GET_CASE_DETAILS_FROM_API, { - caseId: caseId, - }); + + const _getCaseDetailsFromApi = async (caseId: string) => { + const enableCaseCollectionManager = + (await getAsyncStorageItem(LocalStorageKeys.COSMOS_CASE_COLLECTION_MANAGER_ENABLE, true)) ?? + false; + const getCaseDetailsFromApiUrl = getApiUrl( + enableCaseCollectionManager + ? ApiKeys.GET_CASE_DETAILS_FROM_API_V2 + : ApiKeys.GET_CASE_DETAILS_FROM_API, + { + caseId: caseId, + } + ); return axiosInstance.get(getCaseDetailsFromApiUrl, { params: { @@ -78,10 +93,17 @@ const useResyncFirebase = () => { if (minutesSinceLastResync < getFirestoreResyncIntervalInMinutes()) { return; } - console.log('firebase resync started'); void addClickstreamEvent(CLICKSTREAM_EVENT_NAMES.FA_FIREBASE_RESYNC_STARTED); - const getFirestoreInconsistencyUrl = getApiUrl(ApiKeys.FIRESTORE_INCONSISTENCY_INFO); + const enableCaseCollectionManager = + (await getAsyncStorageItem(LocalStorageKeys.COSMOS_CASE_COLLECTION_MANAGER_ENABLE, true)) ?? + false; + + const getFirestoreInconsistencyUrl = getApiUrl( + enableCaseCollectionManager + ? ApiKeys.FIRESTORE_INCONSISTENCY_INFO_V2 + : ApiKeys.FIRESTORE_INCONSISTENCY_INFO + ); const casesList = store?.getState()?.allCases?.casesList || []; const casesPath = `allocations/${refIdForLoggedInAndSelectedUser}/cases`; const localCases = getSyncCaseIds(casesList); diff --git a/src/screens/auth/ProtectedRouter.tsx b/src/screens/auth/ProtectedRouter.tsx index 08ee9911..945b0237 100644 --- a/src/screens/auth/ProtectedRouter.tsx +++ b/src/screens/auth/ProtectedRouter.tsx @@ -5,8 +5,11 @@ import { import React, { useEffect, useState } from 'react'; import { _map, MILLISECONDS_IN_A_MINUTE } from '../../../RN-UI-LIB/src/utlis/common'; import { getNotifications, notificationAction } from '../../action/notificationActions'; -import { SCREEN_ANIMATION_DURATION } from '../../common/Constants'; -import { getScreenFocusListenerObj } from '../../components/utlis/commonFunctions'; +import { LocalStorageKeys, SCREEN_ANIMATION_DURATION } from '../../common/Constants'; +import { + getScreenFocusListenerObj, + setAsyncStorageItem, +} from '../../components/utlis/commonFunctions'; import { useAppDispatch, useAppSelector } from '../../hooks'; import useFirestoreUpdates from '../../hooks/useFirestoreUpdates'; import useIsOnline from '../../hooks/useIsOnline'; @@ -24,7 +27,10 @@ import useResyncFirebase from '@hooks/useResyncFirebase'; import CaseDetailStack from '@screens/caseDetails/CaseDetailStack'; import { getFirestoreResyncIntervalInMinutes } from '@common/AgentActivityConfigurableConstants'; import { getSelfieDocument } from '@actions/profileActions'; -import getLitmusExperimentResult, { LitmusExperimentName, LitmusExperimentNameMap } from '@services/litmusExperiments.service'; +import getLitmusExperimentResult, { + LitmusExperimentName, + LitmusExperimentNameMap, +} from '@services/litmusExperiments.service'; import { GLOBAL } from '@constants/Global'; import { updateImageUploadComponent } from '@components/form/services/formComponents'; @@ -68,6 +74,14 @@ const ProtectedRouter = () => { ).then((response) => { updateImageUploadComponent(response); }); + getLitmusExperimentResult( + LitmusExperimentNameMap[LitmusExperimentName.COSMOS_CASE_COLLECTION_MANAGER], + { + 'x-customer-id': GLOBAL.AGENT_ID, + } + ).then((response) => { + setAsyncStorageItem(LocalStorageKeys.COSMOS_CASE_COLLECTION_MANAGER_ENABLE, response); + }); } }, [isOnline]); diff --git a/src/services/litmusExperiments.service.ts b/src/services/litmusExperiments.service.ts index 9d070a68..a56e6532 100644 --- a/src/services/litmusExperiments.service.ts +++ b/src/services/litmusExperiments.service.ts @@ -10,6 +10,7 @@ export enum LitmusExperimentName { COSMOS_DATA_SYNC = 'data_sync', MS_CLARITY = 'ms_clarity', ENABLE_IMAGE_GEO_TAGGING = 'enable_image_geotagging', + COSMOS_CASE_COLLECTION_MANAGER = 'cosmos_case_collection_manager', } export const LitmusExperimentNameMap = { @@ -18,6 +19,7 @@ export const LitmusExperimentNameMap = { [LitmusExperimentName.COSMOS_DATA_SYNC]: 'data_sync', [LitmusExperimentName.MS_CLARITY]: 'cosmos_ms_clarity', [LitmusExperimentName.ENABLE_IMAGE_GEO_TAGGING]: 'enable_image_geotagging', + [LitmusExperimentName.COSMOS_CASE_COLLECTION_MANAGER]: 'cosmos_case_collection_manager', }; const getLitmusExperimentResult = async ( From 385f7bae3b63d45dc315ec1a9b59126886cf1c83 Mon Sep 17 00:00:00 2001 From: Aman Chaturvedi Date: Thu, 5 Sep 2024 20:36:39 +0530 Subject: [PATCH 007/124] TP-65692 | fix --- src/components/utlis/apiHelper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/utlis/apiHelper.ts b/src/components/utlis/apiHelper.ts index d653b5d4..fe4c2b2d 100644 --- a/src/components/utlis/apiHelper.ts +++ b/src/components/utlis/apiHelper.ts @@ -354,7 +354,7 @@ axiosInstance.interceptors.response.use( ); axiosInstance.defaults.headers.common['Content-Type'] = 'application/json'; -axiosInstance.defaults.baseURL = 'https://qa-longhorn-server.np.navi-ppl.in/field-app'//BASE_AV_APP_URL; +axiosInstance.defaults.baseURL = BASE_AV_APP_URL; // TODO:: Ideally should happen through middlewares. export const registerNavigateAndDispatch = (dispatchParam: Dispatch) => From 50ac7d4555a29d54fce24e40502d4064aa0d7191 Mon Sep 17 00:00:00 2001 From: yashmantri Date: Sun, 8 Sep 2024 17:28:18 +0530 Subject: [PATCH 008/124] TP-60588 | Splash Screen --- android/app/build.gradle | 1 + android/app/src/main/AndroidManifest.xml | 1 + .../app/src/main/java/com/avapp/MainActivity.java | 3 +++ .../app/src/main/res/drawable/ic_cosmos_launcher.xml | 12 ++++++++++++ android/app/src/main/res/values/styles.xml | 11 +++++++++++ 5 files changed, 28 insertions(+) create mode 100644 android/app/src/main/res/drawable/ic_cosmos_launcher.xml diff --git a/android/app/build.gradle b/android/app/build.gradle index 55822791..6d5d37e3 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -321,6 +321,7 @@ dependencies { implementation(platform("com.google.firebase:firebase-bom:32.2.3")) implementation("com.google.firebase:firebase-config-ktx") implementation("com.google.firebase:firebase-analytics-ktx") + implementation 'androidx.core:core-splashscreen:1.0.1' //noinspection GradleDynamicVersion implementation "com.facebook.react:react-native:+" // From node_modules diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index e458bfaa..d96078a2 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -77,6 +77,7 @@ + + + \ No newline at end of file diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml index 7ba83a2a..59fdc236 100644 --- a/android/app/src/main/res/values/styles.xml +++ b/android/app/src/main/res/values/styles.xml @@ -6,4 +6,15 @@ @drawable/rn_edit_text_material + + From 1b2cb25e1c70f25e8fefce31e9b7f5bd580722ea Mon Sep 17 00:00:00 2001 From: yashmantri Date: Mon, 9 Sep 2024 14:27:20 +0530 Subject: [PATCH 009/124] TP-60588 | Code push loading screen --- App.tsx | 61 ++++++++++++++++++++++++++----- CodePushModal.tsx | 92 +++++++++++++++++++++++++++++++++++++++++++++++ ProgressBar.tsx | 43 ++++++++++++++++++++++ loader.json | 1 + 4 files changed, 188 insertions(+), 9 deletions(-) create mode 100644 CodePushModal.tsx create mode 100644 ProgressBar.tsx create mode 100644 loader.json diff --git a/App.tsx b/App.tsx index d3305db7..b33706e4 100644 --- a/App.tsx +++ b/App.tsx @@ -10,7 +10,13 @@ import { StatusBar, type Permission, } from 'react-native'; -import { default as codePush, default as CodePush } from 'react-native-code-push'; +import { + default as codePush, + default as CodePush, + DownloadProgress, + DownloadProgressCallback, + SyncStatusChangedCallback, +} from 'react-native-code-push'; import { Provider } from 'react-redux'; import { PersistGate } from 'redux-persist/integration/react'; import store, { persistor } from './src/store/store'; @@ -44,6 +50,7 @@ import { setJsErrorHandler } from './src/services/exception-handler.service'; import fetchUpdatedRemoteConfig from './src/services/firebaseFetchAndUpdate.service'; import { StorageKeys } from './src/types/storageKeys'; import { setCurrentScreenName } from 'react-native-clarity'; +import CodePushLoadingModal, { CodePushLoadingModalRef } from './CodePushModal'; initSentry(); @@ -56,17 +63,28 @@ LogBox.ignoreAllLogs(); export let GlobalDocumentMap: Record = {}; -async function checkCodePushAndSync() { +async function checkCodePushAndSync( + onSyncStatusChange: SyncStatusChangedCallback, + onDownloadProgress: DownloadProgressCallback +) { try { - await CodePush.sync({ - installMode: codePush.InstallMode.IMMEDIATE, - }); + await CodePush.sync( + { + installMode: codePush.InstallMode.IMMEDIATE, + }, + onSyncStatusChange, + onDownloadProgress + ); } catch (error) {} } -function handleAppStateChange(nextAppState: any) { +function handleAppStateChange( + nextAppState: any, + onSyncStatusChange: SyncStatusChangedCallback, + onDownloadProgress: DownloadProgressCallback +) { if (nextAppState == 'active') { - checkCodePushAndSync(); + checkCodePushAndSync(onSyncStatusChange, onDownloadProgress); } } @@ -74,6 +92,8 @@ const PERMISSION_CHECK_POLL_INTERVAL = 5 * MILLISECONDS_IN_A_SECOND; function App() { const [permissions, setPermissions] = React.useState(true); + const modalRef = React.useRef(null); + const askForPermissions = async () => { const permissionsToRequest = await getPermissionsToRequest(); if (Platform.OS === 'android') { @@ -94,6 +114,28 @@ function App() { } }; + const onSyncStatusChange = (syncStatus: codePush.SyncStatus) => { + switch (syncStatus) { + case codePush.SyncStatus.DOWNLOADING_PACKAGE: + modalRef.current?.show(); + break; + case codePush.SyncStatus.INSTALLING_UPDATE: + break; + case codePush.SyncStatus.UP_TO_DATE: + modalRef.current?.hide(); + break; + default: + modalRef.current?.hide(); + break; + } + }; + + const onDownloadProgress = (downloadProgress: DownloadProgress) => { + if (downloadProgress) { + modalRef.current?.updateProgress(downloadProgress); + } + }; + const getActiveRouteName = (state) => { if (!state || typeof state.index !== 'number') { return 'Unknown'; @@ -126,7 +168,7 @@ function App() { fetchUpdatedRemoteConfig(); askForPermissions(); const appStateChange = AppState.addEventListener('change', async (change) => { - handleAppStateChange(change); + handleAppStateChange(change, onSyncStatusChange, onDownloadProgress); hydrateGlobalImageMap(); }); (async () => { @@ -136,7 +178,7 @@ function App() { GlobalDocumentMap = parsedData; } })(); - checkCodePushAndSync(); + checkCodePushAndSync(onSyncStatusChange, onDownloadProgress); setForegroundTimeStampAndClickstream(); return () => { @@ -166,6 +208,7 @@ function App() { {permissions ? : } + ); diff --git a/CodePushModal.tsx b/CodePushModal.tsx new file mode 100644 index 00000000..279aa2cd --- /dev/null +++ b/CodePushModal.tsx @@ -0,0 +1,92 @@ +import { COLORS } from '@rn-ui-lib/colors'; +import ProgressBar from './ProgressBar'; +import React, { forwardRef, useImperativeHandle, useState } from 'react'; +import { View, StyleSheet } from 'react-native'; +import { DownloadProgress } from 'react-native-code-push'; +import ModalWrapperForAlfredV2 from '@common/ModalWrapperForAlfredV2'; +import LottieView from 'lottie-react-native'; +import Text from '@rn-ui-lib/components/Text'; +import NaviLogoWithTextIcon from '@rn-ui-lib/icons/NaviLogoWithTextIcon'; + +export interface CodePushLoadingModalRef { + show: () => void; + hide: () => void; + updateProgress: (progress: DownloadProgress) => void; +} + +const CodePushLoadingModal = forwardRef((_, ref) => { + const [visible, setVisible] = useState(false); + const [progress, setProgress] = useState(); + + useImperativeHandle(ref, () => ({ + show: () => setVisible(true), + hide: () => setVisible(false), + updateProgress: (downloadProgress: DownloadProgress) => setProgress(downloadProgress), + })); + + const getInMb = (progress: number) => { + if (progress) return `${(progress / 1024 / 1024).toFixed(2)} MB`; + return '-'; + }; + + return ( + + + + + + + + + {progress ? ( + + Updating to a newer version... + + + {getInMb(progress?.receivedBytes)} / {getInMb(progress?.totalBytes)} + + + ) : null} + + + + + + + ); +}); + +const styles = StyleSheet.create({ + modalContainer: { + flex: 1, + padding: 20, + }, + modalContent: { + flex: 1, + justifyContent: 'center', + }, + header: { + fontSize: 14, + color: COLORS.TEXT.BLACK_24, + paddingTop: 24, + paddingBottom: 6, + }, + progressText: { + color: COLORS.TEXT.BLACK_24, + fontSize: 14, + fontWeight: '700', + marginTop: 6, + }, + progressBar: { + width: '100%', + height: 2, + marginTop: 10, + }, +}); + +export default CodePushLoadingModal; diff --git a/ProgressBar.tsx b/ProgressBar.tsx new file mode 100644 index 00000000..54fd6182 --- /dev/null +++ b/ProgressBar.tsx @@ -0,0 +1,43 @@ +import { COLORS } from '@rn-ui-lib/colors'; +import React, { useState, useEffect } from 'react'; +import { View, Text, Animated, StyleSheet } from 'react-native'; + +const ProgressBar = ({ progress, height = 10, color = '#18bf5f'}) => { + const [animatedWidth] = useState(new Animated.Value(0)); + + console.log({progress}) + useEffect(() => { + Animated.timing(animatedWidth, { + toValue: progress * 100, + duration: 500, + useNativeDriver: false, + }).start(); + }, [progress]); + + return ( + + + + ); +}; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#e0e0e0', + borderRadius: 8, + overflow: 'hidden', + }, + fill: { + height: '100%', + }, +}); + +export default ProgressBar; diff --git a/loader.json b/loader.json new file mode 100644 index 00000000..a034d39f --- /dev/null +++ b/loader.json @@ -0,0 +1 @@ +{"nm":"Comp 1","ddd":0,"h":500,"w":500,"meta":{"g":"@lottiefiles/toolkit-js 0.33.2"},"layers":[{"ty":3,"nm":"hz","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[270],"t":45},{"s":[360],"t":57.0000023216576}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":0,"ix":11}},"ef":[],"ind":1},{"ty":3,"nm":"pink","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[180],"t":45},{"s":[270],"t":57.0000023216576}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":0,"ix":11}},"ef":[],"ind":2},{"ty":3,"nm":"yellow","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[90],"t":45},{"s":[180],"t":57.0000023216576}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":0,"ix":11}},"ef":[],"ind":3},{"ty":3,"nm":"blue","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":45},{"s":[90],"t":57.0000023216576}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":0,"ix":11}},"ef":[],"ind":4},{"ty":4,"nm":"Shape Layer 7","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[54.75,35.25,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.34,"y":-0.005},"i":{"x":0.4,"y":0.999},"s":[0,0,100],"t":1},{"o":{"x":0.151,"y":0.004},"i":{"x":0.7,"y":1.001},"s":[250,250,100],"t":10},{"o":{"x":0.151,"y":-0.008},"i":{"x":0.829,"y":0.999},"s":[150,150,100],"t":17},{"o":{"x":0.6,"y":0.054},"i":{"x":0.829,"y":1.002},"s":[210,210,100],"t":24},{"s":[180,180,100],"t":31.0000012626559}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.5,"y":1},"s":[117.75,20.25,0],"t":4,"ti":[37.25,-21,0],"to":[0.667,31.5,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[61.75,104.25,0],"t":10,"ti":[20.5,7.375,0],"to":[-37.25,21,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.25,110.75,0],"t":17,"ti":[0,0,0],"to":[-20.5,-7.375,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.8,"y":1},"s":[-96.25,71.75,0],"t":24,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-115.25,29.75,0],"t":31,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-119.25,3.75,0],"t":36,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.8,"y":0},"i":{"x":0.8,"y":1},"s":[-119.25,3.75,0],"t":55,"ti":[21.25,-400.75,0],"to":[0,0,0]},{"s":[-10.25,69.75,0],"t":66.0000026882351}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[100],"t":57},{"s":[0],"t":61.0000024845809}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-29.409,0],[-8.264,-5.274],[-1.297,-1.007],[-3.361,-5.447],[0,-10.239],[3.97,-7.454],[2.343,-2.806],[5.188,-3.094],[9.954,0],[0,29.409]],"o":[[10.53,0],[1.388,0.886],[5.036,3.912],[5.009,8.118],[0,9.035],[-1.732,3.252],[-3.851,4.613],[-7.97,4.754],[-29.409,0],[0,-29.409]],"v":[[0,-53.25],[28.61,-44.919],[32.64,-42.077],[45.352,-27.921],[53.25,0],[47.03,24.998],[40.895,34.107],[27.239,45.765],[0,53.25],[-53.25,0]]}],"t":35},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-19.305,4.111],[-9.438,-2.461],[-1.56,-0.563],[-4.633,-4.851],[0.793,-14.942],[7.248,-8.113],[3.794,-2.694],[6.608,-2.405],[6.064,0.113],[-1.722,26.528]],"o":[[6.912,-1.472],[1.586,0.413],[6.057,2.186],[6.904,7.229],[-0.7,13.184],[-3.162,3.539],[-6.236,4.428],[-10.152,3.694],[-26.528,-1.722],[1.722,-26.528]],"v":[[8.333,-61.861],[34.335,-60.963],[39.06,-59.501],[55.504,-49.107],[66.028,-16.389],[52.981,15.337],[42.454,24.669],[22.773,34.838],[-3.056,39.917],[-43.806,-6.389]]}],"t":38},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-32.917,3.833],[-13.355,-3.368],[-2.159,-0.727],[-5.745,-5.552],[3.307,-15.619],[8.994,-3.833],[5,-0.045],[11.197,3.445],[22.639,7.556],[-1.333,12.639]],"o":[[11.786,-1.373],[2.244,0.566],[8.385,2.825],[8.561,8.274],[-3.509,14.512],[-3.924,1.672],[-8.219,0.074],[-16.198,2.818],[-22.639,-7.556],[1.444,-12.917]],"v":[[14.722,-57.139],[54.388,-54.564],[61.002,-52.626],[82.74,-40.177],[92.417,-4.722],[73.722,22.055],[60.341,24.569],[31.238,19.238],[-5.278,24.917],[-31.028,-17.778]]}],"t":39},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-47.361,-29.389],[-7.648,-15.316],[-1.038,-2.594],[0.981,-8.747],[18.259,-2.853],[5.82,7.251],[1.759,3.912],[2.502,6.683],[22.639,7.556],[-3.278,15.695]],"o":[[12.084,9.071],[1.285,2.573],[4.031,10.075],[-1.461,13.036],[-14.086,0.967],[-2.539,-3.163],[-2.891,-6.43],[-6.377,-14.099],[-18.75,-6.444],[9.778,-25.972]],"v":[[79.167,-34.083],[110.609,4.852],[114.102,12.614],[119.19,41.502],[91.306,67.5],[62.896,56.583],[56.57,45.847],[49.016,25.627],[10.556,8.25],[-8.806,-28.333]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-16.25,-11.056],[2.113,-34.127],[1.492,-6.189],[16.898,-8.494],[7.447,11.221],[-18.711,8.412],[-6.504,1.623],[0.353,14.204],[13.194,8],[-7.722,11.25]],"o":[[17.242,13.128],[-0.355,5.734],[-7.658,22.767],[-25.181,12.658],[-8.944,-12.083],[7.317,-4.068],[10.692,-2.667],[-1.099,-12.988],[-20.139,-13.667],[16.167,-14.861]],"v":[[81.111,-30.194],[112.77,42.772],[110.041,60.666],[69.75,106.85],[9.361,106.667],[19.961,65.616],[41.313,58.35],[59.572,38.683],[40,9.083],[32.306,-33.611]]}],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-3.194,-21.333],[12.606,-20.309],[3.011,-3.672],[22.999,-1.063],[9.069,13.664],[-16.489,-30.477],[-8.599,-3.749],[-8.623,9.377],[0.139,4.667],[-28,2.361]],"o":[[0.119,11.939],[-2.118,3.412],[-9.069,9.473],[-61.446,0.604],[-18.944,-35.695],[6.289,14.801],[23.906,8.295],[8.623,-9.377],[-2.917,-12.278],[19.5,0.139]],"v":[[109.167,32.306],[98.529,80.319],[90.875,90.944],[41.307,111.202],[-55.361,58.889],[-15.316,31.727],[13.455,62.955],[57.905,58.683],[65,34.361],[83.417,-4.167]]}],"t":42},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.528,-9.361],[8.215,-2.079],[1.153,-0.196],[17.721,5.882],[-4.5,60.972],[-0.656,-18.81],[-6.094,-23.094],[-16.933,-0.211],[-5.555,0.917],[-4.25,-3.75]],"o":[[-2.497,11.106],[-1.38,0.349],[-11.014,0.584],[-51.168,-19.396],[3,-34.861],[1.844,26.468],[8.072,24.961],[5.289,0.345],[11.528,-0.333],[5.055,5.972]],"v":[[66.111,90.778],[44.147,109.022],[40.319,109.833],[-7.582,104.535],[-68.139,-16.389],[-25.316,-25.218],[-20.989,33.789],[22.905,67.016],[40.278,66.305],[59.806,70.694]]}],"t":43},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[8.472,-3.833],[6.324,9.534],[0.973,1.842],[1.888,22.271],[-16.445,22.083],[14.066,-19.921],[1.128,-11.705],[-1.933,-9.933],[-5.972,-10.055],[0.056,-6.944]],"o":[[-12.723,2.664],[-1.063,-1.602],[-11.014,-20.388],[-1.723,-22.729],[20.778,-26.528],[-10.656,13.412],[-1.094,15.239],[2.512,10.623],[4.028,7.028],[0.056,8.333]],"v":[[-17.222,78.695],[-44.412,66.812],[-47.459,61.638],[-64.943,4.674],[-46.472,-67.778],[-12.261,-53.273],[-27.378,-16.767],[-26.539,15.349],[-13.889,42.555],[-5.611,61.944]]}],"t":44},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.306,11.236],[-10.275,10.558],[-1.814,1.612],[-16.446,6.854],[-13.528,0.417],[4.622,-14.921],[11.684,-2.677],[7.65,-5.627],[10.139,-18.528],[11.097,5.556]],"o":[[3.686,-8.93],[1.726,-1.774],[10.445,-8.513],[14.388,-5.091],[8.972,0.417],[-4.545,9.523],[-11.928,2.878],[-4.016,2.706],[-5.139,8.972],[-6.125,-4.167]],"v":[[-54.167,-52.764],[-31.735,-85.142],[-26.417,-90.237],[9.084,-111.437],[44.778,-117.5],[59.128,-97.162],[28.178,-85.239],[-0.289,-70.901],[-23.889,-41.333],[-49.014,-32.083]]}],"t":45},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-8.869,6.304],[-1.454,0.893],[-22.001,2.826],[-10.889,-2.361],[5.1,-10.912],[13.211,1.211],[8.484,-4.933],[7.917,-6.444],[8.597,6.319]],"o":[[3.092,-7.384],[1.49,-1.059],[11.556,-6.43],[13.138,-1.618],[12.722,3.472],[-7.461,13.69],[-9.567,-0.872],[-5.405,3.678],[-4.722,3.972],[-4.319,-3.125]],"v":[[-32.361,-78.458],[-11.404,-101.048],[-6.973,-103.987],[33.112,-117.965],[64.917,-115],[85.239,-92.44],[49.15,-91.767],[20.544,-85.762],[-0.417,-69.806],[-28.181,-63.958]]}],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-7.641,3.022],[-1.394,0.553],[-14.223,0.048],[-20.611,-8.611],[11.011,-10.06],[15.711,6.35],[3.9,-0.488],[7.361,-2.139],[6.514,5.347]],"o":[[3.092,-8.098],[1.284,-0.508],[12.528,-3.374],[3.971,0.048],[13.555,6.805],[-10.517,8.273],[-9.705,-2.539],[-4.294,0.623],[-12.639,3.556],[-3.069,-2.569]],"v":[[-3.056,-97.486],[13.314,-111.297],[17.333,-112.876],[48.668,-117.548],[84.083,-109.861],[103.434,-77.44],[66.928,-89.128],[46.655,-92.151],[27.5,-87.445],[0.431,-85.347]]}],"t":47},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-2.943,0.291],[0,0],[-18.807,-3.285],[-9.083,-9.583],[14.483,-4.366],[9.461,8.295],[11.748,2.151],[5.07,-0.194],[4.917,3.472]],"o":[[3.092,-8.098],[0.494,-0.049],[0,0],[15.916,3.382],[11.055,12.083],[-17.045,3.134],[-5.817,-4.622],[-6.03,-0.627],[-5.417,0.292],[-3.069,-2.569]],"v":[[21.597,-106.305],[38.084,-116.287],[38.861,-116.348],[70.196,-114.909],[103.111,-95.972],[104.822,-56.051],[82.067,-82.045],[60.961,-91.942],[43.542,-92.375],[24.806,-93.611]]}],"t":48},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[-5.302,0.419],[-11.222,-6.43],[0,0],[-1.236,-22.431],[11.705,2.856],[-0.261,11.906],[3.252,3.752],[9.931,1.125],[3.389,3.472]],"o":[[2.431,-7.445],[7.059,-0.554],[9.472,5.653],[0,0],[0.014,12.708],[-12.184,-3.532],[0.017,-9.205],[-3.252,-3.752],[-10.208,-1.236],[-3.069,-2.569]],"v":[[44.375,-107.694],[62.525,-115.419],[88.861,-106.487],[106.098,-90.534],[114.986,-61.18],[99.545,-39.662],[91.372,-64.961],[82.558,-83.331],[66.042,-90.986],[47.583,-95.556]]}],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[0,0],[-14.139,-13.374],[-2.235,-4.007],[0.569,-16.875],[14.761,7.301],[-1.406,9.9],[3.252,3.752],[0,0],[3.389,3.472]],"o":[[2.153,-8.417],[0,0],[6.834,6.626],[2.235,4.007],[0.014,12.708],[-13.85,-9.644],[1.406,-9.9],[-6.03,-8.197],[0,0],[-3.069,-2.569]],"v":[[64.097,-106.028],[75.302,-113.196],[97.75,-102.32],[109.571,-87.479],[115.542,-61.042],[89.267,-29.662],[93.455,-58.573],[89.363,-78.748],[76.042,-88.764],[67.306,-93.889]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-3.725,-5.002],[-1.556,-8.153],[1.376,-6.507],[6.819,-10.208],[6.705,5.634],[-4.739,6.011],[0.336,4.724],[3.403,5.264],[0.889,6.528]],"o":[[8.819,0.055],[3.725,5.002],[1.556,8.153],[-1.376,6.507],[-6.236,10.347],[-5.517,-6.31],[4.739,-6.011],[-0.336,-4.724],[-3.403,-5.264],[-0.778,-5.139]],"v":[[92.847,-101.583],[107.525,-93.752],[116.083,-75.237],[115.682,-53.59],[105.264,-31.597],[82.6,-24.662],[89.289,-48.573],[95.475,-62.637],[90.764,-76.542],[82.861,-90.278]]}],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-2.475,-7.224],[0.528,-6.07],[4.57,-5.951],[5.958,-2.292],[4.761,10.079],[0,0],[-4.225,6.109],[2.014,4.875],[0.889,6.528]],"o":[[8.819,0.055],[2.475,7.224],[-0.528,6.07],[-4.57,5.951],[-5.958,2.292],[-4.406,-8.255],[0,0],[5.775,-6.53],[-2.153,-3.875],[-0.778,-5.139]],"v":[[100.625,-91.305],[116.413,-72.78],[118.722,-54.126],[111.515,-35.534],[93.875,-21.597],[74.267,-25.218],[80.4,-39.961],[90.613,-47.776],[94.097,-64.181],[88.972,-79.167]]}],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-7.292,-4.806],[4.698,-11.526],[2.055,-2.32],[3.737,-2.479],[12.653,-1.458],[1.428,4.106],[0,0],[0,0],[-1.736,4.708],[0.889,6.528]],"o":[[8.403,5.889],[-1.969,5.419],[-2.055,2.32],[-3.737,2.479],[-7.07,0.069],[-2.184,-8.532],[0,0],[0,0],[1.736,-4.708],[-0.778,-5.139]],"v":[[109.514,-71.583],[114.33,-41.53],[106.916,-30.376],[98.182,-22.896],[77.208,-17.292],[65.378,-24.523],[73.317,-36.628],[86.447,-41.387],[95.347,-49.459],[96.472,-63.889]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.347,-3.111],[3.219,-5.002],[2.611,-1.348],[6.124,-0.577],[2.208,2.986],[-2.461,3.551],[0,0],[-5.081,9.447],[-1.597,0.68],[-4.361,-1.25]],"o":[[0.347,3.111],[-3.219,5.002],[-2.611,1.348],[-9.293,0.812],[-2.208,-2.986],[4.483,-5.199],[0,0],[5.081,-9.447],[1.597,-0.68],[4.361,1.25]],"v":[[109.236,-43.944],[104.747,-31.391],[94.278,-21.07],[80.682,-17.062],[64.431,-22.986],[62.6,-34.523],[72.622,-36.906],[87.141,-41.387],[96.042,-52.375],[103.694,-52.917]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.202,-2.461],[2.177,-1.877],[4.056,-0.458],[0,0],[2.352,2.533],[-0.039,2.699],[-6.822,2.4],[-5.081,0.141],[-10.555,-0.75],[-1.097,-3.472]],"o":[[-0.988,2.025],[-2.177,1.877],[-10.25,1.695],[0,0],[-1.956,-2.106],[0.039,-2.699],[5.711,-1.566],[10.775,-0.28],[7.014,1.264],[1.097,3.472]],"v":[[103.403,-26.861],[98.288,-21.877],[88.166,-17.459],[73.39,-16.507],[62.625,-19.514],[58.989,-27.579],[65.678,-37.045],[76.308,-35.97],[94.93,-42.514],[104.111,-36.458]]}],"t":55},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[0.703,-1.596],[1.407,-0.602],[2.888,-0.419],[2.877,0.708],[1.292,2.165],[-0.543,2.015],[-2.308,1.705],[-3.344,-0.329],[-2.577,-1.805],[-0.756,-2.55]],"o":[[-0.617,1.401],[-2.682,1.148],[-2.933,0.425],[-2.448,-0.602],[-1.069,-1.792],[0.876,-3.25],[2.308,-1.705],[3.131,0.308],[2.178,1.526],[0.496,1.672]],"v":[[86.875,-21.93],[83.011,-18.196],[75.666,-16.348],[66.515,-16.646],[60.542,-21.042],[59.753,-27.787],[63.525,-33.989],[74.363,-36.109],[83.055,-33.903],[87.167,-28.194]]}],"t":55.5},{"s":[{"c":true,"i":[[0.539,-1.777],[2.087,-1.675],[1.708,-0.028],[2.042,1.531],[0.543,2.208],[-0.767,2.121],[-1.745,1.223],[-2.391,-0.071],[-2.227,-1.571],[-0.596,-1.893]],"o":[[-0.776,2.561],[-1.982,1.592],[-1.708,0.028],[-1.819,-1.364],[-0.539,-2.19],[0.724,-2.004],[1.958,-1.373],[2.724,0.081],[1.622,1.143],[0.558,1.771]],"v":[[82.222,-24.569],[77.872,-18.057],[70.875,-15.723],[64.154,-17.965],[60.195,-24.028],[60.725,-30.981],[64.775,-36.281],[71.1,-38.053],[78.264,-36.125],[81.75,-31.25]]}],"t":56.0000022809268}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.0392,0.0431,0.051],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.5216,0,0.5569],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[54.75,35.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":5,"parent":2},{"ty":4,"nm":"Shape Layer 6","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[54.75,35.25,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.34,"y":-0.005},"i":{"x":0.4,"y":0.999},"s":[0,0,100],"t":1},{"o":{"x":0.151,"y":0.004},"i":{"x":0.7,"y":1.001},"s":[250,250,100],"t":10},{"o":{"x":0.151,"y":-0.008},"i":{"x":0.829,"y":0.999},"s":[150,150,100],"t":17},{"o":{"x":0.6,"y":0.054},"i":{"x":0.829,"y":1.002},"s":[210,210,100],"t":24},{"s":[180,180,100],"t":31.0000012626559}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.5,"y":1},"s":[117.75,20.25,0],"t":4,"ti":[37.25,-21,0],"to":[0.667,31.5,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[61.75,104.25,0],"t":10,"ti":[20.5,7.375,0],"to":[-37.25,21,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.25,110.75,0],"t":17,"ti":[0,0,0],"to":[-20.5,-7.375,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.8,"y":1},"s":[-96.25,71.75,0],"t":24,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-115.25,29.75,0],"t":31,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-119.25,3.75,0],"t":36,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.8,"y":0},"i":{"x":0.8,"y":1},"s":[-119.25,3.75,0],"t":55,"ti":[21.25,-400.75,0],"to":[0,0,0]},{"s":[-10.25,69.75,0],"t":66.0000026882351}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[100],"t":57},{"s":[0],"t":61.0000024845809}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-29.409,0],[-8.264,-5.274],[-1.297,-1.007],[-3.361,-5.447],[0,-10.239],[3.97,-7.454],[2.343,-2.806],[5.188,-3.094],[9.954,0],[0,29.409]],"o":[[10.53,0],[1.388,0.886],[5.036,3.912],[5.009,8.118],[0,9.035],[-1.732,3.252],[-3.851,4.613],[-7.97,4.754],[-29.409,0],[0,-29.409]],"v":[[0,-53.25],[28.61,-44.919],[32.64,-42.077],[45.352,-27.921],[53.25,0],[47.03,24.998],[40.895,34.107],[27.239,45.765],[0,53.25],[-53.25,0]]}],"t":35},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-19.305,4.111],[-9.438,-2.461],[-1.56,-0.563],[-4.633,-4.851],[0.793,-14.942],[7.248,-8.113],[3.794,-2.694],[6.608,-2.405],[6.064,0.113],[-1.722,26.528]],"o":[[6.912,-1.472],[1.586,0.413],[6.057,2.186],[6.904,7.229],[-0.7,13.184],[-3.162,3.539],[-6.236,4.428],[-10.152,3.694],[-26.528,-1.722],[1.722,-26.528]],"v":[[8.333,-61.861],[34.335,-60.963],[39.06,-59.501],[55.504,-49.107],[66.028,-16.389],[52.981,15.337],[42.454,24.669],[22.773,34.838],[-3.056,39.917],[-43.806,-6.389]]}],"t":38},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-32.917,3.833],[-13.355,-3.368],[-2.159,-0.727],[-5.745,-5.552],[3.307,-15.619],[8.994,-3.833],[5,-0.045],[11.197,3.445],[22.639,7.556],[-1.333,12.639]],"o":[[11.786,-1.373],[2.244,0.566],[8.385,2.825],[8.561,8.274],[-3.509,14.512],[-3.924,1.672],[-8.219,0.074],[-16.198,2.818],[-22.639,-7.556],[1.444,-12.917]],"v":[[14.722,-57.139],[54.388,-54.564],[61.002,-52.626],[82.74,-40.177],[92.417,-4.722],[73.722,22.055],[60.341,24.569],[31.238,19.238],[-5.278,24.917],[-31.028,-17.778]]}],"t":39},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-47.361,-29.389],[-7.648,-15.316],[-1.038,-2.594],[0.981,-8.747],[18.259,-2.853],[5.82,7.251],[1.759,3.912],[2.502,6.683],[22.639,7.556],[-3.278,15.695]],"o":[[12.084,9.071],[1.285,2.573],[4.031,10.075],[-1.461,13.036],[-14.086,0.967],[-2.539,-3.163],[-2.891,-6.43],[-6.377,-14.099],[-18.75,-6.444],[9.778,-25.972]],"v":[[79.167,-34.083],[110.609,4.852],[114.102,12.614],[119.19,41.502],[91.306,67.5],[62.896,56.583],[56.57,45.847],[49.016,25.627],[10.556,8.25],[-8.806,-28.333]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-16.25,-11.056],[2.113,-34.127],[1.492,-6.189],[16.898,-8.494],[7.447,11.221],[-18.711,8.412],[-6.504,1.623],[0.353,14.204],[13.194,8],[-7.722,11.25]],"o":[[17.242,13.128],[-0.355,5.734],[-7.658,22.767],[-25.181,12.658],[-8.944,-12.083],[7.317,-4.068],[10.692,-2.667],[-1.099,-12.988],[-20.139,-13.667],[16.167,-14.861]],"v":[[81.111,-30.194],[112.77,42.772],[110.041,60.666],[69.75,106.85],[9.361,106.667],[19.961,65.616],[41.313,58.35],[59.572,38.683],[40,9.083],[32.306,-33.611]]}],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-3.194,-21.333],[12.606,-20.309],[3.011,-3.672],[22.999,-1.063],[9.069,13.664],[-16.489,-30.477],[-8.599,-3.749],[-8.623,9.377],[0.139,4.667],[-28,2.361]],"o":[[0.119,11.939],[-2.118,3.412],[-9.069,9.473],[-61.446,0.604],[-18.944,-35.695],[6.289,14.801],[23.906,8.295],[8.623,-9.377],[-2.917,-12.278],[19.5,0.139]],"v":[[109.167,32.306],[98.529,80.319],[90.875,90.944],[41.307,111.202],[-55.361,58.889],[-15.316,31.727],[13.455,62.955],[57.905,58.683],[65,34.361],[83.417,-4.167]]}],"t":42},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.528,-9.361],[8.215,-2.079],[1.153,-0.196],[17.721,5.882],[-4.5,60.972],[-0.656,-18.81],[-6.094,-23.094],[-16.933,-0.211],[-5.555,0.917],[-4.25,-3.75]],"o":[[-2.497,11.106],[-1.38,0.349],[-11.014,0.584],[-51.168,-19.396],[3,-34.861],[1.844,26.468],[8.072,24.961],[5.289,0.345],[11.528,-0.333],[5.055,5.972]],"v":[[66.111,90.778],[44.147,109.022],[40.319,109.833],[-7.582,104.535],[-68.139,-16.389],[-25.316,-25.218],[-20.989,33.789],[22.905,67.016],[40.278,66.305],[59.806,70.694]]}],"t":43},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[8.472,-3.833],[6.324,9.534],[0.973,1.842],[1.888,22.271],[-16.445,22.083],[14.066,-19.921],[1.128,-11.705],[-1.933,-9.933],[-5.972,-10.055],[0.056,-6.944]],"o":[[-12.723,2.664],[-1.063,-1.602],[-11.014,-20.388],[-1.723,-22.729],[20.778,-26.528],[-10.656,13.412],[-1.094,15.239],[2.512,10.623],[4.028,7.028],[0.056,8.333]],"v":[[-17.222,78.695],[-44.412,66.812],[-47.459,61.638],[-64.943,4.674],[-46.472,-67.778],[-12.261,-53.273],[-27.378,-16.767],[-26.539,15.349],[-13.889,42.555],[-5.611,61.944]]}],"t":44},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.306,11.236],[-10.275,10.558],[-1.814,1.612],[-16.446,6.854],[-13.528,0.417],[4.622,-14.921],[11.684,-2.677],[7.65,-5.627],[10.139,-18.528],[11.097,5.556]],"o":[[3.686,-8.93],[1.726,-1.774],[10.445,-8.513],[14.388,-5.091],[8.972,0.417],[-4.545,9.523],[-11.928,2.878],[-4.016,2.706],[-5.139,8.972],[-6.125,-4.167]],"v":[[-54.167,-52.764],[-31.735,-85.142],[-26.417,-90.237],[9.084,-111.437],[44.778,-117.5],[59.128,-97.162],[28.178,-85.239],[-0.289,-70.901],[-23.889,-41.333],[-49.014,-32.083]]}],"t":45},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-8.869,6.304],[-1.454,0.893],[-22.001,2.826],[-10.889,-2.361],[5.1,-10.912],[13.211,1.211],[8.484,-4.933],[7.917,-6.444],[8.597,6.319]],"o":[[3.092,-7.384],[1.49,-1.059],[11.556,-6.43],[13.138,-1.618],[12.722,3.472],[-7.461,13.69],[-9.567,-0.872],[-5.405,3.678],[-4.722,3.972],[-4.319,-3.125]],"v":[[-32.361,-78.458],[-11.404,-101.048],[-6.973,-103.987],[33.112,-117.965],[64.917,-115],[85.239,-92.44],[49.15,-91.767],[20.544,-85.762],[-0.417,-69.806],[-28.181,-63.958]]}],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-7.641,3.022],[-1.394,0.553],[-14.223,0.048],[-20.611,-8.611],[11.011,-10.06],[15.711,6.35],[3.9,-0.488],[7.361,-2.139],[6.514,5.347]],"o":[[3.092,-8.098],[1.284,-0.508],[12.528,-3.374],[3.971,0.048],[13.555,6.805],[-10.517,8.273],[-9.705,-2.539],[-4.294,0.623],[-12.639,3.556],[-3.069,-2.569]],"v":[[-3.056,-97.486],[13.314,-111.297],[17.333,-112.876],[48.668,-117.548],[84.083,-109.861],[103.434,-77.44],[66.928,-89.128],[46.655,-92.151],[27.5,-87.445],[0.431,-85.347]]}],"t":47},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-2.943,0.291],[0,0],[-18.807,-3.285],[-9.083,-9.583],[14.483,-4.366],[9.461,8.295],[11.748,2.151],[5.07,-0.194],[4.917,3.472]],"o":[[3.092,-8.098],[0.494,-0.049],[0,0],[15.916,3.382],[11.055,12.083],[-17.045,3.134],[-5.817,-4.622],[-6.03,-0.627],[-5.417,0.292],[-3.069,-2.569]],"v":[[21.597,-106.305],[38.084,-116.287],[38.861,-116.348],[70.196,-114.909],[103.111,-95.972],[104.822,-56.051],[82.067,-82.045],[60.961,-91.942],[43.542,-92.375],[24.806,-93.611]]}],"t":48},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[-5.302,0.419],[-11.222,-6.43],[0,0],[-1.236,-22.431],[11.705,2.856],[-0.261,11.906],[3.252,3.752],[9.931,1.125],[3.389,3.472]],"o":[[2.431,-7.445],[7.059,-0.554],[9.472,5.653],[0,0],[0.014,12.708],[-12.184,-3.532],[0.017,-9.205],[-3.252,-3.752],[-10.208,-1.236],[-3.069,-2.569]],"v":[[44.375,-107.694],[62.525,-115.419],[88.861,-106.487],[106.098,-90.534],[114.986,-61.18],[99.545,-39.662],[91.372,-64.961],[82.558,-83.331],[66.042,-90.986],[47.583,-95.556]]}],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[0,0],[-14.139,-13.374],[-2.235,-4.007],[0.569,-16.875],[14.761,7.301],[-1.406,9.9],[3.252,3.752],[0,0],[3.389,3.472]],"o":[[2.153,-8.417],[0,0],[6.834,6.626],[2.235,4.007],[0.014,12.708],[-13.85,-9.644],[1.406,-9.9],[-6.03,-8.197],[0,0],[-3.069,-2.569]],"v":[[64.097,-106.028],[75.302,-113.196],[97.75,-102.32],[109.571,-87.479],[115.542,-61.042],[89.267,-29.662],[93.455,-58.573],[89.363,-78.748],[76.042,-88.764],[67.306,-93.889]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-3.725,-5.002],[-1.556,-8.153],[1.376,-6.507],[6.819,-10.208],[6.705,5.634],[-4.739,6.011],[0.336,4.724],[3.403,5.264],[0.889,6.528]],"o":[[8.819,0.055],[3.725,5.002],[1.556,8.153],[-1.376,6.507],[-6.236,10.347],[-5.517,-6.31],[4.739,-6.011],[-0.336,-4.724],[-3.403,-5.264],[-0.778,-5.139]],"v":[[92.847,-101.583],[107.525,-93.752],[116.083,-75.237],[115.682,-53.59],[105.264,-31.597],[82.6,-24.662],[89.289,-48.573],[95.475,-62.637],[90.764,-76.542],[82.861,-90.278]]}],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-2.475,-7.224],[0.528,-6.07],[4.57,-5.951],[5.958,-2.292],[4.761,10.079],[0,0],[-4.225,6.109],[2.014,4.875],[0.889,6.528]],"o":[[8.819,0.055],[2.475,7.224],[-0.528,6.07],[-4.57,5.951],[-5.958,2.292],[-4.406,-8.255],[0,0],[5.775,-6.53],[-2.153,-3.875],[-0.778,-5.139]],"v":[[100.625,-91.305],[116.413,-72.78],[118.722,-54.126],[111.515,-35.534],[93.875,-21.597],[74.267,-25.218],[80.4,-39.961],[90.613,-47.776],[94.097,-64.181],[88.972,-79.167]]}],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-7.292,-4.806],[4.698,-11.526],[2.055,-2.32],[3.737,-2.479],[12.653,-1.458],[1.428,4.106],[0,0],[0,0],[-1.736,4.708],[0.889,6.528]],"o":[[8.403,5.889],[-1.969,5.419],[-2.055,2.32],[-3.737,2.479],[-7.07,0.069],[-2.184,-8.532],[0,0],[0,0],[1.736,-4.708],[-0.778,-5.139]],"v":[[109.514,-71.583],[114.33,-41.53],[106.916,-30.376],[98.182,-22.896],[77.208,-17.292],[65.378,-24.523],[73.317,-36.628],[86.447,-41.387],[95.347,-49.459],[96.472,-63.889]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.347,-3.111],[3.219,-5.002],[2.611,-1.348],[6.124,-0.577],[2.208,2.986],[-2.461,3.551],[0,0],[-5.081,9.447],[-1.597,0.68],[-4.361,-1.25]],"o":[[0.347,3.111],[-3.219,5.002],[-2.611,1.348],[-9.293,0.812],[-2.208,-2.986],[4.483,-5.199],[0,0],[5.081,-9.447],[1.597,-0.68],[4.361,1.25]],"v":[[109.236,-43.944],[104.747,-31.391],[94.278,-21.07],[80.682,-17.062],[64.431,-22.986],[62.6,-34.523],[72.622,-36.906],[87.141,-41.387],[96.042,-52.375],[103.694,-52.917]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.202,-2.461],[2.177,-1.877],[4.056,-0.458],[0,0],[2.352,2.533],[-0.039,2.699],[-6.822,2.4],[-5.081,0.141],[-10.555,-0.75],[-1.097,-3.472]],"o":[[-0.988,2.025],[-2.177,1.877],[-10.25,1.695],[0,0],[-1.956,-2.106],[0.039,-2.699],[5.711,-1.566],[10.775,-0.28],[7.014,1.264],[1.097,3.472]],"v":[[103.403,-26.861],[98.288,-21.877],[88.166,-17.459],[73.39,-16.507],[62.625,-19.514],[58.989,-27.579],[65.678,-37.045],[76.308,-35.97],[94.93,-42.514],[104.111,-36.458]]}],"t":55},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[0.703,-1.596],[1.407,-0.602],[2.888,-0.419],[2.877,0.708],[1.292,2.165],[-0.543,2.015],[-2.308,1.705],[-3.344,-0.329],[-2.577,-1.805],[-0.756,-2.55]],"o":[[-0.617,1.401],[-2.682,1.148],[-2.933,0.425],[-2.448,-0.602],[-1.069,-1.792],[0.876,-3.25],[2.308,-1.705],[3.131,0.308],[2.178,1.526],[0.496,1.672]],"v":[[86.875,-21.93],[83.011,-18.196],[75.666,-16.348],[66.515,-16.646],[60.542,-21.042],[59.753,-27.787],[63.525,-33.989],[74.363,-36.109],[83.055,-33.903],[87.167,-28.194]]}],"t":55.5},{"s":[{"c":true,"i":[[0.539,-1.777],[2.087,-1.675],[1.708,-0.028],[2.042,1.531],[0.543,2.208],[-0.767,2.121],[-1.745,1.223],[-2.391,-0.071],[-2.227,-1.571],[-0.596,-1.893]],"o":[[-0.776,2.561],[-1.982,1.592],[-1.708,0.028],[-1.819,-1.364],[-0.539,-2.19],[0.724,-2.004],[1.958,-1.373],[2.724,0.081],[1.622,1.143],[0.558,1.771]],"v":[[82.222,-24.569],[77.872,-18.057],[70.875,-15.723],[64.154,-17.965],[60.195,-24.028],[60.725,-30.981],[64.775,-36.281],[71.1,-38.053],[78.264,-36.125],[81.75,-31.25]]}],"t":56.0000022809268}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.0392,0.0431,0.051],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.0941,0.749,0.3725],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[54.75,35.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":6,"parent":3},{"ty":4,"nm":"Shape Layer 8","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[54.75,35.25,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.34,"y":-0.005},"i":{"x":0.4,"y":0.999},"s":[0,0,100],"t":1},{"o":{"x":0.151,"y":0.004},"i":{"x":0.7,"y":1.001},"s":[250,250,100],"t":10},{"o":{"x":0.151,"y":-0.008},"i":{"x":0.829,"y":0.999},"s":[150,150,100],"t":17},{"o":{"x":0.6,"y":0.054},"i":{"x":0.829,"y":1.002},"s":[210,210,100],"t":24},{"s":[180,180,100],"t":31.0000012626559}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.5,"y":1},"s":[117.75,20.25,0],"t":4,"ti":[37.25,-21,0],"to":[0.667,31.5,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[61.75,104.25,0],"t":10,"ti":[20.5,7.375,0],"to":[-37.25,21,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.25,110.75,0],"t":17,"ti":[0,0,0],"to":[-20.5,-7.375,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.8,"y":1},"s":[-96.25,71.75,0],"t":24,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-115.25,29.75,0],"t":31,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-119.25,3.75,0],"t":36,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.8,"y":0},"i":{"x":0.8,"y":1},"s":[-119.25,3.75,0],"t":55,"ti":[21.25,-400.75,0],"to":[0,0,0]},{"s":[-10.25,69.75,0],"t":66.0000026882351}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[100],"t":57},{"s":[0],"t":61.0000024845809}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-29.409,0],[-8.264,-5.274],[-1.297,-1.007],[-3.361,-5.447],[0,-10.239],[3.97,-7.454],[2.343,-2.806],[5.188,-3.094],[9.954,0],[0,29.409]],"o":[[10.53,0],[1.388,0.886],[5.036,3.912],[5.009,8.118],[0,9.035],[-1.732,3.252],[-3.851,4.613],[-7.97,4.754],[-29.409,0],[0,-29.409]],"v":[[0,-53.25],[28.61,-44.919],[32.64,-42.077],[45.352,-27.921],[53.25,0],[47.03,24.998],[40.895,34.107],[27.239,45.765],[0,53.25],[-53.25,0]]}],"t":35},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-19.305,4.111],[-9.438,-2.461],[-1.56,-0.563],[-4.633,-4.851],[0.793,-14.942],[7.248,-8.113],[3.794,-2.694],[6.608,-2.405],[6.064,0.113],[-1.722,26.528]],"o":[[6.912,-1.472],[1.586,0.413],[6.057,2.186],[6.904,7.229],[-0.7,13.184],[-3.162,3.539],[-6.236,4.428],[-10.152,3.694],[-26.528,-1.722],[1.722,-26.528]],"v":[[8.333,-61.861],[34.335,-60.963],[39.06,-59.501],[55.504,-49.107],[66.028,-16.389],[52.981,15.337],[42.454,24.669],[22.773,34.838],[-3.056,39.917],[-43.806,-6.389]]}],"t":38},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-32.917,3.833],[-13.355,-3.368],[-2.159,-0.727],[-5.745,-5.552],[3.307,-15.619],[8.994,-3.833],[5,-0.045],[11.197,3.445],[22.639,7.556],[-1.333,12.639]],"o":[[11.786,-1.373],[2.244,0.566],[8.385,2.825],[8.561,8.274],[-3.509,14.512],[-3.924,1.672],[-8.219,0.074],[-16.198,2.818],[-22.639,-7.556],[1.444,-12.917]],"v":[[14.722,-57.139],[54.388,-54.564],[61.002,-52.626],[82.74,-40.177],[92.417,-4.722],[73.722,22.055],[60.341,24.569],[31.238,19.238],[-5.278,24.917],[-31.028,-17.778]]}],"t":39},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-47.361,-29.389],[-7.648,-15.316],[-1.038,-2.594],[0.981,-8.747],[18.259,-2.853],[5.82,7.251],[1.759,3.912],[2.502,6.683],[22.639,7.556],[-3.278,15.695]],"o":[[12.084,9.071],[1.285,2.573],[4.031,10.075],[-1.461,13.036],[-14.086,0.967],[-2.539,-3.163],[-2.891,-6.43],[-6.377,-14.099],[-18.75,-6.444],[9.778,-25.972]],"v":[[79.167,-34.083],[110.609,4.852],[114.102,12.614],[119.19,41.502],[91.306,67.5],[62.896,56.583],[56.57,45.847],[49.016,25.627],[10.556,8.25],[-8.806,-28.333]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-16.25,-11.056],[2.113,-34.127],[1.492,-6.189],[16.898,-8.494],[7.447,11.221],[-18.711,8.412],[-6.504,1.623],[0.353,14.204],[13.194,8],[-7.722,11.25]],"o":[[17.242,13.128],[-0.355,5.734],[-7.658,22.767],[-25.181,12.658],[-8.944,-12.083],[7.317,-4.068],[10.692,-2.667],[-1.099,-12.988],[-20.139,-13.667],[16.167,-14.861]],"v":[[81.111,-30.194],[112.77,42.772],[110.041,60.666],[69.75,106.85],[9.361,106.667],[19.961,65.616],[41.313,58.35],[59.572,38.683],[40,9.083],[32.306,-33.611]]}],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-3.194,-21.333],[12.606,-20.309],[3.011,-3.672],[22.999,-1.063],[9.069,13.664],[-16.489,-30.477],[-8.599,-3.749],[-8.623,9.377],[0.139,4.667],[-28,2.361]],"o":[[0.119,11.939],[-2.118,3.412],[-9.069,9.473],[-61.446,0.604],[-18.944,-35.695],[6.289,14.801],[23.906,8.295],[8.623,-9.377],[-2.917,-12.278],[19.5,0.139]],"v":[[109.167,32.306],[98.529,80.319],[90.875,90.944],[41.307,111.202],[-55.361,58.889],[-15.316,31.727],[13.455,62.955],[57.905,58.683],[65,34.361],[83.417,-4.167]]}],"t":42},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.528,-9.361],[8.215,-2.079],[1.153,-0.196],[17.721,5.882],[-4.5,60.972],[-0.656,-18.81],[-6.094,-23.094],[-16.933,-0.211],[-5.555,0.917],[-4.25,-3.75]],"o":[[-2.497,11.106],[-1.38,0.349],[-11.014,0.584],[-51.168,-19.396],[3,-34.861],[1.844,26.468],[8.072,24.961],[5.289,0.345],[11.528,-0.333],[5.055,5.972]],"v":[[66.111,90.778],[44.147,109.022],[40.319,109.833],[-7.582,104.535],[-68.139,-16.389],[-25.316,-25.218],[-20.989,33.789],[22.905,67.016],[40.278,66.305],[59.806,70.694]]}],"t":43},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[8.472,-3.833],[6.324,9.534],[0.973,1.842],[1.888,22.271],[-16.445,22.083],[14.066,-19.921],[1.128,-11.705],[-1.933,-9.933],[-5.972,-10.055],[0.056,-6.944]],"o":[[-12.723,2.664],[-1.063,-1.602],[-11.014,-20.388],[-1.723,-22.729],[20.778,-26.528],[-10.656,13.412],[-1.094,15.239],[2.512,10.623],[4.028,7.028],[0.056,8.333]],"v":[[-17.222,78.695],[-44.412,66.812],[-47.459,61.638],[-64.943,4.674],[-46.472,-67.778],[-12.261,-53.273],[-27.378,-16.767],[-26.539,15.349],[-13.889,42.555],[-5.611,61.944]]}],"t":44},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.306,11.236],[-10.275,10.558],[-1.814,1.612],[-16.446,6.854],[-13.528,0.417],[4.622,-14.921],[11.684,-2.677],[7.65,-5.627],[10.139,-18.528],[11.097,5.556]],"o":[[3.686,-8.93],[1.726,-1.774],[10.445,-8.513],[14.388,-5.091],[8.972,0.417],[-4.545,9.523],[-11.928,2.878],[-4.016,2.706],[-5.139,8.972],[-6.125,-4.167]],"v":[[-54.167,-52.764],[-31.735,-85.142],[-26.417,-90.237],[9.084,-111.437],[44.778,-117.5],[59.128,-97.162],[28.178,-85.239],[-0.289,-70.901],[-23.889,-41.333],[-49.014,-32.083]]}],"t":45},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-8.869,6.304],[-1.454,0.893],[-22.001,2.826],[-10.889,-2.361],[5.1,-10.912],[13.211,1.211],[8.484,-4.933],[7.917,-6.444],[8.597,6.319]],"o":[[3.092,-7.384],[1.49,-1.059],[11.556,-6.43],[13.138,-1.618],[12.722,3.472],[-7.461,13.69],[-9.567,-0.872],[-5.405,3.678],[-4.722,3.972],[-4.319,-3.125]],"v":[[-32.361,-78.458],[-11.404,-101.048],[-6.973,-103.987],[33.112,-117.965],[64.917,-115],[85.239,-92.44],[49.15,-91.767],[20.544,-85.762],[-0.417,-69.806],[-28.181,-63.958]]}],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-7.641,3.022],[-1.394,0.553],[-14.223,0.048],[-20.611,-8.611],[11.011,-10.06],[15.711,6.35],[3.9,-0.488],[7.361,-2.139],[6.514,5.347]],"o":[[3.092,-8.098],[1.284,-0.508],[12.528,-3.374],[3.971,0.048],[13.555,6.805],[-10.517,8.273],[-9.705,-2.539],[-4.294,0.623],[-12.639,3.556],[-3.069,-2.569]],"v":[[-3.056,-97.486],[13.314,-111.297],[17.333,-112.876],[48.668,-117.548],[84.083,-109.861],[103.434,-77.44],[66.928,-89.128],[46.655,-92.151],[27.5,-87.445],[0.431,-85.347]]}],"t":47},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-2.943,0.291],[0,0],[-18.807,-3.285],[-9.083,-9.583],[14.483,-4.366],[9.461,8.295],[11.748,2.151],[5.07,-0.194],[4.917,3.472]],"o":[[3.092,-8.098],[0.494,-0.049],[0,0],[15.916,3.382],[11.055,12.083],[-17.045,3.134],[-5.817,-4.622],[-6.03,-0.627],[-5.417,0.292],[-3.069,-2.569]],"v":[[21.597,-106.305],[38.084,-116.287],[38.861,-116.348],[70.196,-114.909],[103.111,-95.972],[104.822,-56.051],[82.067,-82.045],[60.961,-91.942],[43.542,-92.375],[24.806,-93.611]]}],"t":48},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[-5.302,0.419],[-11.222,-6.43],[0,0],[-1.236,-22.431],[11.705,2.856],[-0.261,11.906],[3.252,3.752],[9.931,1.125],[3.389,3.472]],"o":[[2.431,-7.445],[7.059,-0.554],[9.472,5.653],[0,0],[0.014,12.708],[-12.184,-3.532],[0.017,-9.205],[-3.252,-3.752],[-10.208,-1.236],[-3.069,-2.569]],"v":[[44.375,-107.694],[62.525,-115.419],[88.861,-106.487],[106.098,-90.534],[114.986,-61.18],[99.545,-39.662],[91.372,-64.961],[82.558,-83.331],[66.042,-90.986],[47.583,-95.556]]}],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[0,0],[-14.139,-13.374],[-2.235,-4.007],[0.569,-16.875],[14.761,7.301],[-1.406,9.9],[3.252,3.752],[0,0],[3.389,3.472]],"o":[[2.153,-8.417],[0,0],[6.834,6.626],[2.235,4.007],[0.014,12.708],[-13.85,-9.644],[1.406,-9.9],[-6.03,-8.197],[0,0],[-3.069,-2.569]],"v":[[64.097,-106.028],[75.302,-113.196],[97.75,-102.32],[109.571,-87.479],[115.542,-61.042],[89.267,-29.662],[93.455,-58.573],[89.363,-78.748],[76.042,-88.764],[67.306,-93.889]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-3.725,-5.002],[-1.556,-8.153],[1.376,-6.507],[6.819,-10.208],[6.705,5.634],[-4.739,6.011],[0.336,4.724],[3.403,5.264],[0.889,6.528]],"o":[[8.819,0.055],[3.725,5.002],[1.556,8.153],[-1.376,6.507],[-6.236,10.347],[-5.517,-6.31],[4.739,-6.011],[-0.336,-4.724],[-3.403,-5.264],[-0.778,-5.139]],"v":[[92.847,-101.583],[107.525,-93.752],[116.083,-75.237],[115.682,-53.59],[105.264,-31.597],[82.6,-24.662],[89.289,-48.573],[95.475,-62.637],[90.764,-76.542],[82.861,-90.278]]}],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-2.475,-7.224],[0.528,-6.07],[4.57,-5.951],[5.958,-2.292],[4.761,10.079],[0,0],[-4.225,6.109],[2.014,4.875],[0.889,6.528]],"o":[[8.819,0.055],[2.475,7.224],[-0.528,6.07],[-4.57,5.951],[-5.958,2.292],[-4.406,-8.255],[0,0],[5.775,-6.53],[-2.153,-3.875],[-0.778,-5.139]],"v":[[100.625,-91.305],[116.413,-72.78],[118.722,-54.126],[111.515,-35.534],[93.875,-21.597],[74.267,-25.218],[80.4,-39.961],[90.613,-47.776],[94.097,-64.181],[88.972,-79.167]]}],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-7.292,-4.806],[4.698,-11.526],[2.055,-2.32],[3.737,-2.479],[12.653,-1.458],[1.428,4.106],[0,0],[0,0],[-1.736,4.708],[0.889,6.528]],"o":[[8.403,5.889],[-1.969,5.419],[-2.055,2.32],[-3.737,2.479],[-7.07,0.069],[-2.184,-8.532],[0,0],[0,0],[1.736,-4.708],[-0.778,-5.139]],"v":[[109.514,-71.583],[114.33,-41.53],[106.916,-30.376],[98.182,-22.896],[77.208,-17.292],[65.378,-24.523],[73.317,-36.628],[86.447,-41.387],[95.347,-49.459],[96.472,-63.889]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.347,-3.111],[3.219,-5.002],[2.611,-1.348],[6.124,-0.577],[2.208,2.986],[-2.461,3.551],[0,0],[-5.081,9.447],[-1.597,0.68],[-4.361,-1.25]],"o":[[0.347,3.111],[-3.219,5.002],[-2.611,1.348],[-9.293,0.812],[-2.208,-2.986],[4.483,-5.199],[0,0],[5.081,-9.447],[1.597,-0.68],[4.361,1.25]],"v":[[109.236,-43.944],[104.747,-31.391],[94.278,-21.07],[80.682,-17.062],[64.431,-22.986],[62.6,-34.523],[72.622,-36.906],[87.141,-41.387],[96.042,-52.375],[103.694,-52.917]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.202,-2.461],[2.177,-1.877],[4.056,-0.458],[0,0],[2.352,2.533],[-0.039,2.699],[-6.822,2.4],[-5.081,0.141],[-10.555,-0.75],[-1.097,-3.472]],"o":[[-0.988,2.025],[-2.177,1.877],[-10.25,1.695],[0,0],[-1.956,-2.106],[0.039,-2.699],[5.711,-1.566],[10.775,-0.28],[7.014,1.264],[1.097,3.472]],"v":[[103.403,-26.861],[98.288,-21.877],[88.166,-17.459],[73.39,-16.507],[62.625,-19.514],[58.989,-27.579],[65.678,-37.045],[76.308,-35.97],[94.93,-42.514],[104.111,-36.458]]}],"t":55},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[0.703,-1.596],[1.407,-0.602],[2.888,-0.419],[2.877,0.708],[1.292,2.165],[-0.543,2.015],[-2.308,1.705],[-3.344,-0.329],[-2.577,-1.805],[-0.756,-2.55]],"o":[[-0.617,1.401],[-2.682,1.148],[-2.933,0.425],[-2.448,-0.602],[-1.069,-1.792],[0.876,-3.25],[2.308,-1.705],[3.131,0.308],[2.178,1.526],[0.496,1.672]],"v":[[86.875,-21.93],[83.011,-18.196],[75.666,-16.348],[66.515,-16.646],[60.542,-21.042],[59.753,-27.787],[63.525,-33.989],[74.363,-36.109],[83.055,-33.903],[87.167,-28.194]]}],"t":55.5},{"s":[{"c":true,"i":[[0.539,-1.777],[2.087,-1.675],[1.708,-0.028],[2.042,1.531],[0.543,2.208],[-0.767,2.121],[-1.745,1.223],[-2.391,-0.071],[-2.227,-1.571],[-0.596,-1.893]],"o":[[-0.776,2.561],[-1.982,1.592],[-1.708,0.028],[-1.819,-1.364],[-0.539,-2.19],[0.724,-2.004],[1.958,-1.373],[2.724,0.081],[1.622,1.143],[0.558,1.771]],"v":[[82.222,-24.569],[77.872,-18.057],[70.875,-15.723],[64.154,-17.965],[60.195,-24.028],[60.725,-30.981],[64.775,-36.281],[71.1,-38.053],[78.264,-36.125],[81.75,-31.25]]}],"t":56.0000022809268}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.0392,0.0431,0.051],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.0941,0.749,0.3725],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[54.75,35.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":7,"parent":1},{"ty":4,"nm":"Shape Layer 1","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[54.75,35.25,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.34,"y":-0.005},"i":{"x":0.4,"y":0.999},"s":[0,0,100],"t":1},{"o":{"x":0.151,"y":0.004},"i":{"x":0.7,"y":1.001},"s":[250,250,100],"t":10},{"o":{"x":0.151,"y":-0.008},"i":{"x":0.829,"y":0.999},"s":[150,150,100],"t":17},{"o":{"x":0.6,"y":0.054},"i":{"x":0.829,"y":1.002},"s":[210,210,100],"t":24},{"s":[180,180,100],"t":31.0000012626559}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.5,"y":1},"s":[117.75,20.25,0],"t":4,"ti":[37.25,-21,0],"to":[0.667,31.5,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[61.75,104.25,0],"t":10,"ti":[20.5,7.375,0],"to":[-37.25,21,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.25,110.75,0],"t":17,"ti":[0,0,0],"to":[-20.5,-7.375,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.8,"y":1},"s":[-96.25,71.75,0],"t":24,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-115.25,29.75,0],"t":31,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-119.25,3.75,0],"t":36,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.8,"y":0},"i":{"x":0.8,"y":1},"s":[-119.25,3.75,0],"t":55,"ti":[21.25,-400.75,0],"to":[0,0,0]},{"s":[-10.25,69.75,0],"t":66.0000026882351}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[100],"t":57},{"s":[0],"t":61.0000024845809}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-29.409,0],[-8.264,-5.274],[-1.297,-1.007],[-3.361,-5.447],[0,-10.239],[3.97,-7.454],[2.343,-2.806],[5.188,-3.094],[9.954,0],[0,29.409]],"o":[[10.53,0],[1.388,0.886],[5.036,3.912],[5.009,8.118],[0,9.035],[-1.732,3.252],[-3.851,4.613],[-7.97,4.754],[-29.409,0],[0,-29.409]],"v":[[0,-53.25],[28.61,-44.919],[32.64,-42.077],[45.352,-27.921],[53.25,0],[47.03,24.998],[40.895,34.107],[27.239,45.765],[0,53.25],[-53.25,0]]}],"t":35},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-19.305,4.111],[-9.438,-2.461],[-1.56,-0.563],[-4.633,-4.851],[0.793,-14.942],[7.248,-8.113],[3.794,-2.694],[6.608,-2.405],[6.064,0.113],[-1.722,26.528]],"o":[[6.912,-1.472],[1.586,0.413],[6.057,2.186],[6.904,7.229],[-0.7,13.184],[-3.162,3.539],[-6.236,4.428],[-10.152,3.694],[-26.528,-1.722],[1.722,-26.528]],"v":[[8.333,-61.861],[34.335,-60.963],[39.06,-59.501],[55.504,-49.107],[66.028,-16.389],[52.981,15.337],[42.454,24.669],[22.773,34.838],[-3.056,39.917],[-43.806,-6.389]]}],"t":38},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-32.917,3.833],[-13.355,-3.368],[-2.159,-0.727],[-5.745,-5.552],[3.307,-15.619],[8.994,-3.833],[5,-0.045],[11.197,3.445],[22.639,7.556],[-1.333,12.639]],"o":[[11.786,-1.373],[2.244,0.566],[8.385,2.825],[8.561,8.274],[-3.509,14.512],[-3.924,1.672],[-8.219,0.074],[-16.198,2.818],[-22.639,-7.556],[1.444,-12.917]],"v":[[14.722,-57.139],[54.388,-54.564],[61.002,-52.626],[82.74,-40.177],[92.417,-4.722],[73.722,22.055],[60.341,24.569],[31.238,19.238],[-5.278,24.917],[-31.028,-17.778]]}],"t":39},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-47.361,-29.389],[-7.648,-15.316],[-1.038,-2.594],[0.981,-8.747],[18.259,-2.853],[5.82,7.251],[1.759,3.912],[2.502,6.683],[22.639,7.556],[-3.278,15.695]],"o":[[12.084,9.071],[1.285,2.573],[4.031,10.075],[-1.461,13.036],[-14.086,0.967],[-2.539,-3.163],[-2.891,-6.43],[-6.377,-14.099],[-18.75,-6.444],[9.778,-25.972]],"v":[[79.167,-34.083],[110.609,4.852],[114.102,12.614],[119.19,41.502],[91.306,67.5],[62.896,56.583],[56.57,45.847],[49.016,25.627],[10.556,8.25],[-8.806,-28.333]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-16.25,-11.056],[2.113,-34.127],[1.492,-6.189],[16.898,-8.494],[7.447,11.221],[-18.711,8.412],[-6.504,1.623],[0.353,14.204],[13.194,8],[-7.722,11.25]],"o":[[17.242,13.128],[-0.355,5.734],[-7.658,22.767],[-25.181,12.658],[-8.944,-12.083],[7.317,-4.068],[10.692,-2.667],[-1.099,-12.988],[-20.139,-13.667],[16.167,-14.861]],"v":[[81.111,-30.194],[112.77,42.772],[110.041,60.666],[69.75,106.85],[9.361,106.667],[19.961,65.616],[41.313,58.35],[59.572,38.683],[40,9.083],[32.306,-33.611]]}],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-3.194,-21.333],[12.606,-20.309],[3.011,-3.672],[22.999,-1.063],[9.069,13.664],[-16.489,-30.477],[-8.599,-3.749],[-8.623,9.377],[0.139,4.667],[-28,2.361]],"o":[[0.119,11.939],[-2.118,3.412],[-9.069,9.473],[-61.446,0.604],[-18.944,-35.695],[6.289,14.801],[23.906,8.295],[8.623,-9.377],[-2.917,-12.278],[19.5,0.139]],"v":[[109.167,32.306],[98.529,80.319],[90.875,90.944],[41.307,111.202],[-55.361,58.889],[-15.316,31.727],[13.455,62.955],[57.905,58.683],[65,34.361],[83.417,-4.167]]}],"t":42},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.528,-9.361],[8.215,-2.079],[1.153,-0.196],[17.721,5.882],[-4.5,60.972],[-0.656,-18.81],[-6.094,-23.094],[-16.933,-0.211],[-5.555,0.917],[-4.25,-3.75]],"o":[[-2.497,11.106],[-1.38,0.349],[-11.014,0.584],[-51.168,-19.396],[3,-34.861],[1.844,26.468],[8.072,24.961],[5.289,0.345],[11.528,-0.333],[5.055,5.972]],"v":[[66.111,90.778],[44.147,109.022],[40.319,109.833],[-7.582,104.535],[-68.139,-16.389],[-25.316,-25.218],[-20.989,33.789],[22.905,67.016],[40.278,66.305],[59.806,70.694]]}],"t":43},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[8.472,-3.833],[6.324,9.534],[0.973,1.842],[1.888,22.271],[-16.445,22.083],[14.066,-19.921],[1.128,-11.705],[-1.933,-9.933],[-5.972,-10.055],[0.056,-6.944]],"o":[[-12.723,2.664],[-1.063,-1.602],[-11.014,-20.388],[-1.723,-22.729],[20.778,-26.528],[-10.656,13.412],[-1.094,15.239],[2.512,10.623],[4.028,7.028],[0.056,8.333]],"v":[[-17.222,78.695],[-44.412,66.812],[-47.459,61.638],[-64.943,4.674],[-46.472,-67.778],[-12.261,-53.273],[-27.378,-16.767],[-26.539,15.349],[-13.889,42.555],[-5.611,61.944]]}],"t":44},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.306,11.236],[-10.275,10.558],[-1.814,1.612],[-16.446,6.854],[-13.528,0.417],[4.622,-14.921],[11.684,-2.677],[7.65,-5.627],[10.139,-18.528],[11.097,5.556]],"o":[[3.686,-8.93],[1.726,-1.774],[10.445,-8.513],[14.388,-5.091],[8.972,0.417],[-4.545,9.523],[-11.928,2.878],[-4.016,2.706],[-5.139,8.972],[-6.125,-4.167]],"v":[[-54.167,-52.764],[-31.735,-85.142],[-26.417,-90.237],[9.084,-111.437],[44.778,-117.5],[59.128,-97.162],[28.178,-85.239],[-0.289,-70.901],[-23.889,-41.333],[-49.014,-32.083]]}],"t":45},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-8.869,6.304],[-1.454,0.893],[-22.001,2.826],[-10.889,-2.361],[5.1,-10.912],[13.211,1.211],[8.484,-4.933],[7.917,-6.444],[8.597,6.319]],"o":[[3.092,-7.384],[1.49,-1.059],[11.556,-6.43],[13.138,-1.618],[12.722,3.472],[-7.461,13.69],[-9.567,-0.872],[-5.405,3.678],[-4.722,3.972],[-4.319,-3.125]],"v":[[-32.361,-78.458],[-11.404,-101.048],[-6.973,-103.987],[33.112,-117.965],[64.917,-115],[85.239,-92.44],[49.15,-91.767],[20.544,-85.762],[-0.417,-69.806],[-28.181,-63.958]]}],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-7.641,3.022],[-1.394,0.553],[-14.223,0.048],[-20.611,-8.611],[11.011,-10.06],[15.711,6.35],[3.9,-0.488],[7.361,-2.139],[6.514,5.347]],"o":[[3.092,-8.098],[1.284,-0.508],[12.528,-3.374],[3.971,0.048],[13.555,6.805],[-10.517,8.273],[-9.705,-2.539],[-4.294,0.623],[-12.639,3.556],[-3.069,-2.569]],"v":[[-3.056,-97.486],[13.314,-111.297],[17.333,-112.876],[48.668,-117.548],[84.083,-109.861],[103.434,-77.44],[66.928,-89.128],[46.655,-92.151],[27.5,-87.445],[0.431,-85.347]]}],"t":47},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-2.943,0.291],[0,0],[-18.807,-3.285],[-9.083,-9.583],[14.483,-4.366],[9.461,8.295],[11.748,2.151],[5.07,-0.194],[4.917,3.472]],"o":[[3.092,-8.098],[0.494,-0.049],[0,0],[15.916,3.382],[11.055,12.083],[-17.045,3.134],[-5.817,-4.622],[-6.03,-0.627],[-5.417,0.292],[-3.069,-2.569]],"v":[[21.597,-106.305],[38.084,-116.287],[38.861,-116.348],[70.196,-114.909],[103.111,-95.972],[104.822,-56.051],[82.067,-82.045],[60.961,-91.942],[43.542,-92.375],[24.806,-93.611]]}],"t":48},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[-5.302,0.419],[-11.222,-6.43],[0,0],[-1.236,-22.431],[11.705,2.856],[-0.261,11.906],[3.252,3.752],[9.931,1.125],[3.389,3.472]],"o":[[2.431,-7.445],[7.059,-0.554],[9.472,5.653],[0,0],[0.014,12.708],[-12.184,-3.532],[0.017,-9.205],[-3.252,-3.752],[-10.208,-1.236],[-3.069,-2.569]],"v":[[44.375,-107.694],[62.525,-115.419],[88.861,-106.487],[106.098,-90.534],[114.986,-61.18],[99.545,-39.662],[91.372,-64.961],[82.558,-83.331],[66.042,-90.986],[47.583,-95.556]]}],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[0,0],[-14.139,-13.374],[-2.235,-4.007],[0.569,-16.875],[14.761,7.301],[-1.406,9.9],[3.252,3.752],[0,0],[3.389,3.472]],"o":[[2.153,-8.417],[0,0],[6.834,6.626],[2.235,4.007],[0.014,12.708],[-13.85,-9.644],[1.406,-9.9],[-6.03,-8.197],[0,0],[-3.069,-2.569]],"v":[[64.097,-106.028],[75.302,-113.196],[97.75,-102.32],[109.571,-87.479],[115.542,-61.042],[89.267,-29.662],[93.455,-58.573],[89.363,-78.748],[76.042,-88.764],[67.306,-93.889]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-3.725,-5.002],[-1.556,-8.153],[1.376,-6.507],[6.819,-10.208],[6.705,5.634],[-4.739,6.011],[0.336,4.724],[3.403,5.264],[0.889,6.528]],"o":[[8.819,0.055],[3.725,5.002],[1.556,8.153],[-1.376,6.507],[-6.236,10.347],[-5.517,-6.31],[4.739,-6.011],[-0.336,-4.724],[-3.403,-5.264],[-0.778,-5.139]],"v":[[92.847,-101.583],[107.525,-93.752],[116.083,-75.237],[115.682,-53.59],[105.264,-31.597],[82.6,-24.662],[89.289,-48.573],[95.475,-62.637],[90.764,-76.542],[82.861,-90.278]]}],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-2.475,-7.224],[0.528,-6.07],[4.57,-5.951],[5.958,-2.292],[4.761,10.079],[0,0],[-4.225,6.109],[2.014,4.875],[0.889,6.528]],"o":[[8.819,0.055],[2.475,7.224],[-0.528,6.07],[-4.57,5.951],[-5.958,2.292],[-4.406,-8.255],[0,0],[5.775,-6.53],[-2.153,-3.875],[-0.778,-5.139]],"v":[[100.625,-91.305],[116.413,-72.78],[118.722,-54.126],[111.515,-35.534],[93.875,-21.597],[74.267,-25.218],[80.4,-39.961],[90.613,-47.776],[94.097,-64.181],[88.972,-79.167]]}],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-7.292,-4.806],[4.698,-11.526],[2.055,-2.32],[3.737,-2.479],[12.653,-1.458],[1.428,4.106],[0,0],[0,0],[-1.736,4.708],[0.889,6.528]],"o":[[8.403,5.889],[-1.969,5.419],[-2.055,2.32],[-3.737,2.479],[-7.07,0.069],[-2.184,-8.532],[0,0],[0,0],[1.736,-4.708],[-0.778,-5.139]],"v":[[109.514,-71.583],[114.33,-41.53],[106.916,-30.376],[98.182,-22.896],[77.208,-17.292],[65.378,-24.523],[73.317,-36.628],[86.447,-41.387],[95.347,-49.459],[96.472,-63.889]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.347,-3.111],[3.219,-5.002],[2.611,-1.348],[6.124,-0.577],[2.208,2.986],[-2.461,3.551],[0,0],[-5.081,9.447],[-1.597,0.68],[-4.361,-1.25]],"o":[[0.347,3.111],[-3.219,5.002],[-2.611,1.348],[-9.293,0.812],[-2.208,-2.986],[4.483,-5.199],[0,0],[5.081,-9.447],[1.597,-0.68],[4.361,1.25]],"v":[[109.236,-43.944],[104.747,-31.391],[94.278,-21.07],[80.682,-17.062],[64.431,-22.986],[62.6,-34.523],[72.622,-36.906],[87.141,-41.387],[96.042,-52.375],[103.694,-52.917]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.202,-2.461],[2.177,-1.877],[4.056,-0.458],[0,0],[2.352,2.533],[-0.039,2.699],[-6.822,2.4],[-5.081,0.141],[-10.555,-0.75],[-1.097,-3.472]],"o":[[-0.988,2.025],[-2.177,1.877],[-10.25,1.695],[0,0],[-1.956,-2.106],[0.039,-2.699],[5.711,-1.566],[10.775,-0.28],[7.014,1.264],[1.097,3.472]],"v":[[103.403,-26.861],[98.288,-21.877],[88.166,-17.459],[73.39,-16.507],[62.625,-19.514],[58.989,-27.579],[65.678,-37.045],[76.308,-35.97],[94.93,-42.514],[104.111,-36.458]]}],"t":55},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[0.703,-1.596],[1.407,-0.602],[2.888,-0.419],[2.877,0.708],[1.292,2.165],[-0.543,2.015],[-2.308,1.705],[-3.344,-0.329],[-2.577,-1.805],[-0.756,-2.55]],"o":[[-0.617,1.401],[-2.682,1.148],[-2.933,0.425],[-2.448,-0.602],[-1.069,-1.792],[0.876,-3.25],[2.308,-1.705],[3.131,0.308],[2.178,1.526],[0.496,1.672]],"v":[[86.875,-21.93],[83.011,-18.196],[75.666,-16.348],[66.515,-16.646],[60.542,-21.042],[59.753,-27.787],[63.525,-33.989],[74.363,-36.109],[83.055,-33.903],[87.167,-28.194]]}],"t":55.5},{"s":[{"c":true,"i":[[0.539,-1.777],[2.087,-1.675],[1.708,-0.028],[2.042,1.531],[0.543,2.208],[-0.767,2.121],[-1.745,1.223],[-2.391,-0.071],[-2.227,-1.571],[-0.596,-1.893]],"o":[[-0.776,2.561],[-1.982,1.592],[-1.708,0.028],[-1.819,-1.364],[-0.539,-2.19],[0.724,-2.004],[1.958,-1.373],[2.724,0.081],[1.622,1.143],[0.558,1.771]],"v":[[82.222,-24.569],[77.872,-18.057],[70.875,-15.723],[64.154,-17.965],[60.195,-24.028],[60.725,-30.981],[64.775,-36.281],[71.1,-38.053],[78.264,-36.125],[81.75,-31.25]]}],"t":56.0000022809268}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.0392,0.0431,0.051],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.5216,0,0.5569],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[54.75,35.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":8,"parent":4}],"v":"5.4.4","fr":29.9700012207031,"op":62.0000025253118,"ip":0,"assets":[]} \ No newline at end of file From a9d01c3d513ab7273644e4e997b41f1478015c30 Mon Sep 17 00:00:00 2001 From: yashmantri Date: Mon, 9 Sep 2024 14:28:08 +0530 Subject: [PATCH 010/124] TP-60588 | Code push loading screen --- CodePushModal.tsx | 3 +- ProgressBar.tsx | 15 +- loader.json | 4754 ++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 4763 insertions(+), 9 deletions(-) diff --git a/CodePushModal.tsx b/CodePushModal.tsx index 279aa2cd..4f1ff25d 100644 --- a/CodePushModal.tsx +++ b/CodePushModal.tsx @@ -42,10 +42,9 @@ const CodePushLoadingModal = forwardRef((_, ref) => { /> - {progress ? ( - Updating to a newer version... + Updating to a newer version... {getInMb(progress?.receivedBytes)} / {getInMb(progress?.totalBytes)} diff --git a/ProgressBar.tsx b/ProgressBar.tsx index 54fd6182..ef1078e7 100644 --- a/ProgressBar.tsx +++ b/ProgressBar.tsx @@ -2,10 +2,10 @@ import { COLORS } from '@rn-ui-lib/colors'; import React, { useState, useEffect } from 'react'; import { View, Text, Animated, StyleSheet } from 'react-native'; -const ProgressBar = ({ progress, height = 10, color = '#18bf5f'}) => { +const ProgressBar = ({ progress, height = 10, color = '#18bf5f' }) => { const [animatedWidth] = useState(new Animated.Value(0)); - console.log({progress}) + console.log({ progress }); useEffect(() => { Animated.timing(animatedWidth, { toValue: progress * 100, @@ -19,10 +19,13 @@ const ProgressBar = ({ progress, height = 10, color = '#18bf5f'}) => { diff --git a/loader.json b/loader.json index a034d39f..88f90ae9 100644 --- a/loader.json +++ b/loader.json @@ -1 +1,4753 @@ -{"nm":"Comp 1","ddd":0,"h":500,"w":500,"meta":{"g":"@lottiefiles/toolkit-js 0.33.2"},"layers":[{"ty":3,"nm":"hz","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[270],"t":45},{"s":[360],"t":57.0000023216576}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":0,"ix":11}},"ef":[],"ind":1},{"ty":3,"nm":"pink","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[180],"t":45},{"s":[270],"t":57.0000023216576}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":0,"ix":11}},"ef":[],"ind":2},{"ty":3,"nm":"yellow","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[90],"t":45},{"s":[180],"t":57.0000023216576}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":0,"ix":11}},"ef":[],"ind":3},{"ty":3,"nm":"blue","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":45},{"s":[90],"t":57.0000023216576}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":0,"ix":11}},"ef":[],"ind":4},{"ty":4,"nm":"Shape Layer 7","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[54.75,35.25,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.34,"y":-0.005},"i":{"x":0.4,"y":0.999},"s":[0,0,100],"t":1},{"o":{"x":0.151,"y":0.004},"i":{"x":0.7,"y":1.001},"s":[250,250,100],"t":10},{"o":{"x":0.151,"y":-0.008},"i":{"x":0.829,"y":0.999},"s":[150,150,100],"t":17},{"o":{"x":0.6,"y":0.054},"i":{"x":0.829,"y":1.002},"s":[210,210,100],"t":24},{"s":[180,180,100],"t":31.0000012626559}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.5,"y":1},"s":[117.75,20.25,0],"t":4,"ti":[37.25,-21,0],"to":[0.667,31.5,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[61.75,104.25,0],"t":10,"ti":[20.5,7.375,0],"to":[-37.25,21,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.25,110.75,0],"t":17,"ti":[0,0,0],"to":[-20.5,-7.375,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.8,"y":1},"s":[-96.25,71.75,0],"t":24,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-115.25,29.75,0],"t":31,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-119.25,3.75,0],"t":36,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.8,"y":0},"i":{"x":0.8,"y":1},"s":[-119.25,3.75,0],"t":55,"ti":[21.25,-400.75,0],"to":[0,0,0]},{"s":[-10.25,69.75,0],"t":66.0000026882351}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[100],"t":57},{"s":[0],"t":61.0000024845809}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-29.409,0],[-8.264,-5.274],[-1.297,-1.007],[-3.361,-5.447],[0,-10.239],[3.97,-7.454],[2.343,-2.806],[5.188,-3.094],[9.954,0],[0,29.409]],"o":[[10.53,0],[1.388,0.886],[5.036,3.912],[5.009,8.118],[0,9.035],[-1.732,3.252],[-3.851,4.613],[-7.97,4.754],[-29.409,0],[0,-29.409]],"v":[[0,-53.25],[28.61,-44.919],[32.64,-42.077],[45.352,-27.921],[53.25,0],[47.03,24.998],[40.895,34.107],[27.239,45.765],[0,53.25],[-53.25,0]]}],"t":35},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-19.305,4.111],[-9.438,-2.461],[-1.56,-0.563],[-4.633,-4.851],[0.793,-14.942],[7.248,-8.113],[3.794,-2.694],[6.608,-2.405],[6.064,0.113],[-1.722,26.528]],"o":[[6.912,-1.472],[1.586,0.413],[6.057,2.186],[6.904,7.229],[-0.7,13.184],[-3.162,3.539],[-6.236,4.428],[-10.152,3.694],[-26.528,-1.722],[1.722,-26.528]],"v":[[8.333,-61.861],[34.335,-60.963],[39.06,-59.501],[55.504,-49.107],[66.028,-16.389],[52.981,15.337],[42.454,24.669],[22.773,34.838],[-3.056,39.917],[-43.806,-6.389]]}],"t":38},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-32.917,3.833],[-13.355,-3.368],[-2.159,-0.727],[-5.745,-5.552],[3.307,-15.619],[8.994,-3.833],[5,-0.045],[11.197,3.445],[22.639,7.556],[-1.333,12.639]],"o":[[11.786,-1.373],[2.244,0.566],[8.385,2.825],[8.561,8.274],[-3.509,14.512],[-3.924,1.672],[-8.219,0.074],[-16.198,2.818],[-22.639,-7.556],[1.444,-12.917]],"v":[[14.722,-57.139],[54.388,-54.564],[61.002,-52.626],[82.74,-40.177],[92.417,-4.722],[73.722,22.055],[60.341,24.569],[31.238,19.238],[-5.278,24.917],[-31.028,-17.778]]}],"t":39},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-47.361,-29.389],[-7.648,-15.316],[-1.038,-2.594],[0.981,-8.747],[18.259,-2.853],[5.82,7.251],[1.759,3.912],[2.502,6.683],[22.639,7.556],[-3.278,15.695]],"o":[[12.084,9.071],[1.285,2.573],[4.031,10.075],[-1.461,13.036],[-14.086,0.967],[-2.539,-3.163],[-2.891,-6.43],[-6.377,-14.099],[-18.75,-6.444],[9.778,-25.972]],"v":[[79.167,-34.083],[110.609,4.852],[114.102,12.614],[119.19,41.502],[91.306,67.5],[62.896,56.583],[56.57,45.847],[49.016,25.627],[10.556,8.25],[-8.806,-28.333]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-16.25,-11.056],[2.113,-34.127],[1.492,-6.189],[16.898,-8.494],[7.447,11.221],[-18.711,8.412],[-6.504,1.623],[0.353,14.204],[13.194,8],[-7.722,11.25]],"o":[[17.242,13.128],[-0.355,5.734],[-7.658,22.767],[-25.181,12.658],[-8.944,-12.083],[7.317,-4.068],[10.692,-2.667],[-1.099,-12.988],[-20.139,-13.667],[16.167,-14.861]],"v":[[81.111,-30.194],[112.77,42.772],[110.041,60.666],[69.75,106.85],[9.361,106.667],[19.961,65.616],[41.313,58.35],[59.572,38.683],[40,9.083],[32.306,-33.611]]}],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-3.194,-21.333],[12.606,-20.309],[3.011,-3.672],[22.999,-1.063],[9.069,13.664],[-16.489,-30.477],[-8.599,-3.749],[-8.623,9.377],[0.139,4.667],[-28,2.361]],"o":[[0.119,11.939],[-2.118,3.412],[-9.069,9.473],[-61.446,0.604],[-18.944,-35.695],[6.289,14.801],[23.906,8.295],[8.623,-9.377],[-2.917,-12.278],[19.5,0.139]],"v":[[109.167,32.306],[98.529,80.319],[90.875,90.944],[41.307,111.202],[-55.361,58.889],[-15.316,31.727],[13.455,62.955],[57.905,58.683],[65,34.361],[83.417,-4.167]]}],"t":42},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.528,-9.361],[8.215,-2.079],[1.153,-0.196],[17.721,5.882],[-4.5,60.972],[-0.656,-18.81],[-6.094,-23.094],[-16.933,-0.211],[-5.555,0.917],[-4.25,-3.75]],"o":[[-2.497,11.106],[-1.38,0.349],[-11.014,0.584],[-51.168,-19.396],[3,-34.861],[1.844,26.468],[8.072,24.961],[5.289,0.345],[11.528,-0.333],[5.055,5.972]],"v":[[66.111,90.778],[44.147,109.022],[40.319,109.833],[-7.582,104.535],[-68.139,-16.389],[-25.316,-25.218],[-20.989,33.789],[22.905,67.016],[40.278,66.305],[59.806,70.694]]}],"t":43},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[8.472,-3.833],[6.324,9.534],[0.973,1.842],[1.888,22.271],[-16.445,22.083],[14.066,-19.921],[1.128,-11.705],[-1.933,-9.933],[-5.972,-10.055],[0.056,-6.944]],"o":[[-12.723,2.664],[-1.063,-1.602],[-11.014,-20.388],[-1.723,-22.729],[20.778,-26.528],[-10.656,13.412],[-1.094,15.239],[2.512,10.623],[4.028,7.028],[0.056,8.333]],"v":[[-17.222,78.695],[-44.412,66.812],[-47.459,61.638],[-64.943,4.674],[-46.472,-67.778],[-12.261,-53.273],[-27.378,-16.767],[-26.539,15.349],[-13.889,42.555],[-5.611,61.944]]}],"t":44},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.306,11.236],[-10.275,10.558],[-1.814,1.612],[-16.446,6.854],[-13.528,0.417],[4.622,-14.921],[11.684,-2.677],[7.65,-5.627],[10.139,-18.528],[11.097,5.556]],"o":[[3.686,-8.93],[1.726,-1.774],[10.445,-8.513],[14.388,-5.091],[8.972,0.417],[-4.545,9.523],[-11.928,2.878],[-4.016,2.706],[-5.139,8.972],[-6.125,-4.167]],"v":[[-54.167,-52.764],[-31.735,-85.142],[-26.417,-90.237],[9.084,-111.437],[44.778,-117.5],[59.128,-97.162],[28.178,-85.239],[-0.289,-70.901],[-23.889,-41.333],[-49.014,-32.083]]}],"t":45},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-8.869,6.304],[-1.454,0.893],[-22.001,2.826],[-10.889,-2.361],[5.1,-10.912],[13.211,1.211],[8.484,-4.933],[7.917,-6.444],[8.597,6.319]],"o":[[3.092,-7.384],[1.49,-1.059],[11.556,-6.43],[13.138,-1.618],[12.722,3.472],[-7.461,13.69],[-9.567,-0.872],[-5.405,3.678],[-4.722,3.972],[-4.319,-3.125]],"v":[[-32.361,-78.458],[-11.404,-101.048],[-6.973,-103.987],[33.112,-117.965],[64.917,-115],[85.239,-92.44],[49.15,-91.767],[20.544,-85.762],[-0.417,-69.806],[-28.181,-63.958]]}],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-7.641,3.022],[-1.394,0.553],[-14.223,0.048],[-20.611,-8.611],[11.011,-10.06],[15.711,6.35],[3.9,-0.488],[7.361,-2.139],[6.514,5.347]],"o":[[3.092,-8.098],[1.284,-0.508],[12.528,-3.374],[3.971,0.048],[13.555,6.805],[-10.517,8.273],[-9.705,-2.539],[-4.294,0.623],[-12.639,3.556],[-3.069,-2.569]],"v":[[-3.056,-97.486],[13.314,-111.297],[17.333,-112.876],[48.668,-117.548],[84.083,-109.861],[103.434,-77.44],[66.928,-89.128],[46.655,-92.151],[27.5,-87.445],[0.431,-85.347]]}],"t":47},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-2.943,0.291],[0,0],[-18.807,-3.285],[-9.083,-9.583],[14.483,-4.366],[9.461,8.295],[11.748,2.151],[5.07,-0.194],[4.917,3.472]],"o":[[3.092,-8.098],[0.494,-0.049],[0,0],[15.916,3.382],[11.055,12.083],[-17.045,3.134],[-5.817,-4.622],[-6.03,-0.627],[-5.417,0.292],[-3.069,-2.569]],"v":[[21.597,-106.305],[38.084,-116.287],[38.861,-116.348],[70.196,-114.909],[103.111,-95.972],[104.822,-56.051],[82.067,-82.045],[60.961,-91.942],[43.542,-92.375],[24.806,-93.611]]}],"t":48},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[-5.302,0.419],[-11.222,-6.43],[0,0],[-1.236,-22.431],[11.705,2.856],[-0.261,11.906],[3.252,3.752],[9.931,1.125],[3.389,3.472]],"o":[[2.431,-7.445],[7.059,-0.554],[9.472,5.653],[0,0],[0.014,12.708],[-12.184,-3.532],[0.017,-9.205],[-3.252,-3.752],[-10.208,-1.236],[-3.069,-2.569]],"v":[[44.375,-107.694],[62.525,-115.419],[88.861,-106.487],[106.098,-90.534],[114.986,-61.18],[99.545,-39.662],[91.372,-64.961],[82.558,-83.331],[66.042,-90.986],[47.583,-95.556]]}],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[0,0],[-14.139,-13.374],[-2.235,-4.007],[0.569,-16.875],[14.761,7.301],[-1.406,9.9],[3.252,3.752],[0,0],[3.389,3.472]],"o":[[2.153,-8.417],[0,0],[6.834,6.626],[2.235,4.007],[0.014,12.708],[-13.85,-9.644],[1.406,-9.9],[-6.03,-8.197],[0,0],[-3.069,-2.569]],"v":[[64.097,-106.028],[75.302,-113.196],[97.75,-102.32],[109.571,-87.479],[115.542,-61.042],[89.267,-29.662],[93.455,-58.573],[89.363,-78.748],[76.042,-88.764],[67.306,-93.889]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-3.725,-5.002],[-1.556,-8.153],[1.376,-6.507],[6.819,-10.208],[6.705,5.634],[-4.739,6.011],[0.336,4.724],[3.403,5.264],[0.889,6.528]],"o":[[8.819,0.055],[3.725,5.002],[1.556,8.153],[-1.376,6.507],[-6.236,10.347],[-5.517,-6.31],[4.739,-6.011],[-0.336,-4.724],[-3.403,-5.264],[-0.778,-5.139]],"v":[[92.847,-101.583],[107.525,-93.752],[116.083,-75.237],[115.682,-53.59],[105.264,-31.597],[82.6,-24.662],[89.289,-48.573],[95.475,-62.637],[90.764,-76.542],[82.861,-90.278]]}],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-2.475,-7.224],[0.528,-6.07],[4.57,-5.951],[5.958,-2.292],[4.761,10.079],[0,0],[-4.225,6.109],[2.014,4.875],[0.889,6.528]],"o":[[8.819,0.055],[2.475,7.224],[-0.528,6.07],[-4.57,5.951],[-5.958,2.292],[-4.406,-8.255],[0,0],[5.775,-6.53],[-2.153,-3.875],[-0.778,-5.139]],"v":[[100.625,-91.305],[116.413,-72.78],[118.722,-54.126],[111.515,-35.534],[93.875,-21.597],[74.267,-25.218],[80.4,-39.961],[90.613,-47.776],[94.097,-64.181],[88.972,-79.167]]}],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-7.292,-4.806],[4.698,-11.526],[2.055,-2.32],[3.737,-2.479],[12.653,-1.458],[1.428,4.106],[0,0],[0,0],[-1.736,4.708],[0.889,6.528]],"o":[[8.403,5.889],[-1.969,5.419],[-2.055,2.32],[-3.737,2.479],[-7.07,0.069],[-2.184,-8.532],[0,0],[0,0],[1.736,-4.708],[-0.778,-5.139]],"v":[[109.514,-71.583],[114.33,-41.53],[106.916,-30.376],[98.182,-22.896],[77.208,-17.292],[65.378,-24.523],[73.317,-36.628],[86.447,-41.387],[95.347,-49.459],[96.472,-63.889]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.347,-3.111],[3.219,-5.002],[2.611,-1.348],[6.124,-0.577],[2.208,2.986],[-2.461,3.551],[0,0],[-5.081,9.447],[-1.597,0.68],[-4.361,-1.25]],"o":[[0.347,3.111],[-3.219,5.002],[-2.611,1.348],[-9.293,0.812],[-2.208,-2.986],[4.483,-5.199],[0,0],[5.081,-9.447],[1.597,-0.68],[4.361,1.25]],"v":[[109.236,-43.944],[104.747,-31.391],[94.278,-21.07],[80.682,-17.062],[64.431,-22.986],[62.6,-34.523],[72.622,-36.906],[87.141,-41.387],[96.042,-52.375],[103.694,-52.917]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.202,-2.461],[2.177,-1.877],[4.056,-0.458],[0,0],[2.352,2.533],[-0.039,2.699],[-6.822,2.4],[-5.081,0.141],[-10.555,-0.75],[-1.097,-3.472]],"o":[[-0.988,2.025],[-2.177,1.877],[-10.25,1.695],[0,0],[-1.956,-2.106],[0.039,-2.699],[5.711,-1.566],[10.775,-0.28],[7.014,1.264],[1.097,3.472]],"v":[[103.403,-26.861],[98.288,-21.877],[88.166,-17.459],[73.39,-16.507],[62.625,-19.514],[58.989,-27.579],[65.678,-37.045],[76.308,-35.97],[94.93,-42.514],[104.111,-36.458]]}],"t":55},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[0.703,-1.596],[1.407,-0.602],[2.888,-0.419],[2.877,0.708],[1.292,2.165],[-0.543,2.015],[-2.308,1.705],[-3.344,-0.329],[-2.577,-1.805],[-0.756,-2.55]],"o":[[-0.617,1.401],[-2.682,1.148],[-2.933,0.425],[-2.448,-0.602],[-1.069,-1.792],[0.876,-3.25],[2.308,-1.705],[3.131,0.308],[2.178,1.526],[0.496,1.672]],"v":[[86.875,-21.93],[83.011,-18.196],[75.666,-16.348],[66.515,-16.646],[60.542,-21.042],[59.753,-27.787],[63.525,-33.989],[74.363,-36.109],[83.055,-33.903],[87.167,-28.194]]}],"t":55.5},{"s":[{"c":true,"i":[[0.539,-1.777],[2.087,-1.675],[1.708,-0.028],[2.042,1.531],[0.543,2.208],[-0.767,2.121],[-1.745,1.223],[-2.391,-0.071],[-2.227,-1.571],[-0.596,-1.893]],"o":[[-0.776,2.561],[-1.982,1.592],[-1.708,0.028],[-1.819,-1.364],[-0.539,-2.19],[0.724,-2.004],[1.958,-1.373],[2.724,0.081],[1.622,1.143],[0.558,1.771]],"v":[[82.222,-24.569],[77.872,-18.057],[70.875,-15.723],[64.154,-17.965],[60.195,-24.028],[60.725,-30.981],[64.775,-36.281],[71.1,-38.053],[78.264,-36.125],[81.75,-31.25]]}],"t":56.0000022809268}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.0392,0.0431,0.051],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.5216,0,0.5569],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[54.75,35.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":5,"parent":2},{"ty":4,"nm":"Shape Layer 6","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[54.75,35.25,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.34,"y":-0.005},"i":{"x":0.4,"y":0.999},"s":[0,0,100],"t":1},{"o":{"x":0.151,"y":0.004},"i":{"x":0.7,"y":1.001},"s":[250,250,100],"t":10},{"o":{"x":0.151,"y":-0.008},"i":{"x":0.829,"y":0.999},"s":[150,150,100],"t":17},{"o":{"x":0.6,"y":0.054},"i":{"x":0.829,"y":1.002},"s":[210,210,100],"t":24},{"s":[180,180,100],"t":31.0000012626559}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.5,"y":1},"s":[117.75,20.25,0],"t":4,"ti":[37.25,-21,0],"to":[0.667,31.5,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[61.75,104.25,0],"t":10,"ti":[20.5,7.375,0],"to":[-37.25,21,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.25,110.75,0],"t":17,"ti":[0,0,0],"to":[-20.5,-7.375,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.8,"y":1},"s":[-96.25,71.75,0],"t":24,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-115.25,29.75,0],"t":31,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-119.25,3.75,0],"t":36,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.8,"y":0},"i":{"x":0.8,"y":1},"s":[-119.25,3.75,0],"t":55,"ti":[21.25,-400.75,0],"to":[0,0,0]},{"s":[-10.25,69.75,0],"t":66.0000026882351}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[100],"t":57},{"s":[0],"t":61.0000024845809}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-29.409,0],[-8.264,-5.274],[-1.297,-1.007],[-3.361,-5.447],[0,-10.239],[3.97,-7.454],[2.343,-2.806],[5.188,-3.094],[9.954,0],[0,29.409]],"o":[[10.53,0],[1.388,0.886],[5.036,3.912],[5.009,8.118],[0,9.035],[-1.732,3.252],[-3.851,4.613],[-7.97,4.754],[-29.409,0],[0,-29.409]],"v":[[0,-53.25],[28.61,-44.919],[32.64,-42.077],[45.352,-27.921],[53.25,0],[47.03,24.998],[40.895,34.107],[27.239,45.765],[0,53.25],[-53.25,0]]}],"t":35},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-19.305,4.111],[-9.438,-2.461],[-1.56,-0.563],[-4.633,-4.851],[0.793,-14.942],[7.248,-8.113],[3.794,-2.694],[6.608,-2.405],[6.064,0.113],[-1.722,26.528]],"o":[[6.912,-1.472],[1.586,0.413],[6.057,2.186],[6.904,7.229],[-0.7,13.184],[-3.162,3.539],[-6.236,4.428],[-10.152,3.694],[-26.528,-1.722],[1.722,-26.528]],"v":[[8.333,-61.861],[34.335,-60.963],[39.06,-59.501],[55.504,-49.107],[66.028,-16.389],[52.981,15.337],[42.454,24.669],[22.773,34.838],[-3.056,39.917],[-43.806,-6.389]]}],"t":38},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-32.917,3.833],[-13.355,-3.368],[-2.159,-0.727],[-5.745,-5.552],[3.307,-15.619],[8.994,-3.833],[5,-0.045],[11.197,3.445],[22.639,7.556],[-1.333,12.639]],"o":[[11.786,-1.373],[2.244,0.566],[8.385,2.825],[8.561,8.274],[-3.509,14.512],[-3.924,1.672],[-8.219,0.074],[-16.198,2.818],[-22.639,-7.556],[1.444,-12.917]],"v":[[14.722,-57.139],[54.388,-54.564],[61.002,-52.626],[82.74,-40.177],[92.417,-4.722],[73.722,22.055],[60.341,24.569],[31.238,19.238],[-5.278,24.917],[-31.028,-17.778]]}],"t":39},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-47.361,-29.389],[-7.648,-15.316],[-1.038,-2.594],[0.981,-8.747],[18.259,-2.853],[5.82,7.251],[1.759,3.912],[2.502,6.683],[22.639,7.556],[-3.278,15.695]],"o":[[12.084,9.071],[1.285,2.573],[4.031,10.075],[-1.461,13.036],[-14.086,0.967],[-2.539,-3.163],[-2.891,-6.43],[-6.377,-14.099],[-18.75,-6.444],[9.778,-25.972]],"v":[[79.167,-34.083],[110.609,4.852],[114.102,12.614],[119.19,41.502],[91.306,67.5],[62.896,56.583],[56.57,45.847],[49.016,25.627],[10.556,8.25],[-8.806,-28.333]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-16.25,-11.056],[2.113,-34.127],[1.492,-6.189],[16.898,-8.494],[7.447,11.221],[-18.711,8.412],[-6.504,1.623],[0.353,14.204],[13.194,8],[-7.722,11.25]],"o":[[17.242,13.128],[-0.355,5.734],[-7.658,22.767],[-25.181,12.658],[-8.944,-12.083],[7.317,-4.068],[10.692,-2.667],[-1.099,-12.988],[-20.139,-13.667],[16.167,-14.861]],"v":[[81.111,-30.194],[112.77,42.772],[110.041,60.666],[69.75,106.85],[9.361,106.667],[19.961,65.616],[41.313,58.35],[59.572,38.683],[40,9.083],[32.306,-33.611]]}],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-3.194,-21.333],[12.606,-20.309],[3.011,-3.672],[22.999,-1.063],[9.069,13.664],[-16.489,-30.477],[-8.599,-3.749],[-8.623,9.377],[0.139,4.667],[-28,2.361]],"o":[[0.119,11.939],[-2.118,3.412],[-9.069,9.473],[-61.446,0.604],[-18.944,-35.695],[6.289,14.801],[23.906,8.295],[8.623,-9.377],[-2.917,-12.278],[19.5,0.139]],"v":[[109.167,32.306],[98.529,80.319],[90.875,90.944],[41.307,111.202],[-55.361,58.889],[-15.316,31.727],[13.455,62.955],[57.905,58.683],[65,34.361],[83.417,-4.167]]}],"t":42},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.528,-9.361],[8.215,-2.079],[1.153,-0.196],[17.721,5.882],[-4.5,60.972],[-0.656,-18.81],[-6.094,-23.094],[-16.933,-0.211],[-5.555,0.917],[-4.25,-3.75]],"o":[[-2.497,11.106],[-1.38,0.349],[-11.014,0.584],[-51.168,-19.396],[3,-34.861],[1.844,26.468],[8.072,24.961],[5.289,0.345],[11.528,-0.333],[5.055,5.972]],"v":[[66.111,90.778],[44.147,109.022],[40.319,109.833],[-7.582,104.535],[-68.139,-16.389],[-25.316,-25.218],[-20.989,33.789],[22.905,67.016],[40.278,66.305],[59.806,70.694]]}],"t":43},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[8.472,-3.833],[6.324,9.534],[0.973,1.842],[1.888,22.271],[-16.445,22.083],[14.066,-19.921],[1.128,-11.705],[-1.933,-9.933],[-5.972,-10.055],[0.056,-6.944]],"o":[[-12.723,2.664],[-1.063,-1.602],[-11.014,-20.388],[-1.723,-22.729],[20.778,-26.528],[-10.656,13.412],[-1.094,15.239],[2.512,10.623],[4.028,7.028],[0.056,8.333]],"v":[[-17.222,78.695],[-44.412,66.812],[-47.459,61.638],[-64.943,4.674],[-46.472,-67.778],[-12.261,-53.273],[-27.378,-16.767],[-26.539,15.349],[-13.889,42.555],[-5.611,61.944]]}],"t":44},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.306,11.236],[-10.275,10.558],[-1.814,1.612],[-16.446,6.854],[-13.528,0.417],[4.622,-14.921],[11.684,-2.677],[7.65,-5.627],[10.139,-18.528],[11.097,5.556]],"o":[[3.686,-8.93],[1.726,-1.774],[10.445,-8.513],[14.388,-5.091],[8.972,0.417],[-4.545,9.523],[-11.928,2.878],[-4.016,2.706],[-5.139,8.972],[-6.125,-4.167]],"v":[[-54.167,-52.764],[-31.735,-85.142],[-26.417,-90.237],[9.084,-111.437],[44.778,-117.5],[59.128,-97.162],[28.178,-85.239],[-0.289,-70.901],[-23.889,-41.333],[-49.014,-32.083]]}],"t":45},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-8.869,6.304],[-1.454,0.893],[-22.001,2.826],[-10.889,-2.361],[5.1,-10.912],[13.211,1.211],[8.484,-4.933],[7.917,-6.444],[8.597,6.319]],"o":[[3.092,-7.384],[1.49,-1.059],[11.556,-6.43],[13.138,-1.618],[12.722,3.472],[-7.461,13.69],[-9.567,-0.872],[-5.405,3.678],[-4.722,3.972],[-4.319,-3.125]],"v":[[-32.361,-78.458],[-11.404,-101.048],[-6.973,-103.987],[33.112,-117.965],[64.917,-115],[85.239,-92.44],[49.15,-91.767],[20.544,-85.762],[-0.417,-69.806],[-28.181,-63.958]]}],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-7.641,3.022],[-1.394,0.553],[-14.223,0.048],[-20.611,-8.611],[11.011,-10.06],[15.711,6.35],[3.9,-0.488],[7.361,-2.139],[6.514,5.347]],"o":[[3.092,-8.098],[1.284,-0.508],[12.528,-3.374],[3.971,0.048],[13.555,6.805],[-10.517,8.273],[-9.705,-2.539],[-4.294,0.623],[-12.639,3.556],[-3.069,-2.569]],"v":[[-3.056,-97.486],[13.314,-111.297],[17.333,-112.876],[48.668,-117.548],[84.083,-109.861],[103.434,-77.44],[66.928,-89.128],[46.655,-92.151],[27.5,-87.445],[0.431,-85.347]]}],"t":47},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-2.943,0.291],[0,0],[-18.807,-3.285],[-9.083,-9.583],[14.483,-4.366],[9.461,8.295],[11.748,2.151],[5.07,-0.194],[4.917,3.472]],"o":[[3.092,-8.098],[0.494,-0.049],[0,0],[15.916,3.382],[11.055,12.083],[-17.045,3.134],[-5.817,-4.622],[-6.03,-0.627],[-5.417,0.292],[-3.069,-2.569]],"v":[[21.597,-106.305],[38.084,-116.287],[38.861,-116.348],[70.196,-114.909],[103.111,-95.972],[104.822,-56.051],[82.067,-82.045],[60.961,-91.942],[43.542,-92.375],[24.806,-93.611]]}],"t":48},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[-5.302,0.419],[-11.222,-6.43],[0,0],[-1.236,-22.431],[11.705,2.856],[-0.261,11.906],[3.252,3.752],[9.931,1.125],[3.389,3.472]],"o":[[2.431,-7.445],[7.059,-0.554],[9.472,5.653],[0,0],[0.014,12.708],[-12.184,-3.532],[0.017,-9.205],[-3.252,-3.752],[-10.208,-1.236],[-3.069,-2.569]],"v":[[44.375,-107.694],[62.525,-115.419],[88.861,-106.487],[106.098,-90.534],[114.986,-61.18],[99.545,-39.662],[91.372,-64.961],[82.558,-83.331],[66.042,-90.986],[47.583,-95.556]]}],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[0,0],[-14.139,-13.374],[-2.235,-4.007],[0.569,-16.875],[14.761,7.301],[-1.406,9.9],[3.252,3.752],[0,0],[3.389,3.472]],"o":[[2.153,-8.417],[0,0],[6.834,6.626],[2.235,4.007],[0.014,12.708],[-13.85,-9.644],[1.406,-9.9],[-6.03,-8.197],[0,0],[-3.069,-2.569]],"v":[[64.097,-106.028],[75.302,-113.196],[97.75,-102.32],[109.571,-87.479],[115.542,-61.042],[89.267,-29.662],[93.455,-58.573],[89.363,-78.748],[76.042,-88.764],[67.306,-93.889]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-3.725,-5.002],[-1.556,-8.153],[1.376,-6.507],[6.819,-10.208],[6.705,5.634],[-4.739,6.011],[0.336,4.724],[3.403,5.264],[0.889,6.528]],"o":[[8.819,0.055],[3.725,5.002],[1.556,8.153],[-1.376,6.507],[-6.236,10.347],[-5.517,-6.31],[4.739,-6.011],[-0.336,-4.724],[-3.403,-5.264],[-0.778,-5.139]],"v":[[92.847,-101.583],[107.525,-93.752],[116.083,-75.237],[115.682,-53.59],[105.264,-31.597],[82.6,-24.662],[89.289,-48.573],[95.475,-62.637],[90.764,-76.542],[82.861,-90.278]]}],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-2.475,-7.224],[0.528,-6.07],[4.57,-5.951],[5.958,-2.292],[4.761,10.079],[0,0],[-4.225,6.109],[2.014,4.875],[0.889,6.528]],"o":[[8.819,0.055],[2.475,7.224],[-0.528,6.07],[-4.57,5.951],[-5.958,2.292],[-4.406,-8.255],[0,0],[5.775,-6.53],[-2.153,-3.875],[-0.778,-5.139]],"v":[[100.625,-91.305],[116.413,-72.78],[118.722,-54.126],[111.515,-35.534],[93.875,-21.597],[74.267,-25.218],[80.4,-39.961],[90.613,-47.776],[94.097,-64.181],[88.972,-79.167]]}],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-7.292,-4.806],[4.698,-11.526],[2.055,-2.32],[3.737,-2.479],[12.653,-1.458],[1.428,4.106],[0,0],[0,0],[-1.736,4.708],[0.889,6.528]],"o":[[8.403,5.889],[-1.969,5.419],[-2.055,2.32],[-3.737,2.479],[-7.07,0.069],[-2.184,-8.532],[0,0],[0,0],[1.736,-4.708],[-0.778,-5.139]],"v":[[109.514,-71.583],[114.33,-41.53],[106.916,-30.376],[98.182,-22.896],[77.208,-17.292],[65.378,-24.523],[73.317,-36.628],[86.447,-41.387],[95.347,-49.459],[96.472,-63.889]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.347,-3.111],[3.219,-5.002],[2.611,-1.348],[6.124,-0.577],[2.208,2.986],[-2.461,3.551],[0,0],[-5.081,9.447],[-1.597,0.68],[-4.361,-1.25]],"o":[[0.347,3.111],[-3.219,5.002],[-2.611,1.348],[-9.293,0.812],[-2.208,-2.986],[4.483,-5.199],[0,0],[5.081,-9.447],[1.597,-0.68],[4.361,1.25]],"v":[[109.236,-43.944],[104.747,-31.391],[94.278,-21.07],[80.682,-17.062],[64.431,-22.986],[62.6,-34.523],[72.622,-36.906],[87.141,-41.387],[96.042,-52.375],[103.694,-52.917]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.202,-2.461],[2.177,-1.877],[4.056,-0.458],[0,0],[2.352,2.533],[-0.039,2.699],[-6.822,2.4],[-5.081,0.141],[-10.555,-0.75],[-1.097,-3.472]],"o":[[-0.988,2.025],[-2.177,1.877],[-10.25,1.695],[0,0],[-1.956,-2.106],[0.039,-2.699],[5.711,-1.566],[10.775,-0.28],[7.014,1.264],[1.097,3.472]],"v":[[103.403,-26.861],[98.288,-21.877],[88.166,-17.459],[73.39,-16.507],[62.625,-19.514],[58.989,-27.579],[65.678,-37.045],[76.308,-35.97],[94.93,-42.514],[104.111,-36.458]]}],"t":55},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[0.703,-1.596],[1.407,-0.602],[2.888,-0.419],[2.877,0.708],[1.292,2.165],[-0.543,2.015],[-2.308,1.705],[-3.344,-0.329],[-2.577,-1.805],[-0.756,-2.55]],"o":[[-0.617,1.401],[-2.682,1.148],[-2.933,0.425],[-2.448,-0.602],[-1.069,-1.792],[0.876,-3.25],[2.308,-1.705],[3.131,0.308],[2.178,1.526],[0.496,1.672]],"v":[[86.875,-21.93],[83.011,-18.196],[75.666,-16.348],[66.515,-16.646],[60.542,-21.042],[59.753,-27.787],[63.525,-33.989],[74.363,-36.109],[83.055,-33.903],[87.167,-28.194]]}],"t":55.5},{"s":[{"c":true,"i":[[0.539,-1.777],[2.087,-1.675],[1.708,-0.028],[2.042,1.531],[0.543,2.208],[-0.767,2.121],[-1.745,1.223],[-2.391,-0.071],[-2.227,-1.571],[-0.596,-1.893]],"o":[[-0.776,2.561],[-1.982,1.592],[-1.708,0.028],[-1.819,-1.364],[-0.539,-2.19],[0.724,-2.004],[1.958,-1.373],[2.724,0.081],[1.622,1.143],[0.558,1.771]],"v":[[82.222,-24.569],[77.872,-18.057],[70.875,-15.723],[64.154,-17.965],[60.195,-24.028],[60.725,-30.981],[64.775,-36.281],[71.1,-38.053],[78.264,-36.125],[81.75,-31.25]]}],"t":56.0000022809268}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.0392,0.0431,0.051],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.0941,0.749,0.3725],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[54.75,35.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":6,"parent":3},{"ty":4,"nm":"Shape Layer 8","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[54.75,35.25,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.34,"y":-0.005},"i":{"x":0.4,"y":0.999},"s":[0,0,100],"t":1},{"o":{"x":0.151,"y":0.004},"i":{"x":0.7,"y":1.001},"s":[250,250,100],"t":10},{"o":{"x":0.151,"y":-0.008},"i":{"x":0.829,"y":0.999},"s":[150,150,100],"t":17},{"o":{"x":0.6,"y":0.054},"i":{"x":0.829,"y":1.002},"s":[210,210,100],"t":24},{"s":[180,180,100],"t":31.0000012626559}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.5,"y":1},"s":[117.75,20.25,0],"t":4,"ti":[37.25,-21,0],"to":[0.667,31.5,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[61.75,104.25,0],"t":10,"ti":[20.5,7.375,0],"to":[-37.25,21,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.25,110.75,0],"t":17,"ti":[0,0,0],"to":[-20.5,-7.375,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.8,"y":1},"s":[-96.25,71.75,0],"t":24,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-115.25,29.75,0],"t":31,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-119.25,3.75,0],"t":36,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.8,"y":0},"i":{"x":0.8,"y":1},"s":[-119.25,3.75,0],"t":55,"ti":[21.25,-400.75,0],"to":[0,0,0]},{"s":[-10.25,69.75,0],"t":66.0000026882351}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[100],"t":57},{"s":[0],"t":61.0000024845809}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-29.409,0],[-8.264,-5.274],[-1.297,-1.007],[-3.361,-5.447],[0,-10.239],[3.97,-7.454],[2.343,-2.806],[5.188,-3.094],[9.954,0],[0,29.409]],"o":[[10.53,0],[1.388,0.886],[5.036,3.912],[5.009,8.118],[0,9.035],[-1.732,3.252],[-3.851,4.613],[-7.97,4.754],[-29.409,0],[0,-29.409]],"v":[[0,-53.25],[28.61,-44.919],[32.64,-42.077],[45.352,-27.921],[53.25,0],[47.03,24.998],[40.895,34.107],[27.239,45.765],[0,53.25],[-53.25,0]]}],"t":35},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-19.305,4.111],[-9.438,-2.461],[-1.56,-0.563],[-4.633,-4.851],[0.793,-14.942],[7.248,-8.113],[3.794,-2.694],[6.608,-2.405],[6.064,0.113],[-1.722,26.528]],"o":[[6.912,-1.472],[1.586,0.413],[6.057,2.186],[6.904,7.229],[-0.7,13.184],[-3.162,3.539],[-6.236,4.428],[-10.152,3.694],[-26.528,-1.722],[1.722,-26.528]],"v":[[8.333,-61.861],[34.335,-60.963],[39.06,-59.501],[55.504,-49.107],[66.028,-16.389],[52.981,15.337],[42.454,24.669],[22.773,34.838],[-3.056,39.917],[-43.806,-6.389]]}],"t":38},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-32.917,3.833],[-13.355,-3.368],[-2.159,-0.727],[-5.745,-5.552],[3.307,-15.619],[8.994,-3.833],[5,-0.045],[11.197,3.445],[22.639,7.556],[-1.333,12.639]],"o":[[11.786,-1.373],[2.244,0.566],[8.385,2.825],[8.561,8.274],[-3.509,14.512],[-3.924,1.672],[-8.219,0.074],[-16.198,2.818],[-22.639,-7.556],[1.444,-12.917]],"v":[[14.722,-57.139],[54.388,-54.564],[61.002,-52.626],[82.74,-40.177],[92.417,-4.722],[73.722,22.055],[60.341,24.569],[31.238,19.238],[-5.278,24.917],[-31.028,-17.778]]}],"t":39},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-47.361,-29.389],[-7.648,-15.316],[-1.038,-2.594],[0.981,-8.747],[18.259,-2.853],[5.82,7.251],[1.759,3.912],[2.502,6.683],[22.639,7.556],[-3.278,15.695]],"o":[[12.084,9.071],[1.285,2.573],[4.031,10.075],[-1.461,13.036],[-14.086,0.967],[-2.539,-3.163],[-2.891,-6.43],[-6.377,-14.099],[-18.75,-6.444],[9.778,-25.972]],"v":[[79.167,-34.083],[110.609,4.852],[114.102,12.614],[119.19,41.502],[91.306,67.5],[62.896,56.583],[56.57,45.847],[49.016,25.627],[10.556,8.25],[-8.806,-28.333]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-16.25,-11.056],[2.113,-34.127],[1.492,-6.189],[16.898,-8.494],[7.447,11.221],[-18.711,8.412],[-6.504,1.623],[0.353,14.204],[13.194,8],[-7.722,11.25]],"o":[[17.242,13.128],[-0.355,5.734],[-7.658,22.767],[-25.181,12.658],[-8.944,-12.083],[7.317,-4.068],[10.692,-2.667],[-1.099,-12.988],[-20.139,-13.667],[16.167,-14.861]],"v":[[81.111,-30.194],[112.77,42.772],[110.041,60.666],[69.75,106.85],[9.361,106.667],[19.961,65.616],[41.313,58.35],[59.572,38.683],[40,9.083],[32.306,-33.611]]}],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-3.194,-21.333],[12.606,-20.309],[3.011,-3.672],[22.999,-1.063],[9.069,13.664],[-16.489,-30.477],[-8.599,-3.749],[-8.623,9.377],[0.139,4.667],[-28,2.361]],"o":[[0.119,11.939],[-2.118,3.412],[-9.069,9.473],[-61.446,0.604],[-18.944,-35.695],[6.289,14.801],[23.906,8.295],[8.623,-9.377],[-2.917,-12.278],[19.5,0.139]],"v":[[109.167,32.306],[98.529,80.319],[90.875,90.944],[41.307,111.202],[-55.361,58.889],[-15.316,31.727],[13.455,62.955],[57.905,58.683],[65,34.361],[83.417,-4.167]]}],"t":42},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.528,-9.361],[8.215,-2.079],[1.153,-0.196],[17.721,5.882],[-4.5,60.972],[-0.656,-18.81],[-6.094,-23.094],[-16.933,-0.211],[-5.555,0.917],[-4.25,-3.75]],"o":[[-2.497,11.106],[-1.38,0.349],[-11.014,0.584],[-51.168,-19.396],[3,-34.861],[1.844,26.468],[8.072,24.961],[5.289,0.345],[11.528,-0.333],[5.055,5.972]],"v":[[66.111,90.778],[44.147,109.022],[40.319,109.833],[-7.582,104.535],[-68.139,-16.389],[-25.316,-25.218],[-20.989,33.789],[22.905,67.016],[40.278,66.305],[59.806,70.694]]}],"t":43},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[8.472,-3.833],[6.324,9.534],[0.973,1.842],[1.888,22.271],[-16.445,22.083],[14.066,-19.921],[1.128,-11.705],[-1.933,-9.933],[-5.972,-10.055],[0.056,-6.944]],"o":[[-12.723,2.664],[-1.063,-1.602],[-11.014,-20.388],[-1.723,-22.729],[20.778,-26.528],[-10.656,13.412],[-1.094,15.239],[2.512,10.623],[4.028,7.028],[0.056,8.333]],"v":[[-17.222,78.695],[-44.412,66.812],[-47.459,61.638],[-64.943,4.674],[-46.472,-67.778],[-12.261,-53.273],[-27.378,-16.767],[-26.539,15.349],[-13.889,42.555],[-5.611,61.944]]}],"t":44},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.306,11.236],[-10.275,10.558],[-1.814,1.612],[-16.446,6.854],[-13.528,0.417],[4.622,-14.921],[11.684,-2.677],[7.65,-5.627],[10.139,-18.528],[11.097,5.556]],"o":[[3.686,-8.93],[1.726,-1.774],[10.445,-8.513],[14.388,-5.091],[8.972,0.417],[-4.545,9.523],[-11.928,2.878],[-4.016,2.706],[-5.139,8.972],[-6.125,-4.167]],"v":[[-54.167,-52.764],[-31.735,-85.142],[-26.417,-90.237],[9.084,-111.437],[44.778,-117.5],[59.128,-97.162],[28.178,-85.239],[-0.289,-70.901],[-23.889,-41.333],[-49.014,-32.083]]}],"t":45},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-8.869,6.304],[-1.454,0.893],[-22.001,2.826],[-10.889,-2.361],[5.1,-10.912],[13.211,1.211],[8.484,-4.933],[7.917,-6.444],[8.597,6.319]],"o":[[3.092,-7.384],[1.49,-1.059],[11.556,-6.43],[13.138,-1.618],[12.722,3.472],[-7.461,13.69],[-9.567,-0.872],[-5.405,3.678],[-4.722,3.972],[-4.319,-3.125]],"v":[[-32.361,-78.458],[-11.404,-101.048],[-6.973,-103.987],[33.112,-117.965],[64.917,-115],[85.239,-92.44],[49.15,-91.767],[20.544,-85.762],[-0.417,-69.806],[-28.181,-63.958]]}],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-7.641,3.022],[-1.394,0.553],[-14.223,0.048],[-20.611,-8.611],[11.011,-10.06],[15.711,6.35],[3.9,-0.488],[7.361,-2.139],[6.514,5.347]],"o":[[3.092,-8.098],[1.284,-0.508],[12.528,-3.374],[3.971,0.048],[13.555,6.805],[-10.517,8.273],[-9.705,-2.539],[-4.294,0.623],[-12.639,3.556],[-3.069,-2.569]],"v":[[-3.056,-97.486],[13.314,-111.297],[17.333,-112.876],[48.668,-117.548],[84.083,-109.861],[103.434,-77.44],[66.928,-89.128],[46.655,-92.151],[27.5,-87.445],[0.431,-85.347]]}],"t":47},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-2.943,0.291],[0,0],[-18.807,-3.285],[-9.083,-9.583],[14.483,-4.366],[9.461,8.295],[11.748,2.151],[5.07,-0.194],[4.917,3.472]],"o":[[3.092,-8.098],[0.494,-0.049],[0,0],[15.916,3.382],[11.055,12.083],[-17.045,3.134],[-5.817,-4.622],[-6.03,-0.627],[-5.417,0.292],[-3.069,-2.569]],"v":[[21.597,-106.305],[38.084,-116.287],[38.861,-116.348],[70.196,-114.909],[103.111,-95.972],[104.822,-56.051],[82.067,-82.045],[60.961,-91.942],[43.542,-92.375],[24.806,-93.611]]}],"t":48},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[-5.302,0.419],[-11.222,-6.43],[0,0],[-1.236,-22.431],[11.705,2.856],[-0.261,11.906],[3.252,3.752],[9.931,1.125],[3.389,3.472]],"o":[[2.431,-7.445],[7.059,-0.554],[9.472,5.653],[0,0],[0.014,12.708],[-12.184,-3.532],[0.017,-9.205],[-3.252,-3.752],[-10.208,-1.236],[-3.069,-2.569]],"v":[[44.375,-107.694],[62.525,-115.419],[88.861,-106.487],[106.098,-90.534],[114.986,-61.18],[99.545,-39.662],[91.372,-64.961],[82.558,-83.331],[66.042,-90.986],[47.583,-95.556]]}],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[0,0],[-14.139,-13.374],[-2.235,-4.007],[0.569,-16.875],[14.761,7.301],[-1.406,9.9],[3.252,3.752],[0,0],[3.389,3.472]],"o":[[2.153,-8.417],[0,0],[6.834,6.626],[2.235,4.007],[0.014,12.708],[-13.85,-9.644],[1.406,-9.9],[-6.03,-8.197],[0,0],[-3.069,-2.569]],"v":[[64.097,-106.028],[75.302,-113.196],[97.75,-102.32],[109.571,-87.479],[115.542,-61.042],[89.267,-29.662],[93.455,-58.573],[89.363,-78.748],[76.042,-88.764],[67.306,-93.889]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-3.725,-5.002],[-1.556,-8.153],[1.376,-6.507],[6.819,-10.208],[6.705,5.634],[-4.739,6.011],[0.336,4.724],[3.403,5.264],[0.889,6.528]],"o":[[8.819,0.055],[3.725,5.002],[1.556,8.153],[-1.376,6.507],[-6.236,10.347],[-5.517,-6.31],[4.739,-6.011],[-0.336,-4.724],[-3.403,-5.264],[-0.778,-5.139]],"v":[[92.847,-101.583],[107.525,-93.752],[116.083,-75.237],[115.682,-53.59],[105.264,-31.597],[82.6,-24.662],[89.289,-48.573],[95.475,-62.637],[90.764,-76.542],[82.861,-90.278]]}],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-2.475,-7.224],[0.528,-6.07],[4.57,-5.951],[5.958,-2.292],[4.761,10.079],[0,0],[-4.225,6.109],[2.014,4.875],[0.889,6.528]],"o":[[8.819,0.055],[2.475,7.224],[-0.528,6.07],[-4.57,5.951],[-5.958,2.292],[-4.406,-8.255],[0,0],[5.775,-6.53],[-2.153,-3.875],[-0.778,-5.139]],"v":[[100.625,-91.305],[116.413,-72.78],[118.722,-54.126],[111.515,-35.534],[93.875,-21.597],[74.267,-25.218],[80.4,-39.961],[90.613,-47.776],[94.097,-64.181],[88.972,-79.167]]}],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-7.292,-4.806],[4.698,-11.526],[2.055,-2.32],[3.737,-2.479],[12.653,-1.458],[1.428,4.106],[0,0],[0,0],[-1.736,4.708],[0.889,6.528]],"o":[[8.403,5.889],[-1.969,5.419],[-2.055,2.32],[-3.737,2.479],[-7.07,0.069],[-2.184,-8.532],[0,0],[0,0],[1.736,-4.708],[-0.778,-5.139]],"v":[[109.514,-71.583],[114.33,-41.53],[106.916,-30.376],[98.182,-22.896],[77.208,-17.292],[65.378,-24.523],[73.317,-36.628],[86.447,-41.387],[95.347,-49.459],[96.472,-63.889]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.347,-3.111],[3.219,-5.002],[2.611,-1.348],[6.124,-0.577],[2.208,2.986],[-2.461,3.551],[0,0],[-5.081,9.447],[-1.597,0.68],[-4.361,-1.25]],"o":[[0.347,3.111],[-3.219,5.002],[-2.611,1.348],[-9.293,0.812],[-2.208,-2.986],[4.483,-5.199],[0,0],[5.081,-9.447],[1.597,-0.68],[4.361,1.25]],"v":[[109.236,-43.944],[104.747,-31.391],[94.278,-21.07],[80.682,-17.062],[64.431,-22.986],[62.6,-34.523],[72.622,-36.906],[87.141,-41.387],[96.042,-52.375],[103.694,-52.917]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.202,-2.461],[2.177,-1.877],[4.056,-0.458],[0,0],[2.352,2.533],[-0.039,2.699],[-6.822,2.4],[-5.081,0.141],[-10.555,-0.75],[-1.097,-3.472]],"o":[[-0.988,2.025],[-2.177,1.877],[-10.25,1.695],[0,0],[-1.956,-2.106],[0.039,-2.699],[5.711,-1.566],[10.775,-0.28],[7.014,1.264],[1.097,3.472]],"v":[[103.403,-26.861],[98.288,-21.877],[88.166,-17.459],[73.39,-16.507],[62.625,-19.514],[58.989,-27.579],[65.678,-37.045],[76.308,-35.97],[94.93,-42.514],[104.111,-36.458]]}],"t":55},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[0.703,-1.596],[1.407,-0.602],[2.888,-0.419],[2.877,0.708],[1.292,2.165],[-0.543,2.015],[-2.308,1.705],[-3.344,-0.329],[-2.577,-1.805],[-0.756,-2.55]],"o":[[-0.617,1.401],[-2.682,1.148],[-2.933,0.425],[-2.448,-0.602],[-1.069,-1.792],[0.876,-3.25],[2.308,-1.705],[3.131,0.308],[2.178,1.526],[0.496,1.672]],"v":[[86.875,-21.93],[83.011,-18.196],[75.666,-16.348],[66.515,-16.646],[60.542,-21.042],[59.753,-27.787],[63.525,-33.989],[74.363,-36.109],[83.055,-33.903],[87.167,-28.194]]}],"t":55.5},{"s":[{"c":true,"i":[[0.539,-1.777],[2.087,-1.675],[1.708,-0.028],[2.042,1.531],[0.543,2.208],[-0.767,2.121],[-1.745,1.223],[-2.391,-0.071],[-2.227,-1.571],[-0.596,-1.893]],"o":[[-0.776,2.561],[-1.982,1.592],[-1.708,0.028],[-1.819,-1.364],[-0.539,-2.19],[0.724,-2.004],[1.958,-1.373],[2.724,0.081],[1.622,1.143],[0.558,1.771]],"v":[[82.222,-24.569],[77.872,-18.057],[70.875,-15.723],[64.154,-17.965],[60.195,-24.028],[60.725,-30.981],[64.775,-36.281],[71.1,-38.053],[78.264,-36.125],[81.75,-31.25]]}],"t":56.0000022809268}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.0392,0.0431,0.051],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.0941,0.749,0.3725],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[54.75,35.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":7,"parent":1},{"ty":4,"nm":"Shape Layer 1","sr":1,"st":0,"op":900.000036657751,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[54.75,35.25,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.34,"y":-0.005},"i":{"x":0.4,"y":0.999},"s":[0,0,100],"t":1},{"o":{"x":0.151,"y":0.004},"i":{"x":0.7,"y":1.001},"s":[250,250,100],"t":10},{"o":{"x":0.151,"y":-0.008},"i":{"x":0.829,"y":0.999},"s":[150,150,100],"t":17},{"o":{"x":0.6,"y":0.054},"i":{"x":0.829,"y":1.002},"s":[210,210,100],"t":24},{"s":[180,180,100],"t":31.0000012626559}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.5,"y":1},"s":[117.75,20.25,0],"t":4,"ti":[37.25,-21,0],"to":[0.667,31.5,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[61.75,104.25,0],"t":10,"ti":[20.5,7.375,0],"to":[-37.25,21,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.25,110.75,0],"t":17,"ti":[0,0,0],"to":[-20.5,-7.375,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.8,"y":1},"s":[-96.25,71.75,0],"t":24,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-115.25,29.75,0],"t":31,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-119.25,3.75,0],"t":36,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.8,"y":0},"i":{"x":0.8,"y":1},"s":[-119.25,3.75,0],"t":55,"ti":[21.25,-400.75,0],"to":[0,0,0]},{"s":[-10.25,69.75,0],"t":66.0000026882351}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[100],"t":57},{"s":[0],"t":61.0000024845809}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-29.409,0],[-8.264,-5.274],[-1.297,-1.007],[-3.361,-5.447],[0,-10.239],[3.97,-7.454],[2.343,-2.806],[5.188,-3.094],[9.954,0],[0,29.409]],"o":[[10.53,0],[1.388,0.886],[5.036,3.912],[5.009,8.118],[0,9.035],[-1.732,3.252],[-3.851,4.613],[-7.97,4.754],[-29.409,0],[0,-29.409]],"v":[[0,-53.25],[28.61,-44.919],[32.64,-42.077],[45.352,-27.921],[53.25,0],[47.03,24.998],[40.895,34.107],[27.239,45.765],[0,53.25],[-53.25,0]]}],"t":35},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-19.305,4.111],[-9.438,-2.461],[-1.56,-0.563],[-4.633,-4.851],[0.793,-14.942],[7.248,-8.113],[3.794,-2.694],[6.608,-2.405],[6.064,0.113],[-1.722,26.528]],"o":[[6.912,-1.472],[1.586,0.413],[6.057,2.186],[6.904,7.229],[-0.7,13.184],[-3.162,3.539],[-6.236,4.428],[-10.152,3.694],[-26.528,-1.722],[1.722,-26.528]],"v":[[8.333,-61.861],[34.335,-60.963],[39.06,-59.501],[55.504,-49.107],[66.028,-16.389],[52.981,15.337],[42.454,24.669],[22.773,34.838],[-3.056,39.917],[-43.806,-6.389]]}],"t":38},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-32.917,3.833],[-13.355,-3.368],[-2.159,-0.727],[-5.745,-5.552],[3.307,-15.619],[8.994,-3.833],[5,-0.045],[11.197,3.445],[22.639,7.556],[-1.333,12.639]],"o":[[11.786,-1.373],[2.244,0.566],[8.385,2.825],[8.561,8.274],[-3.509,14.512],[-3.924,1.672],[-8.219,0.074],[-16.198,2.818],[-22.639,-7.556],[1.444,-12.917]],"v":[[14.722,-57.139],[54.388,-54.564],[61.002,-52.626],[82.74,-40.177],[92.417,-4.722],[73.722,22.055],[60.341,24.569],[31.238,19.238],[-5.278,24.917],[-31.028,-17.778]]}],"t":39},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-47.361,-29.389],[-7.648,-15.316],[-1.038,-2.594],[0.981,-8.747],[18.259,-2.853],[5.82,7.251],[1.759,3.912],[2.502,6.683],[22.639,7.556],[-3.278,15.695]],"o":[[12.084,9.071],[1.285,2.573],[4.031,10.075],[-1.461,13.036],[-14.086,0.967],[-2.539,-3.163],[-2.891,-6.43],[-6.377,-14.099],[-18.75,-6.444],[9.778,-25.972]],"v":[[79.167,-34.083],[110.609,4.852],[114.102,12.614],[119.19,41.502],[91.306,67.5],[62.896,56.583],[56.57,45.847],[49.016,25.627],[10.556,8.25],[-8.806,-28.333]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-16.25,-11.056],[2.113,-34.127],[1.492,-6.189],[16.898,-8.494],[7.447,11.221],[-18.711,8.412],[-6.504,1.623],[0.353,14.204],[13.194,8],[-7.722,11.25]],"o":[[17.242,13.128],[-0.355,5.734],[-7.658,22.767],[-25.181,12.658],[-8.944,-12.083],[7.317,-4.068],[10.692,-2.667],[-1.099,-12.988],[-20.139,-13.667],[16.167,-14.861]],"v":[[81.111,-30.194],[112.77,42.772],[110.041,60.666],[69.75,106.85],[9.361,106.667],[19.961,65.616],[41.313,58.35],[59.572,38.683],[40,9.083],[32.306,-33.611]]}],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-3.194,-21.333],[12.606,-20.309],[3.011,-3.672],[22.999,-1.063],[9.069,13.664],[-16.489,-30.477],[-8.599,-3.749],[-8.623,9.377],[0.139,4.667],[-28,2.361]],"o":[[0.119,11.939],[-2.118,3.412],[-9.069,9.473],[-61.446,0.604],[-18.944,-35.695],[6.289,14.801],[23.906,8.295],[8.623,-9.377],[-2.917,-12.278],[19.5,0.139]],"v":[[109.167,32.306],[98.529,80.319],[90.875,90.944],[41.307,111.202],[-55.361,58.889],[-15.316,31.727],[13.455,62.955],[57.905,58.683],[65,34.361],[83.417,-4.167]]}],"t":42},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.528,-9.361],[8.215,-2.079],[1.153,-0.196],[17.721,5.882],[-4.5,60.972],[-0.656,-18.81],[-6.094,-23.094],[-16.933,-0.211],[-5.555,0.917],[-4.25,-3.75]],"o":[[-2.497,11.106],[-1.38,0.349],[-11.014,0.584],[-51.168,-19.396],[3,-34.861],[1.844,26.468],[8.072,24.961],[5.289,0.345],[11.528,-0.333],[5.055,5.972]],"v":[[66.111,90.778],[44.147,109.022],[40.319,109.833],[-7.582,104.535],[-68.139,-16.389],[-25.316,-25.218],[-20.989,33.789],[22.905,67.016],[40.278,66.305],[59.806,70.694]]}],"t":43},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[8.472,-3.833],[6.324,9.534],[0.973,1.842],[1.888,22.271],[-16.445,22.083],[14.066,-19.921],[1.128,-11.705],[-1.933,-9.933],[-5.972,-10.055],[0.056,-6.944]],"o":[[-12.723,2.664],[-1.063,-1.602],[-11.014,-20.388],[-1.723,-22.729],[20.778,-26.528],[-10.656,13.412],[-1.094,15.239],[2.512,10.623],[4.028,7.028],[0.056,8.333]],"v":[[-17.222,78.695],[-44.412,66.812],[-47.459,61.638],[-64.943,4.674],[-46.472,-67.778],[-12.261,-53.273],[-27.378,-16.767],[-26.539,15.349],[-13.889,42.555],[-5.611,61.944]]}],"t":44},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.306,11.236],[-10.275,10.558],[-1.814,1.612],[-16.446,6.854],[-13.528,0.417],[4.622,-14.921],[11.684,-2.677],[7.65,-5.627],[10.139,-18.528],[11.097,5.556]],"o":[[3.686,-8.93],[1.726,-1.774],[10.445,-8.513],[14.388,-5.091],[8.972,0.417],[-4.545,9.523],[-11.928,2.878],[-4.016,2.706],[-5.139,8.972],[-6.125,-4.167]],"v":[[-54.167,-52.764],[-31.735,-85.142],[-26.417,-90.237],[9.084,-111.437],[44.778,-117.5],[59.128,-97.162],[28.178,-85.239],[-0.289,-70.901],[-23.889,-41.333],[-49.014,-32.083]]}],"t":45},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-8.869,6.304],[-1.454,0.893],[-22.001,2.826],[-10.889,-2.361],[5.1,-10.912],[13.211,1.211],[8.484,-4.933],[7.917,-6.444],[8.597,6.319]],"o":[[3.092,-7.384],[1.49,-1.059],[11.556,-6.43],[13.138,-1.618],[12.722,3.472],[-7.461,13.69],[-9.567,-0.872],[-5.405,3.678],[-4.722,3.972],[-4.319,-3.125]],"v":[[-32.361,-78.458],[-11.404,-101.048],[-6.973,-103.987],[33.112,-117.965],[64.917,-115],[85.239,-92.44],[49.15,-91.767],[20.544,-85.762],[-0.417,-69.806],[-28.181,-63.958]]}],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-7.641,3.022],[-1.394,0.553],[-14.223,0.048],[-20.611,-8.611],[11.011,-10.06],[15.711,6.35],[3.9,-0.488],[7.361,-2.139],[6.514,5.347]],"o":[[3.092,-8.098],[1.284,-0.508],[12.528,-3.374],[3.971,0.048],[13.555,6.805],[-10.517,8.273],[-9.705,-2.539],[-4.294,0.623],[-12.639,3.556],[-3.069,-2.569]],"v":[[-3.056,-97.486],[13.314,-111.297],[17.333,-112.876],[48.668,-117.548],[84.083,-109.861],[103.434,-77.44],[66.928,-89.128],[46.655,-92.151],[27.5,-87.445],[0.431,-85.347]]}],"t":47},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-1.806,5.68],[-2.943,0.291],[0,0],[-18.807,-3.285],[-9.083,-9.583],[14.483,-4.366],[9.461,8.295],[11.748,2.151],[5.07,-0.194],[4.917,3.472]],"o":[[3.092,-8.098],[0.494,-0.049],[0,0],[15.916,3.382],[11.055,12.083],[-17.045,3.134],[-5.817,-4.622],[-6.03,-0.627],[-5.417,0.292],[-3.069,-2.569]],"v":[[21.597,-106.305],[38.084,-116.287],[38.861,-116.348],[70.196,-114.909],[103.111,-95.972],[104.822,-56.051],[82.067,-82.045],[60.961,-91.942],[43.542,-92.375],[24.806,-93.611]]}],"t":48},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[-5.302,0.419],[-11.222,-6.43],[0,0],[-1.236,-22.431],[11.705,2.856],[-0.261,11.906],[3.252,3.752],[9.931,1.125],[3.389,3.472]],"o":[[2.431,-7.445],[7.059,-0.554],[9.472,5.653],[0,0],[0.014,12.708],[-12.184,-3.532],[0.017,-9.205],[-3.252,-3.752],[-10.208,-1.236],[-3.069,-2.569]],"v":[[44.375,-107.694],[62.525,-115.419],[88.861,-106.487],[106.098,-90.534],[114.986,-61.18],[99.545,-39.662],[91.372,-64.961],[82.558,-83.331],[66.042,-90.986],[47.583,-95.556]]}],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.903,4.778],[0,0],[-14.139,-13.374],[-2.235,-4.007],[0.569,-16.875],[14.761,7.301],[-1.406,9.9],[3.252,3.752],[0,0],[3.389,3.472]],"o":[[2.153,-8.417],[0,0],[6.834,6.626],[2.235,4.007],[0.014,12.708],[-13.85,-9.644],[1.406,-9.9],[-6.03,-8.197],[0,0],[-3.069,-2.569]],"v":[[64.097,-106.028],[75.302,-113.196],[97.75,-102.32],[109.571,-87.479],[115.542,-61.042],[89.267,-29.662],[93.455,-58.573],[89.363,-78.748],[76.042,-88.764],[67.306,-93.889]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-3.725,-5.002],[-1.556,-8.153],[1.376,-6.507],[6.819,-10.208],[6.705,5.634],[-4.739,6.011],[0.336,4.724],[3.403,5.264],[0.889,6.528]],"o":[[8.819,0.055],[3.725,5.002],[1.556,8.153],[-1.376,6.507],[-6.236,10.347],[-5.517,-6.31],[4.739,-6.011],[-0.336,-4.724],[-3.403,-5.264],[-0.778,-5.139]],"v":[[92.847,-101.583],[107.525,-93.752],[116.083,-75.237],[115.682,-53.59],[105.264,-31.597],[82.6,-24.662],[89.289,-48.573],[95.475,-62.637],[90.764,-76.542],[82.861,-90.278]]}],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-8.819,-0.055],[-2.475,-7.224],[0.528,-6.07],[4.57,-5.951],[5.958,-2.292],[4.761,10.079],[0,0],[-4.225,6.109],[2.014,4.875],[0.889,6.528]],"o":[[8.819,0.055],[2.475,7.224],[-0.528,6.07],[-4.57,5.951],[-5.958,2.292],[-4.406,-8.255],[0,0],[5.775,-6.53],[-2.153,-3.875],[-0.778,-5.139]],"v":[[100.625,-91.305],[116.413,-72.78],[118.722,-54.126],[111.515,-35.534],[93.875,-21.597],[74.267,-25.218],[80.4,-39.961],[90.613,-47.776],[94.097,-64.181],[88.972,-79.167]]}],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-7.292,-4.806],[4.698,-11.526],[2.055,-2.32],[3.737,-2.479],[12.653,-1.458],[1.428,4.106],[0,0],[0,0],[-1.736,4.708],[0.889,6.528]],"o":[[8.403,5.889],[-1.969,5.419],[-2.055,2.32],[-3.737,2.479],[-7.07,0.069],[-2.184,-8.532],[0,0],[0,0],[1.736,-4.708],[-0.778,-5.139]],"v":[[109.514,-71.583],[114.33,-41.53],[106.916,-30.376],[98.182,-22.896],[77.208,-17.292],[65.378,-24.523],[73.317,-36.628],[86.447,-41.387],[95.347,-49.459],[96.472,-63.889]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-0.347,-3.111],[3.219,-5.002],[2.611,-1.348],[6.124,-0.577],[2.208,2.986],[-2.461,3.551],[0,0],[-5.081,9.447],[-1.597,0.68],[-4.361,-1.25]],"o":[[0.347,3.111],[-3.219,5.002],[-2.611,1.348],[-9.293,0.812],[-2.208,-2.986],[4.483,-5.199],[0,0],[5.081,-9.447],[1.597,-0.68],[4.361,1.25]],"v":[[109.236,-43.944],[104.747,-31.391],[94.278,-21.07],[80.682,-17.062],[64.431,-22.986],[62.6,-34.523],[72.622,-36.906],[87.141,-41.387],[96.042,-52.375],[103.694,-52.917]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[1.202,-2.461],[2.177,-1.877],[4.056,-0.458],[0,0],[2.352,2.533],[-0.039,2.699],[-6.822,2.4],[-5.081,0.141],[-10.555,-0.75],[-1.097,-3.472]],"o":[[-0.988,2.025],[-2.177,1.877],[-10.25,1.695],[0,0],[-1.956,-2.106],[0.039,-2.699],[5.711,-1.566],[10.775,-0.28],[7.014,1.264],[1.097,3.472]],"v":[[103.403,-26.861],[98.288,-21.877],[88.166,-17.459],[73.39,-16.507],[62.625,-19.514],[58.989,-27.579],[65.678,-37.045],[76.308,-35.97],[94.93,-42.514],[104.111,-36.458]]}],"t":55},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[0.703,-1.596],[1.407,-0.602],[2.888,-0.419],[2.877,0.708],[1.292,2.165],[-0.543,2.015],[-2.308,1.705],[-3.344,-0.329],[-2.577,-1.805],[-0.756,-2.55]],"o":[[-0.617,1.401],[-2.682,1.148],[-2.933,0.425],[-2.448,-0.602],[-1.069,-1.792],[0.876,-3.25],[2.308,-1.705],[3.131,0.308],[2.178,1.526],[0.496,1.672]],"v":[[86.875,-21.93],[83.011,-18.196],[75.666,-16.348],[66.515,-16.646],[60.542,-21.042],[59.753,-27.787],[63.525,-33.989],[74.363,-36.109],[83.055,-33.903],[87.167,-28.194]]}],"t":55.5},{"s":[{"c":true,"i":[[0.539,-1.777],[2.087,-1.675],[1.708,-0.028],[2.042,1.531],[0.543,2.208],[-0.767,2.121],[-1.745,1.223],[-2.391,-0.071],[-2.227,-1.571],[-0.596,-1.893]],"o":[[-0.776,2.561],[-1.982,1.592],[-1.708,0.028],[-1.819,-1.364],[-0.539,-2.19],[0.724,-2.004],[1.958,-1.373],[2.724,0.081],[1.622,1.143],[0.558,1.771]],"v":[[82.222,-24.569],[77.872,-18.057],[70.875,-15.723],[64.154,-17.965],[60.195,-24.028],[60.725,-30.981],[64.775,-36.281],[71.1,-38.053],[78.264,-36.125],[81.75,-31.25]]}],"t":56.0000022809268}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.0392,0.0431,0.051],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.5216,0,0.5569],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[54.75,35.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":8,"parent":4}],"v":"5.4.4","fr":29.9700012207031,"op":62.0000025253118,"ip":0,"assets":[]} \ No newline at end of file +{ + "nm": "Comp 1", + "ddd": 0, + "h": 500, + "w": 500, + "meta": { "g": "@lottiefiles/toolkit-js 0.33.2" }, + "layers": [ + { + "ty": 3, + "nm": "hz", + "sr": 1, + "st": 0, + "op": 900.000036657751, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [250, 250, 0], "ix": 2 }, + "r": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [270], + "t": 45 + }, + { "s": [360], "t": 57.0000023216576 } + ], + "ix": 10 + }, + "sa": { "a": 0, "k": 0 }, + "o": { "a": 0, "k": 0, "ix": 11 } + }, + "ef": [], + "ind": 1 + }, + { + "ty": 3, + "nm": "pink", + "sr": 1, + "st": 0, + "op": 900.000036657751, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [250, 250, 0], "ix": 2 }, + "r": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [180], + "t": 45 + }, + { "s": [270], "t": 57.0000023216576 } + ], + "ix": 10 + }, + "sa": { "a": 0, "k": 0 }, + "o": { "a": 0, "k": 0, "ix": 11 } + }, + "ef": [], + "ind": 2 + }, + { + "ty": 3, + "nm": "yellow", + "sr": 1, + "st": 0, + "op": 900.000036657751, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [250, 250, 0], "ix": 2 }, + "r": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [90], + "t": 45 + }, + { "s": [180], "t": 57.0000023216576 } + ], + "ix": 10 + }, + "sa": { "a": 0, "k": 0 }, + "o": { "a": 0, "k": 0, "ix": 11 } + }, + "ef": [], + "ind": 3 + }, + { + "ty": 3, + "nm": "blue", + "sr": 1, + "st": 0, + "op": 900.000036657751, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [250, 250, 0], "ix": 2 }, + "r": { + "a": 1, + "k": [ + { "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.833, "y": 0.833 }, "s": [0], "t": 45 }, + { "s": [90], "t": 57.0000023216576 } + ], + "ix": 10 + }, + "sa": { "a": 0, "k": 0 }, + "o": { "a": 0, "k": 0, "ix": 11 } + }, + "ef": [], + "ind": 4 + }, + { + "ty": 4, + "nm": "Shape Layer 7", + "sr": 1, + "st": 0, + "op": 900.000036657751, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [54.75, 35.25, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.34, "y": -0.005 }, + "i": { "x": 0.4, "y": 0.999 }, + "s": [0, 0, 100], + "t": 1 + }, + { + "o": { "x": 0.151, "y": 0.004 }, + "i": { "x": 0.7, "y": 1.001 }, + "s": [250, 250, 100], + "t": 10 + }, + { + "o": { "x": 0.151, "y": -0.008 }, + "i": { "x": 0.829, "y": 0.999 }, + "s": [150, 150, 100], + "t": 17 + }, + { + "o": { "x": 0.6, "y": 0.054 }, + "i": { "x": 0.829, "y": 1.002 }, + "s": [210, 210, 100], + "t": 24 + }, + { "s": [180, 180, 100], "t": 31.0000012626559 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0, "y": 0 }, + "i": { "x": 0.5, "y": 1 }, + "s": [117.75, 20.25, 0], + "t": 4, + "ti": [37.25, -21, 0], + "to": [0.667, 31.5, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [61.75, 104.25, 0], + "t": 10, + "ti": [20.5, 7.375, 0], + "to": [-37.25, 21, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [-43.25, 110.75, 0], + "t": 17, + "ti": [0, 0, 0], + "to": [-20.5, -7.375, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.8, "y": 1 }, + "s": [-96.25, 71.75, 0], + "t": 24, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [-115.25, 29.75, 0], + "t": 31, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [-119.25, 3.75, 0], + "t": 36, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.8, "y": 0 }, + "i": { "x": 0.8, "y": 1 }, + "s": [-119.25, 3.75, 0], + "t": 55, + "ti": [21.25, -400.75, 0], + "to": [0, 0, 0] + }, + { "s": [-10.25, 69.75, 0], "t": 66.0000026882351 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.667, "y": 1 }, "s": [100], "t": 57 }, + { "s": [0], "t": 61.0000024845809 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-29.409, 0], + [-8.264, -5.274], + [-1.297, -1.007], + [-3.361, -5.447], + [0, -10.239], + [3.97, -7.454], + [2.343, -2.806], + [5.188, -3.094], + [9.954, 0], + [0, 29.409] + ], + "o": [ + [10.53, 0], + [1.388, 0.886], + [5.036, 3.912], + [5.009, 8.118], + [0, 9.035], + [-1.732, 3.252], + [-3.851, 4.613], + [-7.97, 4.754], + [-29.409, 0], + [0, -29.409] + ], + "v": [ + [0, -53.25], + [28.61, -44.919], + [32.64, -42.077], + [45.352, -27.921], + [53.25, 0], + [47.03, 24.998], + [40.895, 34.107], + [27.239, 45.765], + [0, 53.25], + [-53.25, 0] + ] + } + ], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-19.305, 4.111], + [-9.438, -2.461], + [-1.56, -0.563], + [-4.633, -4.851], + [0.793, -14.942], + [7.248, -8.113], + [3.794, -2.694], + [6.608, -2.405], + [6.064, 0.113], + [-1.722, 26.528] + ], + "o": [ + [6.912, -1.472], + [1.586, 0.413], + [6.057, 2.186], + [6.904, 7.229], + [-0.7, 13.184], + [-3.162, 3.539], + [-6.236, 4.428], + [-10.152, 3.694], + [-26.528, -1.722], + [1.722, -26.528] + ], + "v": [ + [8.333, -61.861], + [34.335, -60.963], + [39.06, -59.501], + [55.504, -49.107], + [66.028, -16.389], + [52.981, 15.337], + [42.454, 24.669], + [22.773, 34.838], + [-3.056, 39.917], + [-43.806, -6.389] + ] + } + ], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-32.917, 3.833], + [-13.355, -3.368], + [-2.159, -0.727], + [-5.745, -5.552], + [3.307, -15.619], + [8.994, -3.833], + [5, -0.045], + [11.197, 3.445], + [22.639, 7.556], + [-1.333, 12.639] + ], + "o": [ + [11.786, -1.373], + [2.244, 0.566], + [8.385, 2.825], + [8.561, 8.274], + [-3.509, 14.512], + [-3.924, 1.672], + [-8.219, 0.074], + [-16.198, 2.818], + [-22.639, -7.556], + [1.444, -12.917] + ], + "v": [ + [14.722, -57.139], + [54.388, -54.564], + [61.002, -52.626], + [82.74, -40.177], + [92.417, -4.722], + [73.722, 22.055], + [60.341, 24.569], + [31.238, 19.238], + [-5.278, 24.917], + [-31.028, -17.778] + ] + } + ], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-47.361, -29.389], + [-7.648, -15.316], + [-1.038, -2.594], + [0.981, -8.747], + [18.259, -2.853], + [5.82, 7.251], + [1.759, 3.912], + [2.502, 6.683], + [22.639, 7.556], + [-3.278, 15.695] + ], + "o": [ + [12.084, 9.071], + [1.285, 2.573], + [4.031, 10.075], + [-1.461, 13.036], + [-14.086, 0.967], + [-2.539, -3.163], + [-2.891, -6.43], + [-6.377, -14.099], + [-18.75, -6.444], + [9.778, -25.972] + ], + "v": [ + [79.167, -34.083], + [110.609, 4.852], + [114.102, 12.614], + [119.19, 41.502], + [91.306, 67.5], + [62.896, 56.583], + [56.57, 45.847], + [49.016, 25.627], + [10.556, 8.25], + [-8.806, -28.333] + ] + } + ], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-16.25, -11.056], + [2.113, -34.127], + [1.492, -6.189], + [16.898, -8.494], + [7.447, 11.221], + [-18.711, 8.412], + [-6.504, 1.623], + [0.353, 14.204], + [13.194, 8], + [-7.722, 11.25] + ], + "o": [ + [17.242, 13.128], + [-0.355, 5.734], + [-7.658, 22.767], + [-25.181, 12.658], + [-8.944, -12.083], + [7.317, -4.068], + [10.692, -2.667], + [-1.099, -12.988], + [-20.139, -13.667], + [16.167, -14.861] + ], + "v": [ + [81.111, -30.194], + [112.77, 42.772], + [110.041, 60.666], + [69.75, 106.85], + [9.361, 106.667], + [19.961, 65.616], + [41.313, 58.35], + [59.572, 38.683], + [40, 9.083], + [32.306, -33.611] + ] + } + ], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-3.194, -21.333], + [12.606, -20.309], + [3.011, -3.672], + [22.999, -1.063], + [9.069, 13.664], + [-16.489, -30.477], + [-8.599, -3.749], + [-8.623, 9.377], + [0.139, 4.667], + [-28, 2.361] + ], + "o": [ + [0.119, 11.939], + [-2.118, 3.412], + [-9.069, 9.473], + [-61.446, 0.604], + [-18.944, -35.695], + [6.289, 14.801], + [23.906, 8.295], + [8.623, -9.377], + [-2.917, -12.278], + [19.5, 0.139] + ], + "v": [ + [109.167, 32.306], + [98.529, 80.319], + [90.875, 90.944], + [41.307, 111.202], + [-55.361, 58.889], + [-15.316, 31.727], + [13.455, 62.955], + [57.905, 58.683], + [65, 34.361], + [83.417, -4.167] + ] + } + ], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [1.528, -9.361], + [8.215, -2.079], + [1.153, -0.196], + [17.721, 5.882], + [-4.5, 60.972], + [-0.656, -18.81], + [-6.094, -23.094], + [-16.933, -0.211], + [-5.555, 0.917], + [-4.25, -3.75] + ], + "o": [ + [-2.497, 11.106], + [-1.38, 0.349], + [-11.014, 0.584], + [-51.168, -19.396], + [3, -34.861], + [1.844, 26.468], + [8.072, 24.961], + [5.289, 0.345], + [11.528, -0.333], + [5.055, 5.972] + ], + "v": [ + [66.111, 90.778], + [44.147, 109.022], + [40.319, 109.833], + [-7.582, 104.535], + [-68.139, -16.389], + [-25.316, -25.218], + [-20.989, 33.789], + [22.905, 67.016], + [40.278, 66.305], + [59.806, 70.694] + ] + } + ], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [8.472, -3.833], + [6.324, 9.534], + [0.973, 1.842], + [1.888, 22.271], + [-16.445, 22.083], + [14.066, -19.921], + [1.128, -11.705], + [-1.933, -9.933], + [-5.972, -10.055], + [0.056, -6.944] + ], + "o": [ + [-12.723, 2.664], + [-1.063, -1.602], + [-11.014, -20.388], + [-1.723, -22.729], + [20.778, -26.528], + [-10.656, 13.412], + [-1.094, 15.239], + [2.512, 10.623], + [4.028, 7.028], + [0.056, 8.333] + ], + "v": [ + [-17.222, 78.695], + [-44.412, 66.812], + [-47.459, 61.638], + [-64.943, 4.674], + [-46.472, -67.778], + [-12.261, -53.273], + [-27.378, -16.767], + [-26.539, 15.349], + [-13.889, 42.555], + [-5.611, 61.944] + ] + } + ], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-4.306, 11.236], + [-10.275, 10.558], + [-1.814, 1.612], + [-16.446, 6.854], + [-13.528, 0.417], + [4.622, -14.921], + [11.684, -2.677], + [7.65, -5.627], + [10.139, -18.528], + [11.097, 5.556] + ], + "o": [ + [3.686, -8.93], + [1.726, -1.774], + [10.445, -8.513], + [14.388, -5.091], + [8.972, 0.417], + [-4.545, 9.523], + [-11.928, 2.878], + [-4.016, 2.706], + [-5.139, 8.972], + [-6.125, -4.167] + ], + "v": [ + [-54.167, -52.764], + [-31.735, -85.142], + [-26.417, -90.237], + [9.084, -111.437], + [44.778, -117.5], + [59.128, -97.162], + [28.178, -85.239], + [-0.289, -70.901], + [-23.889, -41.333], + [-49.014, -32.083] + ] + } + ], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-8.869, 6.304], + [-1.454, 0.893], + [-22.001, 2.826], + [-10.889, -2.361], + [5.1, -10.912], + [13.211, 1.211], + [8.484, -4.933], + [7.917, -6.444], + [8.597, 6.319] + ], + "o": [ + [3.092, -7.384], + [1.49, -1.059], + [11.556, -6.43], + [13.138, -1.618], + [12.722, 3.472], + [-7.461, 13.69], + [-9.567, -0.872], + [-5.405, 3.678], + [-4.722, 3.972], + [-4.319, -3.125] + ], + "v": [ + [-32.361, -78.458], + [-11.404, -101.048], + [-6.973, -103.987], + [33.112, -117.965], + [64.917, -115], + [85.239, -92.44], + [49.15, -91.767], + [20.544, -85.762], + [-0.417, -69.806], + [-28.181, -63.958] + ] + } + ], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-7.641, 3.022], + [-1.394, 0.553], + [-14.223, 0.048], + [-20.611, -8.611], + [11.011, -10.06], + [15.711, 6.35], + [3.9, -0.488], + [7.361, -2.139], + [6.514, 5.347] + ], + "o": [ + [3.092, -8.098], + [1.284, -0.508], + [12.528, -3.374], + [3.971, 0.048], + [13.555, 6.805], + [-10.517, 8.273], + [-9.705, -2.539], + [-4.294, 0.623], + [-12.639, 3.556], + [-3.069, -2.569] + ], + "v": [ + [-3.056, -97.486], + [13.314, -111.297], + [17.333, -112.876], + [48.668, -117.548], + [84.083, -109.861], + [103.434, -77.44], + [66.928, -89.128], + [46.655, -92.151], + [27.5, -87.445], + [0.431, -85.347] + ] + } + ], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-2.943, 0.291], + [0, 0], + [-18.807, -3.285], + [-9.083, -9.583], + [14.483, -4.366], + [9.461, 8.295], + [11.748, 2.151], + [5.07, -0.194], + [4.917, 3.472] + ], + "o": [ + [3.092, -8.098], + [0.494, -0.049], + [0, 0], + [15.916, 3.382], + [11.055, 12.083], + [-17.045, 3.134], + [-5.817, -4.622], + [-6.03, -0.627], + [-5.417, 0.292], + [-3.069, -2.569] + ], + "v": [ + [21.597, -106.305], + [38.084, -116.287], + [38.861, -116.348], + [70.196, -114.909], + [103.111, -95.972], + [104.822, -56.051], + [82.067, -82.045], + [60.961, -91.942], + [43.542, -92.375], + [24.806, -93.611] + ] + } + ], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.903, 4.778], + [-5.302, 0.419], + [-11.222, -6.43], + [0, 0], + [-1.236, -22.431], + [11.705, 2.856], + [-0.261, 11.906], + [3.252, 3.752], + [9.931, 1.125], + [3.389, 3.472] + ], + "o": [ + [2.431, -7.445], + [7.059, -0.554], + [9.472, 5.653], + [0, 0], + [0.014, 12.708], + [-12.184, -3.532], + [0.017, -9.205], + [-3.252, -3.752], + [-10.208, -1.236], + [-3.069, -2.569] + ], + "v": [ + [44.375, -107.694], + [62.525, -115.419], + [88.861, -106.487], + [106.098, -90.534], + [114.986, -61.18], + [99.545, -39.662], + [91.372, -64.961], + [82.558, -83.331], + [66.042, -90.986], + [47.583, -95.556] + ] + } + ], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.903, 4.778], + [0, 0], + [-14.139, -13.374], + [-2.235, -4.007], + [0.569, -16.875], + [14.761, 7.301], + [-1.406, 9.9], + [3.252, 3.752], + [0, 0], + [3.389, 3.472] + ], + "o": [ + [2.153, -8.417], + [0, 0], + [6.834, 6.626], + [2.235, 4.007], + [0.014, 12.708], + [-13.85, -9.644], + [1.406, -9.9], + [-6.03, -8.197], + [0, 0], + [-3.069, -2.569] + ], + "v": [ + [64.097, -106.028], + [75.302, -113.196], + [97.75, -102.32], + [109.571, -87.479], + [115.542, -61.042], + [89.267, -29.662], + [93.455, -58.573], + [89.363, -78.748], + [76.042, -88.764], + [67.306, -93.889] + ] + } + ], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-8.819, -0.055], + [-3.725, -5.002], + [-1.556, -8.153], + [1.376, -6.507], + [6.819, -10.208], + [6.705, 5.634], + [-4.739, 6.011], + [0.336, 4.724], + [3.403, 5.264], + [0.889, 6.528] + ], + "o": [ + [8.819, 0.055], + [3.725, 5.002], + [1.556, 8.153], + [-1.376, 6.507], + [-6.236, 10.347], + [-5.517, -6.31], + [4.739, -6.011], + [-0.336, -4.724], + [-3.403, -5.264], + [-0.778, -5.139] + ], + "v": [ + [92.847, -101.583], + [107.525, -93.752], + [116.083, -75.237], + [115.682, -53.59], + [105.264, -31.597], + [82.6, -24.662], + [89.289, -48.573], + [95.475, -62.637], + [90.764, -76.542], + [82.861, -90.278] + ] + } + ], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-8.819, -0.055], + [-2.475, -7.224], + [0.528, -6.07], + [4.57, -5.951], + [5.958, -2.292], + [4.761, 10.079], + [0, 0], + [-4.225, 6.109], + [2.014, 4.875], + [0.889, 6.528] + ], + "o": [ + [8.819, 0.055], + [2.475, 7.224], + [-0.528, 6.07], + [-4.57, 5.951], + [-5.958, 2.292], + [-4.406, -8.255], + [0, 0], + [5.775, -6.53], + [-2.153, -3.875], + [-0.778, -5.139] + ], + "v": [ + [100.625, -91.305], + [116.413, -72.78], + [118.722, -54.126], + [111.515, -35.534], + [93.875, -21.597], + [74.267, -25.218], + [80.4, -39.961], + [90.613, -47.776], + [94.097, -64.181], + [88.972, -79.167] + ] + } + ], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-7.292, -4.806], + [4.698, -11.526], + [2.055, -2.32], + [3.737, -2.479], + [12.653, -1.458], + [1.428, 4.106], + [0, 0], + [0, 0], + [-1.736, 4.708], + [0.889, 6.528] + ], + "o": [ + [8.403, 5.889], + [-1.969, 5.419], + [-2.055, 2.32], + [-3.737, 2.479], + [-7.07, 0.069], + [-2.184, -8.532], + [0, 0], + [0, 0], + [1.736, -4.708], + [-0.778, -5.139] + ], + "v": [ + [109.514, -71.583], + [114.33, -41.53], + [106.916, -30.376], + [98.182, -22.896], + [77.208, -17.292], + [65.378, -24.523], + [73.317, -36.628], + [86.447, -41.387], + [95.347, -49.459], + [96.472, -63.889] + ] + } + ], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.347, -3.111], + [3.219, -5.002], + [2.611, -1.348], + [6.124, -0.577], + [2.208, 2.986], + [-2.461, 3.551], + [0, 0], + [-5.081, 9.447], + [-1.597, 0.68], + [-4.361, -1.25] + ], + "o": [ + [0.347, 3.111], + [-3.219, 5.002], + [-2.611, 1.348], + [-9.293, 0.812], + [-2.208, -2.986], + [4.483, -5.199], + [0, 0], + [5.081, -9.447], + [1.597, -0.68], + [4.361, 1.25] + ], + "v": [ + [109.236, -43.944], + [104.747, -31.391], + [94.278, -21.07], + [80.682, -17.062], + [64.431, -22.986], + [62.6, -34.523], + [72.622, -36.906], + [87.141, -41.387], + [96.042, -52.375], + [103.694, -52.917] + ] + } + ], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [1.202, -2.461], + [2.177, -1.877], + [4.056, -0.458], + [0, 0], + [2.352, 2.533], + [-0.039, 2.699], + [-6.822, 2.4], + [-5.081, 0.141], + [-10.555, -0.75], + [-1.097, -3.472] + ], + "o": [ + [-0.988, 2.025], + [-2.177, 1.877], + [-10.25, 1.695], + [0, 0], + [-1.956, -2.106], + [0.039, -2.699], + [5.711, -1.566], + [10.775, -0.28], + [7.014, 1.264], + [1.097, 3.472] + ], + "v": [ + [103.403, -26.861], + [98.288, -21.877], + [88.166, -17.459], + [73.39, -16.507], + [62.625, -19.514], + [58.989, -27.579], + [65.678, -37.045], + [76.308, -35.97], + [94.93, -42.514], + [104.111, -36.458] + ] + } + ], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [0.703, -1.596], + [1.407, -0.602], + [2.888, -0.419], + [2.877, 0.708], + [1.292, 2.165], + [-0.543, 2.015], + [-2.308, 1.705], + [-3.344, -0.329], + [-2.577, -1.805], + [-0.756, -2.55] + ], + "o": [ + [-0.617, 1.401], + [-2.682, 1.148], + [-2.933, 0.425], + [-2.448, -0.602], + [-1.069, -1.792], + [0.876, -3.25], + [2.308, -1.705], + [3.131, 0.308], + [2.178, 1.526], + [0.496, 1.672] + ], + "v": [ + [86.875, -21.93], + [83.011, -18.196], + [75.666, -16.348], + [66.515, -16.646], + [60.542, -21.042], + [59.753, -27.787], + [63.525, -33.989], + [74.363, -36.109], + [83.055, -33.903], + [87.167, -28.194] + ] + } + ], + "t": 55.5 + }, + { + "s": [ + { + "c": true, + "i": [ + [0.539, -1.777], + [2.087, -1.675], + [1.708, -0.028], + [2.042, 1.531], + [0.543, 2.208], + [-0.767, 2.121], + [-1.745, 1.223], + [-2.391, -0.071], + [-2.227, -1.571], + [-0.596, -1.893] + ], + "o": [ + [-0.776, 2.561], + [-1.982, 1.592], + [-1.708, 0.028], + [-1.819, -1.364], + [-0.539, -2.19], + [0.724, -2.004], + [1.958, -1.373], + [2.724, 0.081], + [1.622, 1.143], + [0.558, 1.771] + ], + "v": [ + [82.222, -24.569], + [77.872, -18.057], + [70.875, -15.723], + [64.154, -17.965], + [60.195, -24.028], + [60.725, -30.981], + [64.775, -36.281], + [71.1, -38.053], + [78.264, -36.125], + [81.75, -31.25] + ] + } + ], + "t": 56.0000022809268 + } + ], + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "c": { "a": 0, "k": [0.0392, 0.0431, 0.051], "ix": 3 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.5216, 0, 0.5569], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [54.75, 35.25], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 5, + "parent": 2 + }, + { + "ty": 4, + "nm": "Shape Layer 6", + "sr": 1, + "st": 0, + "op": 900.000036657751, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [54.75, 35.25, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.34, "y": -0.005 }, + "i": { "x": 0.4, "y": 0.999 }, + "s": [0, 0, 100], + "t": 1 + }, + { + "o": { "x": 0.151, "y": 0.004 }, + "i": { "x": 0.7, "y": 1.001 }, + "s": [250, 250, 100], + "t": 10 + }, + { + "o": { "x": 0.151, "y": -0.008 }, + "i": { "x": 0.829, "y": 0.999 }, + "s": [150, 150, 100], + "t": 17 + }, + { + "o": { "x": 0.6, "y": 0.054 }, + "i": { "x": 0.829, "y": 1.002 }, + "s": [210, 210, 100], + "t": 24 + }, + { "s": [180, 180, 100], "t": 31.0000012626559 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0, "y": 0 }, + "i": { "x": 0.5, "y": 1 }, + "s": [117.75, 20.25, 0], + "t": 4, + "ti": [37.25, -21, 0], + "to": [0.667, 31.5, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [61.75, 104.25, 0], + "t": 10, + "ti": [20.5, 7.375, 0], + "to": [-37.25, 21, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [-43.25, 110.75, 0], + "t": 17, + "ti": [0, 0, 0], + "to": [-20.5, -7.375, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.8, "y": 1 }, + "s": [-96.25, 71.75, 0], + "t": 24, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [-115.25, 29.75, 0], + "t": 31, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [-119.25, 3.75, 0], + "t": 36, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.8, "y": 0 }, + "i": { "x": 0.8, "y": 1 }, + "s": [-119.25, 3.75, 0], + "t": 55, + "ti": [21.25, -400.75, 0], + "to": [0, 0, 0] + }, + { "s": [-10.25, 69.75, 0], "t": 66.0000026882351 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.667, "y": 1 }, "s": [100], "t": 57 }, + { "s": [0], "t": 61.0000024845809 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-29.409, 0], + [-8.264, -5.274], + [-1.297, -1.007], + [-3.361, -5.447], + [0, -10.239], + [3.97, -7.454], + [2.343, -2.806], + [5.188, -3.094], + [9.954, 0], + [0, 29.409] + ], + "o": [ + [10.53, 0], + [1.388, 0.886], + [5.036, 3.912], + [5.009, 8.118], + [0, 9.035], + [-1.732, 3.252], + [-3.851, 4.613], + [-7.97, 4.754], + [-29.409, 0], + [0, -29.409] + ], + "v": [ + [0, -53.25], + [28.61, -44.919], + [32.64, -42.077], + [45.352, -27.921], + [53.25, 0], + [47.03, 24.998], + [40.895, 34.107], + [27.239, 45.765], + [0, 53.25], + [-53.25, 0] + ] + } + ], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-19.305, 4.111], + [-9.438, -2.461], + [-1.56, -0.563], + [-4.633, -4.851], + [0.793, -14.942], + [7.248, -8.113], + [3.794, -2.694], + [6.608, -2.405], + [6.064, 0.113], + [-1.722, 26.528] + ], + "o": [ + [6.912, -1.472], + [1.586, 0.413], + [6.057, 2.186], + [6.904, 7.229], + [-0.7, 13.184], + [-3.162, 3.539], + [-6.236, 4.428], + [-10.152, 3.694], + [-26.528, -1.722], + [1.722, -26.528] + ], + "v": [ + [8.333, -61.861], + [34.335, -60.963], + [39.06, -59.501], + [55.504, -49.107], + [66.028, -16.389], + [52.981, 15.337], + [42.454, 24.669], + [22.773, 34.838], + [-3.056, 39.917], + [-43.806, -6.389] + ] + } + ], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-32.917, 3.833], + [-13.355, -3.368], + [-2.159, -0.727], + [-5.745, -5.552], + [3.307, -15.619], + [8.994, -3.833], + [5, -0.045], + [11.197, 3.445], + [22.639, 7.556], + [-1.333, 12.639] + ], + "o": [ + [11.786, -1.373], + [2.244, 0.566], + [8.385, 2.825], + [8.561, 8.274], + [-3.509, 14.512], + [-3.924, 1.672], + [-8.219, 0.074], + [-16.198, 2.818], + [-22.639, -7.556], + [1.444, -12.917] + ], + "v": [ + [14.722, -57.139], + [54.388, -54.564], + [61.002, -52.626], + [82.74, -40.177], + [92.417, -4.722], + [73.722, 22.055], + [60.341, 24.569], + [31.238, 19.238], + [-5.278, 24.917], + [-31.028, -17.778] + ] + } + ], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-47.361, -29.389], + [-7.648, -15.316], + [-1.038, -2.594], + [0.981, -8.747], + [18.259, -2.853], + [5.82, 7.251], + [1.759, 3.912], + [2.502, 6.683], + [22.639, 7.556], + [-3.278, 15.695] + ], + "o": [ + [12.084, 9.071], + [1.285, 2.573], + [4.031, 10.075], + [-1.461, 13.036], + [-14.086, 0.967], + [-2.539, -3.163], + [-2.891, -6.43], + [-6.377, -14.099], + [-18.75, -6.444], + [9.778, -25.972] + ], + "v": [ + [79.167, -34.083], + [110.609, 4.852], + [114.102, 12.614], + [119.19, 41.502], + [91.306, 67.5], + [62.896, 56.583], + [56.57, 45.847], + [49.016, 25.627], + [10.556, 8.25], + [-8.806, -28.333] + ] + } + ], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-16.25, -11.056], + [2.113, -34.127], + [1.492, -6.189], + [16.898, -8.494], + [7.447, 11.221], + [-18.711, 8.412], + [-6.504, 1.623], + [0.353, 14.204], + [13.194, 8], + [-7.722, 11.25] + ], + "o": [ + [17.242, 13.128], + [-0.355, 5.734], + [-7.658, 22.767], + [-25.181, 12.658], + [-8.944, -12.083], + [7.317, -4.068], + [10.692, -2.667], + [-1.099, -12.988], + [-20.139, -13.667], + [16.167, -14.861] + ], + "v": [ + [81.111, -30.194], + [112.77, 42.772], + [110.041, 60.666], + [69.75, 106.85], + [9.361, 106.667], + [19.961, 65.616], + [41.313, 58.35], + [59.572, 38.683], + [40, 9.083], + [32.306, -33.611] + ] + } + ], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-3.194, -21.333], + [12.606, -20.309], + [3.011, -3.672], + [22.999, -1.063], + [9.069, 13.664], + [-16.489, -30.477], + [-8.599, -3.749], + [-8.623, 9.377], + [0.139, 4.667], + [-28, 2.361] + ], + "o": [ + [0.119, 11.939], + [-2.118, 3.412], + [-9.069, 9.473], + [-61.446, 0.604], + [-18.944, -35.695], + [6.289, 14.801], + [23.906, 8.295], + [8.623, -9.377], + [-2.917, -12.278], + [19.5, 0.139] + ], + "v": [ + [109.167, 32.306], + [98.529, 80.319], + [90.875, 90.944], + [41.307, 111.202], + [-55.361, 58.889], + [-15.316, 31.727], + [13.455, 62.955], + [57.905, 58.683], + [65, 34.361], + [83.417, -4.167] + ] + } + ], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [1.528, -9.361], + [8.215, -2.079], + [1.153, -0.196], + [17.721, 5.882], + [-4.5, 60.972], + [-0.656, -18.81], + [-6.094, -23.094], + [-16.933, -0.211], + [-5.555, 0.917], + [-4.25, -3.75] + ], + "o": [ + [-2.497, 11.106], + [-1.38, 0.349], + [-11.014, 0.584], + [-51.168, -19.396], + [3, -34.861], + [1.844, 26.468], + [8.072, 24.961], + [5.289, 0.345], + [11.528, -0.333], + [5.055, 5.972] + ], + "v": [ + [66.111, 90.778], + [44.147, 109.022], + [40.319, 109.833], + [-7.582, 104.535], + [-68.139, -16.389], + [-25.316, -25.218], + [-20.989, 33.789], + [22.905, 67.016], + [40.278, 66.305], + [59.806, 70.694] + ] + } + ], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [8.472, -3.833], + [6.324, 9.534], + [0.973, 1.842], + [1.888, 22.271], + [-16.445, 22.083], + [14.066, -19.921], + [1.128, -11.705], + [-1.933, -9.933], + [-5.972, -10.055], + [0.056, -6.944] + ], + "o": [ + [-12.723, 2.664], + [-1.063, -1.602], + [-11.014, -20.388], + [-1.723, -22.729], + [20.778, -26.528], + [-10.656, 13.412], + [-1.094, 15.239], + [2.512, 10.623], + [4.028, 7.028], + [0.056, 8.333] + ], + "v": [ + [-17.222, 78.695], + [-44.412, 66.812], + [-47.459, 61.638], + [-64.943, 4.674], + [-46.472, -67.778], + [-12.261, -53.273], + [-27.378, -16.767], + [-26.539, 15.349], + [-13.889, 42.555], + [-5.611, 61.944] + ] + } + ], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-4.306, 11.236], + [-10.275, 10.558], + [-1.814, 1.612], + [-16.446, 6.854], + [-13.528, 0.417], + [4.622, -14.921], + [11.684, -2.677], + [7.65, -5.627], + [10.139, -18.528], + [11.097, 5.556] + ], + "o": [ + [3.686, -8.93], + [1.726, -1.774], + [10.445, -8.513], + [14.388, -5.091], + [8.972, 0.417], + [-4.545, 9.523], + [-11.928, 2.878], + [-4.016, 2.706], + [-5.139, 8.972], + [-6.125, -4.167] + ], + "v": [ + [-54.167, -52.764], + [-31.735, -85.142], + [-26.417, -90.237], + [9.084, -111.437], + [44.778, -117.5], + [59.128, -97.162], + [28.178, -85.239], + [-0.289, -70.901], + [-23.889, -41.333], + [-49.014, -32.083] + ] + } + ], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-8.869, 6.304], + [-1.454, 0.893], + [-22.001, 2.826], + [-10.889, -2.361], + [5.1, -10.912], + [13.211, 1.211], + [8.484, -4.933], + [7.917, -6.444], + [8.597, 6.319] + ], + "o": [ + [3.092, -7.384], + [1.49, -1.059], + [11.556, -6.43], + [13.138, -1.618], + [12.722, 3.472], + [-7.461, 13.69], + [-9.567, -0.872], + [-5.405, 3.678], + [-4.722, 3.972], + [-4.319, -3.125] + ], + "v": [ + [-32.361, -78.458], + [-11.404, -101.048], + [-6.973, -103.987], + [33.112, -117.965], + [64.917, -115], + [85.239, -92.44], + [49.15, -91.767], + [20.544, -85.762], + [-0.417, -69.806], + [-28.181, -63.958] + ] + } + ], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-7.641, 3.022], + [-1.394, 0.553], + [-14.223, 0.048], + [-20.611, -8.611], + [11.011, -10.06], + [15.711, 6.35], + [3.9, -0.488], + [7.361, -2.139], + [6.514, 5.347] + ], + "o": [ + [3.092, -8.098], + [1.284, -0.508], + [12.528, -3.374], + [3.971, 0.048], + [13.555, 6.805], + [-10.517, 8.273], + [-9.705, -2.539], + [-4.294, 0.623], + [-12.639, 3.556], + [-3.069, -2.569] + ], + "v": [ + [-3.056, -97.486], + [13.314, -111.297], + [17.333, -112.876], + [48.668, -117.548], + [84.083, -109.861], + [103.434, -77.44], + [66.928, -89.128], + [46.655, -92.151], + [27.5, -87.445], + [0.431, -85.347] + ] + } + ], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-2.943, 0.291], + [0, 0], + [-18.807, -3.285], + [-9.083, -9.583], + [14.483, -4.366], + [9.461, 8.295], + [11.748, 2.151], + [5.07, -0.194], + [4.917, 3.472] + ], + "o": [ + [3.092, -8.098], + [0.494, -0.049], + [0, 0], + [15.916, 3.382], + [11.055, 12.083], + [-17.045, 3.134], + [-5.817, -4.622], + [-6.03, -0.627], + [-5.417, 0.292], + [-3.069, -2.569] + ], + "v": [ + [21.597, -106.305], + [38.084, -116.287], + [38.861, -116.348], + [70.196, -114.909], + [103.111, -95.972], + [104.822, -56.051], + [82.067, -82.045], + [60.961, -91.942], + [43.542, -92.375], + [24.806, -93.611] + ] + } + ], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.903, 4.778], + [-5.302, 0.419], + [-11.222, -6.43], + [0, 0], + [-1.236, -22.431], + [11.705, 2.856], + [-0.261, 11.906], + [3.252, 3.752], + [9.931, 1.125], + [3.389, 3.472] + ], + "o": [ + [2.431, -7.445], + [7.059, -0.554], + [9.472, 5.653], + [0, 0], + [0.014, 12.708], + [-12.184, -3.532], + [0.017, -9.205], + [-3.252, -3.752], + [-10.208, -1.236], + [-3.069, -2.569] + ], + "v": [ + [44.375, -107.694], + [62.525, -115.419], + [88.861, -106.487], + [106.098, -90.534], + [114.986, -61.18], + [99.545, -39.662], + [91.372, -64.961], + [82.558, -83.331], + [66.042, -90.986], + [47.583, -95.556] + ] + } + ], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.903, 4.778], + [0, 0], + [-14.139, -13.374], + [-2.235, -4.007], + [0.569, -16.875], + [14.761, 7.301], + [-1.406, 9.9], + [3.252, 3.752], + [0, 0], + [3.389, 3.472] + ], + "o": [ + [2.153, -8.417], + [0, 0], + [6.834, 6.626], + [2.235, 4.007], + [0.014, 12.708], + [-13.85, -9.644], + [1.406, -9.9], + [-6.03, -8.197], + [0, 0], + [-3.069, -2.569] + ], + "v": [ + [64.097, -106.028], + [75.302, -113.196], + [97.75, -102.32], + [109.571, -87.479], + [115.542, -61.042], + [89.267, -29.662], + [93.455, -58.573], + [89.363, -78.748], + [76.042, -88.764], + [67.306, -93.889] + ] + } + ], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-8.819, -0.055], + [-3.725, -5.002], + [-1.556, -8.153], + [1.376, -6.507], + [6.819, -10.208], + [6.705, 5.634], + [-4.739, 6.011], + [0.336, 4.724], + [3.403, 5.264], + [0.889, 6.528] + ], + "o": [ + [8.819, 0.055], + [3.725, 5.002], + [1.556, 8.153], + [-1.376, 6.507], + [-6.236, 10.347], + [-5.517, -6.31], + [4.739, -6.011], + [-0.336, -4.724], + [-3.403, -5.264], + [-0.778, -5.139] + ], + "v": [ + [92.847, -101.583], + [107.525, -93.752], + [116.083, -75.237], + [115.682, -53.59], + [105.264, -31.597], + [82.6, -24.662], + [89.289, -48.573], + [95.475, -62.637], + [90.764, -76.542], + [82.861, -90.278] + ] + } + ], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-8.819, -0.055], + [-2.475, -7.224], + [0.528, -6.07], + [4.57, -5.951], + [5.958, -2.292], + [4.761, 10.079], + [0, 0], + [-4.225, 6.109], + [2.014, 4.875], + [0.889, 6.528] + ], + "o": [ + [8.819, 0.055], + [2.475, 7.224], + [-0.528, 6.07], + [-4.57, 5.951], + [-5.958, 2.292], + [-4.406, -8.255], + [0, 0], + [5.775, -6.53], + [-2.153, -3.875], + [-0.778, -5.139] + ], + "v": [ + [100.625, -91.305], + [116.413, -72.78], + [118.722, -54.126], + [111.515, -35.534], + [93.875, -21.597], + [74.267, -25.218], + [80.4, -39.961], + [90.613, -47.776], + [94.097, -64.181], + [88.972, -79.167] + ] + } + ], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-7.292, -4.806], + [4.698, -11.526], + [2.055, -2.32], + [3.737, -2.479], + [12.653, -1.458], + [1.428, 4.106], + [0, 0], + [0, 0], + [-1.736, 4.708], + [0.889, 6.528] + ], + "o": [ + [8.403, 5.889], + [-1.969, 5.419], + [-2.055, 2.32], + [-3.737, 2.479], + [-7.07, 0.069], + [-2.184, -8.532], + [0, 0], + [0, 0], + [1.736, -4.708], + [-0.778, -5.139] + ], + "v": [ + [109.514, -71.583], + [114.33, -41.53], + [106.916, -30.376], + [98.182, -22.896], + [77.208, -17.292], + [65.378, -24.523], + [73.317, -36.628], + [86.447, -41.387], + [95.347, -49.459], + [96.472, -63.889] + ] + } + ], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.347, -3.111], + [3.219, -5.002], + [2.611, -1.348], + [6.124, -0.577], + [2.208, 2.986], + [-2.461, 3.551], + [0, 0], + [-5.081, 9.447], + [-1.597, 0.68], + [-4.361, -1.25] + ], + "o": [ + [0.347, 3.111], + [-3.219, 5.002], + [-2.611, 1.348], + [-9.293, 0.812], + [-2.208, -2.986], + [4.483, -5.199], + [0, 0], + [5.081, -9.447], + [1.597, -0.68], + [4.361, 1.25] + ], + "v": [ + [109.236, -43.944], + [104.747, -31.391], + [94.278, -21.07], + [80.682, -17.062], + [64.431, -22.986], + [62.6, -34.523], + [72.622, -36.906], + [87.141, -41.387], + [96.042, -52.375], + [103.694, -52.917] + ] + } + ], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [1.202, -2.461], + [2.177, -1.877], + [4.056, -0.458], + [0, 0], + [2.352, 2.533], + [-0.039, 2.699], + [-6.822, 2.4], + [-5.081, 0.141], + [-10.555, -0.75], + [-1.097, -3.472] + ], + "o": [ + [-0.988, 2.025], + [-2.177, 1.877], + [-10.25, 1.695], + [0, 0], + [-1.956, -2.106], + [0.039, -2.699], + [5.711, -1.566], + [10.775, -0.28], + [7.014, 1.264], + [1.097, 3.472] + ], + "v": [ + [103.403, -26.861], + [98.288, -21.877], + [88.166, -17.459], + [73.39, -16.507], + [62.625, -19.514], + [58.989, -27.579], + [65.678, -37.045], + [76.308, -35.97], + [94.93, -42.514], + [104.111, -36.458] + ] + } + ], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [0.703, -1.596], + [1.407, -0.602], + [2.888, -0.419], + [2.877, 0.708], + [1.292, 2.165], + [-0.543, 2.015], + [-2.308, 1.705], + [-3.344, -0.329], + [-2.577, -1.805], + [-0.756, -2.55] + ], + "o": [ + [-0.617, 1.401], + [-2.682, 1.148], + [-2.933, 0.425], + [-2.448, -0.602], + [-1.069, -1.792], + [0.876, -3.25], + [2.308, -1.705], + [3.131, 0.308], + [2.178, 1.526], + [0.496, 1.672] + ], + "v": [ + [86.875, -21.93], + [83.011, -18.196], + [75.666, -16.348], + [66.515, -16.646], + [60.542, -21.042], + [59.753, -27.787], + [63.525, -33.989], + [74.363, -36.109], + [83.055, -33.903], + [87.167, -28.194] + ] + } + ], + "t": 55.5 + }, + { + "s": [ + { + "c": true, + "i": [ + [0.539, -1.777], + [2.087, -1.675], + [1.708, -0.028], + [2.042, 1.531], + [0.543, 2.208], + [-0.767, 2.121], + [-1.745, 1.223], + [-2.391, -0.071], + [-2.227, -1.571], + [-0.596, -1.893] + ], + "o": [ + [-0.776, 2.561], + [-1.982, 1.592], + [-1.708, 0.028], + [-1.819, -1.364], + [-0.539, -2.19], + [0.724, -2.004], + [1.958, -1.373], + [2.724, 0.081], + [1.622, 1.143], + [0.558, 1.771] + ], + "v": [ + [82.222, -24.569], + [77.872, -18.057], + [70.875, -15.723], + [64.154, -17.965], + [60.195, -24.028], + [60.725, -30.981], + [64.775, -36.281], + [71.1, -38.053], + [78.264, -36.125], + [81.75, -31.25] + ] + } + ], + "t": 56.0000022809268 + } + ], + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "c": { "a": 0, "k": [0.0392, 0.0431, 0.051], "ix": 3 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.0941, 0.749, 0.3725], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [54.75, 35.25], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 6, + "parent": 3 + }, + { + "ty": 4, + "nm": "Shape Layer 8", + "sr": 1, + "st": 0, + "op": 900.000036657751, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [54.75, 35.25, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.34, "y": -0.005 }, + "i": { "x": 0.4, "y": 0.999 }, + "s": [0, 0, 100], + "t": 1 + }, + { + "o": { "x": 0.151, "y": 0.004 }, + "i": { "x": 0.7, "y": 1.001 }, + "s": [250, 250, 100], + "t": 10 + }, + { + "o": { "x": 0.151, "y": -0.008 }, + "i": { "x": 0.829, "y": 0.999 }, + "s": [150, 150, 100], + "t": 17 + }, + { + "o": { "x": 0.6, "y": 0.054 }, + "i": { "x": 0.829, "y": 1.002 }, + "s": [210, 210, 100], + "t": 24 + }, + { "s": [180, 180, 100], "t": 31.0000012626559 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0, "y": 0 }, + "i": { "x": 0.5, "y": 1 }, + "s": [117.75, 20.25, 0], + "t": 4, + "ti": [37.25, -21, 0], + "to": [0.667, 31.5, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [61.75, 104.25, 0], + "t": 10, + "ti": [20.5, 7.375, 0], + "to": [-37.25, 21, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [-43.25, 110.75, 0], + "t": 17, + "ti": [0, 0, 0], + "to": [-20.5, -7.375, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.8, "y": 1 }, + "s": [-96.25, 71.75, 0], + "t": 24, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [-115.25, 29.75, 0], + "t": 31, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [-119.25, 3.75, 0], + "t": 36, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.8, "y": 0 }, + "i": { "x": 0.8, "y": 1 }, + "s": [-119.25, 3.75, 0], + "t": 55, + "ti": [21.25, -400.75, 0], + "to": [0, 0, 0] + }, + { "s": [-10.25, 69.75, 0], "t": 66.0000026882351 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.667, "y": 1 }, "s": [100], "t": 57 }, + { "s": [0], "t": 61.0000024845809 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-29.409, 0], + [-8.264, -5.274], + [-1.297, -1.007], + [-3.361, -5.447], + [0, -10.239], + [3.97, -7.454], + [2.343, -2.806], + [5.188, -3.094], + [9.954, 0], + [0, 29.409] + ], + "o": [ + [10.53, 0], + [1.388, 0.886], + [5.036, 3.912], + [5.009, 8.118], + [0, 9.035], + [-1.732, 3.252], + [-3.851, 4.613], + [-7.97, 4.754], + [-29.409, 0], + [0, -29.409] + ], + "v": [ + [0, -53.25], + [28.61, -44.919], + [32.64, -42.077], + [45.352, -27.921], + [53.25, 0], + [47.03, 24.998], + [40.895, 34.107], + [27.239, 45.765], + [0, 53.25], + [-53.25, 0] + ] + } + ], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-19.305, 4.111], + [-9.438, -2.461], + [-1.56, -0.563], + [-4.633, -4.851], + [0.793, -14.942], + [7.248, -8.113], + [3.794, -2.694], + [6.608, -2.405], + [6.064, 0.113], + [-1.722, 26.528] + ], + "o": [ + [6.912, -1.472], + [1.586, 0.413], + [6.057, 2.186], + [6.904, 7.229], + [-0.7, 13.184], + [-3.162, 3.539], + [-6.236, 4.428], + [-10.152, 3.694], + [-26.528, -1.722], + [1.722, -26.528] + ], + "v": [ + [8.333, -61.861], + [34.335, -60.963], + [39.06, -59.501], + [55.504, -49.107], + [66.028, -16.389], + [52.981, 15.337], + [42.454, 24.669], + [22.773, 34.838], + [-3.056, 39.917], + [-43.806, -6.389] + ] + } + ], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-32.917, 3.833], + [-13.355, -3.368], + [-2.159, -0.727], + [-5.745, -5.552], + [3.307, -15.619], + [8.994, -3.833], + [5, -0.045], + [11.197, 3.445], + [22.639, 7.556], + [-1.333, 12.639] + ], + "o": [ + [11.786, -1.373], + [2.244, 0.566], + [8.385, 2.825], + [8.561, 8.274], + [-3.509, 14.512], + [-3.924, 1.672], + [-8.219, 0.074], + [-16.198, 2.818], + [-22.639, -7.556], + [1.444, -12.917] + ], + "v": [ + [14.722, -57.139], + [54.388, -54.564], + [61.002, -52.626], + [82.74, -40.177], + [92.417, -4.722], + [73.722, 22.055], + [60.341, 24.569], + [31.238, 19.238], + [-5.278, 24.917], + [-31.028, -17.778] + ] + } + ], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-47.361, -29.389], + [-7.648, -15.316], + [-1.038, -2.594], + [0.981, -8.747], + [18.259, -2.853], + [5.82, 7.251], + [1.759, 3.912], + [2.502, 6.683], + [22.639, 7.556], + [-3.278, 15.695] + ], + "o": [ + [12.084, 9.071], + [1.285, 2.573], + [4.031, 10.075], + [-1.461, 13.036], + [-14.086, 0.967], + [-2.539, -3.163], + [-2.891, -6.43], + [-6.377, -14.099], + [-18.75, -6.444], + [9.778, -25.972] + ], + "v": [ + [79.167, -34.083], + [110.609, 4.852], + [114.102, 12.614], + [119.19, 41.502], + [91.306, 67.5], + [62.896, 56.583], + [56.57, 45.847], + [49.016, 25.627], + [10.556, 8.25], + [-8.806, -28.333] + ] + } + ], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-16.25, -11.056], + [2.113, -34.127], + [1.492, -6.189], + [16.898, -8.494], + [7.447, 11.221], + [-18.711, 8.412], + [-6.504, 1.623], + [0.353, 14.204], + [13.194, 8], + [-7.722, 11.25] + ], + "o": [ + [17.242, 13.128], + [-0.355, 5.734], + [-7.658, 22.767], + [-25.181, 12.658], + [-8.944, -12.083], + [7.317, -4.068], + [10.692, -2.667], + [-1.099, -12.988], + [-20.139, -13.667], + [16.167, -14.861] + ], + "v": [ + [81.111, -30.194], + [112.77, 42.772], + [110.041, 60.666], + [69.75, 106.85], + [9.361, 106.667], + [19.961, 65.616], + [41.313, 58.35], + [59.572, 38.683], + [40, 9.083], + [32.306, -33.611] + ] + } + ], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-3.194, -21.333], + [12.606, -20.309], + [3.011, -3.672], + [22.999, -1.063], + [9.069, 13.664], + [-16.489, -30.477], + [-8.599, -3.749], + [-8.623, 9.377], + [0.139, 4.667], + [-28, 2.361] + ], + "o": [ + [0.119, 11.939], + [-2.118, 3.412], + [-9.069, 9.473], + [-61.446, 0.604], + [-18.944, -35.695], + [6.289, 14.801], + [23.906, 8.295], + [8.623, -9.377], + [-2.917, -12.278], + [19.5, 0.139] + ], + "v": [ + [109.167, 32.306], + [98.529, 80.319], + [90.875, 90.944], + [41.307, 111.202], + [-55.361, 58.889], + [-15.316, 31.727], + [13.455, 62.955], + [57.905, 58.683], + [65, 34.361], + [83.417, -4.167] + ] + } + ], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [1.528, -9.361], + [8.215, -2.079], + [1.153, -0.196], + [17.721, 5.882], + [-4.5, 60.972], + [-0.656, -18.81], + [-6.094, -23.094], + [-16.933, -0.211], + [-5.555, 0.917], + [-4.25, -3.75] + ], + "o": [ + [-2.497, 11.106], + [-1.38, 0.349], + [-11.014, 0.584], + [-51.168, -19.396], + [3, -34.861], + [1.844, 26.468], + [8.072, 24.961], + [5.289, 0.345], + [11.528, -0.333], + [5.055, 5.972] + ], + "v": [ + [66.111, 90.778], + [44.147, 109.022], + [40.319, 109.833], + [-7.582, 104.535], + [-68.139, -16.389], + [-25.316, -25.218], + [-20.989, 33.789], + [22.905, 67.016], + [40.278, 66.305], + [59.806, 70.694] + ] + } + ], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [8.472, -3.833], + [6.324, 9.534], + [0.973, 1.842], + [1.888, 22.271], + [-16.445, 22.083], + [14.066, -19.921], + [1.128, -11.705], + [-1.933, -9.933], + [-5.972, -10.055], + [0.056, -6.944] + ], + "o": [ + [-12.723, 2.664], + [-1.063, -1.602], + [-11.014, -20.388], + [-1.723, -22.729], + [20.778, -26.528], + [-10.656, 13.412], + [-1.094, 15.239], + [2.512, 10.623], + [4.028, 7.028], + [0.056, 8.333] + ], + "v": [ + [-17.222, 78.695], + [-44.412, 66.812], + [-47.459, 61.638], + [-64.943, 4.674], + [-46.472, -67.778], + [-12.261, -53.273], + [-27.378, -16.767], + [-26.539, 15.349], + [-13.889, 42.555], + [-5.611, 61.944] + ] + } + ], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-4.306, 11.236], + [-10.275, 10.558], + [-1.814, 1.612], + [-16.446, 6.854], + [-13.528, 0.417], + [4.622, -14.921], + [11.684, -2.677], + [7.65, -5.627], + [10.139, -18.528], + [11.097, 5.556] + ], + "o": [ + [3.686, -8.93], + [1.726, -1.774], + [10.445, -8.513], + [14.388, -5.091], + [8.972, 0.417], + [-4.545, 9.523], + [-11.928, 2.878], + [-4.016, 2.706], + [-5.139, 8.972], + [-6.125, -4.167] + ], + "v": [ + [-54.167, -52.764], + [-31.735, -85.142], + [-26.417, -90.237], + [9.084, -111.437], + [44.778, -117.5], + [59.128, -97.162], + [28.178, -85.239], + [-0.289, -70.901], + [-23.889, -41.333], + [-49.014, -32.083] + ] + } + ], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-8.869, 6.304], + [-1.454, 0.893], + [-22.001, 2.826], + [-10.889, -2.361], + [5.1, -10.912], + [13.211, 1.211], + [8.484, -4.933], + [7.917, -6.444], + [8.597, 6.319] + ], + "o": [ + [3.092, -7.384], + [1.49, -1.059], + [11.556, -6.43], + [13.138, -1.618], + [12.722, 3.472], + [-7.461, 13.69], + [-9.567, -0.872], + [-5.405, 3.678], + [-4.722, 3.972], + [-4.319, -3.125] + ], + "v": [ + [-32.361, -78.458], + [-11.404, -101.048], + [-6.973, -103.987], + [33.112, -117.965], + [64.917, -115], + [85.239, -92.44], + [49.15, -91.767], + [20.544, -85.762], + [-0.417, -69.806], + [-28.181, -63.958] + ] + } + ], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-7.641, 3.022], + [-1.394, 0.553], + [-14.223, 0.048], + [-20.611, -8.611], + [11.011, -10.06], + [15.711, 6.35], + [3.9, -0.488], + [7.361, -2.139], + [6.514, 5.347] + ], + "o": [ + [3.092, -8.098], + [1.284, -0.508], + [12.528, -3.374], + [3.971, 0.048], + [13.555, 6.805], + [-10.517, 8.273], + [-9.705, -2.539], + [-4.294, 0.623], + [-12.639, 3.556], + [-3.069, -2.569] + ], + "v": [ + [-3.056, -97.486], + [13.314, -111.297], + [17.333, -112.876], + [48.668, -117.548], + [84.083, -109.861], + [103.434, -77.44], + [66.928, -89.128], + [46.655, -92.151], + [27.5, -87.445], + [0.431, -85.347] + ] + } + ], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-2.943, 0.291], + [0, 0], + [-18.807, -3.285], + [-9.083, -9.583], + [14.483, -4.366], + [9.461, 8.295], + [11.748, 2.151], + [5.07, -0.194], + [4.917, 3.472] + ], + "o": [ + [3.092, -8.098], + [0.494, -0.049], + [0, 0], + [15.916, 3.382], + [11.055, 12.083], + [-17.045, 3.134], + [-5.817, -4.622], + [-6.03, -0.627], + [-5.417, 0.292], + [-3.069, -2.569] + ], + "v": [ + [21.597, -106.305], + [38.084, -116.287], + [38.861, -116.348], + [70.196, -114.909], + [103.111, -95.972], + [104.822, -56.051], + [82.067, -82.045], + [60.961, -91.942], + [43.542, -92.375], + [24.806, -93.611] + ] + } + ], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.903, 4.778], + [-5.302, 0.419], + [-11.222, -6.43], + [0, 0], + [-1.236, -22.431], + [11.705, 2.856], + [-0.261, 11.906], + [3.252, 3.752], + [9.931, 1.125], + [3.389, 3.472] + ], + "o": [ + [2.431, -7.445], + [7.059, -0.554], + [9.472, 5.653], + [0, 0], + [0.014, 12.708], + [-12.184, -3.532], + [0.017, -9.205], + [-3.252, -3.752], + [-10.208, -1.236], + [-3.069, -2.569] + ], + "v": [ + [44.375, -107.694], + [62.525, -115.419], + [88.861, -106.487], + [106.098, -90.534], + [114.986, -61.18], + [99.545, -39.662], + [91.372, -64.961], + [82.558, -83.331], + [66.042, -90.986], + [47.583, -95.556] + ] + } + ], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.903, 4.778], + [0, 0], + [-14.139, -13.374], + [-2.235, -4.007], + [0.569, -16.875], + [14.761, 7.301], + [-1.406, 9.9], + [3.252, 3.752], + [0, 0], + [3.389, 3.472] + ], + "o": [ + [2.153, -8.417], + [0, 0], + [6.834, 6.626], + [2.235, 4.007], + [0.014, 12.708], + [-13.85, -9.644], + [1.406, -9.9], + [-6.03, -8.197], + [0, 0], + [-3.069, -2.569] + ], + "v": [ + [64.097, -106.028], + [75.302, -113.196], + [97.75, -102.32], + [109.571, -87.479], + [115.542, -61.042], + [89.267, -29.662], + [93.455, -58.573], + [89.363, -78.748], + [76.042, -88.764], + [67.306, -93.889] + ] + } + ], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-8.819, -0.055], + [-3.725, -5.002], + [-1.556, -8.153], + [1.376, -6.507], + [6.819, -10.208], + [6.705, 5.634], + [-4.739, 6.011], + [0.336, 4.724], + [3.403, 5.264], + [0.889, 6.528] + ], + "o": [ + [8.819, 0.055], + [3.725, 5.002], + [1.556, 8.153], + [-1.376, 6.507], + [-6.236, 10.347], + [-5.517, -6.31], + [4.739, -6.011], + [-0.336, -4.724], + [-3.403, -5.264], + [-0.778, -5.139] + ], + "v": [ + [92.847, -101.583], + [107.525, -93.752], + [116.083, -75.237], + [115.682, -53.59], + [105.264, -31.597], + [82.6, -24.662], + [89.289, -48.573], + [95.475, -62.637], + [90.764, -76.542], + [82.861, -90.278] + ] + } + ], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-8.819, -0.055], + [-2.475, -7.224], + [0.528, -6.07], + [4.57, -5.951], + [5.958, -2.292], + [4.761, 10.079], + [0, 0], + [-4.225, 6.109], + [2.014, 4.875], + [0.889, 6.528] + ], + "o": [ + [8.819, 0.055], + [2.475, 7.224], + [-0.528, 6.07], + [-4.57, 5.951], + [-5.958, 2.292], + [-4.406, -8.255], + [0, 0], + [5.775, -6.53], + [-2.153, -3.875], + [-0.778, -5.139] + ], + "v": [ + [100.625, -91.305], + [116.413, -72.78], + [118.722, -54.126], + [111.515, -35.534], + [93.875, -21.597], + [74.267, -25.218], + [80.4, -39.961], + [90.613, -47.776], + [94.097, -64.181], + [88.972, -79.167] + ] + } + ], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-7.292, -4.806], + [4.698, -11.526], + [2.055, -2.32], + [3.737, -2.479], + [12.653, -1.458], + [1.428, 4.106], + [0, 0], + [0, 0], + [-1.736, 4.708], + [0.889, 6.528] + ], + "o": [ + [8.403, 5.889], + [-1.969, 5.419], + [-2.055, 2.32], + [-3.737, 2.479], + [-7.07, 0.069], + [-2.184, -8.532], + [0, 0], + [0, 0], + [1.736, -4.708], + [-0.778, -5.139] + ], + "v": [ + [109.514, -71.583], + [114.33, -41.53], + [106.916, -30.376], + [98.182, -22.896], + [77.208, -17.292], + [65.378, -24.523], + [73.317, -36.628], + [86.447, -41.387], + [95.347, -49.459], + [96.472, -63.889] + ] + } + ], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.347, -3.111], + [3.219, -5.002], + [2.611, -1.348], + [6.124, -0.577], + [2.208, 2.986], + [-2.461, 3.551], + [0, 0], + [-5.081, 9.447], + [-1.597, 0.68], + [-4.361, -1.25] + ], + "o": [ + [0.347, 3.111], + [-3.219, 5.002], + [-2.611, 1.348], + [-9.293, 0.812], + [-2.208, -2.986], + [4.483, -5.199], + [0, 0], + [5.081, -9.447], + [1.597, -0.68], + [4.361, 1.25] + ], + "v": [ + [109.236, -43.944], + [104.747, -31.391], + [94.278, -21.07], + [80.682, -17.062], + [64.431, -22.986], + [62.6, -34.523], + [72.622, -36.906], + [87.141, -41.387], + [96.042, -52.375], + [103.694, -52.917] + ] + } + ], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [1.202, -2.461], + [2.177, -1.877], + [4.056, -0.458], + [0, 0], + [2.352, 2.533], + [-0.039, 2.699], + [-6.822, 2.4], + [-5.081, 0.141], + [-10.555, -0.75], + [-1.097, -3.472] + ], + "o": [ + [-0.988, 2.025], + [-2.177, 1.877], + [-10.25, 1.695], + [0, 0], + [-1.956, -2.106], + [0.039, -2.699], + [5.711, -1.566], + [10.775, -0.28], + [7.014, 1.264], + [1.097, 3.472] + ], + "v": [ + [103.403, -26.861], + [98.288, -21.877], + [88.166, -17.459], + [73.39, -16.507], + [62.625, -19.514], + [58.989, -27.579], + [65.678, -37.045], + [76.308, -35.97], + [94.93, -42.514], + [104.111, -36.458] + ] + } + ], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [0.703, -1.596], + [1.407, -0.602], + [2.888, -0.419], + [2.877, 0.708], + [1.292, 2.165], + [-0.543, 2.015], + [-2.308, 1.705], + [-3.344, -0.329], + [-2.577, -1.805], + [-0.756, -2.55] + ], + "o": [ + [-0.617, 1.401], + [-2.682, 1.148], + [-2.933, 0.425], + [-2.448, -0.602], + [-1.069, -1.792], + [0.876, -3.25], + [2.308, -1.705], + [3.131, 0.308], + [2.178, 1.526], + [0.496, 1.672] + ], + "v": [ + [86.875, -21.93], + [83.011, -18.196], + [75.666, -16.348], + [66.515, -16.646], + [60.542, -21.042], + [59.753, -27.787], + [63.525, -33.989], + [74.363, -36.109], + [83.055, -33.903], + [87.167, -28.194] + ] + } + ], + "t": 55.5 + }, + { + "s": [ + { + "c": true, + "i": [ + [0.539, -1.777], + [2.087, -1.675], + [1.708, -0.028], + [2.042, 1.531], + [0.543, 2.208], + [-0.767, 2.121], + [-1.745, 1.223], + [-2.391, -0.071], + [-2.227, -1.571], + [-0.596, -1.893] + ], + "o": [ + [-0.776, 2.561], + [-1.982, 1.592], + [-1.708, 0.028], + [-1.819, -1.364], + [-0.539, -2.19], + [0.724, -2.004], + [1.958, -1.373], + [2.724, 0.081], + [1.622, 1.143], + [0.558, 1.771] + ], + "v": [ + [82.222, -24.569], + [77.872, -18.057], + [70.875, -15.723], + [64.154, -17.965], + [60.195, -24.028], + [60.725, -30.981], + [64.775, -36.281], + [71.1, -38.053], + [78.264, -36.125], + [81.75, -31.25] + ] + } + ], + "t": 56.0000022809268 + } + ], + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "c": { "a": 0, "k": [0.0392, 0.0431, 0.051], "ix": 3 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.0941, 0.749, 0.3725], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [54.75, 35.25], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 7, + "parent": 1 + }, + { + "ty": 4, + "nm": "Shape Layer 1", + "sr": 1, + "st": 0, + "op": 900.000036657751, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [54.75, 35.25, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.34, "y": -0.005 }, + "i": { "x": 0.4, "y": 0.999 }, + "s": [0, 0, 100], + "t": 1 + }, + { + "o": { "x": 0.151, "y": 0.004 }, + "i": { "x": 0.7, "y": 1.001 }, + "s": [250, 250, 100], + "t": 10 + }, + { + "o": { "x": 0.151, "y": -0.008 }, + "i": { "x": 0.829, "y": 0.999 }, + "s": [150, 150, 100], + "t": 17 + }, + { + "o": { "x": 0.6, "y": 0.054 }, + "i": { "x": 0.829, "y": 1.002 }, + "s": [210, 210, 100], + "t": 24 + }, + { "s": [180, 180, 100], "t": 31.0000012626559 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0, "y": 0 }, + "i": { "x": 0.5, "y": 1 }, + "s": [117.75, 20.25, 0], + "t": 4, + "ti": [37.25, -21, 0], + "to": [0.667, 31.5, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [61.75, 104.25, 0], + "t": 10, + "ti": [20.5, 7.375, 0], + "to": [-37.25, 21, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [-43.25, 110.75, 0], + "t": 17, + "ti": [0, 0, 0], + "to": [-20.5, -7.375, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.8, "y": 1 }, + "s": [-96.25, 71.75, 0], + "t": 24, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [-115.25, 29.75, 0], + "t": 31, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [-119.25, 3.75, 0], + "t": 36, + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "o": { "x": 0.8, "y": 0 }, + "i": { "x": 0.8, "y": 1 }, + "s": [-119.25, 3.75, 0], + "t": 55, + "ti": [21.25, -400.75, 0], + "to": [0, 0, 0] + }, + { "s": [-10.25, 69.75, 0], "t": 66.0000026882351 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.667, "y": 1 }, "s": [100], "t": 57 }, + { "s": [0], "t": 61.0000024845809 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-29.409, 0], + [-8.264, -5.274], + [-1.297, -1.007], + [-3.361, -5.447], + [0, -10.239], + [3.97, -7.454], + [2.343, -2.806], + [5.188, -3.094], + [9.954, 0], + [0, 29.409] + ], + "o": [ + [10.53, 0], + [1.388, 0.886], + [5.036, 3.912], + [5.009, 8.118], + [0, 9.035], + [-1.732, 3.252], + [-3.851, 4.613], + [-7.97, 4.754], + [-29.409, 0], + [0, -29.409] + ], + "v": [ + [0, -53.25], + [28.61, -44.919], + [32.64, -42.077], + [45.352, -27.921], + [53.25, 0], + [47.03, 24.998], + [40.895, 34.107], + [27.239, 45.765], + [0, 53.25], + [-53.25, 0] + ] + } + ], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-19.305, 4.111], + [-9.438, -2.461], + [-1.56, -0.563], + [-4.633, -4.851], + [0.793, -14.942], + [7.248, -8.113], + [3.794, -2.694], + [6.608, -2.405], + [6.064, 0.113], + [-1.722, 26.528] + ], + "o": [ + [6.912, -1.472], + [1.586, 0.413], + [6.057, 2.186], + [6.904, 7.229], + [-0.7, 13.184], + [-3.162, 3.539], + [-6.236, 4.428], + [-10.152, 3.694], + [-26.528, -1.722], + [1.722, -26.528] + ], + "v": [ + [8.333, -61.861], + [34.335, -60.963], + [39.06, -59.501], + [55.504, -49.107], + [66.028, -16.389], + [52.981, 15.337], + [42.454, 24.669], + [22.773, 34.838], + [-3.056, 39.917], + [-43.806, -6.389] + ] + } + ], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-32.917, 3.833], + [-13.355, -3.368], + [-2.159, -0.727], + [-5.745, -5.552], + [3.307, -15.619], + [8.994, -3.833], + [5, -0.045], + [11.197, 3.445], + [22.639, 7.556], + [-1.333, 12.639] + ], + "o": [ + [11.786, -1.373], + [2.244, 0.566], + [8.385, 2.825], + [8.561, 8.274], + [-3.509, 14.512], + [-3.924, 1.672], + [-8.219, 0.074], + [-16.198, 2.818], + [-22.639, -7.556], + [1.444, -12.917] + ], + "v": [ + [14.722, -57.139], + [54.388, -54.564], + [61.002, -52.626], + [82.74, -40.177], + [92.417, -4.722], + [73.722, 22.055], + [60.341, 24.569], + [31.238, 19.238], + [-5.278, 24.917], + [-31.028, -17.778] + ] + } + ], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-47.361, -29.389], + [-7.648, -15.316], + [-1.038, -2.594], + [0.981, -8.747], + [18.259, -2.853], + [5.82, 7.251], + [1.759, 3.912], + [2.502, 6.683], + [22.639, 7.556], + [-3.278, 15.695] + ], + "o": [ + [12.084, 9.071], + [1.285, 2.573], + [4.031, 10.075], + [-1.461, 13.036], + [-14.086, 0.967], + [-2.539, -3.163], + [-2.891, -6.43], + [-6.377, -14.099], + [-18.75, -6.444], + [9.778, -25.972] + ], + "v": [ + [79.167, -34.083], + [110.609, 4.852], + [114.102, 12.614], + [119.19, 41.502], + [91.306, 67.5], + [62.896, 56.583], + [56.57, 45.847], + [49.016, 25.627], + [10.556, 8.25], + [-8.806, -28.333] + ] + } + ], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-16.25, -11.056], + [2.113, -34.127], + [1.492, -6.189], + [16.898, -8.494], + [7.447, 11.221], + [-18.711, 8.412], + [-6.504, 1.623], + [0.353, 14.204], + [13.194, 8], + [-7.722, 11.25] + ], + "o": [ + [17.242, 13.128], + [-0.355, 5.734], + [-7.658, 22.767], + [-25.181, 12.658], + [-8.944, -12.083], + [7.317, -4.068], + [10.692, -2.667], + [-1.099, -12.988], + [-20.139, -13.667], + [16.167, -14.861] + ], + "v": [ + [81.111, -30.194], + [112.77, 42.772], + [110.041, 60.666], + [69.75, 106.85], + [9.361, 106.667], + [19.961, 65.616], + [41.313, 58.35], + [59.572, 38.683], + [40, 9.083], + [32.306, -33.611] + ] + } + ], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-3.194, -21.333], + [12.606, -20.309], + [3.011, -3.672], + [22.999, -1.063], + [9.069, 13.664], + [-16.489, -30.477], + [-8.599, -3.749], + [-8.623, 9.377], + [0.139, 4.667], + [-28, 2.361] + ], + "o": [ + [0.119, 11.939], + [-2.118, 3.412], + [-9.069, 9.473], + [-61.446, 0.604], + [-18.944, -35.695], + [6.289, 14.801], + [23.906, 8.295], + [8.623, -9.377], + [-2.917, -12.278], + [19.5, 0.139] + ], + "v": [ + [109.167, 32.306], + [98.529, 80.319], + [90.875, 90.944], + [41.307, 111.202], + [-55.361, 58.889], + [-15.316, 31.727], + [13.455, 62.955], + [57.905, 58.683], + [65, 34.361], + [83.417, -4.167] + ] + } + ], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [1.528, -9.361], + [8.215, -2.079], + [1.153, -0.196], + [17.721, 5.882], + [-4.5, 60.972], + [-0.656, -18.81], + [-6.094, -23.094], + [-16.933, -0.211], + [-5.555, 0.917], + [-4.25, -3.75] + ], + "o": [ + [-2.497, 11.106], + [-1.38, 0.349], + [-11.014, 0.584], + [-51.168, -19.396], + [3, -34.861], + [1.844, 26.468], + [8.072, 24.961], + [5.289, 0.345], + [11.528, -0.333], + [5.055, 5.972] + ], + "v": [ + [66.111, 90.778], + [44.147, 109.022], + [40.319, 109.833], + [-7.582, 104.535], + [-68.139, -16.389], + [-25.316, -25.218], + [-20.989, 33.789], + [22.905, 67.016], + [40.278, 66.305], + [59.806, 70.694] + ] + } + ], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [8.472, -3.833], + [6.324, 9.534], + [0.973, 1.842], + [1.888, 22.271], + [-16.445, 22.083], + [14.066, -19.921], + [1.128, -11.705], + [-1.933, -9.933], + [-5.972, -10.055], + [0.056, -6.944] + ], + "o": [ + [-12.723, 2.664], + [-1.063, -1.602], + [-11.014, -20.388], + [-1.723, -22.729], + [20.778, -26.528], + [-10.656, 13.412], + [-1.094, 15.239], + [2.512, 10.623], + [4.028, 7.028], + [0.056, 8.333] + ], + "v": [ + [-17.222, 78.695], + [-44.412, 66.812], + [-47.459, 61.638], + [-64.943, 4.674], + [-46.472, -67.778], + [-12.261, -53.273], + [-27.378, -16.767], + [-26.539, 15.349], + [-13.889, 42.555], + [-5.611, 61.944] + ] + } + ], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-4.306, 11.236], + [-10.275, 10.558], + [-1.814, 1.612], + [-16.446, 6.854], + [-13.528, 0.417], + [4.622, -14.921], + [11.684, -2.677], + [7.65, -5.627], + [10.139, -18.528], + [11.097, 5.556] + ], + "o": [ + [3.686, -8.93], + [1.726, -1.774], + [10.445, -8.513], + [14.388, -5.091], + [8.972, 0.417], + [-4.545, 9.523], + [-11.928, 2.878], + [-4.016, 2.706], + [-5.139, 8.972], + [-6.125, -4.167] + ], + "v": [ + [-54.167, -52.764], + [-31.735, -85.142], + [-26.417, -90.237], + [9.084, -111.437], + [44.778, -117.5], + [59.128, -97.162], + [28.178, -85.239], + [-0.289, -70.901], + [-23.889, -41.333], + [-49.014, -32.083] + ] + } + ], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-8.869, 6.304], + [-1.454, 0.893], + [-22.001, 2.826], + [-10.889, -2.361], + [5.1, -10.912], + [13.211, 1.211], + [8.484, -4.933], + [7.917, -6.444], + [8.597, 6.319] + ], + "o": [ + [3.092, -7.384], + [1.49, -1.059], + [11.556, -6.43], + [13.138, -1.618], + [12.722, 3.472], + [-7.461, 13.69], + [-9.567, -0.872], + [-5.405, 3.678], + [-4.722, 3.972], + [-4.319, -3.125] + ], + "v": [ + [-32.361, -78.458], + [-11.404, -101.048], + [-6.973, -103.987], + [33.112, -117.965], + [64.917, -115], + [85.239, -92.44], + [49.15, -91.767], + [20.544, -85.762], + [-0.417, -69.806], + [-28.181, -63.958] + ] + } + ], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-7.641, 3.022], + [-1.394, 0.553], + [-14.223, 0.048], + [-20.611, -8.611], + [11.011, -10.06], + [15.711, 6.35], + [3.9, -0.488], + [7.361, -2.139], + [6.514, 5.347] + ], + "o": [ + [3.092, -8.098], + [1.284, -0.508], + [12.528, -3.374], + [3.971, 0.048], + [13.555, 6.805], + [-10.517, 8.273], + [-9.705, -2.539], + [-4.294, 0.623], + [-12.639, 3.556], + [-3.069, -2.569] + ], + "v": [ + [-3.056, -97.486], + [13.314, -111.297], + [17.333, -112.876], + [48.668, -117.548], + [84.083, -109.861], + [103.434, -77.44], + [66.928, -89.128], + [46.655, -92.151], + [27.5, -87.445], + [0.431, -85.347] + ] + } + ], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-1.806, 5.68], + [-2.943, 0.291], + [0, 0], + [-18.807, -3.285], + [-9.083, -9.583], + [14.483, -4.366], + [9.461, 8.295], + [11.748, 2.151], + [5.07, -0.194], + [4.917, 3.472] + ], + "o": [ + [3.092, -8.098], + [0.494, -0.049], + [0, 0], + [15.916, 3.382], + [11.055, 12.083], + [-17.045, 3.134], + [-5.817, -4.622], + [-6.03, -0.627], + [-5.417, 0.292], + [-3.069, -2.569] + ], + "v": [ + [21.597, -106.305], + [38.084, -116.287], + [38.861, -116.348], + [70.196, -114.909], + [103.111, -95.972], + [104.822, -56.051], + [82.067, -82.045], + [60.961, -91.942], + [43.542, -92.375], + [24.806, -93.611] + ] + } + ], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.903, 4.778], + [-5.302, 0.419], + [-11.222, -6.43], + [0, 0], + [-1.236, -22.431], + [11.705, 2.856], + [-0.261, 11.906], + [3.252, 3.752], + [9.931, 1.125], + [3.389, 3.472] + ], + "o": [ + [2.431, -7.445], + [7.059, -0.554], + [9.472, 5.653], + [0, 0], + [0.014, 12.708], + [-12.184, -3.532], + [0.017, -9.205], + [-3.252, -3.752], + [-10.208, -1.236], + [-3.069, -2.569] + ], + "v": [ + [44.375, -107.694], + [62.525, -115.419], + [88.861, -106.487], + [106.098, -90.534], + [114.986, -61.18], + [99.545, -39.662], + [91.372, -64.961], + [82.558, -83.331], + [66.042, -90.986], + [47.583, -95.556] + ] + } + ], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.903, 4.778], + [0, 0], + [-14.139, -13.374], + [-2.235, -4.007], + [0.569, -16.875], + [14.761, 7.301], + [-1.406, 9.9], + [3.252, 3.752], + [0, 0], + [3.389, 3.472] + ], + "o": [ + [2.153, -8.417], + [0, 0], + [6.834, 6.626], + [2.235, 4.007], + [0.014, 12.708], + [-13.85, -9.644], + [1.406, -9.9], + [-6.03, -8.197], + [0, 0], + [-3.069, -2.569] + ], + "v": [ + [64.097, -106.028], + [75.302, -113.196], + [97.75, -102.32], + [109.571, -87.479], + [115.542, -61.042], + [89.267, -29.662], + [93.455, -58.573], + [89.363, -78.748], + [76.042, -88.764], + [67.306, -93.889] + ] + } + ], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-8.819, -0.055], + [-3.725, -5.002], + [-1.556, -8.153], + [1.376, -6.507], + [6.819, -10.208], + [6.705, 5.634], + [-4.739, 6.011], + [0.336, 4.724], + [3.403, 5.264], + [0.889, 6.528] + ], + "o": [ + [8.819, 0.055], + [3.725, 5.002], + [1.556, 8.153], + [-1.376, 6.507], + [-6.236, 10.347], + [-5.517, -6.31], + [4.739, -6.011], + [-0.336, -4.724], + [-3.403, -5.264], + [-0.778, -5.139] + ], + "v": [ + [92.847, -101.583], + [107.525, -93.752], + [116.083, -75.237], + [115.682, -53.59], + [105.264, -31.597], + [82.6, -24.662], + [89.289, -48.573], + [95.475, -62.637], + [90.764, -76.542], + [82.861, -90.278] + ] + } + ], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-8.819, -0.055], + [-2.475, -7.224], + [0.528, -6.07], + [4.57, -5.951], + [5.958, -2.292], + [4.761, 10.079], + [0, 0], + [-4.225, 6.109], + [2.014, 4.875], + [0.889, 6.528] + ], + "o": [ + [8.819, 0.055], + [2.475, 7.224], + [-0.528, 6.07], + [-4.57, 5.951], + [-5.958, 2.292], + [-4.406, -8.255], + [0, 0], + [5.775, -6.53], + [-2.153, -3.875], + [-0.778, -5.139] + ], + "v": [ + [100.625, -91.305], + [116.413, -72.78], + [118.722, -54.126], + [111.515, -35.534], + [93.875, -21.597], + [74.267, -25.218], + [80.4, -39.961], + [90.613, -47.776], + [94.097, -64.181], + [88.972, -79.167] + ] + } + ], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-7.292, -4.806], + [4.698, -11.526], + [2.055, -2.32], + [3.737, -2.479], + [12.653, -1.458], + [1.428, 4.106], + [0, 0], + [0, 0], + [-1.736, 4.708], + [0.889, 6.528] + ], + "o": [ + [8.403, 5.889], + [-1.969, 5.419], + [-2.055, 2.32], + [-3.737, 2.479], + [-7.07, 0.069], + [-2.184, -8.532], + [0, 0], + [0, 0], + [1.736, -4.708], + [-0.778, -5.139] + ], + "v": [ + [109.514, -71.583], + [114.33, -41.53], + [106.916, -30.376], + [98.182, -22.896], + [77.208, -17.292], + [65.378, -24.523], + [73.317, -36.628], + [86.447, -41.387], + [95.347, -49.459], + [96.472, -63.889] + ] + } + ], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [-0.347, -3.111], + [3.219, -5.002], + [2.611, -1.348], + [6.124, -0.577], + [2.208, 2.986], + [-2.461, 3.551], + [0, 0], + [-5.081, 9.447], + [-1.597, 0.68], + [-4.361, -1.25] + ], + "o": [ + [0.347, 3.111], + [-3.219, 5.002], + [-2.611, 1.348], + [-9.293, 0.812], + [-2.208, -2.986], + [4.483, -5.199], + [0, 0], + [5.081, -9.447], + [1.597, -0.68], + [4.361, 1.25] + ], + "v": [ + [109.236, -43.944], + [104.747, -31.391], + [94.278, -21.07], + [80.682, -17.062], + [64.431, -22.986], + [62.6, -34.523], + [72.622, -36.906], + [87.141, -41.387], + [96.042, -52.375], + [103.694, -52.917] + ] + } + ], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [1.202, -2.461], + [2.177, -1.877], + [4.056, -0.458], + [0, 0], + [2.352, 2.533], + [-0.039, 2.699], + [-6.822, 2.4], + [-5.081, 0.141], + [-10.555, -0.75], + [-1.097, -3.472] + ], + "o": [ + [-0.988, 2.025], + [-2.177, 1.877], + [-10.25, 1.695], + [0, 0], + [-1.956, -2.106], + [0.039, -2.699], + [5.711, -1.566], + [10.775, -0.28], + [7.014, 1.264], + [1.097, 3.472] + ], + "v": [ + [103.403, -26.861], + [98.288, -21.877], + [88.166, -17.459], + [73.39, -16.507], + [62.625, -19.514], + [58.989, -27.579], + [65.678, -37.045], + [76.308, -35.97], + [94.93, -42.514], + [104.111, -36.458] + ] + } + ], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [ + { + "c": true, + "i": [ + [0.703, -1.596], + [1.407, -0.602], + [2.888, -0.419], + [2.877, 0.708], + [1.292, 2.165], + [-0.543, 2.015], + [-2.308, 1.705], + [-3.344, -0.329], + [-2.577, -1.805], + [-0.756, -2.55] + ], + "o": [ + [-0.617, 1.401], + [-2.682, 1.148], + [-2.933, 0.425], + [-2.448, -0.602], + [-1.069, -1.792], + [0.876, -3.25], + [2.308, -1.705], + [3.131, 0.308], + [2.178, 1.526], + [0.496, 1.672] + ], + "v": [ + [86.875, -21.93], + [83.011, -18.196], + [75.666, -16.348], + [66.515, -16.646], + [60.542, -21.042], + [59.753, -27.787], + [63.525, -33.989], + [74.363, -36.109], + [83.055, -33.903], + [87.167, -28.194] + ] + } + ], + "t": 55.5 + }, + { + "s": [ + { + "c": true, + "i": [ + [0.539, -1.777], + [2.087, -1.675], + [1.708, -0.028], + [2.042, 1.531], + [0.543, 2.208], + [-0.767, 2.121], + [-1.745, 1.223], + [-2.391, -0.071], + [-2.227, -1.571], + [-0.596, -1.893] + ], + "o": [ + [-0.776, 2.561], + [-1.982, 1.592], + [-1.708, 0.028], + [-1.819, -1.364], + [-0.539, -2.19], + [0.724, -2.004], + [1.958, -1.373], + [2.724, 0.081], + [1.622, 1.143], + [0.558, 1.771] + ], + "v": [ + [82.222, -24.569], + [77.872, -18.057], + [70.875, -15.723], + [64.154, -17.965], + [60.195, -24.028], + [60.725, -30.981], + [64.775, -36.281], + [71.1, -38.053], + [78.264, -36.125], + [81.75, -31.25] + ] + } + ], + "t": 56.0000022809268 + } + ], + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "c": { "a": 0, "k": [0.0392, 0.0431, 0.051], "ix": 3 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.5216, 0, 0.5569], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [54.75, 35.25], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 8, + "parent": 4 + } + ], + "v": "5.4.4", + "fr": 29.9700012207031, + "op": 62.0000025253118, + "ip": 0, + "assets": [] +} From 0b77245607b55e8ce870551c364ec34fd7628c37 Mon Sep 17 00:00:00 2001 From: Aman Chaturvedi Date: Tue, 10 Sep 2024 17:08:08 +0530 Subject: [PATCH 011/124] TP-80461 | auto apk installer --- android/app/src/main/AndroidManifest.xml | 1 + .../ApkInstallerModule.java | 68 ++++++++++++++ .../ApkInstallerPackage.java | 27 ++++++ src/action/appDownloadAction.ts | 50 +++++++++++ src/common/BlockerScreen.tsx | 38 ++++---- src/common/Constants.ts | 5 ++ src/common/ForceUninstallScreen.tsx | 89 ------------------- src/components/utlis/DeviceUtils.ts | 22 ++++- 8 files changed, 194 insertions(+), 106 deletions(-) create mode 100644 android/app/src/main/java/com/avapp/appInstallerModule/ApkInstallerModule.java create mode 100644 android/app/src/main/java/com/avapp/appInstallerModule/ApkInstallerPackage.java create mode 100644 src/action/appDownloadAction.ts delete mode 100644 src/common/ForceUninstallScreen.tsx diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index e458bfaa..1fdebcc1 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -36,6 +36,7 @@ + diff --git a/android/app/src/main/java/com/avapp/appInstallerModule/ApkInstallerModule.java b/android/app/src/main/java/com/avapp/appInstallerModule/ApkInstallerModule.java new file mode 100644 index 00000000..ca66c9fd --- /dev/null +++ b/android/app/src/main/java/com/avapp/appInstallerModule/ApkInstallerModule.java @@ -0,0 +1,68 @@ +package com.avapp.appInstallerModule; + +import android.app.Activity; +import android.content.Intent; +import android.net.Uri; +import android.os.Build; +import android.util.Log; + +import androidx.core.content.FileProvider; + +import com.avapp.BuildConfig; +import com.facebook.react.bridge.ReactApplicationContext; +import com.facebook.react.bridge.ReactContextBaseJavaModule; +import com.facebook.react.bridge.ReactMethod; +import com.facebook.react.bridge.Callback; +import java.io.File; + +public class ApkInstallerModule extends ReactContextBaseJavaModule { + + private final ReactApplicationContext reactContext; + + public ApkInstallerModule(ReactApplicationContext reactContext) { + super(reactContext); + this.reactContext = reactContext; + } + + @Override + public String getName() { + return "ApkInstaller"; + } + + private void promptForInstall(Uri apkUri) { + try { + Intent intent = new Intent(Intent.ACTION_VIEW); + Log.d("ApkInstaller", "uri: "+ apkUri); + intent.setDataAndType(apkUri, "application/vnd.android.package-archive"); + intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { + intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); + } + reactContext.startActivity(intent); + } catch (Exception e) { + Log.e("ApkInstaller", "promptForInstall: Error installing APK", e); + } + } + + @ReactMethod + public void installApk(String filePath, Callback callback) { + try { + File apkFile = new File(filePath); + Uri apkUri; + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { + apkUri = FileProvider.getUriForFile(reactContext, BuildConfig.APPLICATION_ID + ".provider", + apkFile); + } else { + apkUri = Uri.fromFile(apkFile); + } + promptForInstall(apkUri); + Log.d("ApkInstaller", "App installed"); + callback.invoke(null, "Success"); + } catch (Exception e) { + Log.e("ApkInstaller", "Error installing APK", e); + callback.invoke(e.toString(), null); + } + } +} \ No newline at end of file diff --git a/android/app/src/main/java/com/avapp/appInstallerModule/ApkInstallerPackage.java b/android/app/src/main/java/com/avapp/appInstallerModule/ApkInstallerPackage.java new file mode 100644 index 00000000..64e6bd22 --- /dev/null +++ b/android/app/src/main/java/com/avapp/appInstallerModule/ApkInstallerPackage.java @@ -0,0 +1,27 @@ +package com.avapp.appInstallerModule; + +import com.facebook.react.ReactPackage; +import com.facebook.react.bridge.NativeModule; +import com.facebook.react.bridge.ReactApplicationContext; +import com.facebook.react.uimanager.ViewManager; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +public class ApkInstallerPackage implements ReactPackage { + @Override + public List createViewManagers(ReactApplicationContext reactContext) { + return Collections.emptyList(); + } + + @Override + public List createNativeModules( + ReactApplicationContext reactContext) { + List modules = new ArrayList<>(); + + modules.add(new ApkInstallerModule(reactContext)); + + return modules; + } +} \ No newline at end of file diff --git a/src/action/appDownloadAction.ts b/src/action/appDownloadAction.ts new file mode 100644 index 00000000..4f70d8c6 --- /dev/null +++ b/src/action/appDownloadAction.ts @@ -0,0 +1,50 @@ +import { BuildFlavours } from '@common/Constants'; +import { downloadApkFromS3, installApk } from '@components/utlis/DeviceUtils'; +import { logError } from '@components/utlis/errorUtils'; +import axios from 'axios'; +import { Linking } from 'react-native'; + +export const downloadLatestAppS3Url = async (buildFlavour: BuildFlavours) => { + try { + const response = await axios.get( + `https://longhorn.navi.com/api/app/download?appType=${buildFlavour}` + ); + return response.data.downloadPreSignedUrl; + } catch (err) { + logError(err as Error, 'Error while downloading the latest app'); + } +}; + +const openApkDownloadLink = (url: string) => { + Linking.openURL(url); +}; + +const openFallbackLonghornLink = (fallbackUrl?: string) => { + if (fallbackUrl) { + openApkDownloadLink(fallbackUrl); + } +}; + +export const downloadAndInstallLatestApk = async ( + buildFlavour: BuildFlavours, + fallbackUrl?: string +) => { + const appUrl = await downloadLatestAppS3Url(buildFlavour); + if (!appUrl) { + openFallbackLonghornLink(fallbackUrl); + return; + } + const appFileUrl = await downloadApkFromS3( + appUrl, + `Cosmos_${BuildFlavours.FIELD_AGENTS}_${Date.now()}` + ); + if (!appFileUrl) { + openFallbackLonghornLink(fallbackUrl); + return; + } + installApk(appFileUrl, (error) => { + if (error) { + openFallbackLonghornLink(fallbackUrl); + } + }); +}; diff --git a/src/common/BlockerScreen.tsx b/src/common/BlockerScreen.tsx index 7ebe3ac4..ba2b1f5c 100644 --- a/src/common/BlockerScreen.tsx +++ b/src/common/BlockerScreen.tsx @@ -5,16 +5,13 @@ import { RootState } from '../store/store'; import { IAppState, UninstallInformation } from '../reducer/metadataSlice'; import { getAppVersion, getBuildVersion } from '../components/utlis/commonFunctions'; import BlockerInstructions from './BlockerInstructions'; -import { BLOCKER_SCREEN_DATA, CLICKSTREAM_EVENT_NAMES } from './Constants'; +import { BLOCKER_SCREEN_DATA, BuildFlavours, CLICKSTREAM_EVENT_NAMES } from './Constants'; import { useAppDispatch, useAppSelector } from '../hooks'; import { setIsDeviceLocationEnabled } from '../reducer/foregroundServiceSlice'; import { toast } from '../../RN-UI-LIB/src/components/toast'; import { locationEnabled } from '../components/utlis/DeviceUtils'; import BlockerScreenApps from '@screens/permissions/BlockerScreenApps'; -import handleBlacklistedAppsForBlockingCosmos, { - Apps, - BLACKLISTED_APPS_LIST, -} from '@services/blacklistedApps.service'; +import handleBlacklistedAppsForBlockingCosmos, { Apps } from '@services/blacklistedApps.service'; import { addClickstreamEvent } from '@services/clickstreamEventService'; import { setBlacklistedAppsInstalledData } from '@reducers/blacklistedAppsInstalledSlice'; import { GLOBAL } from '@constants/Global'; @@ -22,6 +19,7 @@ import AgentIdCardFlow from '@screens/AgentIdCard'; import { IdCardBlockStatus } from '@reducers/profileSlice'; import FullScreenLoader from '@rn-ui-lib/components/FullScreenLoader'; import { IUserRole } from '@reducers/userSlice'; +import { downloadAndInstallLatestApk } from '@actions/appDownloadAction'; interface IBlockerScreen { children?: ReactNode; @@ -30,8 +28,6 @@ interface IBlockerScreen { const RETRY_GEOLOCATION_STEPS = 'Unable to retrieve location. Kindly follow the given steps and try again.'; -const BUILD_FOR_FIELD = 'fieldAgents'; - const BlockerScreen = (props: IBlockerScreen) => { const [forceReinstallData, setForceReinstallData] = useState(); const { isTimeSynced, isDeviceLocationEnabled } = useAppSelector( @@ -41,7 +37,9 @@ const BlockerScreen = (props: IBlockerScreen) => { const approvalStatus = useAppSelector((state) => state.profile?.approvalStatus); const isLoading = useAppSelector((state) => state.profile?.isLoading); const roles = useAppSelector((state) => state.user?.agentRoles); - const isFieldAgent = roles?.length === 1 && roles.includes(IUserRole.ROLE_FIELD_AGENT) || roles.includes(IUserRole.ROLE_OMA); + const isFieldAgent = + (roles?.length === 1 && roles.includes(IUserRole.ROLE_FIELD_AGENT)) || + roles.includes(IUserRole.ROLE_OMA); const [shouldUpdate, setShouldUpdate] = useState(); @@ -133,14 +131,18 @@ const BlockerScreen = (props: IBlockerScreen) => { }, []); const handleAppUpdate = () => { - let appUpdateUrl; - if (GLOBAL.BUILD_FLAVOUR.includes(BUILD_FOR_FIELD)) { - appUpdateUrl = appState?.fieldAgents.currentProdAPK; + if (GLOBAL.BUILD_FLAVOUR.includes(BuildFlavours.FIELD_AGENTS)) { + // Field agent + downloadAndInstallLatestApk( + BuildFlavours.FIELD_AGENTS, + appState?.fieldAgents?.currentProdAPK + ); } else { - appUpdateUrl = appState?.telecallingAgents.currentProdAPK; - } - if (appUpdateUrl) { - openApkDownloadLink(appUpdateUrl); + // Calling agent + downloadAndInstallLatestApk( + BuildFlavours.CALLING_AGENTS, + appState?.telecallingAgents?.currentProdAPK + ); } }; @@ -223,7 +225,11 @@ const BlockerScreen = (props: IBlockerScreen) => { }); return ; } - if (IdCardBlockStatus[approvalStatus as keyof typeof IdCardBlockStatus] && isFieldAgent && !GLOBAL.IS_IMPERSONATED) { + if ( + IdCardBlockStatus[approvalStatus as keyof typeof IdCardBlockStatus] && + isFieldAgent && + !GLOBAL.IS_IMPERSONATED + ) { return ( <> diff --git a/src/common/Constants.ts b/src/common/Constants.ts index d2fd3918..f917a917 100644 --- a/src/common/Constants.ts +++ b/src/common/Constants.ts @@ -1434,3 +1434,8 @@ export const HIT_SLOP = { export const LITMUS_URL = 'https://longhorn.navi.com/litmus'; export const API_ERROR_MESSAGE = 'Oops! something went wrong'; + +export enum BuildFlavours { + FIELD_AGENTS = 'fieldAgents', + CALLING_AGENTS = 'callingAgents', +} \ No newline at end of file diff --git a/src/common/ForceUninstallScreen.tsx b/src/common/ForceUninstallScreen.tsx deleted file mode 100644 index 206aaed9..00000000 --- a/src/common/ForceUninstallScreen.tsx +++ /dev/null @@ -1,89 +0,0 @@ -import React, { ReactNode, useState } from 'react'; -import { Linking, StyleSheet, View } from 'react-native'; -import Heading from '../../RN-UI-LIB/src/components/Heading'; -import { useSelector } from 'react-redux'; -import { RootState } from '../store/store'; -import { UninstallInformation } from '../reducer/metadataSlice'; -import Text from '../../RN-UI-LIB/src/components/Text'; -import Button from '../../RN-UI-LIB/src/components/Button'; -import { getAppVersion } from '../components/utlis/commonFunctions'; - -interface IForceUninstallScreen { - children?: ReactNode; -} - -const ForceUninstallScreen = (props: IForceUninstallScreen) => { - const [forceReinstallData, setForceReinstallData] = useState(); - - function compareSemverVersions(a: string, b: string) { - return a.localeCompare(b, undefined, { numeric: true, sensitivity: 'base' }); - } - const forceUninstallData = useSelector((state: RootState) => { - return state.metadata?.forceUninstall; - }); - - function openApkDownloadLink(url: string) { - Linking.openURL(url); - } - - React.useEffect(() => { - for (const versionName of Object.keys(forceUninstallData)) { - const uninstallData = forceUninstallData[versionName]; - if ( - compareSemverVersions(getAppVersion(), versionName) < 1 && - Date.now() >= uninstallData.last_operational_time - ) { - setForceReinstallData(uninstallData); - return; - } - } - setForceReinstallData(undefined); - }, [JSON.stringify(forceUninstallData || {})]); - - return ( - <> - {forceReinstallData?.reinstall_endpoint ? ( - - - Seems like you are using an older app version. v{getAppVersion()} - - Please follow these instructions. - 1. Download the new app by clicking the button at the bottom. - 2. Uninstall this app (Cosmos). - 3. Install the downloaded app. -