-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/.storybook/theme.js b/.storybook/theme.js
index e33243058453..0867f6a830b5 100644
--- a/.storybook/theme.js
+++ b/.storybook/theme.js
@@ -2,14 +2,22 @@ import {create} from '@storybook/theming';
import colors from '../src/styles/colors';
export default create({
- appBg: colors.dark,
- barSelectedColor: colors.blue,
- base: 'light',
- brandTitle: 'Expensify UI Docs',
+ brandTitle: 'New Expensify UI Docs',
brandImage: 'logomark.svg',
- colorPrimary: colors.dark,
- colorSecondary: colors.orange,
fontBase: 'ExpensifyNeue-Regular',
fontCode: 'monospace',
- textInverseColor: colors.black,
+ base: 'dark',
+ appBg: colors.greenHighlightBackground,
+ colorPrimary: colors.greenDefaultButton,
+ colorSecondary: colors.green,
+ appContentBg: colors.greenAppBackground,
+ textColor: colors.white,
+ barTextColor: colors.white,
+ barSelectedColor: colors.green,
+ barBg: colors.greenAppBackground,
+ appBorderColor: colors.greenBorders,
+ inputBg: colors.greenHighlightBackground,
+ inputBorder: colors.greenBorders,
+ appBorderRadius: 8,
+ inputBorderRadius: 8,
});
diff --git a/__mocks__/react-native-dev-menu.js b/__mocks__/react-native-dev-menu.js
new file mode 100644
index 000000000000..49cb4c61a209
--- /dev/null
+++ b/__mocks__/react-native-dev-menu.js
@@ -0,0 +1,3 @@
+export default {
+ addItem: jest.fn(),
+};
diff --git a/__mocks__/react-native-key-command.js b/__mocks__/react-native-key-command.js
new file mode 100644
index 000000000000..092ab120a142
--- /dev/null
+++ b/__mocks__/react-native-key-command.js
@@ -0,0 +1,13 @@
+const registerKeyCommands = () => {};
+const unregisterKeyCommands = () => {};
+const constants = {};
+const eventEmitter = () => {};
+const addListener = () => {};
+
+export {
+ registerKeyCommands,
+ unregisterKeyCommands,
+ constants,
+ eventEmitter,
+ addListener,
+};
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 1f6cef81a2e7..40ca1310ed3c 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -106,8 +106,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
- versionCode 1001030000
- versionName "1.3.0-0"
+ versionCode 1001030803
+ versionName "1.3.8-3"
}
splits {
diff --git a/android/app/src/e2eRelease/java/com/expensify/chat/ReactNativeFlipper.java b/android/app/src/e2eRelease/java/com/expensify/chat/ReactNativeFlipper.java
new file mode 100644
index 000000000000..d7730e2d4fae
--- /dev/null
+++ b/android/app/src/e2eRelease/java/com/expensify/chat/ReactNativeFlipper.java
@@ -0,0 +1,20 @@
+/**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the LICENSE file in the root
+ * directory of this source tree.
+ */
+package com.expensify.chat;
+
+import android.content.Context;
+import com.facebook.react.ReactInstanceManager;
+
+/**
+ * Class responsible of loading Flipper inside your React Native application. This is the release
+ * flavor of it so it's empty as we don't want to load Flipper.
+ */
+public class ReactNativeFlipper {
+ public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
+ // Do nothing as we don't want to initialize Flipper on Release.
+ }
+}
diff --git a/android/app/src/main/assets/fonts/ExpensifyMono-Bold.otf b/android/app/src/main/assets/fonts/ExpensifyMono-Bold.otf
index 4198f46f6d79..86b7850ccf5c 100755
Binary files a/android/app/src/main/assets/fonts/ExpensifyMono-Bold.otf and b/android/app/src/main/assets/fonts/ExpensifyMono-Bold.otf differ
diff --git a/android/app/src/main/assets/fonts/ExpensifyMono-Regular.otf b/android/app/src/main/assets/fonts/ExpensifyMono-Regular.otf
index 1c6242a717f9..13c388d5334d 100755
Binary files a/android/app/src/main/assets/fonts/ExpensifyMono-Regular.otf and b/android/app/src/main/assets/fonts/ExpensifyMono-Regular.otf differ
diff --git a/android/app/src/main/assets/fonts/ExpensifyNeue-Bold.otf b/android/app/src/main/assets/fonts/ExpensifyNeue-Bold.otf
index 7534aecda322..ac0f9cb66ba8 100755
Binary files a/android/app/src/main/assets/fonts/ExpensifyNeue-Bold.otf and b/android/app/src/main/assets/fonts/ExpensifyNeue-Bold.otf differ
diff --git a/android/app/src/main/assets/fonts/ExpensifyNeue-BoldItalic.otf b/android/app/src/main/assets/fonts/ExpensifyNeue-BoldItalic.otf
index 4c28031fedd6..47514e0e3ffa 100755
Binary files a/android/app/src/main/assets/fonts/ExpensifyNeue-BoldItalic.otf and b/android/app/src/main/assets/fonts/ExpensifyNeue-BoldItalic.otf differ
diff --git a/android/app/src/main/assets/fonts/ExpensifyNeue-Italic.otf b/android/app/src/main/assets/fonts/ExpensifyNeue-Italic.otf
index a5d19502dbfe..e398dd94665b 100755
Binary files a/android/app/src/main/assets/fonts/ExpensifyNeue-Italic.otf and b/android/app/src/main/assets/fonts/ExpensifyNeue-Italic.otf differ
diff --git a/android/app/src/main/assets/fonts/ExpensifyNeue-Regular.otf b/android/app/src/main/assets/fonts/ExpensifyNeue-Regular.otf
index d4d8cbe63b44..6a5f283f0178 100755
Binary files a/android/app/src/main/assets/fonts/ExpensifyNeue-Regular.otf and b/android/app/src/main/assets/fonts/ExpensifyNeue-Regular.otf differ
diff --git a/android/app/src/main/java/com/expensify/chat/MainActivity.java b/android/app/src/main/java/com/expensify/chat/MainActivity.java
index bd90ee9abd02..b4eb483f8de6 100644
--- a/android/app/src/main/java/com/expensify/chat/MainActivity.java
+++ b/android/app/src/main/java/com/expensify/chat/MainActivity.java
@@ -2,7 +2,9 @@
import android.os.Bundle;
import android.content.pm.ActivityInfo;
+import android.view.KeyEvent;
import com.expensify.chat.bootsplash.BootSplash;
+import com.expensify.reactnativekeycommand.KeyCommandModule;
import com.facebook.react.ReactActivity;
import com.facebook.react.ReactActivityDelegate;
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
@@ -44,4 +46,34 @@ protected void onCreate(Bundle savedInstanceState) {
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}
}
+
+ /**
+ * This method is called when a key down event has occurred.
+ * Forwards the event to the KeyCommandModule
+ */
+ @Override
+ public boolean onKeyDown(int keyCode, KeyEvent event) {
+ // Disabling hardware ESCAPE support which is handled by Android
+ if (event.getKeyCode() == KeyEvent.KEYCODE_ESCAPE) {
+ return false;
+ }
+ KeyCommandModule.getInstance().onKeyDownEvent(keyCode, event);
+ return super.onKeyDown(keyCode, event);
+ }
+
+ @Override
+ public boolean onKeyLongPress(int keyCode, KeyEvent event) {
+ // Disabling hardware ESCAPE support which is handled by Android
+ if (event.getKeyCode() == KeyEvent.KEYCODE_ESCAPE) { return false; }
+ KeyCommandModule.getInstance().onKeyDownEvent(keyCode, event);
+ return super.onKeyLongPress(keyCode, event);
+ }
+
+ @Override
+ public boolean onKeyUp(int keyCode, KeyEvent event) {
+ // Disabling hardware ESCAPE support which is handled by Android
+ if (event.getKeyCode() == KeyEvent.KEYCODE_ESCAPE) { return false; }
+ KeyCommandModule.getInstance().onKeyDownEvent(keyCode, event);
+ return super.onKeyUp(keyCode, event);
+ }
}
\ No newline at end of file
diff --git a/android/link-assets-manifest.json b/android/link-assets-manifest.json
index 3b9e10ad3b7f..a3ac1c2332f9 100644
--- a/android/link-assets-manifest.json
+++ b/android/link-assets-manifest.json
@@ -3,27 +3,27 @@
"data": [
{
"path": "assets/fonts/native/ExpensifyMono-Bold.otf",
- "sha1": "6b83b1c1c0c8650f6258fd05771b4e25696c4046"
+ "sha1": "d70e12540200613e9e6ac9068bed57e4bf477bfe"
},
{
"path": "assets/fonts/native/ExpensifyMono-Regular.otf",
- "sha1": "c0522536213e24609badc298ed82a6c47cdb5b20"
+ "sha1": "9bbd3795afea1b1136c5b6a8ecd7d470fd5ea1b2"
},
{
"path": "assets/fonts/native/ExpensifyNeue-Bold.otf",
- "sha1": "c61cccfb6091f06381fa5b514272eab7105246d8"
+ "sha1": "fba09dcd16261f9fd181a772e3f7879e5deafb7f"
},
{
"path": "assets/fonts/native/ExpensifyNeue-BoldItalic.otf",
- "sha1": "039065b262036e708ebb5f64b236ef08cc4e8f4e"
+ "sha1": "fe3969031652a5160819514bd62c36acb8ef7d24"
},
{
"path": "assets/fonts/native/ExpensifyNeue-Italic.otf",
- "sha1": "7ddd0652175a9f27380fc63eec4395d65ed189eb"
+ "sha1": "e07eeb6fbabec2b46d708f59bccdacc5bbf8acbf"
},
{
"path": "assets/fonts/native/ExpensifyNeue-Regular.otf",
- "sha1": "57b2cdd2f4adea3fad34464248502cd4edcaadd7"
+ "sha1": "32290ecbda86b5938c7538f6bf5c3106b43e5a6e"
},
{
"path": "assets/fonts/native/ExpensifyNewKansas-Medium.otf",
diff --git a/android/settings.gradle b/android/settings.gradle
index db7d62fd8ef5..b86bfc40ebde 100644
--- a/android/settings.gradle
+++ b/android/settings.gradle
@@ -11,6 +11,8 @@ include ':react-native-config'
project(':react-native-config').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-config/android')
include ':react-native-plaid-link-sdk'
project(':react-native-plaid-link-sdk').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-plaid-link-sdk/android')
+include ':react-native-dev-menu'
+project(':react-native-dev-menu').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-dev-menu/android')
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
include ':app'
includeBuild('../node_modules/react-native-gradle-plugin')
diff --git a/assets/animations/Hands.json b/assets/animations/Hands.json
new file mode 100644
index 000000000000..41706e76e3ac
--- /dev/null
+++ b/assets/animations/Hands.json
@@ -0,0 +1 @@
+{"v":"5.9.6","fr":24,"ip":0,"op":106,"w":375,"h":375,"nm":"Comp 1","ddd":0,"assets":[{"id":"comp_0","nm":"main","fr":24,"layers":[{"ddd":0,"ind":2,"ty":0,"nm":"hands1-comp","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[966,543.5,0],"ix":2,"l":2},"a":{"a":0,"k":[966,543.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":1932,"h":1087,"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"hands2-comp","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[966,543.5,0],"ix":2,"l":2},"a":{"a":0,"k":[966,543.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":1932,"h":1087,"ip":14,"op":62,"st":14,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"hands3-comp","refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1136,593.5,0],"ix":2,"l":2},"a":{"a":0,"k":[966,543.5,0],"ix":1,"l":2},"s":{"a":0,"k":[125,125,100],"ix":6,"l":2}},"ao":0,"w":1932,"h":1087,"ip":0,"op":8,"st":-53,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"hands3-comp","refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1136,593.5,0],"ix":2,"l":2},"a":{"a":0,"k":[966,543.5,0],"ix":1,"l":2},"s":{"a":0,"k":[125,125,100],"ix":6,"l":2}},"ao":0,"w":1932,"h":1087,"ip":52,"op":106,"st":52,"ct":1,"bm":0}]},{"id":"comp_1","nm":"hands1-comp","fr":24,"layers":[{"ddd":0,"ind":3,"ty":3,"nm":"hand A peg","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.575,"y":0.74},"o":{"x":0.167,"y":0.167},"t":0,"s":[-66,157.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.703,"y":1},"o":{"x":0.087,"y":1},"t":11,"s":[541.719,157.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.88,"y":0},"o":{"x":0.298,"y":0},"t":22,"s":[574,157.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.42,"y":0.273},"t":33,"s":[537.064,157.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":47,"s":[-66,157.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":3,"nm":"hand B peg","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.575,"y":0.74},"o":{"x":0.167,"y":0.167},"t":0,"s":[1922,337.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.703,"y":1},"o":{"x":0.089,"y":1},"t":11,"s":[1459.123,337.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.868,"y":0},"o":{"x":0.298,"y":0},"t":22,"s":[1434,337.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.42,"y":0.274},"t":33,"s":[1465.072,337.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":47,"s":[1922,337.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"B fingers peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.651],"y":[-0.912]},"o":{"x":[0.315],"y":[0]},"t":16,"s":[0]},{"i":{"x":[0.832],"y":[0.9]},"o":{"x":[0.373],"y":[0.119]},"t":19,"s":[0.712]},{"t":23,"s":[17]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.651,"y":0.651},"o":{"x":0.315,"y":0.315},"t":16,"s":[-248,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.373,"y":0.373},"t":19,"s":[-248,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":23,"s":[-248,60,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.651,0.651,0.651],"y":[1,1,1]},"o":{"x":[0.315,0.315,0.315],"y":[0,0,0]},"t":16,"s":[100,100,100]},{"i":{"x":[0.832,0.832,0.832],"y":[1,1,1]},"o":{"x":[0.373,0.373,0.373],"y":[0,0,0]},"t":19,"s":[100,100,100]},{"t":23,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":3,"nm":"B fingers 2 peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[0]},{"t":30,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":24,"s":[-264,49.5,0],"to":[0,0.417,0],"ti":[0,-0.417,0]},{"t":30,"s":[-264,52,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":24,"s":[82,104,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":3,"nm":"B main peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[56,54,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":3,"nm":"cash peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":22,"s":[-25]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[0]},{"t":30,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":22,"s":[-284,-14,0],"to":[3.167,6,0],"ti":[-2.667,-6,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":24,"s":[-265,22,0],"to":[2.667,6,0],"ti":[0.5,0,0]},{"t":30,"s":[-268,22,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0]},"t":22,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":24,"s":[90,110,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":3,"nm":"B thumb peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.651],"y":[-0.912]},"o":{"x":[0.315],"y":[0]},"t":16,"s":[0]},{"i":{"x":[0.832],"y":[0.9]},"o":{"x":[0.373],"y":[0.119]},"t":19,"s":[-0.67]},{"t":23,"s":[-16]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.651,"y":0.651},"o":{"x":0.315,"y":0.315},"t":16,"s":[-214,-14,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.373,"y":0.373},"t":19,"s":[-214,-14,0],"to":[0,0,0],"ti":[0,0,0]},{"t":23,"s":[-214,-14,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.651,0.651,0.651],"y":[1,1,1]},"o":{"x":[0.315,0.315,0.315],"y":[0,0,0]},"t":16,"s":[100,100,100]},{"i":{"x":[0.832,0.832,0.832],"y":[1,1,1]},"o":{"x":[0.373,0.373,0.373],"y":[0,0,0]},"t":19,"s":[100,100,100]},{"t":23,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":3,"nm":"B thumb 2 peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[-9]},{"t":30,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":24,"s":[-226,-12,0],"to":[0,0,0],"ti":[0,0,0]},{"t":30,"s":[-226,-12,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":24,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Shape Layer 1","parent":4,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-418,256,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[195,240],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[61.5,-223.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"B fingers Outlines","parent":5,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-120.47,245.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-6.043],[5.578,2.789],[-1.859,6.971]],"o":[[0,0],[0,6.042],[-5.577,-2.789],[1.859,-6.972]],"v":[[-3.719,-11.155],[12.084,0.465],[4.182,10.225],[-10.226,-6.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.352941176471,0.690196078431,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1015.119,309.396],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[30.676,-0.465],[9.295,-11.155],[-33.929,-0.93],[0,0]],"o":[[0,0],[-32.096,0.486],[-13.27,15.923],[33.929,0.929],[0,0]],"v":[[63.719,-23.936],[7.183,-6.739],[-50.449,-12.316],[-4.901,23.007],[50.873,15.57]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.654901960784,0.352941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1066.032,308.078],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-6.043],[5.578,2.789],[-1.859,6.971]],"o":[[0,0],[0,6.042],[-5.577,-2.789],[1.859,-6.972]],"v":[[-3.719,-11.155],[12.084,0.465],[4.182,10.225],[-10.226,-6.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.352941176471,0.690196078431,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1015.119,333.475],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[30.675,-0.465],[9.296,-11.154],[-33.929,-0.93],[0,0]],"o":[[0,0],[-32.097,0.486],[-13.27,15.924],[33.929,0.929],[0,0]],"v":[[56.198,-19.432],[13.607,-6.971],[-44.026,-12.549],[1.523,22.775],[57.296,15.338]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.654901960784,0.352941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1059.609,332.39],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.859,-11.155],[0,0],[7.902,-0.93],[1.859,12.084],[0,0]],"o":[[0,0],[1.683,10.096],[0,0],[-0.461,0.054],[-1.64,-10.655],[0,0]],"v":[[4.736,-16.992],[10.778,-1.654],[9.849,13.685],[-6.884,16.938],[-7.348,0.206],[-12.461,-13.273]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1098.058,361.091],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-6.043],[5.578,2.789],[-1.859,6.971]],"o":[[0,0],[0,6.042],[-5.577,-2.789],[1.859,-6.972]],"v":[[-3.719,-11.155],[12.084,0.465],[4.182,10.225],[-10.226,-6.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.352941176471,0.690196078431,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1015.119,357.554],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[14.236,-0.215],[9.296,-11.155],[-33.929,-0.929],[0,0]],"o":[[-9.882,4.246],[-32.096,0.487],[-13.27,15.924],[33.929,0.93],[0,0]],"v":[[54.339,-17.018],[13.607,-6.972],[-44.026,-12.549],[1.523,22.774],[57.296,15.338]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.654901960784,0.352941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1059.609,356.469],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-6.043],[5.578,2.789],[-1.859,6.971]],"o":[[0,0],[0,6.042],[-5.577,-2.789],[1.859,-6.972]],"v":[[-3.719,-11.155],[12.084,0.465],[4.182,10.225],[-10.226,-6.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.352941176471,0.690196078431,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1015.119,381.633],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[16.202,-0.246],[9.295,-11.155],[-33.929,-0.93],[0,0]],"o":[[-10.214,4.826],[-32.096,0.486],[-13.27,15.924],[33.929,0.929],[0,0]],"v":[[49.722,-17.238],[12.553,-6.971],[-45.079,-12.549],[0.469,22.775],[58.349,16.042]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.654901960784,0.352941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1060.663,380.548],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":24,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"B fingers 2 Outlines","parent":6,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-104.47,253.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.04,-4.53]],"o":[[2.87,10.67],[0,0]],"v":[[-0.925,-11.925],[-1.945,11.925]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1107.344,361.275],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.37,-5.24],[0.07,-0.1]],"o":[[2.27,9.58],[-0.06,0.1],[0,0]],"v":[[-0.215,-11.265],[-1.865,10.965],[-2.055,11.265]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1087.114,359.585],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-9.36,12.92]],"o":[[-56.36,2.33],[0,0]],"v":[[32.86,17.305],[-23.5,-19.635]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1093.069,381.645],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-6.35,-6.67],[-7.06,-2.07],[-8.01,-0.24],[-4.44,0.26]],"o":[[-3.27,7.61],[3.4,3.57],[5.47,1.6],[3.81,0.12],[0,0]],"v":[[-24.195,-17.24],[-20.595,5.58],[-5.055,14.26],[15.085,17.12],[27.465,16.91]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1090.304,356.29],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.94,-0.14],[5.46,0.91],[3.86,4.22],[-5.99,6]],"o":[[-3.28,0.38],[-7.59,0.39],[-9.95,-1.65],[-6.61,-7.22],[0,0]],"v":[[27.915,15.44],[18.585,16.21],[-0.925,15.34],[-21.305,5.98],[-20.595,-16.6]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1087.824,332.98],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[11.96,5.69],[2.42,2.5],[0,5.779],[-6.45,3.077]],"o":[[-12.84,2.01],[-3.14,-1.5],[-3.48,-3.6],[0,-5.78],[0,0]],"v":[[26.839,17.985],[-12.251,14.195],[-20.841,8.175],[-26.839,-5.511],[-18.691,-19.995]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1088.26,308.015],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-18.63,3.04]],"o":[[12.13,8.88],[0,0]],"v":[[-23.485,-5.145],[23.485,2.105]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1093.054,293.165],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-9.95,-1.65],[3.37,-5.24],[3.4,3.57],[-3.27,7.61],[0,0]],"o":[[2.27,9.58],[-7.06,-2.07],[-6.35,-6.67],[0,0],[3.86,4.22]],"v":[[10.895,-6.435],[9.245,15.795],[-6.295,7.115],[-9.895,-15.705],[-9.485,-15.795]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.654901960784,0.352941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1076.004,354.755],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.04,-4.53],[0,0],[5.47,1.6],[2.27,9.58],[-7.59,0.39]],"o":[[2.87,10.67],[0,0],[-8.01,-0.24],[3.37,-5.24],[5.46,0.91],[0,0]],"v":[[9.15,-11.515],[8.13,12.335],[8.12,12.545],[-12.02,9.685],[-10.37,-12.545],[9.14,-11.675]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1097.269,360.865],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.01,-0.24],[0,0],[2.87,10.67],[0,0],[5.46,0.91],[3.86,4.22],[-5.99,6],[0,0],[1.228,5.282],[-5.641,3.094],[-18.63,3.04],[-2.37,-26.11],[-9.36,12.92],[0,0],[-7.06,-2.07]],"o":[[0,0],[3.04,-4.53],[0,0],[-7.59,0.39],[-9.95,-1.65],[-6.61,-7.22],[0,0],[-3.48,-3.6],[-1.521,-6.543],[12.13,8.88],[3.66,40.38],[-56.36,2.33],[0,0],[3.4,3.57],[5.47,1.6]],"v":[[12.47,28.76],[12.48,28.55],[13.5,4.7],[13.49,4.54],[-6.02,3.67],[-26.4,-5.69],[-25.69,-28.27],[-25.5,-28.46],[-31.245,-39.064],[-23.35,-56.63],[23.62,-49.38],[33.01,54.3],[-23.35,17.36],[-23.21,17.22],[-7.67,25.9]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.654901960784,0.352941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1092.919,344.65],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false}],"ip":24,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"B main Outlines","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-424.47,251.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-4.53],[0,0],[0,-9.297],[0,0],[0,-8.362],[11.457,-4.201]],"o":[[8.994,3.161],[0,12.089],[0,0],[0,9.297],[0,0],[0,6.505],[0,0]],"v":[[1.159,-32.764],[17.897,-22.084],[-19.292,-9.06],[18.818,2.094],[-18.818,12.313],[19.292,21.61],[-0.698,32.764]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1385.612,341.079],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.409],[1.409,0],[0,1.422],[-1.422,0]],"o":[[0,1.422],[-1.422,0],[0,-1.409],[1.409,0]],"v":[[2.562,0],[0.006,2.555],[-2.562,0],[0.006,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1269.339,357.961],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.409],[1.409,0],[0,1.422],[-1.422,0]],"o":[[0,1.422],[-1.422,0],[0,-1.409],[1.409,0]],"v":[[2.562,0],[0.006,2.555],[-2.562,0],[0.006,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1269.339,328.99],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-5.577,4.885],[5.577,-4.885]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1275.225,312.727],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-5.347,-4.412],[5.346,4.412]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1263.38,312.726],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[12.55,-11.154],[-12.55,11.154]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1281.737,362.689],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[1.396,0],[0,0]],"v":[[-11.852,-11.622],[11.852,11.622]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1257.335,362.221],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-12.313,12.313],[12.313,-12.313]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1281.5,334.573],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[11.622,12.082],[-11.621,-12.082]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1257.105,334.804],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1350.057,308.315],[1350.057,372.447]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1337.968,309.237],[1337.968,371.986]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1294.287,308.776],[1294.287,322.261],[1294.287,351.535],[1294.287,372.921]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1245.023,309.237],[1245.023,322.722],[1245.023,350.6],[1245.023,373.382]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[15.282,-9.951],[6.887,-10.25],[-35.237,-21.69],[-26.827,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[11.615,9.298],[7.137,2.127]],"o":[[0,0],[-15.283,9.951],[-7.623,9.93],[11.106,5.065],[57.013,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-15.158,-12.128],[0,0]],"v":[[-106.544,-60.082],[-135.872,-47.966],[-164.731,-21.554],[-152.907,58.637],[-102.091,65.454],[-30.205,39.265],[-14.551,39.265],[9.614,39.265],[34.714,39.265],[78.394,39.265],[90.483,39.265],[125.341,39.265],[185.803,39.265],[188.144,-27.198],[127.198,-27.198],[90.483,-27.198],[78.394,-27.198],[34.714,-27.198],[21.229,-27.198],[-1.54,-27.198],[-14.551,-27.198],[-28.497,-27.198],[-43.838,-50.902],[-77.293,-65.454]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1259.573,335.039],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.409,0],[0,1.422],[-1.422,0],[0,-1.409]],"o":[[-1.422,0],[0,-1.409],[1.409,0],[0,1.422]],"v":[[0.007,2.554],[-2.562,-0.001],[0.007,-2.554],[2.562,-0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1269.339,357.961],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.422,0],[0,-1.409],[1.409,0],[0,1.422]],"o":[[1.409,0],[0,1.422],[-1.422,0],[0,-1.409]],"v":[[0.007,-2.555],[2.562,0.001],[0.007,2.555],[-2.562,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1269.339,328.99],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[11.615,9.298],[5.644,3.83],[0.011,-0.002],[-0.052,-0.044],[16.186,-6.175],[7.28,-17.388],[0,0],[-50.707,0.002],[0,0],[0,0],[0,0]],"o":[[0,0],[-12.129,-9.706],[-0.01,0.002],[0.053,0.043],[0,0],[-25.376,5.905],[-14.037,30.837],[6.113,12.062],[60.663,-0.619],[0,0],[0,0],[0,0]],"v":[[69.611,-27.107],[54.269,-50.811],[32.752,-62.399],[20.814,-65.363],[20.814,-65.363],[-8.436,-59.991],[-69.52,-15.185],[-71.856,39.356],[-7.701,66.164],[68.523,39.356],[83.557,39.356],[83.557,-27.107]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.654901960784,0.352941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1161.466,334.948],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21.841,30.913],[21.841,33.232],[-21.84,33.232],[-21.84,31.849],[-21.84,10.462],[-21.84,-18.812],[-21.84,-32.297],[-21.84,-33.232],[21.841,-33.232],[21.841,-31.836]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.654901960784,0.352941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1316.127,341.072],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11.385,-4.886],[0.23,4.886],[-0.692,4.412],[-11.385,-4.411],[-11.385,-4.886]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1269.418,312.726],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,1.422],[1.409,0],[0,-1.409],[-1.422,0]],"o":[[0,-1.409],[-1.422,0],[0,1.422],[1.409,0]],"v":[[2.245,1.626],[-0.31,-0.929],[-2.878,1.626],[-0.31,4.182]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[24.632,-18.588],[24.632,-5.102],[24.158,-5.102],[-0.468,19.523],[-0.929,19.523],[-24.172,-4.641],[-24.632,-4.641],[-24.632,-18.127],[-24.632,-19.523],[-11.622,-19.523],[-11.622,-19.049],[-0.929,-10.226],[-0.007,-9.752],[11.147,-19.523],[24.632,-19.523]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1269.655,327.363],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":4,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,1.422],[1.409,0],[0,-1.409],[-1.422,0]],"o":[[0,-1.409],[-1.422,0],[0,1.422],[1.409,0]],"v":[[2.245,9.909],[-0.31,7.354],[-2.878,9.909],[-0.31,12.465]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.396,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[24.632,-25.792],[24.632,3.484],[-0.468,25.792],[-24.172,2.549],[-24.632,2.549],[-24.632,-25.331],[-24.172,-25.331],[-0.929,-1.165],[-0.468,-1.165],[24.158,-25.792]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1269.655,348.052],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":4,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12.55,10.001],[12.55,11.385],[-12.55,11.385],[-12.55,10.924],[12.55,-11.385]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1281.737,362.919],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.396,0]],"v":[[12.083,11.391],[12.083,11.852],[-12.083,11.852],[-12.083,10.93],[-12.083,-11.852],[-11.622,-11.852]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1257.105,362.452],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-8.362],[11.457,-4.201],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-4.53],[0,0],[0,-9.297],[0,0]],"o":[[0,6.505],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[8.994,3.161],[0,12.089],[0,0],[0,9.297],[0,0]],"v":[[27.424,21.616],[7.434,32.771],[7.434,33.232],[-27.424,33.232],[-27.424,31.375],[-27.424,-32.758],[-27.424,-33.232],[9.291,-33.232],[9.291,-32.758],[26.028,-22.078],[-11.161,-9.054],[26.95,2.1],[-10.686,12.319]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.003921568627,0.521568627451,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1377.481,341.072],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,6.505],[0,0],[0,9.297],[0,0],[0,12.089],[8.994,3.161],[0,0],[0,0],[0,0],[0,0]],"o":[[11.457,-4.201],[0,-8.362],[0,0],[0,-9.297],[0,0],[0,-4.53],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-22.104,32.77],[-2.115,21.616],[-40.225,12.319],[-2.589,2.1],[-40.699,-9.054],[-3.51,-22.078],[-20.248,-32.758],[-20.248,-33.232],[40.698,-33.232],[38.356,33.232],[-22.104,33.232]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.235294132607,0.450980422076,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1407.019,341.072],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.045,31.374],[6.045,33.232],[-6.045,33.232],[-6.045,30.913],[-6.045,-31.836],[-6.045,-33.232],[6.045,-33.232],[6.045,-32.758]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.235294132607,0.450980422076,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.012,341.072],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"cash Outlines","parent":8,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-100.47,283.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.1,-6.43],[3.73,-1.8],[3.11,6.43],[-3.73,1.8]],"o":[[3.11,6.43],[-3.73,1.8],[-3.11,-6.44],[3.73,-1.81]],"v":[[6.75,-3.26],[5.63,11.65],[-6.75,3.27],[-5.63,-11.64]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1186.529,400.45],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.79,-7.09],[4.87,0.55],[-0.79,7.1],[-4.87,-0.54]],"o":[[-0.79,7.1],[-4.87,-0.54],[0.8,-7.1],[4.88,0.55]],"v":[[8.825,0.98],[-1.435,12.85],[-8.825,-0.99],[1.435,-12.86]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1099.714,406.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.28,-6.77],[4.64,-1.56],[2.28,6.77],[-4.65,1.56]],"o":[[2.28,6.77],[-4.65,1.57],[-2.28,-6.77],[4.65,-1.57]],"v":[[8.415,-2.835],[4.135,12.255],[-8.415,2.835],[-4.125,-12.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1060.724,211.295],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-7.14],[4.14,0],[0,7.14],[-4.14,0]],"o":[[0,7.14],[-4.14,0],[0,-7.14],[4.14,0]],"v":[[7.5,-0.005],[0,12.935],[-7.5,-0.005],[0,-12.935]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1133.159,203.305],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.06,-27.51],[8.53,-1.57],[5.06,27.51],[-8.53,1.57]],"o":[[5.05,27.51],[-8.53,1.57],[-5.06,-27.51],[8.53,-1.57]],"v":[[15.455,-2.84],[9.165,49.81],[-15.445,2.84],[-9.155,-49.81]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1114.904,297.34],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-7.115,33.915],[7.115,-33.915]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1155.384,240.765],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-5.94,-3.55],[5.94,3.55]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1156.559,203.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-6.53,5.235],[6.53,-5.235]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1026.169,211.375],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-6.285,-4.88],[5.735,4.46],[6.285,4.88]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1074.724,410.94],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[4.39,26.1],[27.03,25.24]],"o":[[12.62,-31.29],[-7.18,-42.76],[0,0]],"v":[[16.945,94.725],[27.465,8.385],[-31.855,-94.725]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1051.494,311.335],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.42,-1.33]],"o":[[-0.59,19.67],[0,0]],"v":[[-8.58,-15.75],[9.17,15.75]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1125.379,209.73],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[7.14,14.78]],"o":[[14.88,-1.07],[0,0]],"v":[[-8.895,16.86],[1.755,-16.86]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1072.014,216.61],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-7.39,-14.05]],"o":[[-6.8,7.55],[0,0]],"v":[[2.955,-16.195],[3.845,16.195]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1173.294,397.845],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.67,-19.93]],"o":[[16.05,1.43],[0,0]],"v":[[-10.91,-14.03],[8.24,14.03]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1106.859,401.45],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-27.96,22.19]],"o":[[43.4,31.24],[0,0]],"v":[[-66.33,-13.18],[66.33,-18.06]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1146.309,431.21],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-22.52,8.86]],"o":[[19.34,8.87],[0,0]],"v":[[-31.02,-3.545],[31.02,-5.325]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1146.119,419.365],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-15.13,-4.95]],"o":[[13.59,-8.44],[0,0]],"v":[[-21.515,5.36],[21.515,-0.41]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1095.284,194.39],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.63,54.5]],"o":[[-33.27,-52.79],[0,0]],"v":[[23.165,78.085],[-18.535,-78.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1153.084,303.565],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.08,-62.05]],"o":[[20.76,43.23],[0,0]],"v":[[-17.455,-76.975],[15.375,76.975]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1080.574,310.445],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-45.35,-20.62]],"o":[[20.41,-15.97],[0,0]],"v":[[-62.335,16.075],[62.335,4.545]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1090.404,183.675],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.63,-3.78],[-2.92,-23.07],[-36.2,-48.27]],"o":[[-0.78,3.9],[-4.56,27.35],[6.11,48.27],[0,0]],"v":[[-26.25,-112.465],[-28.37,-100.935],[-30.73,-26.005],[33.65,112.465]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1178.989,300.685],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.52,-2.14],[-7.11,-41.47],[6.29,-34.93],[0.17,-0.88]],"o":[[1.57,2.12],[24.64,34.72],[5.06,29.47],[-0.15,0.87],[0,0]],"v":[[-29.385,-109.14],[-24.745,-102.75],[24.325,10.34],[23.005,106.51],[22.525,109.14]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1057.454,308.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-7.11,-41.47],[0,0],[27.03,25.24],[0,0],[0,0]],"o":[[0,0],[-7.18,-42.76],[0,0],[0,0],[24.64,34.72]],"v":[[31.07,56.3],[28.25,56.79],[-31.07,-46.32],[-18.01,-56.79],[-18,-56.79]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1050.708,262.93],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[6.29,-34.93],[0,0],[4.39,26.1]],"o":[[5.06,29.47],[0,0],[12.62,-31.29],[0,0]],"v":[[4.14,-48.085],[2.82,48.085],[-9.2,38.745],[1.32,-47.595]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1077.638,367.315],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.65,1.57],[2.28,6.77],[4.65,-1.57],[-2.28,-6.77]],"o":[[4.64,-1.56],[-2.28,-6.77],[-4.65,1.56],[2.28,6.77]],"v":[[-55.495,-84.885],[-51.215,-99.975],[-63.755,-109.395],[-68.045,-94.305]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.79,7.1],[4.88,0.55],[0.8,-7.1],[-4.87,-0.54]],"o":[[0.79,-7.09],[-4.87,-0.54],[-0.79,7.1],[4.87,0.55]],"v":[[-11.815,98.805],[-19.205,84.965],[-29.465,96.835],[-22.075,110.675]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,7.14],[4.14,0],[0,-7.14],[-4.14,0]],"o":[[0,-7.14],[-4.14,0],[0,7.14],[4.14,0]],"v":[[20.305,-105.135],[12.805,-118.065],[5.305,-105.135],[12.805,-92.195]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[-22.52,8.86],[-6.8,7.55],[-4.63,54.5],[-0.59,19.67],[13.59,-8.44],[14.88,-1.07],[2.08,-62.05],[2.67,-19.93],[0,0]],"o":[[-7.39,-14.05],[-33.27,-52.79],[-12.42,-1.33],[-15.13,-4.95],[7.14,14.78],[20.76,43.23],[16.05,1.43],[0,0],[19.34,8.87]],"v":[[56.785,105.605],[55.895,73.215],[14.195,-82.955],[-3.555,-114.455],[-46.585,-108.685],[-57.235,-74.965],[-24.405,78.985],[-5.255,107.045],[-5.255,107.385]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[-3.73,1.8],[3.11,6.43],[3.73,-1.81],[-3.11,-6.44]],"o":[[3.73,-1.8],[-3.1,-6.43],[-3.73,1.8],[3.11,6.43]],"v":[[71.805,103.665],[72.925,88.755],[60.545,80.375],[59.425,95.285]],"c":true},"ix":2},"nm":"Path 5","mn":"ADBE Vector Shape - Group","hd":false},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[-0.15,0.87],[5.06,29.47],[24.64,34.72],[1.57,2.12],[-45.35,-20.62],[0.63,-3.78],[-2.92,-23.07],[-36.2,-48.27],[43.4,31.24]],"o":[[6.29,-34.93],[-7.11,-41.47],[-1.52,-2.14],[20.41,-15.97],[-0.78,3.9],[-4.56,27.35],[6.11,48.27],[-27.96,22.19],[0.17,-0.88]],"v":[[-39.895,106.965],[-38.575,10.795],[-87.645,-102.295],[-92.285,-108.685],[32.385,-120.215],[30.265,-108.685],[27.905,-33.755],[92.285,104.715],[-40.375,109.595]],"c":true},"ix":2},"nm":"Path 6","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1120.354,308.435],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":8,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.53,1.57],[5.05,27.51],[8.53,-1.57],[-5.06,-27.51]],"o":[[8.53,-1.57],[-5.06,-27.51],[-8.53,1.57],[5.06,27.51]],"v":[[3.94,40.29],[10.23,-12.36],[-14.38,-59.33],[-20.67,-6.68]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-33.27,-52.79],[-7.39,-14.05],[19.34,8.87],[0,0],[16.05,1.43],[20.76,43.23],[7.14,14.78],[-15.13,-4.95],[-12.42,-1.33]],"o":[[-6.8,7.55],[-22.52,8.86],[0,0],[2.67,-19.93],[2.08,-62.05],[14.88,-1.07],[13.59,-8.44],[-0.59,19.67],[-4.63,54.5]],"v":[[56.12,74.79],[57.01,107.18],[-5.03,108.96],[-5.03,108.62],[-24.18,80.56],[-57.01,-73.39],[-46.36,-107.11],[-3.33,-112.88],[14.42,-81.38]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1120.129,306.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":4,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.28,-6.77],[4.64,-1.56],[2.28,6.77],[-4.65,1.56]],"o":[[2.28,6.77],[-4.65,1.57],[-2.28,-6.77],[4.65,-1.57]],"v":[[8.415,-2.835],[4.135,12.255],[-8.415,2.835],[-4.125,-12.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1060.724,211.295],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.06,-27.51],[8.53,-1.57],[5.06,27.51],[-8.53,1.57]],"o":[[5.05,27.51],[-8.53,1.57],[-5.06,-27.51],[8.53,-1.57]],"v":[[15.455,-2.84],[9.165,49.81],[-15.445,2.84],[-9.155,-49.81]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1114.904,297.34],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.14,0],[0,-7.14],[4.14,0],[0,7.14]],"o":[[4.14,0],[0,7.14],[-4.14,0],[0,-7.14]],"v":[[0,-12.935],[7.5,-0.005],[0,12.935],[-7.5,-0.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1133.159,203.305],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.87,-0.54],[0.79,-7.09],[4.87,0.55],[-0.79,7.1]],"o":[[4.88,0.55],[-0.79,7.1],[-4.87,-0.54],[0.8,-7.1]],"v":[[1.435,-12.86],[8.825,0.98],[-1.435,12.85],[-8.825,-0.99]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1099.714,406.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.1,-6.43],[3.73,-1.8],[3.11,6.43],[-3.73,1.8]],"o":[[3.11,6.43],[-3.73,1.8],[-3.11,-6.44],[3.73,-1.81]],"v":[[6.75,-3.26],[5.63,11.65],[-6.75,3.27],[-5.63,-11.64]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1186.529,400.45],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-4.56,27.35]],"o":[[0,0],[0,0],[-2.92,-23.07],[0,0]],"v":[[8.58,-30.365],[-5.65,37.465],[-5.66,37.465],[-3.3,-37.465]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1153.919,237.215],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false}],"ip":22,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"B thumb Outlines","parent":9,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-154.47,319.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.28,13.939]],"o":[[11.379,-0.779],[0,0]],"v":[[-7.687,11.306],[5.406,-11.306]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1176.867,277.322],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.929,-6.043],[-6.507,0.929],[-3.718,3.253],[0.465,4.648],[4.648,0]],"o":[[0,0],[0.93,6.042],[6.507,-0.93],[3.719,-3.254],[-0.464,-4.647],[-4.648,0]],"v":[[-7.669,-7.204],[-14.641,4.416],[-3.021,14.176],[10.457,5.81],[15.105,-5.81],[4.88,-15.105]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.352941176471,0.690196078431,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1190.405,222.559],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-11.615,13.01],[3.187,4.109],[15.803,-14.881],[0.461,-8.823],[-1.039,-3.417],[-17.076,0.798]],"o":[[-0.961,-3.858],[9.021,-10.114],[-3.253,-4.187],[-10.364,9.745],[-0.087,9.537],[1.538,3.662],[0,0]],"v":[[8.551,18.043],[16.912,-10.77],[19.704,-30.76],[-12.362,-26.573],[-25.847,2.701],[-23.708,20.643],[-4.542,40.655]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1173.723,247.973],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-14.641,0.796],[0.177,-0.083],[-0.101,-0.01],[-2.233,0.547],[1.856,7.44],[-11.615,13.01],[3.186,4.109],[15.802,-14.881],[0.461,-8.823],[-0.935,-4.649]],"o":[[0,0],[-0.165,0.083],[0.105,0.004],[1.903,-0.523],[7.718,-2.339],[-0.962,-3.859],[9.02,-10.114],[-3.253,-4.187],[-10.364,9.745],[-0.461,8.836],[0.921,4.648]],"v":[[-20.87,29.058],[-4.355,40.656],[-4.873,40.905],[-4.563,40.923],[1.635,39.319],[8.738,18.045],[17.1,-10.768],[19.892,-30.759],[-12.174,-26.571],[-25.659,2.703],[-23.328,20.837]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.654901960784,0.352941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1173.536,247.972],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":24,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"B thumb 2 Outlines","parent":10,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-142.47,317.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-13.01,-2.45],[-5.81,-16.39],[7.81,-1.38],[-0.62,8.42],[4.14,-0.15],[6.27,-0.92],[3.52,14]],"o":[[8.71,-2.04],[7.05,1.53],[5.82,16.38],[-7.81,1.38],[0.61,-8.42],[-4.13,0.16],[-6.28,0.92],[0,0]],"v":[[-17.445,-19.13],[8.395,-24.42],[35.075,2.99],[25.395,25.49],[5.035,17.84],[-2.915,8.8],[-17.625,13.7],[-40.895,-0.31]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1145.474,260.48],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.14,1.42],[2.85,0.33],[2.76,-5.09],[-6.79,-0.64],[-0.75,-0.03],[-4.16,1.02],[0,5.3]],"o":[[-1.8,-0.81],[-13.51,-1.69],[-2.76,5.09],[0.7,0.07],[6.56,0.27],[4.65,-1.15],[0,-3.37]],"v":[[15.45,-7.835],[8.48,-9.515],[-17.39,-1.665],[-10.19,10.795],[-8,10.935],[10.99,9.215],[20.15,-0.815]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1112.578,249.185],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-3.37],[4.65,-1.15],[6.56,0.27],[0.7,0.07],[-2.76,5.09],[-13.51,-1.69],[-1.8,-0.81]],"o":[[0,5.3],[-4.16,1.02],[-0.75,-0.03],[-6.79,-0.64],[2.76,-5.09],[2.85,0.33],[3.14,1.42]],"v":[[20.15,-0.815],[10.99,9.215],[-8,10.935],[-10.19,10.795],[-17.39,-1.665],[8.48,-9.515],[15.45,-7.835]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.352941176471,0.690196078431,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1112.579,249.185],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.52,14],[0,0],[-4.16,1.02],[0,5.3],[3.14,1.42],[-13.01,-2.45],[-5.81,-16.39],[7.81,-1.38],[-0.62,8.42],[4.14,-0.15],[6.27,-0.92]],"o":[[0,0],[6.56,0.27],[4.65,-1.15],[0,-3.37],[8.71,-2.04],[7.05,1.53],[5.82,16.38],[-7.81,1.38],[0.61,-8.42],[-4.13,0.16],[-6.28,0.92]],"v":[[-40.895,-0.31],[-40.895,-0.36],[-21.905,-2.08],[-12.745,-12.11],[-17.445,-19.13],[8.395,-24.42],[35.075,2.99],[25.395,25.49],[5.035,17.84],[-2.915,8.8],[-17.625,13.7]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.654901960784,0.352941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1145.474,260.48],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":24,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":18,"ty":3,"nm":"A thumb peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.65],"y":[-0.264]},"o":{"x":[0.313],"y":[0]},"t":16,"s":[0]},{"i":{"x":[0.831],"y":[0.881]},"o":{"x":[0.378],"y":[0.16]},"t":18,"s":[-1.44]},{"t":22,"s":[-26]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.65,"y":0.65},"o":{"x":0.313,"y":0.313},"t":16,"s":[358,38,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.378,"y":0},"t":18,"s":[358,38,0],"to":[0,0,0],"ti":[0,0,0]},{"t":22,"s":[356,38,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.65,0.65,0.65],"y":[1,1,1]},"o":{"x":[0.313,0.313,0.313],"y":[0,0,0]},"t":16,"s":[100,100,100]},{"i":{"x":[0.831,0.831,0.831],"y":[1,1,1]},"o":{"x":[0.378,0.378,0.378],"y":[0,0,0]},"t":18,"s":[100,100,100]},{"t":22,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":3,"nm":"A thumb 2 peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.6],"y":[0.828]},"o":{"x":[0.173],"y":[0.086]},"t":23,"s":[11]},{"i":{"x":[0.696],"y":[1]},"o":{"x":[0.352],"y":[1.21]},"t":26,"s":[1.576]},{"t":30,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.6,"y":0.828},"o":{"x":0.167,"y":0.167},"t":23,"s":[359,25,0],"to":[-0.135,0.135,0],"ti":[0.26,-0.26,0]},{"i":{"x":0.696,"y":1},"o":{"x":0.293,"y":1},"t":26,"s":[358.144,25.856,0],"to":[-0.062,0.062,0],"ti":[0.032,-0.032,0]},{"t":30,"s":[358,26,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.6,0.6,0.6],"y":[1,1,1]},"o":{"x":[0.173,0.173,0.173],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"i":{"x":[0.696,0.696,0.696],"y":[1,1,1]},"o":{"x":[0.352,0.352,0.352],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":20,"ty":3,"nm":"A finger OLs peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.65],"y":[-0.264]},"o":{"x":[0.313],"y":[0]},"t":16,"s":[0]},{"i":{"x":[0.73],"y":[0.754]},"o":{"x":[0.34],"y":[0.139]},"t":18,"s":[-0.609]},{"i":{"x":[0.765],"y":[0.812]},"o":{"x":[0.418],"y":[0.448]},"t":21,"s":[-8.7]},{"t":22,"s":[-11]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.73,"y":0},"o":{"x":0.313,"y":0},"t":16,"s":[435,163.5,0],"to":[0.113,-0.154,0],"ti":[-0.152,0.132,0]},{"i":{"x":0.73,"y":0.664},"o":{"x":0.34,"y":0.11},"t":18,"s":[435.398,163.073,0],"to":[1.686,-1.464,0],"ti":[-2.681,3.656,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.418,"y":0.075},"t":21,"s":[443.7,157.636,0],"to":[1.004,-1.368,0],"ti":[-0.469,0.639,0]},{"t":22,"s":[445,134.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.65,0.65,0.65],"y":[-0.264,-0.264,1]},"o":{"x":[0.313,0.313,0.313],"y":[0,0,0]},"t":16,"s":[100,100,100]},{"i":{"x":[0.73,0.73,0.73],"y":[0.754,0.754,1]},"o":{"x":[0.34,0.34,0.34],"y":[0.139,0.139,0]},"t":18,"s":[100.665,99.169,100]},{"i":{"x":[0.765,0.765,0.765],"y":[0.812,0.812,1]},"o":{"x":[0.418,0.418,0.418],"y":[0.448,0.448,0]},"t":21,"s":[109.491,88.136,100]},{"t":22,"s":[112,85,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":3,"nm":"A dollar 1 peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.649],"y":[-0.25]},"o":{"x":[0.31],"y":[0]},"t":16,"s":[0]},{"i":{"x":[0.83],"y":[0.89]},"o":{"x":[0.385],"y":[0.171]},"t":18,"s":[0.537]},{"t":21,"s":[7]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.719,"y":0},"o":{"x":0.31,"y":0},"t":16,"s":[382,92,0],"to":[0.271,-0.213,0],"ti":[-0.438,0.344,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.385,"y":0.171},"t":18,"s":[383.075,91.156,0],"to":[3.333,-2.619,0],"ti":[-2.062,1.62,0]},{"t":21,"s":[396,81,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.649,0.649,0.649],"y":[1,1,1]},"o":{"x":[0.31,0.31,0.31],"y":[0,0,0]},"t":16,"s":[100,100,100]},{"i":{"x":[0.83,0.83,0.83],"y":[1,1,1]},"o":{"x":[0.385,0.385,0.385],"y":[0,0,0]},"t":18,"s":[100,100,100]},{"t":21,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":3,"nm":"A dollar 2 peg","parent":21,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[50,46,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":23,"ty":3,"nm":"A dollar 3 peg","parent":21,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[50,48,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":24,"ty":3,"nm":"A hand UL peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.65],"y":[-0.264]},"o":{"x":[0.313],"y":[0]},"t":16,"s":[0]},{"i":{"x":[0.831],"y":[0.881]},"o":{"x":[0.378],"y":[0.16]},"t":18,"s":[-0.665]},{"t":22,"s":[-12]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.721,"y":0},"o":{"x":0.313,"y":0},"t":16,"s":[358,64,0],"to":[-0.074,-0.015,0],"ti":[0.11,0.022,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.378,"y":0.16},"t":18,"s":[357.721,63.944,0],"to":[-1.129,-0.226,0],"ti":[0.759,0.152,0]},{"t":22,"s":[353,63,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.65,0.65,0.65],"y":[1,1,1]},"o":{"x":[0.313,0.313,0.313],"y":[0,0,0]},"t":16,"s":[100,100,100]},{"i":{"x":[0.831,0.831,0.831],"y":[1,1,1]},"o":{"x":[0.378,0.378,0.378],"y":[0,0,0]},"t":18,"s":[100,100,100]},{"t":22,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":25,"ty":3,"nm":"A fingers 2 peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.6],"y":[0.828]},"o":{"x":[0.173],"y":[0.086]},"t":23,"s":[17]},{"i":{"x":[0.696],"y":[1]},"o":{"x":[0.352],"y":[1.21]},"t":26,"s":[2.435]},{"t":30,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.6,"y":0.828},"o":{"x":0.167,"y":0.167},"t":23,"s":[366,52,0],"to":[-1.212,-0.269,0],"ti":[2.34,0.52,0]},{"i":{"x":0.696,"y":1},"o":{"x":0.293,"y":1},"t":26,"s":[358.299,50.289,0],"to":[-0.556,-0.124,0],"ti":[0.288,0.064,0]},{"t":30,"s":[357,50,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.6,0.6,0.6],"y":[1,1,1]},"o":{"x":[0.173,0.173,0.173],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"i":{"x":[0.696,0.696,0.696],"y":[1,1,1]},"o":{"x":[0.352,0.352,0.352],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":26,"ty":3,"nm":"A arm 1 peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[55,53,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":27,"ty":4,"nm":"A thumb Outlines","parent":18,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[133.53,447.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-8.83,0.477],[-8.831,-10.69],[-18.893,9.701],[8.211,1.859],[2.826,14.873],[9.296,1.859],[0,0]],"o":[[0,0],[17.197,-0.93],[7.639,9.248],[17.197,-8.831],[-3.9,-0.883],[-2.944,-15.493],[-9.295,-1.859],[0,0]],"v":[[-51.126,10.487],[-32.535,15.135],[-4.183,12.346],[33.929,32.332],[36.253,4.91],[11.155,-19.259],[-9.296,-40.174],[-37.337,-35.062]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[923.008,162.573],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":23,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":28,"ty":4,"nm":"A thumb 2 Outlines","parent":19,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[133.53,459.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-7.478,4.673],[-9.658,1.869],[-4.985,10.905],[-5.608,0],[0,-9.441],[5.919,-6.543],[4.985,-5.296],[7.789,-9.658],[12.462,-1.246]],"o":[[4.517,-9.191],[9.428,-5.671],[4.833,-1.112],[4.984,-10.904],[9.136,-1.444],[0,9.441],[-5.92,6.542],[-4.985,5.297],[-7.789,9.658],[0,0]],"v":[[-44.968,9.913],[-28.767,-9.403],[-1.83,-16.103],[12.417,-29.664],[27.312,-47.101],[44.967,-30.007],[37.593,-9.403],[16.096,6.174],[3.634,34.837],[-25.34,48.545]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[910.014,116.099],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":23,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":29,"ty":4,"nm":"A finger OLs Outlines","parent":20,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[56.53,322.11,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[10.766,0.759],[-2.789,17.662],[-8.921,-2.703],[1.394,-9.992]],"o":[[0,0],[-8.06,-0.569],[2.789,-17.661],[10.225,3.099],[-1.859,13.323]],"v":[[16.565,13.134],[2.956,25.761],[-13.776,-0.577],[4.505,-23.816],[6.984,2.832]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[943.525,255.918],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[6.451,0.496],[-2.789,17.661],[-8.921,-2.704],[1.394,-9.991]],"o":[[0,0],[-8.056,-0.619],[2.789,-17.662],[10.225,3.098],[-1.859,13.324]],"v":[[16.112,24.343],[3.408,25.892],[-13.324,-0.445],[4.957,-23.684],[7.436,2.963]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[923.551,255.787],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[6.451,0.496],[-2.789,17.661],[-8.921,-2.704],[1.394,-9.991]],"o":[[0,0],[-8.056,-0.619],[2.789,-17.662],[10.225,3.098],[-1.859,13.324]],"v":[[16.112,24.343],[3.408,25.892],[-13.324,-0.445],[4.957,-23.684],[7.436,2.963]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[903.333,255.616],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":23,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":30,"ty":4,"nm":"A dollar 1 Outlines","parent":21,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[109.53,393.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-6.161],[6.674,0],[0,6.161],[-6.674,0]],"o":[[0,6.161],[-6.674,0],[0,-6.161],[6.674,0]],"v":[[12.085,0],[0,11.155],[-12.084,0],[0,-11.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[904.417,261.402],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-6.161],[6.674,0],[0,6.161],[-6.674,0]],"o":[[0,6.161],[-6.674,0],[0,-6.161],[6.674,0]],"v":[[12.085,0],[0,11.155],[-12.084,0],[0,-11.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[900.234,170.284],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.665,-16.38],[25.767,2.619],[-1.665,16.381],[-25.768,-2.619]],"o":[[-1.665,16.38],[-25.768,-2.619],[1.665,-16.38],[25.768,2.619]],"v":[[46.657,4.742],[-3.014,29.66],[-46.656,-4.742],[3.015,-29.659]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1017.406,201.403],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-6.161],[6.674,0],[0,6.161],[-6.674,0]],"o":[[0,6.161],[-6.674,0],[0,-6.161],[6.674,0]],"v":[[12.084,0],[0,11.155],[-12.085,0],[0,-11.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1099.16,262.995],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-6.161],[6.674,0],[0,6.161],[-6.674,0]],"o":[[0,6.161],[-6.674,0],[0,-6.161],[6.674,0]],"v":[[12.085,0],[0,11.155],[-12.084,0],[0,-11.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1123.793,172.595],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.901,7.437],[0,0],[28.351,3.718],[36.253,4.183],[0,0],[6.042,-11.155],[0,0],[-0.929,-15.802],[0.623,-6.936],[-4.079,-1.419],[-0.267,-8.889],[-0.797,0.095],[-20.45,1.859],[-15.338,-8.365],[0,0],[-12.527,8.191],[0,0],[-3.718,11.154],[0,0]],"o":[[-8.884,-8.361],[0,0],[-28.352,-3.718],[-36.252,-4.183],[0,0],[-6.042,11.154],[0,0],[0.356,6.057],[4.185,-1.055],[8.805,3.063],[0.773,-0.083],[19.52,-2.324],[20.451,-1.859],[14.712,8.025],[0,0],[12.084,-7.901],[0,0],[3.719,-11.155],[0,0]],"v":[[91.562,-12.084],[86.449,-36.252],[45.549,-37.182],[-30.211,-57.168],[-92.026,-40.436],[-95.28,-21.379],[-112.477,-11.619],[-110.153,16.732],[-110.815,37.214],[-97.792,38.04],[-83.687,57.433],[-81.336,57.168],[-15.338,38.577],[38.577,52.52],[62.281,61.351],[73.436,38.577],[98.998,36.718],[107.364,14.409],[112.477,-6.507]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1012.711,203.735],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[5.147,-25.19],[0,0],[16.732,4.183],[26.027,-0.929],[21.676,-2.71],[17.662,10.226],[0.465,31.141],[0,0],[-15.803,5.113],[-20.91,0.66],[-36.252,-0.465]],"o":[[0,0],[-8.831,43.225],[0,0],[-16.733,-4.183],[-26.028,0.93],[-14.873,1.859],[0,0],[-0.465,-31.14],[0,0],[15.802,-5.113],[44.154,-1.395],[36.253,0.465]],"v":[[132.91,-62.513],[130.586,3.021],[100.84,75.527],[65.982,73.668],[-8.383,51.358],[-80.889,71.809],[-135.733,63.907],[-122.719,16.964],[-130.466,-49.499],[-93.438,-60.189],[-38.129,-76.456],[77.136,-54.147]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1009.939,206.756],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":22,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":31,"ty":4,"nm":"A dollar 2 Outlines","parent":22,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[109.53,397.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.523,-16.457],[25.887,-0.824],[0.523,16.456],[-25.887,0.823]],"o":[[0.523,16.457],[-25.888,0.823],[-0.523,-16.457],[25.888,-0.823]],"v":[[46.874,-1.491],[0.948,29.797],[-46.873,1.49],[-0.948,-29.797]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1010.12,186.612],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.817,-6.106],[6.615,-0.886],[0.818,6.106],[-6.615,0.886]],"o":[[0.818,6.106],[-6.615,0.885],[-0.817,-6.106],[6.615,-0.885]],"v":[[11.977,-1.604],[1.48,11.056],[-11.978,1.603],[-1.481,-11.056]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1099.324,236.811],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.817,-6.106],[6.615,-0.885],[0.818,6.106],[-6.615,0.886]],"o":[[0.818,6.106],[-6.615,0.886],[-0.817,-6.106],[6.615,-0.885]],"v":[[11.977,-1.604],[1.48,11.056],[-11.978,1.603],[-1.481,-11.056]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1111.745,143.942],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.558,0.192],[-28.595,0.077],[0,0],[-9.915,-7.109],[0,0],[2.206,-11.549],[0,0],[10.929,-9.435],[0,0],[15.646,6.001],[20.023,-4.556],[15.058,-7.218]],"o":[[19.056,-9.993],[36.488,-0.665],[28.594,-0.076],[0,0],[8.818,6.322],[0,0],[-2.205,11.55],[0,0],[-11.329,9.781],[0,0],[-16.312,-6.257],[-14.288,3.252],[0,0]],"v":[[-94.602,-44.346],[-53.547,-56.345],[24.195,-46.589],[64.857,-51.095],[73.131,-27.818],[94.602,-25.065],[92.309,-3.657],[86.977,19.566],[61.887,24.8],[53.853,48.853],[29.187,43.246],[-26.101,36.579],[-71.702,57.01]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1021.793,193.237],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-9.711,1.374],[-35.994,4.35],[0,0],[1.758,-25.65],[0,0],[17.14,1.926],[25.674,-4.375],[15.212,-8]],"o":[[19.126,-4.957],[43.74,-6.189],[35.994,-4.349],[0,0],[-3.018,44.014],[0,0],[-17.139,-1.926],[-17.678,3.012],[0,0]],"v":[[-123.028,-43.81],[-56.5,-67.637],[60.706,-60.819],[114.877,-76.512],[121.269,-11.249],[101.406,64.562],[66.609,67.345],[-10.058,55.1],[-59.051,76.512]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1011.993,189.824],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[17.134,-38.553],[0,0],[-31.844,17.807]],"o":[[0,0],[-6.042,11.62],[10.177,11.939],[24.633,-7.901]],"v":[[-32.045,-69.064],[-42.622,18.403],[-56.565,39.318],[31.932,51.257]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[921.011,215.078],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":22,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":32,"ty":4,"nm":"A dollar 3 Outlines","parent":23,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[109.53,395.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.657,-16.249],[25.561,-4.18],[2.657,16.249],[-25.561,4.179]],"o":[[2.657,16.249],[-25.561,4.18],[-2.657,-16.249],[25.562,-4.18]],"v":[[46.283,-7.569],[4.812,29.422],[-46.282,7.568],[-4.812,-29.422]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[997.022,173.009],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.604,-5.948],[6.443,-1.737],[1.604,5.948],[-6.444,1.738]],"o":[[1.604,5.948],[-6.444,1.738],[-1.604,-5.948],[6.444,-1.738]],"v":[[11.668,-3.146],[2.905,10.77],[-11.667,3.146],[-2.904,-10.77]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1091.992,211.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.604,-5.948],[6.443,-1.737],[1.604,5.948],[-6.444,1.738]],"o":[[1.604,5.948],[-6.444,1.738],[-1.604,-5.948],[6.444,-1.738]],"v":[[11.668,-3.146],[2.905,10.77],[-11.667,3.146],[-2.904,-10.77]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.356862745098,0.89019613827,0.666666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1092.24,117.496],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.444,1.563],[-28.342,3.791],[0,0],[-10.754,-5.76],[0,0],[0.686,-11.739],[0,0],[9.611,-10.775],[0,0],[16.294,3.918],[19.261,-7.119],[13.992,-9.113]],"o":[[7.564,-3.984],[36.092,-5.399],[28.342,-3.792],[0,0],[9.565,5.123],[0,0],[-0.686,11.738],[0,0],[-9.962,11.17],[0,0],[-16.987,-4.084],[-13.745,5.08],[0,0]],"v":[[-89.596,-43.382],[-62.556,-52.287],[15.794,-52.714],[55.526,-62.466],[66.755,-40.461],[88.401,-40.521],[88.91,-18.997],[86.641,4.721],[62.443,13.172],[57.602,38.065],[32.417,35.709],[-23.268,36.284],[-65.828,62.466]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1011.599,181.438],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-5.403,1.642],[-35.124,8.99],[0,0],[-1.589,-25.661],[0,0],[17.245,-0.318],[24.888,-7.674],[14.044,-9.909]],"o":[[4.773,-2.646],[42.269,-12.842],[35.124,-8.99],[0,0],[2.727,44.033],[0,0],[-17.244,0.317],[-17.137,5.283],[0,0]],"v":[[-102.15,-48.066],[-84.165,-56.095],[32.933,-64.564],[84.605,-87.163],[99.423,-23.283],[89.58,54.465],[55.439,61.746],[-22.168,59.568],[-67.964,87.163]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1018.652,172.323],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[24.477,-35.083],[0,0],[-43.603,14.531],[23.677,36.316]],"o":[[0,0],[-8.613,9.866],[0,0],[38.123,-14.222],[-14.624,7.524]],"v":[[-32.282,-63.034],[-45.292,21.644],[-63.778,38.679],[25.654,62.334],[-0.052,-76.865]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[922.763,197.927],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":22,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"A hand UL Outlines","parent":24,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[133.53,421.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-19.98,-15.46],[-28.65,1.69]],"o":[[0.57,11.68],[19.98,15.45],[0,0]],"v":[[-49.665,-34.105],[-27.045,18.105],[49.665,32.415]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[907.434,227.645],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-17.83,-22.23],[-0.55,-14.73],[-0.84,-13.06],[9.1,-3.39],[1.11,14.17],[0.08,7.77],[2.62,12.46]],"o":[[31.96,9.73],[17.82,22.23],[0.56,14.73],[0.83,13.06],[-9.45,1.95],[-0.5,-6.29],[-0.1,-9.72],[0,0]],"v":[[-48.905,-83.375],[28.545,-44.855],[47.035,10.345],[48.075,57.225],[39.285,81.425],[20.285,63.065],[19.875,42.025],[16.675,8.875]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[937.224,218.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.08,7.77],[19.98,15.45],[0.57,11.68],[0,0],[-17.83,-22.23],[-0.55,-14.73],[-0.84,-13.06],[9.1,-3.39],[1.11,14.17]],"o":[[-28.65,1.69],[-19.98,-15.46],[0,0],[31.96,9.73],[17.82,22.23],[0.56,14.73],[0.83,13.06],[-9.45,1.95],[-0.5,-6.29]],"v":[[35.15,42.025],[-41.56,27.715],[-64.18,-24.495],[-33.63,-83.375],[43.82,-44.855],[62.31,10.345],[63.35,57.225],[54.56,81.425],[35.56,63.065]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[921.949,218.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":23,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":34,"ty":4,"nm":"A fingers 2 Outlines","parent":25,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[134.53,435.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-7.67,-3.52],[-17.64,5.06],[-8.18,-5.11],[-22.24,1.28],[-7.41,7.87],[0.23,0.32],[0,0]],"o":[[5.12,13.32],[7.67,3.52],[6.14,-0.06],[10.99,7.93],[11.55,-1.41],[5.76,-7.5],[0,0],[0,0]],"v":[[-84.065,-24.8],[-55.675,1.84],[-12.725,1.84],[3.135,11.24],[52.225,23.52],[78.305,11.24],[78.545,-3.89],[78.535,-3.9]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[938.744,217.76],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-20.2,0.77],[-5.63,3.28],[-1.96,3.81],[0,0]],"o":[[16.62,9.2],[11.6,-0.44],[4.18,-2.44],[2.81,-6.76],[0,0]],"v":[[-42.575,-2.175],[5.505,12.905],[30.795,7.235],[39.765,-2.175],[38.745,-13.675]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[986.494,206.635],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-19.69,1.02],[-4.28,2.45],[-0.01,4.65],[0,0]],"o":[[17.9,8.7],[7.75,-0.4],[6.61,-3.76],[0.03,-7.67],[0,0]],"v":[[-40.275,3.225],[12.915,15.245],[30.815,10.655],[40.245,-3.165],[32.765,-16.265]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[994.424,182.305],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-26.34,-9.46],[-20.96,2.31],[-3.32,-11.51],[5.75,-4.68],[7.09,-1.05],[14.64,6.39]],"o":[[9.97,-0.77],[27.1,7.42],[20.97,-2.3],[1.05,5.25],[-4.05,3.32],[-13.81,2.05],[0,0]],"v":[[-74.295,-25.4],[-21.105,-16.75],[41.325,-8.57],[73.245,1.15],[65.995,17.2],[49.215,24.16],[-1.095,15.47]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[961.194,148.84],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.75,-4.68],[0.03,-7.67],[6.61,-3.76],[2.81,-6.76],[4.18,-2.44],[5.76,-7.5],[11.55,-1.41],[10.99,7.93],[6.14,-0.06],[7.67,3.52],[5.12,13.32],[-8.41,7.99],[-26.34,-9.46],[-20.96,2.31],[-3.32,-11.51]],"o":[[0,0],[-0.01,4.65],[0,0],[-1.96,3.81],[0.23,0.32],[-7.41,7.87],[-22.24,1.28],[-8.18,-5.11],[-17.64,5.06],[-7.67,-3.52],[13.72,-42.64],[9.97,-0.77],[27.1,7.42],[20.97,-2.3],[1.05,5.25]],"v":[[82.105,-16.555],[89.585,-3.455],[80.155,10.365],[81.175,21.865],[72.205,31.275],[71.965,46.405],[45.885,58.685],[-3.205,46.405],[-19.065,37.005],[-62.015,37.005],[-90.405,10.365],[-58.185,-59.155],[-4.995,-50.505],[57.435,-42.325],[89.355,-32.605]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[945.084,182.595],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":23,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":35,"ty":4,"nm":"A arm 1 Outlines","parent":26,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[436.53,432.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[588.37,144.864],[567.594,144.864],[605.568,144.864],[615.787,144.864],[647.393,144.864],[656.229,144.864]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[587.896,173.453],[567.763,173.453],[605.568,173.453],[615.787,173.453],[647.393,173.453],[656.229,173.453],[656.69,173.453]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[605.569,125.19],[605.569,125.967],[605.569,144.864],[605.569,173.454],[605.569,197.223],[605.569,198.158]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[615.788,124.729],[615.788,125.967],[615.788,144.864],[615.788,173.453],[615.788,197.223]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[647.393,125.19],[647.393,125.967],[647.393,144.864],[647.393,173.454],[647.393,197.223]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-2.963],[2.95,0],[0,2.95],[-2.949,0]],"o":[[0,2.95],[-2.949,0],[0,-2.963],[2.95,0]],"v":[[5.346,0.006],[-0.001,5.339],[-5.347,0.006],[-0.001,-5.339]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[679.696,143.778],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[671.676,160.047],[671.557,160.047]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[15.131,-0.013],[0,0]],"v":[[-14.584,0.23],[14.584,-0.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[686.26,159.817],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.488,0.237],[0.329,12.287],[0,0.368],[0.092,1.343],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.299,1.804],[-1.448,0]],"o":[[0,0],[-4.399,-0.408],[-0.026,-0.355],[0,-10.838],[-0.013,-0.211],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.185,-0.185],[0,0]],"v":[[-6.973,-1.389],[-11.384,-1.099],[-22.275,-16.573],[-22.301,-17.652],[-22.749,-35.47],[-22.775,-35.786],[22.775,-35.786],[22.775,-35.47],[22.775,-1.85],[22.775,35.786],[-22.301,35.786],[-22.301,12.017],[-22.301,10.226],[-11.384,-1.099],[-7.434,-1.389]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[678.53,161.437],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[771.495,230.224],[755.785,230.224],[755.692,230.224]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[753.336,214.342],[753.336,214.342],[776.604,214.342]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[728.552,222.81],[728.552,222.81],[753.362,222.81]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-12.951,4.003],[12.951,4.003],[12.609,-4.003]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[740.292,202.161],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[726.866,172.874],[727.103,172.874],[752.901,172.874]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[727.34,156.242],[752.44,156.242]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[726.893,139.596],[726.893,139.596],[752.901,139.596]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[1.646,2.792],[0.277,2.989],[0,0.816],[0.013,1.831],[0.04,2.133],[0,0]],"o":[[-2.436,-1.317],[-1.199,-1.989],[-0.079,-0.738],[0,-2.252],[-0.013,-3.358],[-0.145,-6.572],[0,0]],"v":[[4.655,19.042],[-1.771,13.024],[-4.076,5.597],[-4.194,3.266],[-4.221,-2.858],[-4.313,-11.035],[-4.655,-19.042]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[757.556,217.2],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-0.033,-5.116],[0.02,3.826],[0.033,5.116]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[727.307,202.339],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-15.118,-0.25],[-2.779,0.987],[-2.107,2.857],[-0.25,4.648],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[2.489,7.73],[3.938,0.066],[4.135,-1.462],[3.713,-5.018],[0.211,-3.767],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-23.131,40.421],[0.757,56.21],[10.779,54.736],[19.984,47.967],[25.067,31.967],[24.922,25.527],[24.461,15.77],[1.218,15.77],[1.218,14.835],[1.218,7.131],[1.218,-9.514],[1.218,-26.147],[1.218,-42.793],[1.218,-56.277],[-25.278,-56.277],[-24.818,-46.045],[-24.791,-42.793],[-24.685,-26.147],[-24.58,-9.514],[-24.461,7.131],[-24.409,14.835]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[751.683,182.388],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[701.306,197.223],[727.275,197.223],[727.026,197.223]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-32.942,0.11]],"o":[[33.368,0.257],[0,0]],"v":[[-49.655,-0.129],[49.655,0.019]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[802.556,197.351],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[22,-1],[82,-3],[0.674,-23.743],[0.007,-0.946],[-29.961,0.257]],"o":[[-21.277,-11.749],[-82,2],[-3,24],[12.394,0],[29.674,0.257],[0,0]],"v":[[158.638,-29.751],[91.361,-30.5],[-155.639,-29.5],[-156.312,41.243],[-156.312,41.243],[-67.678,41.243]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[723.907,155.979],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.902,-0.117],[-2.489,-0.23],[-4.712,0.833],[-2.246,17.307],[7.581,11.683],[13.945,7.525],[11.852,0],[19.214,0],[0,0],[0,0],[0,0]],"o":[[1.902,0.117],[2.489,0.231],[17.969,-1.958],[-0.923,-0.754],[-4.211,-6.006],[-4.023,-2.129],[-16.106,0],[0,0],[0,0],[0,0],[0.078,-0.102]],"v":[[26.393,38.305],[35.404,38.722],[47.239,37.887],[76.439,7.01],[71.104,-16.184],[51.544,-32.803],[26.508,-38.953],[-24.93,-33.369],[-78.685,-33.369],[-78.685,37.887],[20.625,37.887]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[831.586,159.336],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":3,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.119,27.924],[0.172,35.629],[-25.797,35.629],[-25.797,-2.009],[-25.797,-35.629],[25.797,-35.629],[25.797,-35.483],[-0.698,-35.483],[-0.237,-25.251],[-0.211,-21.999],[-0.106,-5.353],[0,11.28]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[727.103,161.595],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":3,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-4.398,-0.408]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0.33,12.286],[-11.299,1.804]],"v":[[-1.04,12.503],[-1.04,14.294],[-9.877,14.294],[-9.877,-14.294],[-1.04,-14.294],[-1.015,-14.294],[9.877,1.179]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[657.269,159.159],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":3,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15.802,14.294],[-15.802,14.294],[-15.802,-14.294],[15.802,-14.294]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[631.591,159.158],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":3,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.109,14.294],[-5.109,14.294],[-5.109,-14.294],[5.109,-14.294]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[610.679,159.158],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":3,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18.902,14.294],[-18.903,14.294],[-18.903,-14.294],[18.902,-14.294]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[586.667,159.158],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":3,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-10.838],[-0.026,-0.356],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0.369],[0,0],[0,0],[0,0],[0,0],[0.092,1.343]],"v":[[4.405,8.368],[4.431,9.448],[4.405,9.448],[-4.431,9.448],[-4.431,-9.448],[3.957,-9.448]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[651.824,135.416],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":3,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15.802,9.448],[-15.802,9.448],[-15.802,-9.448],[15.802,-9.448]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[631.591,135.415],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":3,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.109,9.448],[-5.109,9.448],[-5.109,-9.448],[5.109,-9.448]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[610.679,135.415],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":3,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18.902,9.448],[-18.903,9.448],[-18.903,-9.448],[18.902,-9.448]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[586.667,135.415],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":3,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18.987,-11.885],[18.987,11.885],[-18.987,11.885],[-18.818,-11.885]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[586.582,185.338],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":3,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.109,11.885],[-5.109,11.885],[-5.109,-11.885],[5.109,-11.885]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[610.679,185.338],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":3,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15.802,11.885],[-15.802,11.885],[-15.802,-11.885],[15.802,-11.885]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[631.591,185.338],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":3,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.418,11.885],[-4.418,11.885],[-4.418,-11.885],[4.418,-11.885]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[651.811,185.338],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":3,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-11.299,1.804],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[2.489,0.237],[0,0],[15.131,-0.013],[0,0],[0,0],[0,0],[0,0]],"v":[[-22.347,-4.952],[-22.347,-6.742],[-11.43,-18.068],[-7.02,-18.357],[-6.901,-18.357],[22.268,-18.818],[22.729,-18.818],[22.729,18.818],[-22.347,18.818]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[678.576,178.405],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":3,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,2.95],[2.95,0],[0,-2.963],[-2.949,0]],"o":[[0,-2.963],[-2.949,0],[0,2.95],[2.95,0]],"v":[[6.499,0.632],[1.152,-4.714],[-4.194,0.632],[1.152,5.965]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.185,-0.184],[0.329,12.286],[0,0.369],[0.092,1.343]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[-1.448,0],[-4.399,-0.408],[-0.026,-0.356],[0,-10.838],[0,0]],"v":[[22.762,-17.185],[22.762,16.435],[22.302,16.435],[-6.867,16.895],[-6.986,16.895],[-7.447,16.895],[-11.397,17.185],[-22.288,1.712],[-22.314,0.632],[-22.762,-17.185]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[678.543,143.152],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":5,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.95,0],[0,-2.962],[2.95,0],[0,2.95]],"o":[[2.95,0],[0,2.95],[-2.95,0],[0,-2.962]],"v":[[0,-5.34],[5.346,0.006],[0,5.34],[-5.346,0.006]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[679.696,143.778],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":3,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13.248,-6.743],[13.248,6.743],[-12.76,6.743],[-12.787,3.49],[-13.248,-6.743]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[739.653,132.854],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 40","np":3,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13.004,-8.323],[13.004,8.323],[12.543,8.323],[-12.557,8.323],[-12.899,8.323],[-13.004,-8.323]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[739.897,147.919],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 41","np":3,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12.952,-8.316],[12.952,8.316],[-12.846,8.316],[-12.951,-8.316],[-12.609,-8.316],[12.49,-8.316]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[739.949,164.558],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 42","np":3,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12.899,-8.323],[12.899,8.323],[12.438,8.323],[-12.78,8.323],[-12.899,-8.323]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[740.002,181.196],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 43","np":3,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-2.252],[-0.08,-0.738],[0,0],[0,0],[-0.033,5.26],[0,0],[0,0],[0,0],[-0.013,-3.359]],"o":[[0,0.816],[0,0],[0,0],[-1.006,-3.27],[0,0],[0,0],[0,0],[0.04,2.134],[0.013,1.83]],"v":[[12.968,14.301],[13.086,16.633],[12.968,16.646],[-11.843,16.646],[-13.054,1.29],[-13.068,0],[-13.055,-16.646],[12.849,-16.646],[12.942,8.178]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[740.394,206.164],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 44","np":3,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12.839,-3.852],[12.839,3.852],[-12.787,3.852],[-12.84,-3.852],[12.378,-3.852]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.964705942191,0.835294177485,0.305882352941,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[740.061,193.371],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 45","np":3,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.198,-1.988],[-2.436,-1.317],[0,0],[3.938,0.066],[2.489,7.73],[0,0],[0,0]],"o":[[1.646,2.792],[0,0],[-2.779,0.988],[-15.118,-0.25],[0,0],[0,0],[0.277,2.989]],"v":[[10.278,-0.507],[16.704,5.511],[16.955,6.393],[6.933,7.868],[-16.955,-7.921],[7.855,-7.921],[7.973,-7.934]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[745.507,230.731],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 46","np":3,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[4.135,-1.461],[0,0],[1.646,2.792]],"o":[[0,0],[-2.107,2.857],[0,0],[-2.436,-1.317],[0,0]],"v":[[7.77,-3.45],[7.94,-3.318],[-1.265,3.45],[-1.515,2.568],[-7.94,-3.45]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[763.726,233.674],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 47","np":3,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.713,-5.017],[0,0],[0,0],[0.276,2.99],[0,0.817],[0.013,1.83]],"o":[[0,0],[-0.25,4.649],[0,0],[0,0],[-1.198,-1.989],[-0.079,-0.737],[0,-2.251],[0,0]],"v":[[11.562,-8.007],[11.707,-7.993],[6.624,8.007],[6.453,7.876],[-9.258,7.876],[-11.562,0.448],[-11.681,-1.883],[-11.707,-8.007]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[765.043,222.349],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 48","np":3,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.211,-3.767],[0,0],[0,0],[0.039,2.133],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[-0.013,-3.358],[-0.145,-6.572],[0,0],[0,0]],"v":[[11.674,1.659],[11.819,8.099],[11.674,8.085],[-11.595,8.085],[-11.687,-0.092],[-12.03,-8.099],[11.213,-8.099]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[764.931,206.257],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 49","np":3,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0}]},{"id":"comp_2","nm":"hands2-comp","fr":24,"layers":[{"ddd":0,"ind":3,"ty":3,"nm":"hand C peg","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.579,"y":0.733},"o":{"x":0.167,"y":0.167},"t":0,"s":[1987,501.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.728,"y":1},"o":{"x":0.152,"y":1},"t":11,"s":[1494.328,501.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.86,"y":0},"o":{"x":0.296,"y":0},"t":22,"s":[1447,501.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.426,"y":0.265},"t":35,"s":[1493.65,501.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":47,"s":[1987,501.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":3,"nm":"hand D peg","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.579,"y":0.733},"o":{"x":0.167,"y":0.167},"t":0,"s":[-124,709.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.728,"y":1},"o":{"x":0.155,"y":1},"t":11,"s":[458.649,709.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.865,"y":0},"o":{"x":0.296,"y":0},"t":22,"s":[516,709.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.426,"y":0.264},"t":35,"s":[462.714,709.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":47,"s":[-124,709.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"C thumb peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.65],"y":[-0.896]},"o":{"x":[0.313],"y":[0]},"t":17,"s":[0]},{"i":{"x":[0.831],"y":[0.911]},"o":{"x":[0.378],"y":[0.12]},"t":20,"s":[0.609]},{"t":23,"s":[11]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.814,"y":0},"o":{"x":0.313,"y":0},"t":17,"s":[-294,33,0],"to":[0.148,-0.015,0],"ti":[-0.221,0.022,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.378,"y":0.12},"t":20,"s":[-293.443,32.944,0],"to":[2.257,-0.226,0],"ti":[-1.518,0.152,0]},{"t":23,"s":[-284,32,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.65,0.65,0.65],"y":[1,1,1]},"o":{"x":[0.313,0.313,0.313],"y":[0,0,0]},"t":17,"s":[100,100,100]},{"i":{"x":[0.831,0.831,0.831],"y":[1,1,1]},"o":{"x":[0.378,0.378,0.378],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"t":23,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":24,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":3,"nm":"C thumb 2 peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[-9]},{"t":28,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":24,"s":[-294,26,0],"to":[0,0,0],"ti":[0,0,0]},{"t":28,"s":[-294,26,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":24,"s":[100,100,100]},{"t":28,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":24,"op":48,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":3,"nm":"C fingers OL peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.65],"y":[-0.896]},"o":{"x":[0.313],"y":[0]},"t":17,"s":[0]},{"i":{"x":[0.831],"y":[0.911]},"o":{"x":[0.378],"y":[0.12]},"t":20,"s":[0.277]},{"t":23,"s":[5]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.816,"y":0},"o":{"x":0.313,"y":0},"t":17,"s":[-368.5,161,0],"to":[0,0.288,0],"ti":[0,-0.427,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.378,"y":0.12},"t":20,"s":[-368.5,162.078,0],"to":[0,4.396,0],"ti":[0,-2.962,0]},{"t":23,"s":[-368.5,180.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.65,0.65,0.65],"y":[-0.896,-0.896,1]},"o":{"x":[0.313,0.313,0.313],"y":[0,0,0]},"t":17,"s":[100,100,100]},{"i":{"x":[0.831,0.831,0.831],"y":[0.911,0.911,1]},"o":{"x":[0.378,0.378,0.378],"y":[0.12,0.12,0]},"t":20,"s":[100.775,98.671,100]},{"t":23,"s":[114,76,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":24,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":3,"nm":"C credit card peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.65],"y":[1]},"o":{"x":[0.313],"y":[0]},"t":17,"s":[0]},{"i":{"x":[0.831],"y":[1]},"o":{"x":[0.378],"y":[0]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":23,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":24,"s":[-3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[-3]},{"t":35,"s":[-3]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.816,"y":0},"o":{"x":0.313,"y":0},"t":17,"s":[-367,90,0],"to":[0,0.295,0],"ti":[0,-0.438,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.378,"y":0.12},"t":20,"s":[-367,91.106,0],"to":[0,4.509,0],"ti":[0,-3.038,0]},{"i":{"x":0.831,"y":0.991},"o":{"x":0.333,"y":0},"t":23,"s":[-367,110,0],"to":[0,3.333,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":24,"s":[-362.5,169.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":25,"s":[-362.5,224.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":35,"s":[-362.5,222,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.65,0.65,0.65],"y":[1,1,1]},"o":{"x":[0.313,0.313,0.313],"y":[0,0,0]},"t":17,"s":[100,100,100]},{"i":{"x":[0.831,0.831,0.831],"y":[1,1,1]},"o":{"x":[0.378,0.378,0.378],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":24,"s":[108,64,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":25,"s":[113,57,100]},{"t":35,"s":[108,64,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":3,"nm":"C fingers UL peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.65],"y":[-0.896]},"o":{"x":[0.313],"y":[0]},"t":17,"s":[0]},{"i":{"x":[0.831],"y":[0.911]},"o":{"x":[0.378],"y":[0.12]},"t":20,"s":[0.609]},{"t":23,"s":[11]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.65,"y":0.65},"o":{"x":0.313,"y":0.313},"t":17,"s":[-301,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.378,"y":0.378},"t":20,"s":[-301,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":23,"s":[-301,60,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.65,0.65,0.65],"y":[1,1,1]},"o":{"x":[0.313,0.313,0.313],"y":[0,0,0]},"t":17,"s":[100,100,100]},{"i":{"x":[0.831,0.831,0.831],"y":[1,1,1]},"o":{"x":[0.378,0.378,0.378],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"t":23,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":24,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":3,"nm":"C fingers UL 2 peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[-6]},{"t":28,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":24,"s":[-309,61,0],"to":[0,-0.167,0],"ti":[0,0.167,0]},{"t":28,"s":[-309,60,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":24,"s":[100,100,100]},{"t":28,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":24,"op":48,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":3,"nm":"C main peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[51,50,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"C thumb Outlines","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-137.47,58.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[8.83,0.477],[8.831,-10.69],[18.893,9.701],[-8.211,1.859],[-2.825,14.873],[-9.296,1.859],[0,0]],"o":[[0,0],[-17.197,-0.93],[-7.639,9.247],[-17.197,-8.831],[3.9,-0.883],[2.944,-15.493],[9.295,-1.859],[0,0]],"v":[[51.126,10.487],[32.535,15.135],[4.183,12.346],[-33.929,32.332],[-36.253,4.91],[-11.155,-19.259],[9.296,-40.174],[40.055,-34.244]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.294117647059,0.650980392157,0.650980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1112.254,551.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":24,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"C thumb 2 Outlines","parent":6,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-137.47,65.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[7.101,6.559],[6.289,4.354],[9.008,7.257],[-7.983,7.499],[-7.257,-5.564],[-12.095,-1.451],[-14.515,-6.773],[-2.903,-7.5]],"o":[[-12.095,1.935],[-7.1,-6.558],[-6.29,-4.354],[-9.009,-7.257],[7.983,-7.499],[7.257,5.564],[13.789,2.661],[12.337,5.806],[0,0]],"v":[[37.254,39.915],[9.192,32.684],[-9.918,5.322],[-38.705,-2.177],[-44.995,-34.351],[-24.191,-31.69],[0,-19.111],[35.077,-13.305],[52.978,6.29]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.294117647059,0.650980392157,0.650980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1109.454,510.426],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":24,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"C fingers OL Outlines","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-62.97,-69.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.766,0.759],[2.789,17.662],[8.921,-2.703],[-1.394,-9.992]],"o":[[0,0],[8.06,-0.569],[-2.788,-17.661],[-10.225,3.099],[1.859,13.323]],"v":[[-16.228,16.295],[-3.293,25.76],[13.439,-0.577],[-4.842,-23.816],[-7.321,2.832]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.294117647059,0.650980392157,0.650980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1092.074,644.605],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-6.451,0.496],[2.789,17.661],[8.921,-2.704],[-1.394,-9.991]],"o":[[0,0],[8.056,-0.619],[-2.789,-17.662],[-10.225,3.098],[1.859,13.324]],"v":[[-16.112,24.343],[-3.408,25.892],[13.323,-0.445],[-4.958,-23.684],[-7.437,2.963]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.294117647059,0.650980392157,0.650980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1111.711,644.473],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-6.451,0.497],[2.789,17.661],[8.921,-2.704],[-1.394,-9.991]],"o":[[0,0],[8.056,-0.619],[-2.789,-17.662],[-10.225,3.098],[1.859,13.324]],"v":[[-16.113,24.342],[-3.409,25.891],[13.323,-0.446],[-4.958,-23.685],[-7.437,2.963]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.294117647059,0.650980392157,0.650980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1131.93,644.304],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":24,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"credit card Outlines","parent":8,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-64.47,1.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.962,0.941],[0,0],[-0.941,3.962],[0,0],[-3.962,-0.941],[0,0],[0.941,-3.962],[0,0]],"o":[[0,0],[-3.962,-0.941],[0,0],[0.941,-3.962],[0,0],[3.962,0.941],[0,0],[-0.941,3.961]],"v":[[34.884,23.251],[-41.613,5.081],[-47.083,-3.796],[-43.76,-17.781],[-34.884,-23.251],[41.612,-5.081],[47.083,3.796],[43.76,17.782]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.011764706817,0.831372608858,0.486274539723,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1085.175,559.95],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.197,0.83],[0,0],[0.833,0.198],[0,0],[0.373,-0.3],[0,0],[0.08,-0.335],[0,0],[-0.115,-0.294],[0,0],[-0.497,-0.115],[0,0]],"o":[[0,0],[0.197,-0.833],[0,0],[-0.465,-0.11],[0,0],[-0.269,0.216],[0,0],[-0.073,0.307],[0,0],[0.186,0.475],[0,0],[0.831,0.194]],"v":[[2.98,8.973],[6.784,-7.041],[5.634,-8.907],[0.157,-10.208],[-1.172,-9.908],[-3.608,-7.952],[-4.146,-7.102],[-6.908,4.528],[-6.843,5.452],[-5.923,7.794],[-4.832,8.737],[1.12,10.124]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[960.333,557.399],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.937,0.223],[0,0],[-0.223,0.937],[0,0],[-0.937,-0.223],[0,0],[0.222,-0.937],[0,0]],"o":[[0,0],[-0.937,-0.223],[0,0],[0.222,-0.937],[0,0],[0.937,0.223],[0,0],[-0.222,0.937]],"v":[[0.448,5.308],[-2.787,4.54],[-4.08,2.44],[-2.547,-4.015],[-0.448,-5.308],[2.787,-4.54],[4.081,-2.44],[2.547,4.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[979.443,557.114],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.937,0.223],[0,0],[-0.223,0.937],[0,0],[-0.937,-0.223],[0,0],[0.223,-0.936],[0,0]],"o":[[0,0],[-0.937,-0.223],[0,0],[0.223,-0.937],[0,0],[0.937,0.223],[0,0],[-0.222,0.937]],"v":[[0.687,4.303],[-2.549,3.535],[-3.841,1.435],[-2.786,-3.01],[-0.687,-4.303],[2.549,-3.535],[3.841,-1.436],[2.786,3.009]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[977.29,567.149],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.937,0.223],[0,0],[-0.223,0.937],[0,0],[-0.937,-0.223],[0,0],[0.223,-0.936],[0,0]],"o":[[0,0],[-0.937,-0.223],[0,0],[0.223,-0.937],[0,0],[0.937,0.223],[0,0],[-0.222,0.937]],"v":[[0.687,4.303],[-2.549,3.535],[-3.841,1.435],[-2.786,-3.01],[-0.687,-4.303],[2.549,-3.535],[3.841,-1.436],[2.786,3.009]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[971.484,554.162],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.937,0.223],[0,0],[-0.223,0.937],[0,0],[-0.937,-0.223],[0,0],[0.223,-0.937],[0,0]],"o":[[0,0],[-0.937,-0.223],[0,0],[0.222,-0.936],[0,0],[0.937,0.223],[0,0],[-0.222,0.937]],"v":[[0.496,5.105],[-2.739,4.338],[-4.032,2.237],[-2.595,-3.812],[-0.496,-5.106],[2.739,-4.338],[4.032,-2.237],[2.595,3.812]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[968.957,564.414],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.832,1.148],[0,0],[-1.148,4.832],[0,0],[-4.832,-1.148],[0,0],[1.147,-4.832],[0,0]],"o":[[0,0],[-4.831,-1.147],[0,0],[1.148,-4.832],[0,0],[4.832,1.148],[0,0],[-1.148,4.832]],"v":[[82.88,85.533],[-112.49,39.128],[-119.159,28.302],[-93.706,-78.863],[-82.878,-85.533],[112.49,-39.129],[119.16,-28.302],[93.706,78.862]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1031.019,584.06],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.043,0.96],[0,0],[-0.96,4.044],[0,0],[-4.043,-0.961],[0,0],[0.96,-4.043],[0,0]],"o":[[0,0],[-4.043,-0.96],[0,0],[0.961,-4.044],[0,0],[4.043,0.96],[0,0],[-0.961,4.043]],"v":[[83.701,85.76],[-113.324,38.962],[-118.906,29.902],[-92.76,-80.177],[-83.7,-85.759],[113.324,-38.961],[118.906,-29.902],[92.76,80.178]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.031372550875,0.321568638086,0.223529413342,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1031.177,584.73],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":25,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"C fingers UL Outlines","parent":9,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-130.47,31.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[17.69,-17.955],[5.171,-14.424],[2.177,-39.735],[-6.26,-1.361],[-0.545,14.424],[-3.266,5.171],[-27.215,1.906],[-2.721,37.481]],"o":[[-25.718,11.06],[-17.69,17.954],[-5.171,14.424],[1.089,24.222],[6.259,1.36],[0.544,-18.779],[3.266,-5.171],[27.216,-1.905],[0,0]],"v":[[40.278,-88.537],[-26.807,-47.532],[-50.757,-10.255],[-65.181,59.689],[-51.845,87.177],[-35.516,66.221],[-27.896,19.41],[1.769,42.815],[65.181,-20.792]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.294117647059,0.650980392157,0.650980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1114.215,603.487],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":24,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"C fingers UL 2 Outlines","parent":10,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-122.47,31.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[13.59,-4.98],[20.67,2.78],[7.96,-4.64],[10.41,0],[2.23,5.55],[0,0]],"o":[[-6.68,15.44],[-13.6,4.97],[-12.81,-3.32],[-34.77,22.61],[-10.42,0],[-2.23,-5.56],[0,0]],"v":[[96.785,-33.325],[56.755,-2.155],[11.195,3.505],[-10.655,9.445],[-75.425,33.325],[-94.555,24.375],[-91.715,13.365]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1080.404,613.435],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[12.3,-3.65],[6.56,0.01],[3.04,2.28],[-4.01,2.67]],"o":[[-19.9,14.59],[-6.65,1.97],[-5.55,-0.01],[-6.63,-4.98],[0,0]],"v":[[45.595,-12.41],[-4.785,9.15],[-25.515,12.4],[-38.965,9.15],[-38.705,-8.11]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1014.204,614.4],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[12.27,-3.98],[15.44,3.43],[0.85,0.25],[-3.34,1.84],[0,0]],"o":[[-9.52,4.31],[-11.62,3.77],[-0.87,-0.19],[-15.9,-4.64],[0,0],[0,0]],"v":[[49.565,-12.155],[14.415,3.435],[-31.085,8.725],[-33.665,8.075],[-39.675,-10.665],[-39.665,-10.665]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1006.584,597.565],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[33.49,-13.6],[14.09,-3.08],[1.33,-12.27],[-5.95,-2.21]],"o":[[-26.2,-1.66],[-35.15,17.9],[-14.09,3.07],[-0.75,7.01],[0,0]],"v":[[96.59,-35.23],[22.31,-23.29],[-58.27,9.54],[-95.84,23.8],[-86.83,36.89]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1053.739,550.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-5.83,-0.42],[-14.6,6.96],[0,0]],"o":[[4.46,1.67],[13.59,1],[14.59,-6.97],[0,0]],"v":[[-43.6,7.455],[-27.65,10.275],[23.42,-3.315],[43.6,-11.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1010.519,579.445],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.04,2.28],[-4.01,2.67],[0.85,0.25],[-3.34,1.84],[-0.75,7.01],[-14.09,3.07],[-35.15,17.9],[-26.2,-1.66],[0,0],[13.59,-4.98],[20.67,2.78],[7.96,-4.64],[10.41,0],[2.23,5.55]],"o":[[-5.55,-0.01],[-6.63,-4.98],[-0.87,-0.19],[-15.9,-4.64],[-5.95,-2.21],[1.33,-12.27],[14.09,-3.08],[33.49,-13.6],[0,0],[-6.68,15.44],[-13.6,4.97],[-12.81,-3.32],[-34.77,22.61],[-10.42,0],[-2.23,-5.56]],"v":[[-78.415,46.86],[-91.865,43.61],[-91.605,26.35],[-94.185,25.7],[-100.195,6.96],[-109.205,-6.13],[-71.635,-20.39],[8.945,-53.22],[83.225,-65.16],[110.085,0.17],[70.055,31.34],[24.495,37],[2.645,42.94],[-62.125,66.82],[-81.255,57.87]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.294117647059,0.650980392157,0.650980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1067.104,579.94],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":24,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"C main Outlines","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-482.47,41.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.693,0],[0,0],[0,0]],"o":[[0,0],[0,0],[12.55,0],[0,0]],"v":[[-39.039,5.116],[-29.742,-5.577],[27.885,-5.577],[38.117,5.577]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.003,508.619],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[18.594,-9.297],[0,0]],"v":[[-18.364,4.648],[18.364,4.648]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,578.96],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[18.594,-9.297],[0,0]],"v":[[-18.364,4.648],[18.364,4.648]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,560.524],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[18.594,-9.297],[0,0]],"v":[[-18.364,4.648],[18.364,4.648]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,569.742],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[18.594,-9.297],[0,0]],"v":[[-18.364,4.648],[18.364,4.648]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,542.088],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[18.594,-9.297],[0,0]],"v":[[-18.364,4.648],[18.364,4.648]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,551.306],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[18.594,-9.297],[0,0]],"v":[[-18.364,4.648],[18.364,4.648]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,514.433],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[18.594,-9.297],[0,0]],"v":[[-18.364,4.648],[18.364,4.648]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,523.651],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[18.594,-9.297],[0,0]],"v":[[-18.364,4.648],[18.364,4.648]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,532.869],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1512.734,574.614],[1512.589,574.614],[1429.692,574.614],[1419.473,574.614],[1387.868,574.614],[1360.727,574.614]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1512.734,550.45],[1512.589,550.45],[1429.692,550.45],[1419.473,550.45],[1387.868,550.45],[1360.727,550.45]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1513.208,562.828],[1512.589,562.828],[1429.692,562.828],[1419.473,562.828],[1387.867,562.828],[1379.031,562.828],[1360.727,562.828]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1240.337,514.657],[1240.337,519.082],[1240.337,528.3],[1240.337,537.518],[1240.337,546.736],[1240.337,555.954],[1240.337,565.172],[1240.337,574.391],[1240.337,583.609],[1240.337,585.531]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1277.065,514.657],[1277.065,519.082],[1277.065,528.3],[1277.065,537.518],[1277.065,546.736],[1277.065,555.954],[1277.065,565.172],[1277.065,574.391],[1277.065,583.609],[1277.065,585.531]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1359.33,514.196],[1359.33,514.657],[1359.33,526.285],[1359.33,538.664],[1359.33,550.45],[1359.33,562.828],[1359.33,574.614],[1359.33,585.768]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1311.449,514.657],[1311.449,585.307]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1512.734,526.285],[1512.589,526.285],[1429.692,526.285],[1419.473,526.285],[1387.868,526.285],[1360.727,526.285]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1513.208,538.664],[1512.589,538.664],[1429.692,538.664],[1419.473,538.664],[1387.867,538.664],[1379.031,538.664],[1360.727,538.664]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-2.963],[-2.95,0],[0,2.95],[2.949,0]],"o":[[0,2.95],[2.949,0],[0,-2.963],[-2.95,0]],"v":[[-5.347,0.006],[0,5.339],[5.346,0.006],[0,-5.339]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1334.494,532.468],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[20.695,-1.934],[2.58,24.695],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-20.695,1.934],[-2.581,-24.694],[0,0]],"v":[[77.309,31.931],[75.729,31.931],[72.015,31.931],[35.287,31.931],[-27.264,31.931],[-74.729,3.225],[-59.893,-33.866]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1205.05,553.982],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-16.118,0],[-15.091,-1.317],[-3.319,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[13.327,0],[3.147,0.276],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-183.716,-29.028],[-159.204,-36.769],[-109.948,-34.935],[-100.269,-34.488],[-88.536,-34.488],[-51.808,-34.488],[-46.514,-34.488],[-32.753,-34.488],[-17.424,-34.488],[5.081,-34.488],[30.457,-34.488],[50.606,-34.488],[58.994,-34.488],[90.599,-34.488],[100.818,-34.488],[183.716,-34.488],[183.716,-22.86],[183.716,-15.591],[183.716,-10.481],[183.716,1.305],[183.716,12.999],[183.716,13.684],[183.716,25.47],[183.716,36.769],[100.818,36.769],[90.599,36.769],[58.994,36.769],[30.457,36.769],[-17.424,36.769],[-46.514,36.769]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1328.873,549.145],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.147,0.277],[13.327,0],[2.808,-1.224],[0,0],[3.516,-9.617],[-2.257,-8.179],[-17.059,0.322],[-0.364,-0.071],[0,0],[0,0],[0,0]],"o":[[-3.318,0],[-15.092,-1.317],[-10.969,0],[-1.654,1.655],[-7.974,5.771],[-2.908,7.949],[8.082,20.358],[0.419,-0.008],[0.054,-0.338],[0,0],[0,0],[0,0]],"v":[[43.722,-34.859],[34.042,-35.307],[-13.163,-37.139],[-33.084,-34],[-34.786,-32.393],[-52.547,-11.985],[-52.894,15.042],[-8.35,36.818],[-7.177,36.917],[-7.097,36.398],[55.454,36.398],[55.454,-34.859]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.294117647059,0.650980392157,0.650980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1184.882,549.515],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[18.595,-9.297],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18.364,0.223],[18.364,4.648],[-18.364,4.648],[-18.364,0.223]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,514.434],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[18.595,-9.297],[0,0]],"o":[[0,0],[0,0],[0,0],[18.595,-9.297]],"v":[[18.364,0.039],[18.364,9.258],[-18.364,9.258],[-18.364,0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,519.042],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[18.595,-9.297],[0,0]],"o":[[0,0],[0,0],[0,0],[18.595,-9.297]],"v":[[18.364,0.039],[18.364,9.258],[-18.364,9.258],[-18.364,0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,528.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[18.595,-9.297],[0,0]],"o":[[0,0],[0,0],[0,0],[18.595,-9.297]],"v":[[18.364,0.039],[18.364,9.258],[-18.364,9.258],[-18.364,0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,537.478],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[18.595,-9.297],[0,0]],"o":[[0,0],[0,0],[0,0],[18.595,-9.297]],"v":[[18.364,0.039],[18.364,9.258],[-18.364,9.258],[-18.364,0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,546.697],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[18.595,-9.297],[0,0]],"o":[[0,0],[0,0],[0,0],[18.595,-9.297]],"v":[[18.364,0.039],[18.364,9.258],[-18.364,9.258],[-18.364,0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,555.915],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[18.595,-9.297],[0,0]],"o":[[0,0],[0,0],[0,0],[18.595,-9.297]],"v":[[18.364,0.039],[18.364,9.258],[-18.364,9.258],[-18.364,0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,565.133],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[18.595,-9.297],[0,0]],"o":[[0,0],[0,0],[0,0],[18.595,-9.297]],"v":[[18.364,0.039],[18.364,9.258],[-18.364,9.258],[-18.364,0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,574.351],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[18.595,-9.297],[0,0]],"v":[[18.364,5.419],[18.364,5.801],[-18.364,5.801],[-18.364,5.419],[-18.364,3.496],[18.364,3.496]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.701,580.112],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[3.147,0.277],[0,0],[-10.694,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-3.319,0],[0,0],[0,0],[0,0],[12.55,0],[0,0],[0,0],[0,0]],"v":[[19.062,5.807],[-17.666,5.807],[-29.399,5.807],[-39.078,5.359],[-39.039,4.885],[-29.741,-5.807],[27.885,-5.807],[38.117,5.346],[38.117,5.807],[24.356,5.807]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.894117706897,0.36862745098,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.003,508.849],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17.192,35.022],[17.192,35.628],[-11.898,35.628],[-13.478,35.628],[-17.192,35.628],[-17.192,35.246],[-17.192,33.323],[-17.192,24.105],[-17.192,14.887],[-17.192,5.669],[-17.192,-3.549],[-17.192,-12.768],[-17.192,-21.986],[-17.192,-31.204],[-17.192,-35.628],[-11.898,-35.628],[1.864,-35.628],[17.192,-35.628]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.294117647059,0.650980392157,0.650980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1294.257,550.285],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.95,0],[0,-2.962],[2.95,0],[0,2.95]],"o":[[2.95,0],[0,2.95],[-2.95,0],[0,-2.962]],"v":[[0,-5.34],[5.347,0.006],[0,5.34],[-5.347,0.006]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1334.494,532.468],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,2.95],[2.95,0],[0,-2.963],[-2.949,0]],"o":[[0,-2.963],[-2.949,0],[0,2.95],[2.95,0]],"v":[[4.451,-17.811],[-0.896,-23.157],[-6.242,-17.811],[-0.896,-12.478]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[23.941,35.483],[23.941,35.628],[-23.941,35.628],[-23.941,35.022],[-23.941,-35.628],[-1.435,-35.628],[23.941,-35.628],[23.941,-24],[23.941,-11.622],[23.941,0.164],[23.941,12.543],[23.941,24.329]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.992156922583,0.996078491211,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1335.39,550.285],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":4,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[76.629,-5.814],[76.629,5.814],[-6.268,5.814],[-16.487,5.814],[-48.093,5.814],[-75.233,5.814],[-76.629,5.814],[-76.629,-5.814],[-56.481,-5.814],[-48.093,-5.814],[-16.487,-5.814],[-6.268,-5.814]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1435.96,520.471],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[76.629,1.08],[76.629,6.189],[-6.268,6.189],[-16.487,6.189],[-48.093,6.189],[-56.929,6.189],[-75.233,6.189],[-76.629,6.189],[-76.629,-6.189],[-75.233,-6.189],[-48.093,-6.189],[-16.487,-6.189],[-6.268,-6.189],[76.629,-6.189]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1435.96,532.474],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[76.629,-5.893],[76.629,5.893],[-6.268,5.893],[-16.487,5.893],[-48.093,5.893],[-75.233,5.893],[-76.629,5.893],[-76.629,-5.893],[-75.233,-5.893],[-56.929,-5.893],[-48.093,-5.893],[-16.487,-5.893],[-6.268,-5.893]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1435.96,544.557],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[76.629,5.504],[76.629,6.19],[-6.268,6.19],[-16.487,6.19],[-48.093,6.19],[-56.929,6.19],[-75.233,6.19],[-76.629,6.19],[-76.629,-6.19],[-75.233,-6.19],[-48.093,-6.19],[-16.487,-6.19],[-6.268,-6.19],[76.629,-6.19]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1435.96,556.639],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":2,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[76.629,-5.893],[76.629,5.893],[-6.268,5.893],[-16.487,5.893],[-48.093,5.893],[-75.233,5.893],[-76.629,5.893],[-76.629,-5.893],[-75.233,-5.893],[-56.929,-5.893],[-48.093,-5.893],[-16.487,-5.893],[-6.268,-5.893]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1435.96,568.721],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 40","np":2,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[76.629,-5.65],[76.629,5.649],[-6.268,5.649],[-16.487,5.649],[-48.093,5.649],[-76.629,5.649],[-76.629,5.505],[-76.629,-5.65],[-75.233,-5.65],[-48.093,-5.65],[-16.487,-5.65],[-6.268,-5.65]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1435.96,580.264],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 41","np":2,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":20,"ty":3,"nm":"D credit card peg 2","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.65],"y":[1]},"o":{"x":[0.313],"y":[0]},"t":17,"s":[0]},{"i":{"x":[0.831],"y":[1]},"o":{"x":[0.378],"y":[0]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":23,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":24,"s":[-3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[-3]},{"t":35,"s":[-3]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.816,"y":0},"o":{"x":0.313,"y":0},"t":17,"s":[564,-118,0],"to":[0,0.295,0],"ti":[0,-0.438,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.378,"y":0.12},"t":20,"s":[564,-116.894,0],"to":[0,4.509,0],"ti":[0,-3.038,0]},{"i":{"x":0.831,"y":0.991},"o":{"x":0.333,"y":0},"t":23,"s":[564,-98,0],"to":[0,3.333,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":24,"s":[568.5,-38.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":25,"s":[568.5,16.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":35,"s":[568.5,14,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.65,0.65,0.65],"y":[1,1,1]},"o":{"x":[0.313,0.313,0.313],"y":[0,0,0]},"t":17,"s":[100,100,100]},{"i":{"x":[0.831,0.831,0.831],"y":[1,1,1]},"o":{"x":[0.378,0.378,0.378],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":24,"s":[108,64,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":25,"s":[113,57,100]},{"t":35,"s":[108,64,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":3,"nm":"D snake part 4 peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[-6]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":36,"s":[-6]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[-6]},{"t":72,"s":[0]}],"ix":10},"p":{"a":0,"k":[401,75,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":3,"nm":"D snake part 3 peg","parent":21,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[11]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":36,"s":[11]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[11]},{"t":72,"s":[0]}],"ix":10},"p":{"a":0,"k":[8,117,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":23,"ty":3,"nm":"D snake part 2 peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[172,14,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":24,"ty":3,"nm":"D snake part 1 peg","parent":35,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[-4]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":36,"s":[-4]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[-4]},{"t":72,"s":[0]}],"ix":10},"p":{"a":0,"k":[670,666.5,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":25,"ty":3,"nm":"D snake part 0 peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[-1]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":36,"s":[-1]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[-1]},{"t":72,"s":[0]}],"ix":10},"p":{"a":0,"k":[202,84,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":26,"ty":3,"nm":"D snake tongue peg","parent":24,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[-11]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":36,"s":[-11]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[-11]},{"t":72,"s":[0]}],"ix":10},"p":{"a":0,"k":[115,-122,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":27,"ty":3,"nm":"D thumb peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[2]},{"t":35,"s":[0]}],"ix":10},"p":{"a":0,"k":[455,69,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":28,"ty":3,"nm":"D fingers peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[2]},{"t":35,"s":[0]}],"ix":10},"p":{"a":0,"k":[483,39,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":29,"ty":3,"nm":"D main peg","parent":4,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[50,51,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":30,"ty":4,"nm":"D thumb Outlines","parent":27,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[44.53,-185.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.167,2.26],[-14.869,7.93],[-9.602,-4.519],[3.389,-3.954],[7.816,-4.974],[11.862,-4.518],[17.511,0]],"o":[[0,0],[10.168,-2.259],[16.946,-9.038],[9.603,4.519],[-5.225,6.095],[-18.641,11.862],[-11.862,4.519],[0,0]],"v":[[-61.287,-2.824],[-30.22,-0.565],[11.015,-31.067],[49.99,-32.197],[59.593,-14.121],[32.48,-2.824],[-4.236,35.586],[-62.982,29.938]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960784314,0.266666666667,0.239215701234,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1035.066,761.735],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":31,"ty":4,"nm":"credit card Outlines 2","parent":20,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-64.47,1.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.962,0.941],[0,0],[-0.941,3.962],[0,0],[-3.962,-0.941],[0,0],[0.941,-3.962],[0,0]],"o":[[0,0],[-3.962,-0.941],[0,0],[0.941,-3.962],[0,0],[3.962,0.941],[0,0],[-0.941,3.961]],"v":[[34.884,23.251],[-41.613,5.081],[-47.083,-3.796],[-43.76,-17.781],[-34.884,-23.251],[41.612,-5.081],[47.083,3.796],[43.76,17.782]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.011764706817,0.831372608858,0.486274539723,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1085.175,559.95],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.197,0.83],[0,0],[0.833,0.198],[0,0],[0.373,-0.3],[0,0],[0.08,-0.335],[0,0],[-0.115,-0.294],[0,0],[-0.497,-0.115],[0,0]],"o":[[0,0],[0.197,-0.833],[0,0],[-0.465,-0.11],[0,0],[-0.269,0.216],[0,0],[-0.073,0.307],[0,0],[0.186,0.475],[0,0],[0.831,0.194]],"v":[[2.98,8.973],[6.784,-7.041],[5.634,-8.907],[0.157,-10.208],[-1.172,-9.908],[-3.608,-7.952],[-4.146,-7.102],[-6.908,4.528],[-6.843,5.452],[-5.923,7.794],[-4.832,8.737],[1.12,10.124]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[960.333,557.399],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.937,0.223],[0,0],[-0.223,0.937],[0,0],[-0.937,-0.223],[0,0],[0.222,-0.937],[0,0]],"o":[[0,0],[-0.937,-0.223],[0,0],[0.222,-0.937],[0,0],[0.937,0.223],[0,0],[-0.222,0.937]],"v":[[0.448,5.308],[-2.787,4.54],[-4.08,2.44],[-2.547,-4.015],[-0.448,-5.308],[2.787,-4.54],[4.081,-2.44],[2.547,4.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[979.443,557.114],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.937,0.223],[0,0],[-0.223,0.937],[0,0],[-0.937,-0.223],[0,0],[0.223,-0.936],[0,0]],"o":[[0,0],[-0.937,-0.223],[0,0],[0.223,-0.937],[0,0],[0.937,0.223],[0,0],[-0.222,0.937]],"v":[[0.687,4.303],[-2.549,3.535],[-3.841,1.435],[-2.786,-3.01],[-0.687,-4.303],[2.549,-3.535],[3.841,-1.436],[2.786,3.009]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[977.29,567.149],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.937,0.223],[0,0],[-0.223,0.937],[0,0],[-0.937,-0.223],[0,0],[0.223,-0.936],[0,0]],"o":[[0,0],[-0.937,-0.223],[0,0],[0.223,-0.937],[0,0],[0.937,0.223],[0,0],[-0.222,0.937]],"v":[[0.687,4.303],[-2.549,3.535],[-3.841,1.435],[-2.786,-3.01],[-0.687,-4.303],[2.549,-3.535],[3.841,-1.436],[2.786,3.009]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[971.484,554.162],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.937,0.223],[0,0],[-0.223,0.937],[0,0],[-0.937,-0.223],[0,0],[0.223,-0.937],[0,0]],"o":[[0,0],[-0.937,-0.223],[0,0],[0.222,-0.936],[0,0],[0.937,0.223],[0,0],[-0.222,0.937]],"v":[[0.496,5.105],[-2.739,4.338],[-4.032,2.237],[-2.595,-3.812],[-0.496,-5.106],[2.739,-4.338],[4.032,-2.237],[2.595,3.812]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[968.957,564.414],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.832,1.148],[0,0],[-1.148,4.832],[0,0],[-4.832,-1.148],[0,0],[1.147,-4.832],[0,0]],"o":[[0,0],[-4.831,-1.147],[0,0],[1.148,-4.832],[0,0],[4.832,1.148],[0,0],[-1.148,4.832]],"v":[[82.88,85.533],[-112.49,39.128],[-119.159,28.302],[-93.706,-78.863],[-82.878,-85.533],[112.49,-39.129],[119.16,-28.302],[93.706,78.862]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1031.019,584.06],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.043,0.96],[0,0],[-0.96,4.044],[0,0],[-4.043,-0.961],[0,0],[0.96,-4.043],[0,0]],"o":[[0,0],[-4.043,-0.96],[0,0],[0.961,-4.044],[0,0],[4.043,0.96],[0,0],[-0.961,4.043]],"v":[[83.701,85.76],[-113.324,38.962],[-118.906,29.902],[-92.76,-80.177],[-83.7,-85.759],[113.324,-38.961],[118.906,-29.902],[92.76,80.178]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.031372550875,0.321568638086,0.223529413342,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1031.177,584.73],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false}],"ip":25,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"D snake part 2 Outlines","parent":23,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[327.53,-130.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.908,-5.333]],"o":[[-1.87,5.083],[0,0]],"v":[[1.073,-6.354],[-0.165,6.354]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[875.666,718.953],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-3.253,-4.386]],"o":[[0,0],[0.619,5.413],[0,0]],"v":[[-2.654,-6.578],[-2.654,-6.565],[2.653,6.578]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[849.921,724.616],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.804,-2.133],[-1.844,-1.435]],"o":[[1.04,2.607],[1.515,1.778],[0,0]],"v":[[-4.668,-5.966],[-0.521,1.25],[4.669,5.966]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[827.547,742.585],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-3.805,-4.043]],"o":[[0.751,5.491],[0,0]],"v":[[-3.522,-7.408],[3.523,7.408]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[805.436,758.723],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.264,-2.542],[-0.803,-3.042]],"o":[[-0.869,2.384],[-0.329,3.134],[0,0]],"v":[[0.889,-7.915],[-0.56,-1.474],[0.125,7.914]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[775.464,761.732],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[1.264,-4.82]],"o":[[-3.556,3.477],[0,0]],"v":[[3.701,-6.387],[-3.701,6.387]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[750.568,746.483],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.447,-4.82]],"o":[[-2.581,4.082],[0,0]],"v":[[2.318,-6.815],[-2.318,6.815]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[728.59,725.63],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.106,-1.356],[0,-2.16]],"o":[[-0.066,1.356],[0.342,4.069],[0,0]],"v":[[-0.605,-4.793],[-0.539,-0.711],[0.672,4.794]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[705.966,720.817],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-3.819,2.436],[-1.462,0.632],[-3.687,-0.118],[-4.636,-2.923],[-0.553,-0.382],[-4.543,-4.504],[-2.462,-2.502],[-6.057,-2.475],[-2.133,-0.488],[-8.257,3.595],[-3.147,2.568],[-3.542,2.752],[-8.309,6.07],[-0.922,0.566],[-0.21,0.119],[-7.388,0.264],[-2.766,-0.421],[-2.673,-1.514],[-2.054,-3.806]],"o":[[2.937,-3.45],[1.383,-0.882],[3.292,-1.409],[5.452,0.171],[0.579,0.356],[5.268,3.648],[2.463,2.449],[4.609,4.714],[2.015,0.817],[8.138,1.883],[3.45,-1.475],[3.793,-3.081],[6.558,-5.07],[0.843,-0.606],[0.211,-0.132],[6.571,-3.99],[2.159,-0.079],[3.937,0.606],[3.74,2.12],[0,0]],"v":[[-102.887,-8.033],[-95.17,-15.21],[-90.891,-17.488],[-80.422,-19.49],[-65.066,-14.315],[-63.368,-13.195],[-48.633,-0.935],[-41.31,6.624],[-25.784,18.212],[-19.555,20.175],[5.69,17.857],[15.632,11.799],[26.509,3.174],[47.961,-12.826],[50.608,-14.604],[51.227,-14.973],[73.259,-21.979],[80.91,-21.452],[91.549,-18.252],[102.888,-7.967]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[796.04,733.024],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.661,0.013],[0,0],[-33.461,-0.922],[-27.891,0.474],[-41.363,1.093],[0,0],[5.729,0.237],[0.105,0],[15.526,-0.29],[3.213,0],[4.57,-3.2],[7.283,-6.729],[9.166,-4.042],[8.297,0],[3.556,0.804],[7.862,7.348],[6.716,5.373],[6.071,0],[0,0]],"o":[[-11.615,-0.039],[0,0],[33.462,0.935],[27.892,-0.461],[35.332,-0.935],[0,0],[-0.118,0],[-4.807,-0.408],[-2.489,0.039],[-4.952,0],[-6.479,4.516],[-6.847,6.334],[-6.465,2.884],[-4.108,0],[-11.931,-2.66],[-7.599,-7.098],[-5.109,-4.109],[0,0],[-5.373,0]],"v":[[-104.105,-8.487],[-119.448,-8.592],[-75.753,-35.088],[-10.687,3.023],[68.788,-35.549],[119.448,-14.176],[101.656,-9.04],[101.328,-9.053],[78.255,-8.197],[69.723,-8.131],[55.606,-2.903],[35.43,15.217],[11.792,31.809],[-10.226,36.484],[-21.695,35.233],[-50.588,18.562],[-71.328,-1.639],[-87.789,-8.461],[-90.62,-8.461]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[797.258,734.519],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-2.16],[0,0],[3.661,0.014],[0,0],[-3.819,2.436],[-1.462,0.632],[0,0],[-0.105,-1.356]],"o":[[0,0],[-5.373,0],[0,0],[2.937,-3.45],[1.383,-0.882],[0,0],[-0.066,1.357],[0.343,4.07]],"v":[[6.742,4.813],[6.742,5.261],[-6.743,5.234],[-6.743,4.194],[0.974,-2.983],[5.254,-5.261],[5.465,-4.774],[5.53,-0.692]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[699.895,720.797],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.463,-2.502],[0,0],[1.264,-4.819],[0,0],[6.716,5.373],[0,0],[-2.581,4.082],[0,0],[-0.553,-0.382],[-4.543,-4.504]],"o":[[0,0],[-3.555,3.476],[0,0],[-7.599,-7.098],[0,0],[0.448,-4.82],[0,0],[0.579,0.355],[5.268,3.648],[2.463,2.45]],"v":[[14.4,3.753],[13.939,4.201],[6.538,16.974],[6.341,17.185],[-14.4,-3.016],[-14.058,-3.45],[-9.422,-17.08],[-9.356,-17.185],[-7.658,-16.066],[7.078,-3.806]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[740.33,735.895],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.806,-4.043],[0,0],[8.296,0],[3.555,0.804],[0,0],[-0.329,3.134],[-0.869,2.384],[0,0],[-8.257,3.595],[0,0]],"o":[[0,0],[-6.466,2.884],[-4.109,0],[0,0],[-0.803,-3.042],[0.264,-2.542],[0,0],[8.138,1.883],[0,0],[0.75,5.492]],"v":[[17.146,5.189],[17.238,5.387],[-4.78,10.06],[-16.25,8.81],[-16.224,8.705],[-16.909,-0.685],[-15.46,-7.124],[-15.328,-7.743],[9.916,-10.06],[10.101,-9.626]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[791.813,760.942],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.253,-4.385],[0,0],[7.282,-6.73],[0,0],[1.514,1.778],[1.041,2.607],[0,0],[-8.309,6.071],[-0.922,0.567],[-0.211,0.118]],"o":[[0,0],[-6.479,4.517],[0,0],[-1.844,-1.435],[-1.805,-2.133],[0,0],[6.558,-5.07],[0.843,-0.606],[0.211,-0.131],[0.619,5.412]],"v":[[14.868,-2.7],[15.158,-2.279],[-5.017,15.842],[-5.491,14.656],[-10.68,9.942],[-14.828,2.726],[-15.157,2.304],[6.294,-13.696],[8.942,-15.474],[9.561,-15.842]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[837.706,733.894],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.054,-3.806],[0,0],[0.105,0],[15.526,-0.29],[0,0],[-1.87,5.083],[0,0],[-2.674,-1.514]],"o":[[0,0],[-0.119,0],[-4.807,-0.408],[0,0],[-0.909,-5.333],[0,0],[3.938,0.606],[3.74,2.12]],"v":[[12.168,6.111],[12.155,6.532],[11.826,6.519],[-11.246,7.375],[-11.259,6.361],[-10.021,-6.347],[-9.811,-7.374],[0.83,-4.174]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[886.76,718.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.765,-0.421],[0,0],[-0.908,-5.333],[0,0],[3.213,0],[4.57,-3.2],[0,0],[0.618,5.412],[-7.388,0.264]],"o":[[0,0],[-1.87,5.083],[0,0],[-2.489,0.04],[-4.951,0],[0,0],[-3.253,-4.385],[6.571,-3.99],[2.16,-0.079]],"v":[[14.841,-9.719],[14.63,-8.692],[13.392,4.016],[13.406,5.031],[4.872,5.096],[-9.245,10.324],[-9.534,9.902],[-14.841,-3.24],[7.19,-10.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[862.108,721.291],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.844,-1.435],[0,0],[9.166,-4.043],[0,0],[0.75,5.492],[0,0],[-3.148,2.568],[-3.542,2.752],[0,0],[-1.805,-2.134]],"o":[[0,0],[-6.848,6.334],[0,0],[-3.806,-4.042],[0,0],[3.45,-1.475],[3.792,-3.081],[0,0],[1.041,2.608],[1.514,1.777]],"v":[[15.006,-2.713],[15.48,-1.528],[-8.158,15.065],[-8.25,14.867],[-15.295,0.052],[-15.48,-0.382],[-5.537,-6.44],[5.34,-15.065],[5.669,-14.644],[9.818,-7.427]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[817.209,751.263],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.133,-0.487],[0,0],[0.263,-2.541],[-0.803,-3.042],[0,0],[7.862,7.349],[0,0],[-3.555,3.477],[0,0],[-6.057,-2.476]],"o":[[0,0],[-0.869,2.383],[-0.329,3.135],[0,0],[-11.931,-2.66],[0,0],[1.265,-4.82],[0,0],[4.609,4.715],[2.015,0.816]],"v":[[14.907,-1.501],[14.775,-0.882],[13.327,5.557],[14.011,14.947],[13.985,15.052],[-14.907,-1.62],[-14.71,-1.83],[-7.309,-14.604],[-6.848,-15.052],[8.678,-3.463]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[761.578,754.7],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.635,-2.923],[0,0],[0.447,-4.82],[0,0],[6.071,0],[0,0],[0,0],[0.342,4.069],[-0.066,1.356],[0,0],[-3.687,-0.119]],"o":[[0,0],[-2.581,4.083],[0,0],[-5.109,-4.109],[0,0],[0,0],[0,-2.159],[-0.106,-1.356],[0,0],[3.292,-1.409],[5.452,0.171]],"v":[[12.912,-4.438],[12.846,-4.333],[8.211,9.297],[7.868,9.732],[-8.593,2.91],[-11.424,2.91],[-11.424,2.462],[-12.635,-3.042],[-12.701,-7.124],[-12.912,-7.612],[-2.443,-9.613]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[718.061,723.148],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.571,-3.99],[0.211,-0.132],[0.843,-0.606],[6.558,-5.07],[3.792,-3.081],[3.451,-1.475],[8.138,1.884],[2.015,0.817],[4.609,4.714],[2.463,2.449],[5.268,3.648],[0.58,0.356],[5.452,0.171],[3.293,-1.409],[1.382,-0.882],[2.936,-3.45],[0,0],[0,0],[-33.462,-0.921],[-27.891,0.474],[-41.363,1.093],[0,0],[5.728,0.237],[0,0],[3.74,2.12],[3.938,0.606],[2.16,-0.079]],"o":[[-0.211,0.119],[-0.922,0.566],[-8.309,6.07],[-3.542,2.752],[-3.148,2.568],[-8.256,3.595],[-2.134,-0.487],[-6.058,-2.475],[-2.463,-2.502],[-4.543,-4.504],[-0.553,-0.382],[-4.635,-2.923],[-3.688,-0.118],[-1.461,0.632],[-3.819,2.436],[0,0],[-11.615,-0.039],[0,0],[33.462,0.935],[27.892,-0.461],[35.331,-0.935],[0,0],[0,0],[-2.054,-3.806],[-2.673,-1.514],[-2.765,-0.421],[-7.387,0.264]],"v":[[50.008,-8.507],[49.389,-8.138],[46.742,-6.36],[25.29,9.64],[14.413,18.265],[4.47,24.323],[-20.774,26.64],[-27.003,24.678],[-42.529,13.09],[-49.851,5.531],[-64.587,-6.729],[-66.286,-7.849],[-81.64,-13.024],[-92.11,-11.022],[-96.389,-8.744],[-104.106,-1.567],[-104.106,-0.527],[-119.448,-0.632],[-75.754,-27.128],[-10.687,10.983],[68.787,-27.589],[119.447,-6.216],[101.656,-1.08],[101.669,-1.501],[90.331,-11.786],[79.69,-14.986],[72.039,-15.513]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[797.259,726.558],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":34,"ty":4,"nm":"D snake part 1 Outlines","parent":24,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[345.53,-73.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.541,-0.4],[-0.944,-1.283],[1.162,-1.627],[0.77,-0.324],[1.144,0.126],[0.377,1.487]],"o":[[0.991,-1.247],[1.542,0.399],[1.203,1.634],[-0.486,0.68],[-1.062,0.445],[-1.525,-0.169],[0,0]],"v":[[-4.126,-3.984],[0.201,-5.279],[3.841,-2.374],[3.651,3.443],[2.257,4.838],[-1.781,5.553],[-5.044,2.713]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[705.072,464.296],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-8.856],[8.856,0],[0,8.856],[-8.856,0]],"o":[[0,8.856],[-8.856,0],[0,-8.856],[8.856,0]],"v":[[16.035,0],[0,16.035],[-16.035,0],[0,-16.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[696.639,464.021],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-5.346,-7.671],[-6.743,2.561],[6.742,7.671]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[665.498,566.736],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-3.957,-7.902],[-6.275,2.792],[6.275,7.901]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[675.263,560.922],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.014,0],[-4.952,-0.856]],"o":[[0.013,0],[4.516,2.226],[0,0]],"v":[[-7.17,-2.331],[-7.13,-2.318],[7.17,2.331]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[686.009,655.868],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-5.57,0.382]],"o":[[5.452,1.172],[0,0]],"v":[[-7.736,-0.823],[7.737,0.441]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[696.399,637.202],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.701,1.949]],"o":[[5.07,-0.579],[0,0]],"v":[[-6.986,1.725],[6.986,-1.725]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[699.019,616.099],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.359,3.082]],"o":[[5.083,-1.646],[0,0]],"v":[[-6.525,3.227],[6.525,-3.227]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[694.871,596.279],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-3.819,3.108]],"o":[[4.464,-2.081],[0,0]],"v":[[-5.794,3.589],[5.794,-3.589]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[687.517,581.405],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.013,0],[-1.976,-3.753],[-1.751,-4.728],[-0.697,-2.383],[-0.079,-3.411],[2.318,-5.979],[3.714,-5.795],[2.406,-3.423]],"o":[[0,0],[2.344,3.24],[2.528,4.754],[0.975,2.62],[1.041,3.543],[0.158,6.255],[-2.265,5.846],[-2.157,3.389],[0,0]],"v":[[-7.433,-44.492],[-7.42,-44.479],[-0.914,-33.865],[5.538,-19.405],[8.053,-11.86],[9.7,-1.43],[6.21,16.875],[-2.969,34.284],[-9.858,44.492]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[681.846,619.267],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.119,-3.595],[0,-0.909],[4.452,-0.461],[0.303,0],[0,4.872],[-4.016,0.816],[-0.606,0]],"o":[[0.25,0.83],[0,4.569],[-0.302,0.027],[-4.873,0],[0,-4.267],[0.579,-0.119],[3.964,0]],"v":[[8.435,-2.621],[8.829,0],[0.901,8.797],[-0.007,8.836],[-8.83,0],[-1.785,-8.651],[-0.007,-8.836]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[653.416,543.499],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-6.203,3.569]],"o":[[3.872,6.505],[0,0]],"v":[[-12.161,-5.037],[12.161,1.468]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[722.974,492.99],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.411,1.739],[-0.567,0.263],[-2.304,1.989],[-0.882,1.014]],"o":[[0,0],[5.018,-0.132],[0.606,-0.224],[2.949,-1.317],[1.041,-0.882],[0,0]],"v":[[-13.511,5.708],[-13.406,5.708],[0.935,2.851],[2.687,2.114],[10.627,-2.865],[13.511,-5.708]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[671.74,572.675],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-3.555,0.619],[-1.422,0.395],[-3.424,2.213],[-0.856,0.658]],"o":[[4.056,0.079],[1.528,-0.264],[4.109,-1.119],[0.909,-0.566],[0,0]],"v":[[-14.874,4.266],[-3.47,3.464],[0.955,2.476],[12.227,-2.503],[14.874,-4.346]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[658.762,555.048],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-7.137,1.053],[-4.425,2.054]],"o":[[7.045,1.106],[5.136,-0.738],[0,0]],"v":[[-18.1,1.336],[3.602,1.547],[18.101,-2.601]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[647.082,527.005],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.158,-0.171],[9.929,2.897],[26.022,0],[3.253,-23.23],[-2.265,-10.232],[-1.541,-3.806],[-0.027,-0.053],[-1.186,-2.252],[-0.027,-0.053],[-2.607,-3.609],[-4.82,-5.992],[0,-16.158],[9.945,-14.063]],"o":[[0,0],[-1.238,1.33],[-11.154,-3.253],[-26.035,0],[-2.067,14.815],[0.974,4.425],[0.013,0.039],[1,2.476],[0.026,0.052],[2.212,4.174],[4.846,6.742],[8.915,11.049],[0,12.512],[0,0]],"v":[[60.523,-80.895],[60.286,-80.632],[42.864,-76.246],[-5.005,-106.456],[-58.457,-58.587],[-57.68,-21.438],[-53.874,-9.125],[-53.808,-8.967],[-50.529,-1.895],[-50.45,-1.737],[-43.168,9.891],[-28.208,28.59],[-11.984,66.911],[-29.947,106.456]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[686.542,549.793],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-2.591,3.905],[-2.37,7.045],[0,5.017],[0.289,2.845],[2.516,6.361],[2.911,4.768],[2.476,3.516],[3.345,5.412],[1.567,3.845],[0.422,5.36],[0,1.303],[-13.946,7.901],[-2.502,1.831],[0.052,0.75],[0,0]],"o":[[2.888,-4.015],[4.583,-6.913],[1.607,-4.728],[0,-3.095],[-0.804,-7.927],[-2.186,-5.583],[-2.33,-3.819],[-3.871,-5.531],[-2.212,-3.622],[-1.909,-4.662],[-0.105,-1.251],[0,-30.736],[3.726,-1.08],[12.22,-8.981],[0,0],[0,0]],"v":[[-21.252,100.648],[-12.964,88.797],[-2.126,68.005],[0.402,53.427],[-0.045,44.537],[-5.221,23.244],[-13.017,7.81],[-20.286,-3.159],[-31.374,-19.396],[-37.142,-30.524],[-40.803,-45.444],[-40.961,-49.289],[19.458,-70.675],[28.742,-75.154],[40.133,-100.621],[40.133,-100.648]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[706.696,569.783],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.54,-1.04],[1.83,0],[0,4.886],[-3.859,0.948],[-0.83,-1.949]],"o":[[0.514,1.027],[-1.409,0.961],[-4.886,0],[0,-4.148],[0.527,1.633],[0,0]],"v":[[5.307,4.082],[6.887,7.19],[1.949,8.704],[-6.887,-0.132],[-0.171,-8.705],[1.883,-3.305]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[630.785,543.973],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-4.886],[2.581,-1.541],[1.224,4.069],[-1.225,0]],"o":[[0,3.213],[-1.331,0.79],[-0.33,-1.106],[4.872,0]],"v":[[5.683,0.276],[1.272,7.94],[-5.352,-7.624],[-3.141,-8.56]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.470588265213,0.019607843137,0.019607843137,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[672.128,537.534],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":3,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.95,-1.317],[0.605,-0.223],[0,0],[0,0],[0,0],[0,0],[-3.424,2.212],[0,0],[0,0],[0,0],[0,0]],"o":[[-0.566,0.263],[0,0],[0,0],[0,0],[0,0],[4.109,-1.12],[0,0],[0,0],[0,0],[0,0],[-2.305,1.989]],"v":[[3.865,10.752],[2.114,11.49],[1.679,10.37],[-11.806,5.261],[-10.41,-4.972],[-10.845,-6.512],[0.428,-11.49],[0.744,-11.016],[-1.574,-0.323],[10.976,4.787],[11.806,5.774]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[670.562,564.036],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.951,-0.856],[0,0],[5.478,-7.888],[5.848,2.434],[-4.333,6.809]],"o":[[0,0],[-4.859,7.322],[-4.275,-1.721],[4.965,-7.032],[4.517,2.226]],"v":[[10.319,-3.555],[10.872,-3.172],[2.924,8.203],[-10.871,2.005],[-3.982,-8.203]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[682.86,661.754],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.186,-5.584],[0,0],[5.083,-1.646],[0,0],[2.528,4.754],[0,0],[-3.819,3.108],[0,0]],"o":[[0,0],[-4.359,3.082],[0,0],[-1.751,-4.728],[0,0],[4.464,-2.081],[0,0],[2.91,4.767]],"v":[[10.272,4.299],[10.193,4.325],[-2.857,10.778],[-3.819,11.134],[-10.271,-3.326],[-9.482,-3.734],[2.107,-10.911],[2.476,-11.135]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[691.204,588.727],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.803,-7.928],[0,0],[5.07,-0.58],[0,0],[1.041,3.543],[0.975,2.62],[0,0],[-4.359,3.082],[0,0]],"o":[[0,0],[-4.702,1.949],[0,0],[-0.079,-3.411],[-0.698,-2.383],[0,0],[5.084,-1.646],[0,0],[2.515,6.361]],"v":[[9.633,8.889],[8.988,8.942],[-4.984,12.392],[-5.472,12.405],[-7.118,1.975],[-9.633,-5.57],[-8.672,-5.926],[4.379,-12.379],[4.458,-12.405]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[697.018,605.432],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-3.095],[1.607,-4.728],[0,0],[5.452,1.172],[0,0],[0.158,6.255],[0,0],[-4.702,1.949]],"o":[[0.29,2.844],[0,5.017],[0,0],[-5.571,0.382],[0,0],[2.317,-5.979],[0,0],[5.07,-0.58],[0,0]],"v":[[9.073,-11.852],[9.521,-2.963],[6.992,11.615],[6.558,11.47],[-8.916,10.206],[-9.521,9.969],[-6.032,-8.336],[-5.544,-8.349],[8.428,-11.799]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[697.578,626.173],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.909,-0.567],[4.108,-1.119],[1.527,-0.263],[0,0],[0,4.569],[0.25,0.83],[0,0],[-2.213,-3.621]],"o":[[-0.856,0.658],[-3.424,2.212],[-1.423,0.395],[0,0],[4.451,-0.46],[0,-0.909],[0,0],[1.567,3.846],[0,0]],"v":[[8.817,1.818],[6.169,3.662],[-5.102,8.639],[-9.528,9.627],[-10.503,3.411],[-2.575,-5.385],[-2.969,-8.006],[4.734,-9.626],[10.503,1.502]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[664.82,548.885],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.882,-14.652],[-6.254,-3.158],[-0.121,-0.093],[-2.667,4.191],[-2.265,5.847],[0.158,6.255],[1.04,3.542],[0.974,2.621],[2.528,4.754],[2.344,3.239],[0.606,-0.224],[5.018,-0.132],[0,-16.158]],"o":[[5.143,2.709],[0.134,0.087],[3.014,-4.25],[3.713,-5.794],[2.318,-5.979],[-0.079,-3.411],[-0.698,-2.384],[-1.752,-4.727],[-1.975,-3.753],[-0.567,0.263],[-4.411,1.739],[8.916,11.048],[0,12.979]],"v":[[-17.42,36.551],[-2.295,44.442],[-2.295,44.442],[4.594,34.233],[13.772,16.824],[17.262,-1.48],[15.616,-11.91],[13.101,-19.456],[6.648,-33.915],[0.143,-44.529],[-1.609,-43.792],[-15.95,-40.934],[0.274,-2.613]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[674.284,619.317],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.425,2.054],[0,0],[-1.91,-4.662],[0,0],[3.964,0],[0.58,-0.119]],"o":[[5.136,-0.737],[0,0],[0.421,5.36],[0,0],[-1.119,-3.595],[-0.606,0],[0,0]],"v":[[-9.435,-4.056],[5.063,-8.204],[5.774,-8.27],[9.435,6.65],[1.732,8.27],[-6.71,2.054],[-8.487,2.239]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[660.119,532.609],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-5.57,0.382],[0,0],[4.583,-6.914],[0,0],[4.516,2.226],[-2.265,5.847]],"o":[[5.452,1.172],[0,0],[-2.37,7.045],[0,0],[-4.952,-0.856],[3.713,-5.794],[0,0]],"v":[[-3.062,-10.983],[12.411,-9.719],[12.846,-9.574],[2.008,11.22],[1.455,10.838],[-12.846,6.189],[-3.668,-11.22]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[691.724,647.361],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[5.136,-0.737],[7.045,1.107],[0,0],[-2.068,14.815],[-26.035,0],[-11.154,-3.253],[-1.237,1.33],[12.221,-8.981],[3.727,-1.08],[0,-30.736],[-0.105,-1.251]],"o":[[-4.425,2.054],[-7.137,1.054],[0,0],[-2.265,-10.233],[3.252,-23.229],[26.021,0],[9.929,2.897],[0.053,0.751],[-2.502,1.831],[-13.945,7.901],[0,1.304],[0,0]],"v":[[-21.656,37.932],[-36.155,42.08],[-57.857,41.869],[-57.976,41.884],[-58.752,4.733],[-5.3,-43.134],[42.568,-12.926],[59.99,-17.311],[48.599,8.158],[39.315,12.635],[-21.103,34.022],[-20.945,37.866]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[686.838,486.472],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-3.872,-5.531],[0,0],[1.041,-0.882],[0,0],[0,0],[0,0],[0,0],[-0.856,0.658]],"o":[[3.345,5.412],[0,0],[-0.882,1.015],[0,0],[0,0],[0,0],[0,0],[0.909,-0.567],[0,0]],"v":[[-2.377,-9.712],[8.711,6.525],[7.552,6.867],[4.668,9.712],[3.839,8.724],[-8.711,3.615],[-6.393,-7.078],[-6.71,-7.552],[-4.063,-9.396]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[677.699,560.098],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[5.017,-0.131],[4.846,6.742],[0,0],[-3.556,0.619],[-1.422,0.395],[0,0]],"o":[[0,0],[0,0],[-4.411,1.738],[-4.82,-5.991],[0,0],[4.056,0.079],[1.527,-0.264],[0,0],[0,0]],"v":[[0.731,1.343],[14.216,6.452],[14.65,7.572],[0.31,10.429],[-14.65,-8.27],[-14.137,-8.639],[-2.732,-9.442],[1.692,-10.43],[2.127,-8.889]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[658.025,567.953],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.305,1.988],[-0.882,1.014],[0,0],[-2.331,-3.819],[0,0],[4.464,-2.081],[0,0],[2.344,3.239]],"o":[[1.04,-0.882],[0,0],[2.476,3.516],[0,0],[-3.819,3.107],[0,0],[-1.976,-3.753],[2.95,-1.317]],"v":[[-1.685,-6.203],[1.198,-9.047],[2.357,-9.389],[9.626,1.581],[9.258,1.805],[-2.331,8.982],[-3.121,9.389],[-9.627,-1.224]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[684.053,576.013],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.119,-3.595],[0,-0.909],[4.452,-0.461],[0.303,0],[0,4.872],[-4.016,0.816],[-0.606,0]],"o":[[0.25,0.83],[0,4.569],[-0.302,0.027],[-4.873,0],[0,-4.267],[0.579,-0.119],[3.964,0]],"v":[[8.435,-2.621],[8.829,0],[0.901,8.797],[-0.007,8.836],[-8.83,0],[-1.785,-8.651],[-0.007,-8.836]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.470588265213,0.019607843137,0.019607843137,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[653.416,543.499],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.212,4.174],[0.026,0.053],[0.948,2.239],[0.013,0.04],[0.974,4.425],[0,0],[-7.138,1.053],[0,0],[0,-4.267],[-4.873,0],[-0.303,0.027],[0,0],[4.056,0.079]],"o":[[-2.607,-3.608],[-0.027,-0.053],[-1.212,-2.436],[-0.027,-0.052],[-1.541,-3.806],[0,0],[7.045,1.106],[0,0],[-4.017,0.816],[0,4.872],[0.302,0],[0,0],[-3.556,0.619],[0,0]],"v":[[1.297,15.671],[-5.985,4.043],[-6.064,3.885],[-9.343,-3.187],[-9.409,-3.345],[-13.215,-15.658],[-13.096,-15.671],[8.606,-15.46],[9.554,-9.165],[2.509,-0.513],[11.332,8.323],[12.24,8.283],[13.215,14.499],[1.811,15.302]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[642.078,544.013],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.001,2.476],[-1.211,-2.437]],"o":[[0.948,2.239],[-1.185,-2.252]],"v":[[-1.639,-3.536],[1.64,3.536]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.862745157878,0.733333333333,0.262745098039,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[634.374,544.362],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,4.886],[-3.858,0.948],[-0.829,-1.949],[-0.026,-0.052],[-1.185,-2.252],[-0.026,-0.053],[-0.54,-1.04],[1.831,0]],"o":[[0,-4.148],[0.527,1.633],[0.014,0.04],[1.001,2.476],[0.027,0.053],[0.514,1.027],[-1.41,0.961],[-4.885,0]],"v":[[-6.887,-0.132],[-0.172,-8.705],[1.883,-3.305],[1.949,-3.148],[5.228,3.924],[5.307,4.083],[6.888,7.19],[1.949,8.705]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.470588265213,0.019607843137,0.019607843137,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[630.786,543.973],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.541,-0.4],[-0.944,-1.283],[1.162,-1.626],[0.77,-0.324],[1.144,0.126],[0.377,1.487]],"o":[[0.991,-1.247],[1.542,0.399],[1.203,1.634],[-0.486,0.68],[-1.062,0.445],[-1.526,-0.169],[0,0]],"v":[[-4.126,-3.984],[0.201,-5.279],[3.841,-2.374],[3.651,3.443],[2.257,4.838],[-1.781,5.553],[-5.044,2.713]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[715.065,441.986],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":3,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-8.856],[8.856,0],[0,8.856],[-8.856,0]],"o":[[0,8.856],[-8.856,0],[0,-8.856],[8.856,0]],"v":[[16.035,0],[0,16.035],[-16.035,0],[0,-16.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[706.631,441.711],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":3,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.541,-0.4],[-0.944,-1.283],[1.162,-1.627],[0.77,-0.324],[1.144,0.126],[0.377,1.487]],"o":[[0.991,-1.247],[1.542,0.399],[1.203,1.634],[-0.485,0.68],[-1.062,0.445],[-1.525,-0.169],[0,0]],"v":[[-4.126,-3.984],[0.201,-5.279],[3.841,-2.374],[3.651,3.443],[2.257,4.838],[-1.781,5.553],[-5.044,2.713]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[729.938,458.486],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":3,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-8.856],[8.856,0],[0,8.856],[-8.856,0]],"o":[[0,8.856],[-8.856,0],[0,-8.856],[8.856,0]],"v":[[16.035,0],[0,16.035],[-16.035,0],[0,-16.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[721.504,458.211],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 40","np":3,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":35,"ty":4,"nm":"D snake part 0 Outlines","parent":25,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[297.53,-200.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[10.68,-13.508]],"o":[[6.369,-16.25],[0,0]],"v":[[11.14,13.979],[-17.508,-0.471]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[673.577,657.464],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[1.501,-1.093]],"o":[[-1.396,1.212],[0,0]],"v":[[2.18,-1.732],[-2.18,1.732]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[667.941,780.939],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-2.634,1.554]],"o":[[2.963,-0.737],[0,0]],"v":[[-4.234,1.725],[4.234,-1.725]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[652.178,763.642],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.557,1.33]],"o":[[4.741,0.29],[0,0]],"v":[[-6.354,0.474],[6.354,-0.764]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[647.292,741.255],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.014,-0.013],[-5.097,-0.211]],"o":[[0.013,0.013],[4.661,2.068],[0,0]],"v":[[-7.434,-1.745],[-7.381,-1.719],[7.434,1.745]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[649.926,717.755],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.027,-0.013],[-4.978,-1.567]],"o":[[0.026,0.013],[4.056,3.239],[0,0]],"v":[[-5.913,-3.418],[-5.847,-3.365],[5.913,3.417]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[657.65,697.409],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.027,-0.014],[-4.925,-1.672],[-0.026,-0.013]],"o":[[0.026,0.013],[4.016,3.292],[0.026,0.013],[0,0]],"v":[[-6.67,-3.529],[-6.604,-3.476],[6.604,3.503],[6.67,3.529]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[671.167,677.702],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[4.965,-7.032],[3.832,-6.861],[2.067,-7.73],[-0.053,-6.374],[-0.198,-2.515],[-1.567,-4.451],[-1.884,-2.99],[-7.203,-4.319],[-5.636,-1.277],[-5.966,0.539],[-0.158,0.013]],"o":[[-4.333,6.808],[-4.491,6.4],[-3.911,6.979],[-1.567,5.82],[0.013,2.462],[0.382,4.833],[1.185,3.345],[4.437,7.071],[4.965,2.989],[5.86,1.317],[0.158,-0.014],[0,0]],"v":[[8.493,-68.297],[-5.524,-48.404],[-18.285,-28.584],[-27.542,-6.593],[-29.926,11.659],[-29.623,19.138],[-26.871,33.282],[-22.248,42.803],[-4.392,60.146],[11.648,66.625],[29.492,67.758],[29.979,67.719]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[670.087,722.629],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.449,-28.493],[-39.967,0],[-0.461,4.648],[8.363,1.343],[8.652,6.4],[2.805,7.532],[0,6.228],[-0.105,1.62],[-1.949,6.492],[-2.95,5.728],[-4.412,6.361],[-2.296,3.189]],"o":[[-15.112,21.287],[-3.715,43.222],[23.242,0],[-4.978,0],[-9.903,-1.581],[-5.755,-4.253],[-1.725,-4.675],[0,-1.673],[0.395,-7.44],[1.923,-6.466],[3.713,-7.177],[2.312,-3.329],[0,0]],"v":[[-11.986,-77.693],[-48.805,-4.112],[14.405,77.693],[52.52,57.703],[31.524,55.702],[2.066,44.521],[-11.235,27.073],[-13.947,10.756],[-13.803,5.831],[-10.155,-15.029],[-2.714,-33.254],[9.717,-53.482],[16.662,-63.244]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[668.055,734.686],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.725,-4.675],[0,0],[2.963,-0.737],[0,0],[1.185,3.345],[0.382,4.833],[0,0],[-4.556,1.33],[0,0],[0,-1.673]],"o":[[0,0],[-2.634,1.554],[0,0],[-1.883,-2.989],[-1.567,-4.451],[0,0],[4.741,0.29],[0,0],[-0.105,1.62],[0,6.229]],"v":[[8.178,8.797],[7.77,8.955],[-0.698,12.405],[-0.803,12.471],[-5.425,2.95],[-8.178,-11.193],[-7.704,-11.233],[5.004,-12.471],[5.61,-12.444],[5.465,-7.519]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[648.642,752.961],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.096,-0.211],[0,0],[0.395,-7.44],[0,0],[4.74,0.29],[0,0],[0.013,2.462],[-1.567,5.82]],"o":[[0,0],[-1.949,6.492],[0,0],[-4.556,1.33],[0,0],[-0.197,-2.515],[-0.053,-6.374],[4.662,2.067]],"v":[[8.356,-9.528],[8.896,-9.37],[5.247,11.489],[4.641,11.463],[-8.065,12.701],[-8.541,12.74],[-8.843,5.261],[-6.459,-12.991]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[649.004,729.028],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.978,-1.567],[0,0],[1.923,-6.466],[0,0],[4.661,2.067],[-3.911,6.98]],"o":[[0,0],[-2.95,5.728],[0,0],[-5.096,-0.21],[2.067,-7.73],[4.056,3.24]],"v":[[9.62,-6.024],[11.397,-5.418],[3.956,12.807],[3.417,12.649],[-11.398,9.186],[-2.141,-12.806]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[653.943,706.851],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.491,6.4],[-4.925,-1.672],[3.714,-7.177],[0,0],[4.055,3.24]],"o":[[4.016,3.292],[-4.411,6.361],[0,0],[-4.978,-1.567],[3.832,-6.861]],"v":[[-0.224,-13.604],[12.984,-6.625],[0.553,13.604],[-1.225,12.997],[-12.984,6.215]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[664.787,687.829],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.317,-4.912],[0,0],[5.478,-7.889],[4.016,3.292],[-4.332,6.808]],"o":[[2.317,4.912],[-4.859,7.322],[-4.925,-1.673],[4.965,-7.032],[3.555,3.859]],"v":[[9.004,-6.115],[8.832,4.066],[1.887,13.828],[-11.321,6.848],[2.993,-13.827]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[675.884,667.378],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.362,1.343],[5.86,1.317],[4.964,2.989],[4.438,7.072],[1.185,3.345],[0.382,4.833],[0.014,2.463],[-1.567,5.821],[-3.911,6.98],[-4.49,6.4],[-4.12,6.344],[5.858,-4.716],[0.716,-27.224],[-34.621,0],[-0.461,4.648]],"o":[[-5.965,0.54],[-5.636,-1.278],[-7.204,-4.32],[-1.883,-2.989],[-1.567,-4.451],[-0.197,-2.515],[-0.052,-6.374],[2.068,-7.73],[3.832,-6.861],[4.624,-6.548],[-6.571,-5.67],[-15.986,22.972],[-3.234,50.365],[24.636,0],[-4.978,0]],"v":[[31.286,59.864],[13.442,58.732],[-2.597,52.253],[-20.454,34.909],[-25.076,25.388],[-27.829,11.245],[-28.132,3.765],[-25.748,-14.487],[-16.49,-36.479],[-3.73,-56.298],[10.293,-76.186],[-11.082,-75.033],[-49.043,0.051],[14.167,81.856],[52.277,61.405]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[668.293,730.523],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-5.754,-4.254],[1.501,-1.093],[0,0],[4.438,7.072],[0,0],[-2.634,1.554]],"o":[[2.805,7.533],[-1.395,1.211],[0,0],[-7.204,-4.319],[0,0],[2.963,-0.737],[0,0]],"v":[[-2.159,-10.508],[11.141,6.941],[6.782,10.404],[6.716,10.509],[-11.141,-6.834],[-11.036,-6.901],[-2.568,-10.35]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[658.979,772.267],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.396,1.212],[-9.903,-1.58],[5.86,1.317],[4.965,2.989],[0,0]],"o":[[8.652,6.4],[-5.966,0.54],[-5.636,-1.278],[0,0],[1.501,-1.093]],"v":[[-12.517,-5.86],[16.942,5.32],[-0.902,4.188],[-16.942,-2.291],[-16.876,-2.397]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[682.637,785.067],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":36,"ty":4,"nm":"D snake tongue Outlines","parent":26,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[280.53,98.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.382,2.937],[2.871,0.776],[0.198,-2.963]],"o":[[10.311,3.332],[0.395,-2.95],[-2.871,-0.764],[0,0]],"v":[[-7.592,5.912],[7.197,-1.568],[2.864,-8.48],[-3.602,-4.122]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[741.923,553.429],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.105,-0.066],[-0.46,-4.715],[4.438,-7.414],[-3.055,-6.111],[-5.228,-3.476],[-0.172,-3.845],[2.12,-1.369],[2.344,0.974],[0.513,0.593],[-0.856,1.304],[-1.488,-0.461]],"o":[[0.105,0.053],[5.136,2.805],[0.856,8.836],[-3.516,5.86],[3.042,6.084],[3.2,2.12],[0.158,3.555],[-2.12,1.383],[-0.725,-0.29],[-1.014,-1.185],[0.856,-1.303],[0,0]],"v":[[-2.055,-43.944],[-1.752,-43.773],[4.924,-28.602],[-7.112,-4.451],[-9.614,15.25],[6.202,25.047],[12.51,34.766],[9.257,42.351],[1.975,42.97],[-0.198,41.271],[-0.343,36.675],[3.752,35.187]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[737.189,538.402],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":37,"ty":4,"nm":"D fingers Outlines","parent":28,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[16.53,-155.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[33.797,-16.098],[0,0],[0,0],[0,0]],"o":[[-4.782,-0.683],[0,0],[0,0],[0,0]],"v":[[4.95,41.051],[-32.306,35.728],[-38.747,-29.592],[6.274,-41.051]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960784314,0.266666666667,0.239215701234,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1023.056,748.927],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-4.66,17.369]],"o":[[-5.931,13.98],[0,0],[0,0],[0.847,-1.271]],"v":[[9.744,-18.005],[16.099,10.803],[-4.237,18.005],[-11.438,-10.379]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1064.016,757.71],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-46.319,6.778],[-2.26,10.732],[19.205,0.565],[42.364,-20.334]],"o":[[0,0],[35.927,-5.258],[2.259,-10.733],[-19.206,-0.565],[0,0]],"v":[[-82.469,31.349],[-0.565,3.672],[80.21,-3.107],[52.532,-26.267],[-57.051,-11.016]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960784314,0.266666666667,0.239215701234,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1110.475,758.628],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[17.3,-5.462],[-17.3,5.462]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.690196078431,0.850980451995,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1075.593,790.319],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.714,4.149],[-3.714,-4.149]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.690196078431,0.850980451995,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1073.766,797.087],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3.872,17.554],[5.989,5.391],[-5.989,-17.553]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.690196078431,0.850980451995,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1075.441,782.677],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[2.308,11.83],[-2.308,-11.83]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.690196078431,0.850980451995,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1066.604,778.913],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-11.337,-17.571],[-17.26,11.377],[-8.283,19.531],[14.65,12.113],[17.26,0.202],[-6.18,-19.531]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.690196078431,0.850980451995,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1075.633,784.655],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-46.319,6.778],[-2.26,10.732],[19.205,0.565],[42.364,-20.334]],"o":[[0,0],[35.927,-5.258],[2.259,-10.733],[-19.206,-0.565],[0,0]],"v":[[-82.469,31.349],[-0.564,3.672],[80.211,-3.107],[52.532,-26.267],[-57.051,-11.016]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960784314,0.266666666667,0.239215701234,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1102.484,744.395],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-46.319,6.778],[-2.26,10.732],[19.205,0.565],[42.364,-20.334]],"o":[[0,0],[35.927,-5.258],[2.259,-10.733],[-19.206,-0.565],[0,0]],"v":[[-82.469,31.349],[-0.565,3.672],[80.21,-3.106],[52.532,-26.266],[-57.051,-11.016]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960784314,0.266666666667,0.239215701234,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1086.526,730.162],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":3,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-6.215,0.91],[-2.259,10.732],[19.205,0.565],[42.365,-20.335],[0,0]],"o":[[5.769,-1.333],[35.927,-5.257],[2.26,-10.732],[-19.205,-0.565],[0,0],[0,0]],"v":[[-20.666,18.94],[-2.661,15.534],[78.114,8.755],[50.436,-14.404],[-59.147,0.847],[-80.373,12.354]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960784314,0.266666666667,0.239215701234,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1069.064,704.066],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":38,"ty":4,"nm":"D main Outlines","parent":29,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[449.53,-167.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.439,-5.557],[19.211,1.24],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-19.831,7.436],[-27.765,-6.588]],"o":[[-3.718,6.197],[-19.211,-1.239],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[19.018,-7.132],[20.148,4.682]],"v":[[220.523,33.637],[187.971,41.19],[111.128,41.784],[102.747,41.784],[61.844,41.784],[19.358,41.784],[-54.58,41.784],[-75.043,41.784],[-134.046,41.784],[-227.078,41.784],[-227.078,-24.679],[-137.189,-24.679],[-75.043,-24.679],[-54.58,-24.679],[19.358,-24.679],[42.184,-24.679],[80.724,-24.679],[102.747,-24.679],[139.014,-31.935],[206.93,-35.842]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.501960784314,0.266666666667,0.239215701234,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[784.515,750.733],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":39,"ty":4,"nm":"D snake part 4 Outlines","parent":21,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[98.53,-191.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.333,1.554]],"o":[[3.108,2.476],[0,0]],"v":[[-6.044,-1.547],[6.044,-0.006]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[916.245,808.659],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.066,-0.079],[-5.149,0.895]],"o":[[0.066,0.092],[3.055,3.477],[0,0]],"v":[[-6.038,-1.995],[-5.827,-1.745],[6.038,1.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[915.936,830.177],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.649,-1.238]],"o":[[0.553,4.491],[0,0]],"v":[[-4.918,-5.807],[4.919,5.807]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[911.168,849.015],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.746,-9.126]],"o":[[-9.297,2.476],[0,0]],"v":[[8.014,-9.6],[-7.268,9.6]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[875.026,850.694],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.03,-6.189]],"o":[[-5.834,7.427],[0,0]],"v":[[2.917,-11.464],[2.298,11.464]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[892.416,859.161],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.026,-3.476],[0.092,-12.814],[0.013,-0.421],[3.687,-7.282],[0.513,-0.856],[8.02,-0.46],[1.356,0.224]],"o":[[0.132,8.533],[-0.027,5.413],[0,0.408],[-0.198,8.191],[-0.448,0.896],[-4.201,7.071],[-1.343,0.079],[0,0]],"v":[[15.414,-39.341],[15.546,-22.92],[15.256,-1.534],[15.23,-0.297],[9.646,23.474],[8.211,26.107],[-11.503,39.263],[-15.572,39.052]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[906.875,831.572],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.053,15.552],[6.097,-0.119],[0,-0.106],[-0.066,-2.897],[-0.039,-2.067],[0.026,-5.86],[0,0],[0,0]],"o":[[-0.039,-12.55],[0,0],[-6.295,0.131],[0,3.252],[0.039,1.896],[0.079,3.925],[0,0],[0,0],[0,0]],"v":[[12.557,15.341],[12.24,-15.341],[0.138,-15.117],[-12.557,-14.723],[-12.438,-5.729],[-12.32,0.157],[-12.214,14.406],[-12.214,15.025],[-12.214,15.341]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[922.138,806.954],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.013,-2.278],[1.791,-5.768],[4.978,-4.108],[9.534,0.25],[0.224,0.013],[1.027,0.079],[6.242,6.058]],"o":[[0,0],[0,1.804],[-0.026,5.65],[-2.054,6.598],[-7.401,6.111],[-0.224,0],[-1.027,-0.027],[-8.665,-0.75],[0,0]],"v":[[33.344,-24.395],[33.344,-24.316],[33.331,-18.206],[30.709,-0.586],[20.319,16.191],[-5.979,24.145],[-6.651,24.119],[-9.732,23.934],[-33.344,13.636]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[901.351,846.69],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.039,-2.042],[0.237,-1.962],[1.962,-2.147],[4.517,0.184],[1.739,0.461],[1.633,2.489]],"o":[[0.026,2.028],[0.04,1.988],[-0.448,3.687],[-2.581,2.831],[-1.567,-0.053],[-3.239,-0.856],[0,0]],"v":[[13.32,-12.563],[13.504,-6.426],[13.294,-0.487],[9.593,8.31],[-1.258,12.379],[-6.236,11.602],[-13.544,6.255]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[896.604,834.858],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.567,-0.053],[0,0],[-4.03,-6.19],[0,0],[1.027,0.079],[6.242,6.057],[0.5,0.566],[0,0],[-9.297,2.476],[0,0],[-3.239,-0.856]],"o":[[0,0],[-5.834,7.427],[0,0],[-1.027,-0.026],[-8.665,-0.751],[-0.54,-0.527],[0,0],[0.303,-7.44],[0,0],[1.632,2.488],[1.738,0.461]],"v":[[13.939,-8.724],[13.926,-8.263],[13.307,14.664],[13.294,14.848],[10.212,14.664],[-13.399,4.366],[-13.366,4.333],[-13.65,2.272],[0.915,-14.15],[1.653,-14.847],[8.961,-9.501]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[881.407,855.962],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.649,-1.238],[0,0],[0.514,-0.856],[8.019,-0.461],[0.224,0.013],[0,0],[-5.834,7.427],[0,0],[-2.581,2.831],[0,0]],"o":[[0,0],[-0.448,0.895],[-4.201,7.071],[-0.224,0],[0,0],[-4.03,-6.19],[0,0],[4.517,0.184],[0,0],[0.553,4.491]],"v":[[13.076,-2.18],[13.511,-1.956],[12.075,0.679],[-7.638,13.833],[-8.31,13.807],[-8.297,13.623],[-7.678,-9.304],[-7.665,-9.764],[3.186,-13.833],[3.239,-13.794]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[903.01,857.002],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.149,0.895],[0,0],[3.687,-7.283],[0,0],[0.554,4.49],[0,0],[-0.447,3.687],[0.039,1.988]],"o":[[0,0],[-0.198,8.191],[0,0],[-4.649,-1.238],[0,0],[1.962,-2.146],[0.237,-1.962],[3.055,3.476]],"v":[[7.822,-10.463],[7.954,-10.463],[2.37,13.307],[1.936,13.083],[-7.902,1.468],[-7.954,1.428],[-4.254,-7.368],[-4.043,-13.307]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[914.151,841.74],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.333,1.554],[0,0],[0.092,-12.813],[0.013,-0.421],[0,0],[3.055,3.476],[0.026,2.028],[0,0],[0,0],[0.079,3.925],[0,0]],"o":[[0,0],[-0.027,5.412],[0,0.408],[0,0],[-5.149,0.895],[-0.04,-2.042],[0,0],[0,0],[0.026,-5.86],[0,0],[3.108,2.476]],"v":[[6.169,-10.989],[6.301,-10.989],[6.011,10.397],[5.985,11.635],[5.853,11.635],[-6.012,8.791],[-6.196,2.654],[-6.196,2.338],[-6.196,1.719],[-6.302,-12.53],[-5.92,-12.53]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[916.12,819.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.026,-3.476],[0,0],[3.108,2.475],[0,0],[0.039,1.897],[0,3.253],[-6.295,0.132]],"o":[[0.132,8.533],[0,0],[-4.333,1.554],[0,0],[-0.039,-2.068],[-0.066,-2.897],[0,-0.105],[0,0]],"v":[[6.275,-8.79],[6.407,7.631],[6.275,7.631],[-5.814,6.091],[-6.196,6.091],[-6.314,0.204],[-6.433,-8.79],[6.262,-9.185]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[916.014,801.021],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.039,-12.55],[0,0],[0.013,-2.278],[1.791,-5.768],[4.978,-4.108],[9.534,0.25],[-4.201,7.071],[-0.448,0.895],[-0.198,8.191],[0,0.408],[-0.027,5.413],[0.132,8.533],[0,0],[0,0]],"o":[[0,0],[0,1.804],[-0.026,5.65],[-2.054,6.598],[-7.401,6.111],[8.02,-0.461],[0.513,-0.856],[3.687,-7.283],[0.013,-0.421],[0.092,-12.813],[0.026,-3.476],[0,0],[6.097,-0.119],[-0.053,15.552]],"v":[[19.661,-9.053],[19.661,-8.974],[19.648,-2.865],[17.027,14.755],[6.637,31.532],[-19.661,39.487],[0.053,26.332],[1.488,23.698],[7.072,-0.073],[7.098,-1.31],[7.388,-22.696],[7.256,-39.117],[7.243,-39.512],[19.345,-39.736]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[915.034,831.349],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":40,"ty":4,"nm":"D snake part 3 Outlines","parent":22,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[140.53,-258.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[6.654,-3.853]],"o":[[0.466,8.748],[0,0]],"v":[[3.483,-9.596],[-3.948,9.596]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[922.859,820.924],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.303,-0.921]],"o":[[1.541,1.238],[0,0]],"v":[[-1.08,-2.318],[0.777,2.318]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[983.485,856.218],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.935,-1.554]],"o":[[0.935,3.095],[0,0]],"v":[[-0.158,-3.562],[-0.777,3.562]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[969.855,859.319],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.358,-1.238]],"o":[[0,0],[-0.053,3.7],[0,0]],"v":[[2.785,-4.958],[2.785,-4.813],[-2.785,4.958]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[952.966,854.21],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.687,-1.356]],"o":[[-1.857,5.268],[0,0]],"v":[[4.8,-4.807],[-4.8,4.807]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[941.035,844.445],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.713,-5.267]],"o":[[0,0],[4.333,4.965],[0,0]],"v":[[-2.476,-8.988],[-2.476,-8.974],[-1.238,8.987]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[901.219,808.343],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[1.646,-8.23],[0.013,-0.079]],"o":[[6.137,0.922],[-0.014,0.079],[0,0]],"v":[[-7.045,-7.592],[5.399,7.341],[5.346,7.592]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[881.308,813.453],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-7.282,0.079],[-2.12,-1.199]],"o":[[3.358,-6.466],[3.516,-0.039],[0,0]],"v":[[-11.154,4.49],[3.002,-4.451],[11.154,-1.698]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[868.68,830.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[8.36,7.891]],"o":[[10.57,16.586],[0,0]],"v":[[2.231,-13.562],[-12.801,5.671]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[880.809,854.656],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[9.025,6.506]],"o":[[-7.49,-7.29],[0,0]],"v":[[11.154,12.083],[-11.154,-12.082]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[921.052,834.062],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.5,0.566],[1.514,5.044],[0.026,3.358],[-0.013,0.935],[-8.915,5.61],[-0.277,0.145],[-8.678,-0.369],[-1.554,-0.198],[-7.365,-10.674]],"o":[[-0.54,-0.527],[-3.529,-3.924],[-0.962,-3.305],[-0.027,-0.922],[0.184,-10.521],[0.277,-0.171],[7.427,-4.412],[1.567,0.052],[15.359,1.957],[0,0]],"v":[[-28.411,30.664],[-29.979,29.031],[-37.656,15.242],[-38.894,5.326],[-38.894,2.534],[-23.395,-24.013],[-22.578,-24.5],[2.324,-30.294],[6.999,-29.912],[38.92,-7.289]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[896.419,829.663],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.896,-3.081],[-1.844,-2.476],[-3.582,-2.752],[-4.28,-0.882],[-0.816,-0.079],[-3.977,1.58],[-2.015,1.462],[-2.344,6.65],[-0.092,0.303]],"o":[[1.962,3.108],[1.581,2.568],[2.818,3.766],[3.41,2.621],[0.803,0.158],[4.227,0.408],[2.318,-0.908],[5.86,-4.28],[0.106,-0.29],[0,0]],"v":[[-32.823,-16.625],[-27.095,-7.263],[-21.972,0.375],[-12.411,10.396],[-0.915,15.849],[1.508,16.217],[14.018,14.36],[20.55,10.766],[32.52,-4.049],[32.823,-4.932]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[968.163,839],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.514,3.437],[-0.132,0.5],[-2.858,1.922],[-1.725,0.553],[-2.87,-0.343],[-0.791,-0.237],[-2.594,-2.199]],"o":[[-2.041,-3.108],[0.079,-0.54],[0.856,-3.608],[1.33,-0.935],[2.554,-0.816],[0.883,0.105],[3.121,0.948],[0,0]],"v":[[-12.016,11.852],[-14.307,1.396],[-13.992,-0.158],[-8.369,-8.467],[-3.773,-10.693],[4.865,-11.509],[7.381,-10.996],[14.821,-7.282]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[895.076,829.262],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.922,-0.869],[-0.316,-0.276],[-5.162,-2.45],[-4.675,-0.276],[-1.962,0.093],[-2.305,0.592],[-2.357,1.278],[-2.699,2.594],[0.184,6.598]],"o":[[0.896,0.895],[0.303,0.29],[4.24,3.885],[4.227,1.988],[1.752,0.106],[2.686,-0.144],[2.778,-0.712],[3.095,-1.659],[4.754,-4.57],[0,0]],"v":[[-34.404,-2.917],[-31.678,-0.257],[-30.743,0.599],[-16.56,10.397],[-3.168,13.952],[2.482,13.965],[10.212,12.886],[17.876,9.909],[26.462,3.523],[34.219,-14.058]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[966.609,849.061],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.041,-3.107],[0.064,-2.181],[8.559,0.287],[2.139,2.685],[1.514,5.043],[0.026,3.358],[-7.282,0.079],[-2.12,-1.198],[0,0],[0.079,-0.54]],"o":[[2.132,3.801],[-0.607,7.442],[-2.598,0.088],[-3.529,-3.925],[-0.962,-3.306],[3.358,-6.466],[3.516,-0.039],[0,0],[-0.132,0.501],[-0.514,3.437]],"v":[[11.081,-3.491],[14.39,5.634],[1.514,18.309],[-5.538,14.09],[-13.215,0.302],[-14.453,-9.615],[-0.297,-18.556],[7.855,-15.804],[9.106,-15.501],[8.79,-13.948]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[871.979,844.605],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[1.646,-8.23],[0.856,-3.608],[0,0],[3.516,-0.04],[3.358,-6.466],[-0.014,0.935],[-8.915,5.61],[-0.277,0.145]],"o":[[6.137,0.922],[-2.858,1.923],[0,0],[-2.12,-1.198],[-7.282,0.079],[-0.027,-0.921],[0.184,-10.522],[0.277,-0.171],[0,0]],"v":[[1.337,-14.216],[13.781,0.718],[8.158,9.027],[6.906,8.724],[-1.245,5.973],[-15.4,14.914],[-15.4,12.122],[0.099,-14.427],[0.916,-14.914]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[872.926,820.076],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.678,-0.369],[3.713,-5.267],[0,0],[2.554,-0.816],[1.33,-0.935],[6.137,0.922],[0,0]],"o":[[4.333,4.965],[0,0],[-2.87,-0.343],[-1.725,0.553],[1.646,-8.231],[0,0],[7.427,-4.411]],"v":[[9.976,-10.529],[11.214,7.433],[11.174,7.855],[2.536,8.672],[-2.06,10.898],[-14.505,-4.036],[-14.927,-4.734]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[888.768,809.897],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.039,-2.067],[5.5,-2.986],[0,-0.211],[0,0],[3.121,0.949],[0.882,0.105],[0,0],[4.332,4.965],[-1.554,-0.197],[-2.292,-0.645],[0,0]],"o":[[0.684,10.362],[0,0.198],[0,0],[-2.595,-2.199],[-0.79,-0.237],[0,0],[3.713,-5.268],[1.567,0.053],[2.37,0.29],[0,0],[8.539,3.677]],"v":[[13.457,-3.715],[6.026,15.477],[-2.961,6.936],[-2.987,6.936],[-10.427,3.222],[-12.943,2.71],[-12.902,2.289],[-14.141,-15.674],[-9.466,-15.292],[-3.302,-13.818],[-3.185,-13.818]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[912.884,815.043],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.844,-2.476],[0,0],[3.688,-1.357],[0,0],[0.303,0.29],[0.895,0.895],[0,0],[0.072,16.208],[-2.476,-3.074],[0,0],[-1.896,-3.081]],"o":[[0,0],[-1.856,5.268],[0,0],[-0.316,-0.277],[-0.922,-0.869],[0,0],[2.822,-2.087],[0.924,0.621],[2.475,3.073],[1.962,3.108],[1.581,2.568]],"v":[[13.641,8.715],[13.284,8.979],[3.684,18.593],[3.316,19],[2.381,18.144],[-0.345,15.484],[-13.641,-0.141],[-6.194,-19],[-0.345,-12.81],[2.789,-8.286],[8.517,1.078]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[932.55,830.66],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.582,-2.752],[3.358,-1.238],[0,0],[4.241,3.885],[0,0],[-1.857,5.267],[0,0]],"o":[[-0.053,3.7],[0,0],[-5.162,-2.449],[0,0],[3.687,-1.356],[0,0],[2.818,3.766]],"v":[[9.943,-0.02],[4.372,9.751],[4.24,10.041],[-9.943,0.243],[-9.574,-0.165],[0.026,-9.778],[0.382,-10.041]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[945.809,849.417],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.935,-1.554],[0,0],[1.751,0.105],[4.227,1.989],[0,0],[-0.052,3.701],[-4.28,-0.882],[-0.817,-0.079]],"o":[[0.935,3.095],[0,0],[-1.962,0.092],[-4.675,-0.277],[0,0],[3.358,-1.238],[3.411,2.621],[0.803,0.158],[0,0]],"v":[[9.357,-0.5],[8.737,6.624],[8.75,6.769],[3.102,6.756],[-10.292,3.2],[-10.16,2.911],[-4.59,-6.861],[6.907,-1.409],[9.331,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[960.341,856.257],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.303,-0.922],[0,0],[2.778,-0.711],[2.686,-0.145],[0,0],[0.935,3.095],[0,0],[-3.977,1.58],[0,0]],"o":[[0,0],[-2.357,1.277],[-2.305,0.592],[0,0],[0.935,-1.554],[0,0],[4.227,0.409],[0,0],[1.541,1.237]],"v":[[7.44,0.342],[7.664,0.777],[0,3.753],[-7.73,4.833],[-7.744,4.688],[-7.125,-2.437],[-7.151,-2.977],[5.359,-4.833],[5.583,-4.293]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[976.821,858.194],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[4.753,-4.569],[3.094,-1.659],[0,0],[1.541,1.238],[0,0],[-2.015,1.462],[-2.344,6.651]],"o":[[0.184,6.598],[-2.7,2.595],[0,0],[0.303,-0.922],[0,0],[2.318,-0.908],[5.86,-4.28],[0,0]],"v":[[9.232,-11.957],[1.476,5.623],[-7.11,12.01],[-7.334,11.576],[-9.191,6.94],[-9.415,6.4],[-2.883,2.805],[9.087,-12.01]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[991.597,846.96],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":48,"st":0,"ct":1,"bm":0}]},{"id":"comp_3","nm":"hands3-comp","fr":24,"layers":[{"ddd":0,"ind":2,"ty":3,"nm":"D hand peg","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.638,"y":0.911},"o":{"x":0.167,"y":0.167},"t":5,"s":[966,223.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.68,"y":1},"o":{"x":0.229,"y":1},"t":24,"s":[966,536.986,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.799,"y":0},"o":{"x":0.319,"y":0},"t":31,"s":[966,543.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.362,"y":0.085},"t":39,"s":[966,536.574,0],"to":[0,0,0],"ti":[0,0,0]},{"t":56,"s":[966,223.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":3,"nm":"E hand peg","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.638,"y":0.911},"o":{"x":0.167,"y":0.167},"t":5,"s":[966,843.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.68,"y":1},"o":{"x":0.229,"y":1},"t":24,"s":[966,549.608,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.799,"y":0},"o":{"x":0.319,"y":0},"t":31,"s":[966,543.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.362,"y":0.085},"t":39,"s":[966,549.994,0],"to":[0,0,0],"ti":[0,0,0]},{"t":56,"s":[966,843.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":3,"nm":"D finger 1 peg","parent":11,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[-14]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[-19]},{"i":{"x":[0.667],"y":[0.364]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[-19]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.086]},"t":23,"s":[-18.184]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[0]},{"t":30,"s":[-4]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":12,"s":[-32.14,12.995,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":20,"s":[-32.14,12.995,0],"to":[0.002,-0.024,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.366},"o":{"x":0.333,"y":0},"t":22,"s":[-32.14,12.995,0],"to":[0.002,-0.024,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.086},"t":23,"s":[-32.133,12.909,0],"to":[0,0,0],"ti":[-0.022,0.309,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":26,"s":[-32,11,0],"to":[0,0,0],"ti":[0,0,0]},{"t":30,"s":[-32,11,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":22,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"D finger 2 peg","parent":11,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[-18]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[-23]},{"i":{"x":[0.667],"y":[0.364]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[-23]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.086]},"t":23,"s":[-22.012]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[0]},{"t":30,"s":[-5]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-63.791,8.007,0],"to":[-0.07,0.663,0],"ti":[0.035,-0.499,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":20,"s":[-64.209,11.985,0],"to":[-0.001,0.021,0],"ti":[0.035,-0.499,0]},{"i":{"x":0.667,"y":0.366},"o":{"x":0.333,"y":0},"t":22,"s":[-64.209,11.985,0],"to":[-0.001,0.021,0],"ti":[0.001,-0.014,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.086},"t":23,"s":[-64.212,12.038,0],"to":[-0.015,0.325,0],"ti":[-0.033,-0.002,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26,"s":[-64,11,0],"to":[0.035,0.002,0],"ti":[0,-0.167,0]},{"t":30,"s":[-64,12,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":22,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":3,"nm":"D finger 3 peg","parent":11,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[-23]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[-27]},{"i":{"x":[0.667],"y":[0.364]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[-27]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.086]},"t":23,"s":[-25.84]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[0]},{"t":30,"s":[-4]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-92.791,7.007,0],"to":[-0.122,1.16,0],"ti":[0.035,-0.499,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":20,"s":[-93.522,13.969,0],"to":[-0.006,0.081,0],"ti":[0.035,-0.499,0]},{"i":{"x":0.667,"y":0.365},"o":{"x":0.333,"y":0},"t":22,"s":[-93.522,13.969,0],"to":[-0.006,0.081,0],"ti":[-0.017,0.13,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.086},"t":23,"s":[-93.503,13.877,0],"to":[0.088,-0.672,0],"ti":[-0.073,0.205,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26,"s":[-93,10,0],"to":[0.087,-0.245,0],"ti":[0,-0.417,0]},{"t":30,"s":[-93,12.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":22,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":3,"nm":"D pinky peg","parent":11,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[9]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[4]},{"i":{"x":[0.667],"y":[0.364]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[4]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.086]},"t":23,"s":[3.828]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[0]},{"t":30,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":12,"s":[-128,7,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":20,"s":[-128,7,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":22,"s":[-128,7,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":23,"s":[-128,7,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":26,"s":[-128,7,0],"to":[0,0,0],"ti":[0,0,0]},{"t":30,"s":[-128,7,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":22,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":3,"nm":"D thumb","parent":11,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[0]},{"i":{"x":[0.651],"y":[-0.912]},"o":{"x":[0.315],"y":[0]},"t":20,"s":[0]},{"i":{"x":[0.832],"y":[0.95]},"o":{"x":[0.373],"y":[0.059]},"t":23,"s":[-0.753]},{"t":25,"s":[-18]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":12,"s":[19,80,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.651,"y":0.651},"o":{"x":0.315,"y":0.315},"t":20,"s":[19,80,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.373,"y":0.373},"t":23,"s":[19,80,0],"to":[0,0,0],"ti":[0,0,0]},{"t":25,"s":[19,80,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.651,0.651,0.651],"y":[1,1,1]},"o":{"x":[0.315,0.315,0.315],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.832,0.832,0.832],"y":[1,1,1]},"o":{"x":[0.373,0.373,0.373],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"t":25,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":26,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":3,"nm":"D thumb 2","parent":11,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[0]},{"i":{"x":[0.667],"y":[-0.909]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.033]},"t":23,"s":[-0.172]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[-10]},{"t":30,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":12,"s":[12,84,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.824,"y":0},"o":{"x":0.333,"y":0},"t":20,"s":[12,84,0],"to":[0,0.011,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.033},"t":23,"s":[12.002,84.043,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26,"s":[12.087,86.498,0],"to":[0,0,0],"ti":[0.015,0.416,0]},{"t":30,"s":[12,84,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":26,"op":61,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":3,"nm":"D main sleeve peg","parent":2,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[123,-475,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":3,"nm":"D main hand peg","parent":2,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[-4]},{"i":{"x":[0.667],"y":[-0.909]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[-6]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.086]},"t":23,"s":[-5.656]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[2]},{"t":30,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":12,"s":[56,-230,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":20,"s":[56,-230,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":23,"s":[56,-230,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":26,"s":[56,-230,0],"to":[0,0,0],"ti":[0,0,0]},{"t":30,"s":[56,-230,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":23,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":3,"nm":"coin 1 peg","parent":2,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[-12]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[-12]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[-1]},{"t":30,"s":[12]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-81,-207,0],"to":[0,2,0],"ti":[0,-13.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":20,"s":[-81,-195,0],"to":[0,13.167,0],"ti":[0,-40.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":26,"s":[-81,-128,0],"to":[0,40.167,0],"ti":[0,-29,0]},{"t":30,"s":[-81,46,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":3,"nm":"coin 2 peg","parent":2,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[13]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[13]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[0]},{"t":30,"s":[-11]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-69,-213,0],"to":[0,2,0],"ti":[0,-9.5,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":20,"s":[-69,-201,0],"to":[0,9.5,0],"ti":[0,-32.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":26,"s":[-69,-156,0],"to":[0,32.167,0],"ti":[0,-24.667,0]},{"t":30,"s":[-69,-8,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":3,"nm":"coin 3 peg","parent":2,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[6]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[6]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[6]},{"t":30,"s":[20]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-109,-245,0],"to":[0,2,0],"ti":[0,-10.333,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":20,"s":[-109,-233,0],"to":[0,10.333,0],"ti":[0,-28,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":26,"s":[-109,-183,0],"to":[0,28,0],"ti":[0,-19.667,0]},{"t":30,"s":[-109,-65,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":3,"nm":"coin 4 peg","parent":2,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[0]},{"t":30,"s":[-31]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-78,-227,0],"to":[0,2,0],"ti":[0,-5.333,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":20,"s":[-78,-215,0],"to":[0,5.333,0],"ti":[0,-18.667,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":26,"s":[-78,-195,0],"to":[0,18.667,0],"ti":[0,-15.333,0]},{"t":30,"s":[-78,-103,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":12,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":26,"s":[100,100,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"D finger 1 Outlines","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[75.53,318.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[11.635,4.094],[0,0],[-10.127,-8.188],[-1.939,10.127]],"o":[[0.431,15.728],[0,0],[5.171,-5.818],[-6.249,-4.309]],"v":[[-4.94,-19.93],[-17.037,12.357],[2.601,19.93],[17.037,-8.942]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[921.029,264.708],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[7.993,0.136],[7.153,-12.707],[9.337,-0.395],[2.482,5.418],[-0.943,5.885],[-13.178,9.418],[-15.963,-2.755],[-12.065,-6.895]],"o":[[-5.678,-5.628],[-14.579,-0.249],[-4.584,8.144],[-5.955,0.252],[-2.483,-5.418],[2.563,-15.994],[13.178,-9.419],[17.053,2.942],[0,0]],"v":[[31.138,6.841],[9.838,-2.852],[-23.885,21.547],[-43.036,40.184],[-56.941,30.667],[-58.447,13.113],[-33.521,-27.128],[12.624,-37.681],[59.424,-15.317]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[894.154,279.918],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-20.263,-8.945],[20.263,8.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.992156922583,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[936.282,230.155],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-0.058,-6.798],[0.058,6.798]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[943.414,225.425],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0.058,6.798],[-0.058,-6.798]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.992156922583,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[943.415,225.425],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[9.637,-20.067],[-2.113,-10.625],[-9.637,20.067]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.992156922583,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[931.228,238.136],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[7.424,-12.706],[-7.425,12.706]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.992156922583,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[935.324,247.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-8.447,24.084],[20.327,2.324],[18.676,-12.388],[-8.329,-24.084],[-20.327,-15.271],[-14.755,21.722]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.992156922583,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[936.346,236.482],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"D finger 2 Outlines","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[107.53,318.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[17.054,2.943],[13.178,-9.418],[2.562,-15.994],[-2.483,-5.418],[-5.955,0.251],[-4.584,8.144],[-14.58,-0.248],[-5.678,-5.627]],"o":[[-14.345,-9.68],[-15.962,-2.754],[-13.178,9.419],[-0.943,5.884],[2.483,5.418],[9.337,-0.395],[7.152,-12.706],[7.993,0.136],[0,0]],"v":[[59.18,-15.144],[12.868,-37.681],[-33.276,-27.129],[-58.202,13.113],[-56.697,30.667],[-42.791,40.184],[-23.64,21.546],[10.083,-2.853],[31.383,6.84]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[867.521,279.918],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"D finger 3 Outlines","parent":6,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[136.53,319.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[17.054,2.943],[13.178,-9.418],[2.562,-15.994],[-2.483,-5.418],[-5.955,0.251],[-4.584,8.144],[-14.58,-0.248],[-5.678,-5.627]],"o":[[-14.345,-9.68],[-15.962,-2.754],[-13.178,9.419],[-0.943,5.884],[2.483,5.418],[9.337,-0.395],[7.152,-12.706],[7.993,0.136],[0,0]],"v":[[59.18,-15.144],[12.868,-37.681],[-33.276,-27.129],[-58.202,13.113],[-56.697,30.667],[-42.791,40.184],[-23.64,21.546],[10.083,-2.853],[31.383,6.84]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[841.132,279.918],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"D pinky Outlines","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[171.53,322.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[10.916,-2.298],[1.488,-19.518],[-13.98,0],[-26.443,1.887]],"o":[[-26.874,-0.677],[-20.857,6.285],[0,13.941],[16.662,0],[0,0]],"v":[[57.632,-26.759],[-18.928,-4.74],[-57.631,9.724],[-29.271,27.435],[52.596,7.555]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[798.776,279.467],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"D thumb Outlines","parent":8,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[24.53,249.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[16.25,1.089],[9.048,0.563],[-3.32,10.36],[-13.441,-3.611],[-4.696,8.024]],"o":[[-23.41,1.998],[-16.25,-1.089],[-10.858,-0.675],[3.32,-10.36],[11.837,3.21],[0,0]],"v":[[59.808,18.332],[-0.716,17.472],[-42.042,18.79],[-56.487,-3.993],[-24.79,-16.719],[6.105,-18.524]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[943.542,335.971],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":26,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"D thumb 2 Outlines","parent":9,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[31.53,245.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[19.65,-15.515],[9.048,0.563],[-3.32,10.36],[-9.871,4.574],[-1.822,10.484]],"o":[[-23.557,-2.873],[-7.115,5.618],[-10.859,-0.675],[3.32,-10.36],[9.656,-4.473],[0,0]],"v":[[56.069,2.263],[-15.701,20.029],[-38.889,32.839],[-52.748,8.16],[-29.855,-13.759],[-6.443,-33.402]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[947.281,352.04],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":26,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"coin 1 Outlines","parent":12,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[186.53,25.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.768,-0.377]],"o":[[0,0],[0,0]],"v":[[3.652,-4.695],[-3.652,4.695]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[861.008,595.104],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.221,-0.792],[-15.21,-8.22],[-10.141,4.985]],"o":[[0,0],[0.992,9.573],[15.366,8.305],[0,0]],"v":[[-29.779,-28.032],[-34.199,-13.721],[-7.349,18.253],[34.421,23.046]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[822.859,576.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-14.57,-7.875],[3.9,-9.175]],"o":[[7.373,-5.149],[16.823,9.092],[0,0]],"v":[[-31.908,-15.812],[5.106,-11.676],[28.009,20.962]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[832.85,563.091],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[17.35,9.377],[-4.927,9.117],[-17.351,-9.378],[4.927,-9.116]],"o":[[-17.351,-9.377],[4.928,-9.117],[17.35,9.377],[-4.927,9.117]],"v":[[-8.921,16.507],[-31.416,-16.979],[8.922,-16.507],[31.416,16.978]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[832.752,563.523],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[20.669,11.17],[-6.831,12.639],[-20.668,-11.171],[6.83,-12.638]],"o":[[-20.669,-11.17],[6.83,-12.638],[20.669,11.17],[-6.831,12.639]],"v":[[-12.367,22.884],[-37.423,-20.226],[12.368,-22.883],[37.425,20.225]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[832.06,564.671],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.642,5.237],[4.683,-2.961],[-1.519,-5.237],[-4.683,2.796]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[824.622,594.824],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.358,5.795],[4.611,-2.464],[-1.342,-5.795],[-4.611,2.052]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[813.235,588.802],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.05,6.784],[4.324,-1.53],[-0.777,-6.784],[-4.325,1.531]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[802.945,580.456],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.424,-2.278],[0,0]],"o":[[0,0],[0,0],[-0.352,0.895],[0,0]],"v":[[-3.885,0.553],[-0.35,-8.422],[3.885,-0.277],[0.459,8.422]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[794.317,568.85],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-13.814,-3.248],[-6.613,-10.493],[4.224,-7.397],[7.572,14.122],[14.425,1.424]],"o":[[0,0],[13.814,3.247],[0,0],[0,0],[-7.572,-14.122],[-14.424,-1.423]],"v":[[-34.326,-14.342],[-13.46,-15.971],[21.822,6.679],[24.904,22.955],[26.753,4.106],[-16.284,-21.532]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[835.643,561.594],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.77,4.469],[5.32,-3.121],[-2.393,-4.47],[-5.32,3.247]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[836.856,597.967],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.17,3.342],[6.26,-4.523],[-2.266,-3.336],[-6.26,4.523]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[850.696,598.389],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.943,-0.231],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.228,2.857],[-0.184,4.769],[4.228,-1.242],[0.877,-4.769]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[842.218,578.161],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.535,2.989],[0,0],[-20.447,-14.096],[-8.12,3.722],[0,0],[18.846,4.466],[6.984,4.916],[2.506,7.51]],"o":[[0,0],[0,0],[20.447,14.097],[0,0],[0,0],[-2.123,-0.792],[-12.467,-8.565],[-0.248,-1.766]],"v":[[-33.83,-27.631],[-37.516,-15.83],[-15.725,13.533],[31.361,21.269],[37.516,12.617],[7.616,14.957],[-12.254,5.465],[-32.624,-19.724]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[826.237,578.524],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[19.512,-16.923],[-4.701,-12.714],[-15.28,-5.095],[-8.531,13.367],[7.21,2.84]],"o":[[0,0],[4.702,12.713],[15.279,5.094],[8.531,-13.367],[-5.237,-3.383]],"v":[[-36.797,-20.184],[-39.601,-0.681],[-5.818,30.103],[35.771,23.74],[16.845,-15.517]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[833.897,561.428],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":31,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"coin 2 Outlines","parent":13,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[172.53,143.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.451,-0.726]],"o":[[0,0],[0,0]],"v":[[-5.034,-3.168],[5.034,3.168]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[866.284,415.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.767,0.299],[-6.672,15.95],[5.965,9.596]],"o":[[0,0],[9.427,-1.937],[6.74,-16.113],[0,0]],"v":[[-25.286,32.835],[-10.608,35.814],[18.546,5.926],[19.173,-36.113]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[852.203,454.928],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-6.391,15.28],[-9.517,-2.971]],"o":[[-5.855,-6.826],[7.379,-17.642],[0,0]],"v":[[-12.352,33.119],[-11.908,-4.122],[18.298,-30.148]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[837.004,446.969],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.61,-18.195],[9.56,3.999],[-7.61,18.195],[-9.561,-3.999]],"o":[[-7.61,18.195],[-9.56,-3.998],[7.61,-18.194],[9.56,3.999]],"v":[[17.311,7.24],[-13.779,32.945],[-17.31,-7.24],[13.78,-32.945]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[837.661,446.824],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[9.065,-21.674],[13.254,5.543],[-9.065,21.675],[-13.254,-5.544]],"o":[[-9.066,21.674],[-13.253,-5.544],[9.066,-21.674],[13.253,5.543]],"v":[[23.998,10.037],[-16.415,39.245],[-23.998,-10.037],[16.415,-39.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[838.873,447.398],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.055,-2.162],[-3.405,-4.374],[-5.055,2.022],[3.253,4.374]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[869.608,451.818],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.633,-1.947],[-2.909,-4.365],[-5.633,1.891],[2.499,4.365]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[864.75,463.758],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6.66,-1.718],[-1.937,-4.151],[-6.66,1.446],[1.966,4.151]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[857.453,474.804],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.027,2.639],[0,0]],"o":[[0,0],[0,0],[0.925,0.262],[0,0]],"v":[[0.941,3.825],[-8.34,1.198],[-0.655,-3.825],[8.34,-1.278]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[846.768,484.527],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.861,14.069],[-9.786,7.621],[-7.779,-3.47],[13.301,-8.936],[-0.013,-14.495]],"o":[[0,0],[1.862,-14.068],[0,0],[0,0],[-13.301,8.935],[0.014,14.494]],"v":[[-11.141,35.771],[-14.832,15.169],[4.208,-22.185],[20.098,-26.865],[1.159,-26.836],[-20.085,18.531]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[835.729,443.946],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.241,-2.199],[-3.663,-4.978],[-4.241,2.83],[3.728,4.978]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[871.56,439.319],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3.21,-1.495],[-5.122,-5.781],[-3.095,2.586],[5.122,5.781]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[870.576,425.511],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.137,0.961],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3.296,4.004],[4.799,-0.21],[-1.621,-4.004],[-4.799,-0.32]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[851.254,435.873],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.922,-0.829],[0,0],[-12,21.744],[4.509,7.71],[0,0],[2.575,-19.196],[4.199,-7.438],[7.225,-3.239]],"o":[[0,0],[0,0],[11.999,-21.745],[0,0],[0,0],[-0.578,2.19],[-7.287,13.255],[-1.732,0.422]],"v":[[-25.582,36.245],[-13.474,38.741],[13.583,14.147],[16.612,-33.474],[7.392,-38.741],[12.685,-9.22],[5.211,11.494],[-17.834,34.261]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[854.678,451.978],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-18.774,-17.738],[-12.184,5.939],[-3.554,15.709],[14.147,7.163],[2.112,-7.456]],"o":[[0,0],[12.185,-5.939],[3.553,-15.71],[-14.147,-7.163],[-2.846,5.548]],"v":[[-15.942,38.467],[3.742,39.323],[31.025,2.654],[20.569,-38.099],[-16.618,-15.374]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[834.97,446.043],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":31,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"coin 3 Outlines","parent":14,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[211.53,170.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.158,-0.415],[0.659,-0.378]],"o":[[0,0],[-0.977,2.479],[0,0]],"v":[[2.692,-6.135],[2.436,-5.488],[-2.692,6.135]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[842.943,441.815],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.22,-0.635],[0.72,-2.491],[-0.086,-0.244],[-0.036,-0.122],[-0.122,-0.366],[-0.183,-0.452],[-8.9,-5.933],[-1.721,-0.977],[-1.795,-0.843],[-0.33,-0.147],[-0.318,-0.134],[-1.6,-0.574],[-2.161,-0.623],[-1.733,-0.378],[-5.323,0.452],[-2.881,1.721]],"o":[[0,0],[-0.55,1.648],[-0.488,1.612],[0.024,0.123],[0.074,0.366],[0.123,0.452],[2.552,6.324],[1.612,1.075],[1.722,0.977],[0.329,0.171],[0.317,0.146],[1.538,0.684],[2.124,0.805],[1.734,0.488],[6.264,1.356],[4.237,-0.354],[0,0]],"v":[[-34.759,-23.949],[-35.113,-22.923],[-37.495,-15.439],[-38.203,-12.314],[-38.117,-11.934],[-37.824,-10.835],[-37.36,-9.48],[-18.863,10.017],[-13.857,13.095],[-8.583,15.829],[-7.594,16.293],[-6.654,16.72],[-1.94,18.613],[4.505,20.738],[9.719,22.043],[27.435,23.496],[38.289,20.433]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[801.962,427.738],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.037,0.012],[-15.09,-6.629],[1.905,-6.642]],"o":[[0.037,-0.012],[5.97,-3.37],[17.496,7.704],[0,0]],"v":[[-32.538,-13.65],[-32.44,-13.699],[2.942,-8.559],[30.633,17.069]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[806.992,417.281],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.172,-0.769],[15.176,6.679],[-2.051,7.484],[-0.122,0.28],[-18.058,-7.948],[3.26,-7.424]],"o":[[-6.202,4.151],[-17.374,-7.643],[0.073,-0.294],[3.26,-7.424],[18.045,7.936],[-0.525,1.172]],"v":[[29.669,17.484],[-6.362,13.601],[-33.442,-13.344],[-33.137,-14.211],[5.457,-13.259],[32.232,14.554]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[807.993,416.927],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.074,0.391],[2.247,0.989],[0.659,0.305],[1.306,0.708],[2.234,1.502],[1.746,1.465],[1.367,1.416],[1.331,2.21],[0.501,1.721],[0.012,0.036],[0.074,0.464],[-0.879,2.003],[-21.513,-9.462],[4.518,-10.281],[0.244,-0.379],[3.492,-1.172],[0.037,-0.012],[0.879,-0.183],[2.759,0],[0.232,0],[1.819,0.208],[2.601,0.61],[1.77,0.537]],"o":[[-2.21,-0.757],[-0.671,-0.293],[-1.379,-0.647],[-2.552,-1.355],[-2.051,-1.379],[-1.648,-1.367],[-2.125,-2.21],[-1.086,-1.795],[-0.012,-0.037],[-0.134,-0.476],[-0.439,-2.356],[4.53,-10.28],[21.501,9.462],[-0.183,0.403],[-1.539,2.527],[-0.025,0],[-0.793,0.257],[-2.295,0.501],[-0.232,0],[-1.685,-0.012],[-2.418,-0.269],[-1.709,-0.379],[-1.05,-0.317]],"v":[[-3.223,23.014],[-9.914,20.402],[-11.904,19.499],[-15.933,17.472],[-23.112,13.174],[-28.814,8.901],[-33.331,4.726],[-38.545,-1.941],[-40.938,-7.227],[-40.962,-7.337],[-41.292,-8.766],[-40.669,-15.348],[7.117,-17.63],[37.214,18.913],[36.591,20.085],[28.9,25.639],[28.814,25.664],[26.299,26.336],[18.693,27.092],[18.009,27.081],[12.747,26.751],[5.189,25.445],[-0.024,24.065]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[808.787,416.243],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.11,-0.476],[0.721,-2.49]],"o":[[0.134,0.488],[-0.549,1.648],[0,0]],"v":[[0.825,-4.469],[1.19,-3.016],[-1.19,4.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[765.657,407.831],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.073,0.464],[-0.11,-0.452]],"o":[[0.11,0.501],[-0.135,-0.477]],"v":[[-0.165,-0.715],[0.165,0.715]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[767.66,408.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.1,-2.466],[0,0],[0,0],[0,0]],"o":[[-0.806,2.649],[0,0],[0,0],[1.294,2.369]],"v":[[3.815,-0.244],[1.852,7.532],[-3.816,0.651],[-1.215,-7.532]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[771.31,422.323],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.124,-2.21],[0.122,-0.403],[1.294,2.369],[0,0]],"o":[[-0.098,0.342],[-2.1,-2.466],[0,0],[1.33,2.21]],"v":[[2.68,2.777],[2.35,3.888],[-2.68,-3.401],[-2.533,-3.888]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[772.776,418.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.601,-2.076],[0.232,-0.745],[1.331,2.21],[0,0]],"o":[[-0.061,0.208],[-2.124,-2.21],[0,0],[0,0]],"v":[[2.833,3.137],[2.38,4.639],[-2.833,-2.027],[-2.039,-4.639]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[773.075,416.329],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.552,6.325],[0.122,0.452],[0.061,0.257],[0.024,0.122],[0,0],[-0.55,1.648],[-0.196,-0.842],[-0.134,-0.476],[-0.012,-0.037],[-0.134,-0.574],[-0.683,-1.246],[0,0],[0,0],[-0.806,2.649],[-1.649,-1.501],[0,0]],"o":[[0,0],[-8.9,-5.934],[-0.183,-0.451],[-0.146,-0.476],[-0.036,-0.122],[0,0],[0.72,-2.491],[0.232,0.916],[0.073,0.464],[0.013,0.037],[0.183,0.818],[0.501,1.185],[0,0],[0,0],[0,0],[1.282,1.501],[0,0],[0,0]],"v":[[9.719,16.323],[9.62,16.47],[-8.877,-3.029],[-9.341,-4.384],[-9.634,-5.483],[-9.719,-5.861],[-9.01,-8.987],[-6.63,-16.47],[-5.983,-13.81],[-5.654,-12.381],[-5.629,-12.271],[-5.153,-10.147],[-3.383,-6.496],[-5.238,-0.366],[-0.281,7.129],[1.977,-0.318],[6.495,3.858],[3.943,11.513]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[773.478,421.286],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,-1.49],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.673,1.526]],"v":[[3.87,-0.983],[1.904,5.513],[-3.871,0.703],[-1.795,-5.513]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[781.292,432.096],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.051,-1.38],[0,0],[1.673,1.527],[0,0]],"o":[[0,0],[-2.112,-1.489],[0,0],[1.746,1.465]],"v":[[3.089,1.288],[2.576,2.985],[-3.089,-1.545],[-2.613,-2.985]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[782.586,428.129],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.746,1.465],[0,0]],"o":[[0,0],[-2.051,-1.379],[0,0],[0,0]],"v":[[2.906,2.228],[2.796,2.595],[-2.906,-1.678],[-2.6,-2.595]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[782.879,426.822],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.819,-1.062],[0,0],[1.612,1.074],[0,0],[0,0]],"o":[[0,0],[-1.722,-0.977],[0,0],[0,0],[1.551,1.099]],"v":[[3.816,-2.375],[1.191,5.708],[-3.815,2.631],[-3.717,2.484],[-1.24,-5.708]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[786.914,435.125],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.721,0.977],[0,0]],"o":[[0,0],[-1.794,-0.843]],"v":[[-2.637,-1.368],[2.637,1.368]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[790.741,442.2],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.33,-0.147],[0,0],[0,0]],"o":[[0,0],[0,0],[0.33,0.171]],"v":[[0.495,0.207],[0.482,0.257],[-0.495,-0.257]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[793.873,443.824],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.002,-0.855],[0,0],[0.329,0.171],[0,0],[0,0],[-0.146,-0.085]],"o":[[0,0],[-0.33,-0.147],[0,0],[0,0],[0.147,0.085],[1.758,1.038]],"v":[[4.133,-1.74],[2.131,4.841],[1.142,4.377],[-4.133,1.642],[-2.021,-4.841],[-1.581,-4.585]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[792.237,439.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.38,-0.647],[0,0],[1.758,1.037],[0.146,0.086],[0,0],[0,0]],"o":[[0,0],[-2.002,-0.854],[-0.146,-0.086],[0,0],[0,0],[1.306,0.708]],"v":[[3.333,0.641],[2.82,2.35],[-2.894,-0.494],[-3.333,-0.751],[-2.82,-2.35],[-0.696,-1.386]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[793.55,435.1],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.307,0.708]],"o":[[0,0],[-1.379,-0.647],[0,0]],"v":[[2.039,0.854],[1.99,1.014],[-2.039,-1.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[794.893,434.728],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.831,-0.635],[0,0],[1.538,0.684],[0.317,0.146],[0,0]],"o":[[0,0],[-1.6,-0.573],[-0.317,-0.134],[0,0],[1.905,0.818]],"v":[[4.029,-2.656],[1.624,5.305],[-3.089,3.413],[-4.029,2.986],[-1.514,-5.305]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[798.397,441.046],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.161,-0.623],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[2.125,0.805]],"v":[[3.272,1.007],[3.235,1.117],[-3.272,-0.812],[-3.175,-1.117]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[803.195,447.469],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.697,-0.488],[0,0],[2.124,0.805],[0,0]],"o":[[0,0],[-2.161,-0.623],[0,0],[2.418,0.843]],"v":[[4.182,-2.405],[2.264,4.42],[-4.182,2.296],[-2.156,-4.42]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[804.202,444.056],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.05,-0.317],[0,0],[2.417,0.843],[0,0],[0,0]],"o":[[0,0],[-1.697,-0.488],[0,0],[0,0],[1.075,0.391]],"v":[[3.358,0.287],[2.979,1.63],[-3.357,-0.385],[-2.979,-1.63],[0.159,-0.763]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[805.405,440.021],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.074,0.391]],"o":[[0,0],[-1.05,-0.318],[0,0]],"v":[[1.618,0.378],[1.581,0.526],[-1.617,-0.526]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[807.182,439.783],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.794,-0.098],[0,0],[0,0],[1.734,0.489],[0,0],[-0.513,-0.147]],"o":[[0,0],[0,0],[-1.734,-0.379],[0,0],[1.33,0.391],[0.83,0.122]],"v":[[3.755,-3.358],[1.556,4.261],[1.459,4.737],[-3.755,3.43],[-1.458,-4.737],[1.008,-3.999]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[810.221,445.045],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.393,-0.073],[0,0],[1.635,0.746],[0,0]],"o":[[0,0],[-3.106,-0.235],[0,0],[2.76,0.342]],"v":[[4.805,-3.436],[2.08,4.034],[-4.805,2.485],[-2.924,-4.034]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[816.583,446.82],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.417,-0.269],[0,0],[2.759,0.342],[0,0]],"o":[[0,0],[-2.393,-0.074],[0,0],[2.601,0.61]],"v":[[3.938,0.457],[3.791,0.849],[-3.938,0.25],[-3.621,-0.849]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[817.596,442.536],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.6,0.611],[0,0]],"o":[[0,0],[-2.417,-0.269],[0,0],[0,0]],"v":[[3.944,-0.092],[3.614,0.812],[-3.943,-0.495],[-3.845,-0.812]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[817.92,442.182],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.734,-0.378],[-5.324,0.452],[15.823,9.132],[1.844,4.957],[-8.901,-5.934],[-1.722,-0.977],[-1.794,-0.842],[0,0],[0,0],[-0.317,-0.135],[-1.599,-0.574],[0,0],[0,0],[0,0]],"o":[[6.263,1.355],[-9.982,0.426],[-15.836,-9.121],[2.552,6.324],[1.612,1.074],[1.721,0.976],[0,0],[0,0],[0.318,0.147],[1.539,0.683],[0,0],[0,0],[0,0],[1.733,0.488]],"v":[[14.682,14.809],[32.398,16.262],[-8.25,6.397],[-32.397,-16.715],[-13.9,2.784],[-8.894,5.861],[-3.62,8.595],[-2.643,9.108],[-2.631,9.059],[-1.691,9.486],[3.022,11.379],[2.924,11.684],[9.432,13.613],[9.469,13.504]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[796.999,434.973],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.232,0.024],[0,0],[0.232,0]],"o":[[0,0],[-0.232,0],[0.244,0]],"v":[[0.354,-0.025],[0.33,0.025],[-0.354,0.013]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[827.15,443.311],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.295,0.501],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[2.759,0]],"v":[[5.494,-4.406],[1.735,4.039],[-5.494,4.406],[-2.112,-3.649]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[829.592,446.984],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.378],[0,0],[2.759,0],[0,0]],"o":[[0,0],[-2.296,0.501],[0,0],[2.991,-0.159]],"v":[[3.846,-0.464],[3.761,-0.293],[-3.846,0.464],[-3.821,0.415]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[831.325,442.872],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.72,0.171],[0.879,-0.183],[0,0]],"o":[[0.891,-0.171],[-0.793,0.257],[0,0],[0,0]],"v":[[-1.159,0.165],[1.258,-0.336],[-1.258,0.336],[-1.172,0.165]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[836.343,442.243],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[2.991,-0.159],[0,0]],"o":[[0,0],[0,0],[-2.112,0.378],[0,0],[0,0]],"v":[[4.505,-1.685],[3.174,0.806],[3.162,0.806],[-4.505,1.685],[-3.895,0.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[832.009,441.602],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.091,-6.63],[1.904,-6.642],[0,0],[15.176,6.678],[-2.051,7.484]],"o":[[17.496,7.704],[0,0],[-6.202,4.152],[-17.374,-7.643],[5.971,-3.37]],"v":[[3.92,-10.665],[31.611,14.962],[31.647,15.023],[-4.382,11.141],[-31.464,-15.805]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[806.015,419.387],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-18.058,-7.948],[3.26,-7.423],[1.172,-0.769],[0,0],[17.496,7.704],[5.97,-3.37],[-0.122,0.28]],"o":[[18.045,7.936],[-0.525,1.172],[0,0],[1.905,-6.642],[-15.091,-6.63],[0.073,-0.293],[3.26,-7.424]],"v":[[4.432,-11.184],[31.207,16.63],[28.643,19.56],[28.606,19.498],[0.916,-6.128],[-34.467,-11.268],[-34.162,-12.135]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[809.019,414.851],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.663,-0.659],[6.263,1.355],[0,0],[0,0],[0,0],[-1.673,0.086],[-0.232,0],[0,0],[0,0],[0,0],[-0.794,0.256],[-0.024,0]],"o":[[0,0],[-2.051,1.16],[-5.323,0.452],[0,0],[0,0],[0,0],[1.929,0.049],[0.232,0],[0,0],[0,0],[0,0],[0.879,-0.184],[0.037,-0.012],[2.796,-0.647]],"v":[[16.293,-6.679],[12.276,3.161],[1.422,6.227],[-16.293,4.773],[-16.196,4.297],[-9.029,4.945],[-6.587,-1.625],[-1.178,-1.685],[-0.495,-1.672],[-3.205,4.945],[4.108,3.161],[7.112,-2.43],[9.627,-3.102],[9.712,-3.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[827.974,445.008],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.244,-0.378],[3.492,-1.172],[0.036,-0.013],[0.892,-0.171],[0,0],[0,0],[0,0],[0.245,0],[1.819,0.208],[0,0],[0,0],[0,0],[1.771,0.537],[0,0],[0,0],[2.246,0.989],[0.659,0.305],[0,0],[0,0],[2.234,1.501],[0,0],[0,0],[0,0],[1.368,1.416],[-0.061,0.208],[0,0],[0,0],[0.5,1.721],[0.012,0.037],[0.11,0.501],[-0.88,2.002],[-21.513,-9.462],[4.517,-10.28]],"o":[[-1.538,2.527],[-0.024,0],[-0.721,0.171],[0,0],[0,0],[0,0],[-0.232,0.025],[-1.684,-0.012],[0,0],[0,0],[0,0],[-1.71,-0.379],[0,0],[0,0],[-2.209,-0.757],[-0.672,-0.293],[0,0],[0,0],[-2.552,-1.355],[0,0],[0,0],[0,0],[-1.648,-1.367],[0.232,-0.745],[-2.601,-2.076],[0,0],[-1.087,-1.794],[-0.012,-0.037],[-0.11,-0.452],[-0.44,-2.356],[4.529,-10.281],[21.5,9.463],[-0.183,0.403]],"v":[[36.592,20.09],[28.9,25.646],[28.815,25.67],[26.397,26.17],[27.728,23.68],[19.328,25.56],[18.718,27.049],[18.009,27.086],[12.747,26.756],[13.077,25.853],[5.286,25.133],[5.19,25.451],[-0.024,24.07],[0.013,23.924],[-3.223,23.021],[-9.913,20.407],[-11.904,19.504],[-11.855,19.345],[-15.932,17.477],[-23.111,13.18],[-23.003,12.813],[-28.508,7.991],[-28.813,8.906],[-33.331,4.732],[-32.879,3.229],[-37.75,-4.548],[-38.544,-1.935],[-40.938,-7.221],[-40.961,-7.332],[-41.292,-8.76],[-40.668,-15.341],[7.119,-17.625],[37.215,18.918]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.073,-0.293],[-17.374,-7.643],[-6.203,4.151],[-0.525,1.172],[18.045,7.936],[3.26,-7.423]],"o":[[-2.051,7.484],[15.176,6.678],[1.172,-0.769],[3.26,-7.423],[-18.058,-7.948],[-0.122,0.281]],"v":[[-34.234,-12.655],[-7.154,14.292],[28.876,18.173],[31.44,15.243],[4.665,-12.57],[-33.93,-13.522]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[808.787,416.237],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":4,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":31,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"coin 4 Outlines","parent":15,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[180.53,227.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.067,-0.853]],"o":[[0,0],[0,0]],"v":[[-2.216,-5.533],[2.149,5.533]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[874.021,353.443],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.795,-0.213],[-14.817,8.909],[-0.87,11.266]],"o":[[0,0],[8.745,4.018],[14.969,-9.001],[0,0]],"v":[[-38.321,7.081],[-28.251,18.169],[12.937,11.33],[38.321,-22.187]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[837.854,381.254],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-14.194,8.535],[-5.913,-8.027]],"o":[[-0.68,-8.968],[16.388,-9.854],[0,0]],"v":[[-30.734,20.444],[-8.336,-9.313],[31.415,-12.417]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[832.984,360.364],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[16.902,-10.163],[5.34,8.881],[-16.902,10.163],[-5.34,-8.881]],"o":[[-16.902,10.163],[-5.34,-8.881],[16.902,-10.163],[5.34,8.882]],"v":[[9.669,16.081],[-30.604,18.402],[-9.669,-16.08],[30.604,-18.402]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[832.422,361.693],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[20.134,-12.107],[7.403,12.312],[-20.134,12.107],[-7.403,-12.312]],"o":[[-20.134,12.107],[-7.403,-12.312],[20.135,-12.106],[7.403,12.312]],"v":[[13.405,22.292],[-36.456,21.921],[-13.404,-22.294],[36.456,-21.922]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[833.058,362.874],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.312,1.294],[-0.198,-5.496],[-5.312,-1.316],[-0.008,5.496]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[855.26,384.579],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.676,1.886],[0.222,-5.118],[-5.676,-1.689],[-0.585,5.118]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[844.253,391.253],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6.305,2.548],[0.814,-4.501],[-6.305,-2.783],[-0.953,4.501]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[831.898,395.969],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-3.195,0.927],[0,0]],"o":[[0,0],[0,0],[0.591,0.759],[0,0]],"v":[[-1.529,3.673],[-7.456,-3.938],[1.711,-3.438],[7.456,3.938]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[817.474,397.442],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-9.826,10.239],[-12.398,0.352],[-4.217,-7.401],[16.009,0.669],[8.566,-11.692]],"o":[[0,0],[9.826,-10.238],[0,0],[0,0],[-16.01,-0.669],[-8.567,11.692]],"v":[[-28.701,21.928],[-19.484,3.138],[17.97,-15.705],[33.548,-10.075],[18.265,-21.259],[-25.707,2.739]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[831.118,358.543],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.907,0.718],[0.18,-6.199],[-4.906,-0.246],[0.246,6.199]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[864.002,375.723],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3.749,0.694],[-0.431,-7.69],[-3.749,0.253],[0.984,7.69]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[871.29,363.992],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.68,0.694],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.13,4.682],[3.836,2.174],[0.905,-4.682],[-3.836,-3.593]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[850.017,361.405],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.846,1.061],[0,0],[-22.541,10.427],[-0.928,8.884],[0,0],[13.436,-13.949],[7.786,-3.51],[7.74,1.665]],"o":[[0,0],[0,0],[22.541,-10.427],[0,0],[0,0],[-1.762,1.425],[-13.718,6.373],[-1.646,-0.685]],"v":[[-37.635,12.569],[-29.353,21.747],[7.013,17.935],[37.635,-18.661],[33.32,-28.362],[20.117,-1.434],[1.834,10.841],[-30.216,15.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[838.653,377.426],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.636,-25.409],[-13.336,-2.423],[-12.161,10.56],[7.165,14.146],[6.114,-4.761]],"o":[[0,0],[13.336,2.423],[12.162,-10.56],[-7.165,-14.146],[-5.577,2.787]],"v":[[-38.636,19.748],[-23.275,32.087],[20.417,18.674],[36.107,-20.364],[-7.318,-24.052]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[833.735,361.296],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":31,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"D main sleeve Outlines","parent":10,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-73.47,524.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-4.444],[4.444,0],[0,4.444],[-4.444,0]],"o":[[0,4.444],[-4.444,0],[0,-4.444],[4.444,0]],"v":[[8.04,-0.006],[0.006,8.04],[-8.04,-0.006],[0.006,-8.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1052.759,266.685],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.317,0.562],[-4.53,0.903],[-4.115,-3.247],[-1.502,-3.284],[3.443,-5.165]],"o":[[0.269,-0.476],[2.344,-4.163],[5.14,-1.014],[2.845,2.247],[8.4,18.388],[0,0]],"v":[[-20.384,-10.445],[-19.505,-12.008],[-9.151,-23.008],[5.805,-20.164],[11.983,-11.361],[14.095,24.022]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1090.95,288.625],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-3.309,-4.261],[4.31,-8.632],[0.855,-1.478],[6.41,-4.517],[4.603,-2.296]],"o":[[13.21,-0.574],[5.909,7.631],[-0.806,1.624],[-3.748,6.373],[-9.01,6.349],[0,0]],"v":[[-12.606,-34.473],[13.595,-22.74],[14.816,4.67],[12.325,9.31],[-2.265,25.279],[-19.504,35.047]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1059.047,267.259],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.737,-6.984],[-1.44,-5.03],[1.599,-9.353],[5.079,-6.935]],"o":[[7.826,3.052],[2.955,4.346],[2.613,9.072],[-1.453,8.534],[0,0]],"v":[[-14.291,-39.644],[4.841,-25.028],[11.397,-10.866],[12.692,17.387],[4.096,39.644]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1027.987,313.221],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.025,-51.731],[17.789,-22.929],[4.017,-4.017],[18.021,-2.295]],"o":[[0,0],[0.073,5.738],[-0.036,59.374],[-3.382,4.358],[-18.412,19.767],[0,0]],"v":[[49.301,-158.88],[49.301,-94.132],[49.911,5.276],[23.063,117.455],[11.953,129.945],[-49.936,158.88]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1082.178,195.339],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-2.881,2.088],[-2.759,11.733],[0,0],[0,0],[0,0]],"o":[[4.115,-1.184],[13.15,-9.523],[2.906,-12.344],[0,0],[0,0],[0,0]],"v":[[-59.008,118.156],[-48.435,113.212],[-26.458,78.074],[-24.309,55.767],[-24.309,-118.156],[59.007,-118.156]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1072.471,154.615],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.444,0],[0,-4.444],[4.444,0],[0,4.444]],"o":[[4.444,0],[0,4.444],[-4.444,0],[0,-4.444]],"v":[[0.006,-8.04],[8.04,-0.006],[0.006,8.04],[-8.04,-0.006]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1052.76,266.685],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,4.444],[4.444,0],[0,-4.444],[-4.444,0]],"o":[[0,-4.444],[-4.444,0],[0,4.444],[4.444,0]],"v":[[14.792,-0.605],[6.758,-8.639],[-1.288,-0.605],[6.758,7.441]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-3.309,-4.261],[4.31,-8.632],[0.855,-1.478],[6.41,-4.517],[4.602,-2.296],[0,0],[2.955,4.346],[7.827,3.053],[0,0],[-2.882,2.087],[-2.759,11.733],[0,0]],"o":[[5.909,7.631],[-0.806,1.624],[-3.748,6.373],[-9.01,6.349],[0,0],[-1.441,-5.031],[-4.737,-6.984],[0,0],[4.115,-1.184],[13.149,-9.524],[0,0],[13.21,-0.574]],"v":[[26.635,-22.764],[27.856,4.645],[25.365,9.285],[10.775,25.254],[-6.464,35.022],[-6.623,35.072],[-13.18,20.908],[-32.312,6.293],[-32.544,5.488],[-21.97,0.543],[0.006,-34.595],[0.434,-34.497]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1046.007,267.284],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":4,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.53,0.904],[-4.115,-3.248],[-1.502,-3.284],[3.443,-5.165],[0,0],[4.017,-4.017],[18.021,-2.295],[0,0],[-1.453,8.534],[2.613,9.072],[0,0],[-9.011,6.349],[-3.749,6.373]],"o":[[2.344,-4.163],[5.14,-1.013],[2.845,2.247],[8.4,18.387],[0,0],[-3.382,4.359],[-18.412,19.767],[0,0],[5.079,-6.935],[1.599,-9.353],[0,0],[4.603,-2.295],[6.409,-4.518],[0,0]],"v":[[-0.262,-32.794],[10.091,-43.795],[25.047,-40.95],[31.225,-32.147],[33.338,3.236],[33.532,3.382],[22.422,15.872],[-39.467,44.808],[-39.625,43.453],[-31.03,21.196],[-32.324,-7.057],[-32.166,-7.106],[-14.926,-16.873],[-0.336,-32.843]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1071.708,309.412],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.025,-51.731],[17.789,-22.929],[0,0],[8.4,18.387],[2.844,2.246],[5.14,-1.013],[2.344,-4.164],[0,0],[-0.806,1.624],[5.91,7.631],[13.211,-0.574],[0,0],[0,0],[0,0]],"o":[[0.073,5.738],[-0.036,59.374],[0,0],[3.443,-5.164],[-1.502,-3.285],[-4.115,-3.248],[-4.529,0.904],[0,0],[0.854,-1.478],[4.31,-8.632],[-3.308,-4.261],[0,0],[2.906,-12.344],[0,0],[0,0]],"v":[[42.415,-138.168],[43.025,25.988],[16.177,138.168],[15.982,138.02],[13.87,102.639],[7.692,93.836],[-7.265,90.991],[-17.618,101.991],[-17.691,101.943],[-15.201,97.303],[-16.422,69.892],[-42.623,58.16],[-43.05,58.063],[-40.901,35.756],[-40.901,-138.168]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1089.064,174.626],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":27,"ty":4,"nm":"D main hand Outlines","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-6.47,279.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.196,-14.646],[18.021,-2.296],[0,0],[0,0],[0,0],[17.239,8.619],[0,0],[-1.734,25.285],[-32.745,-18.961],[-17.056,4.957],[-10.125,-0.934]],"o":[[11.517,39.891],[-12.905,1.636],[0,0],[0,0],[2.295,-19.535],[-17.984,-8.987],[0,0],[1.721,-25.286],[26.385,15.274],[4.115,-1.185],[10.125,0.935]],"v":[[113.839,-3.293],[80.505,56.163],[58.504,57.103],[8.519,50.84],[-21.357,46.762],[-44.335,5.397],[-102.94,1.38],[-123.622,-25.053],[-8.147,-38.838],[61.727,-25.285],[80.565,-26.274]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[951.736,298.057],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.02,-14.952],[7.138,-6.748],[4.665,-2.31],[0,0],[0,0],[0,0],[0,0],[17.24,8.62],[0,0],[-1.734,25.285],[-32.745,-18.961],[-17.056,4.957],[0,0],[-14.411,-7.297]],"o":[[0.02,12.306],[-6.774,5.484],[0,0],[-12.905,1.636],[0,0],[0,0],[2.295,-19.535],[-17.984,-8.986],[0,0],[1.721,-25.286],[26.385,15.274],[0,0],[0,0],[14.874,5.788]],"v":[[120.968,16.153],[108.589,44.926],[95.916,53.119],[84.873,56.163],[62.872,57.103],[12.888,50.84],[-16.988,46.762],[-39.966,5.397],[-98.571,1.38],[-119.253,-25.053],[-3.779,-38.838],[66.096,-25.285],[76.669,-26.692],[102.771,-20.69]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[947.368,298.057],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":28,"ty":3,"nm":"coin 1 peg 2","parent":38,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":-37,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[327,-200,0],"to":[0,0,0],"ti":[0,0,0]},{"t":34,"s":[327,-200,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":29,"ty":3,"nm":"coin 2 peg 2","parent":38,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":75,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[266.93,-215.999,0],"to":[0.012,0.667,0],"ti":[-0.012,-0.667,0]},{"t":32,"s":[267,-212,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":30,"ty":3,"nm":"coin 3 peg 2","parent":38,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":-35,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[325.651,-244.997,0],"to":[0.058,3.333,0],"ti":[-0.058,-3.333,0]},{"t":33,"s":[326,-225,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":31,"ty":3,"nm":"coin 4 peg 2","parent":38,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":43,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[286.127,-283.992,0],"to":[0.145,8.332,0],"ti":[-0.145,-8.332,0]},{"t":34,"s":[287,-234,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":32,"ty":4,"nm":"coin 1 Outlines 2","parent":28,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[186.53,25.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.768,-0.377]],"o":[[0,0],[0,0]],"v":[[3.652,-4.695],[-3.652,4.695]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[861.008,595.104],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.221,-0.792],[-15.21,-8.22],[-10.141,4.985]],"o":[[0,0],[0.992,9.573],[15.366,8.305],[0,0]],"v":[[-29.779,-28.032],[-34.199,-13.721],[-7.349,18.253],[34.421,23.046]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[822.859,576.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-14.57,-7.875],[3.9,-9.175]],"o":[[7.373,-5.149],[16.823,9.092],[0,0]],"v":[[-31.908,-15.812],[5.106,-11.676],[28.009,20.962]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[832.85,563.091],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[17.35,9.377],[-4.927,9.117],[-17.351,-9.378],[4.927,-9.116]],"o":[[-17.351,-9.377],[4.928,-9.117],[17.35,9.377],[-4.927,9.117]],"v":[[-8.921,16.507],[-31.416,-16.979],[8.922,-16.507],[31.416,16.978]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[832.752,563.523],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[20.669,11.17],[-6.831,12.639],[-20.668,-11.171],[6.83,-12.638]],"o":[[-20.669,-11.17],[6.83,-12.638],[20.669,11.17],[-6.831,12.639]],"v":[[-12.367,22.884],[-37.423,-20.226],[12.368,-22.883],[37.425,20.225]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[832.06,564.671],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.642,5.237],[4.683,-2.961],[-1.519,-5.237],[-4.683,2.796]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[824.622,594.824],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.358,5.795],[4.611,-2.464],[-1.342,-5.795],[-4.611,2.052]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[813.235,588.802],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.05,6.784],[4.324,-1.53],[-0.777,-6.784],[-4.325,1.531]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[802.945,580.456],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.424,-2.278],[0,0]],"o":[[0,0],[0,0],[-0.352,0.895],[0,0]],"v":[[-3.885,0.553],[-0.35,-8.422],[3.885,-0.277],[0.459,8.422]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[794.317,568.85],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-13.814,-3.248],[-6.613,-10.493],[4.224,-7.397],[7.572,14.122],[14.425,1.424]],"o":[[0,0],[13.814,3.247],[0,0],[0,0],[-7.572,-14.122],[-14.424,-1.423]],"v":[[-34.326,-14.342],[-13.46,-15.971],[21.822,6.679],[24.904,22.955],[26.753,4.106],[-16.284,-21.532]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[835.643,561.594],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.77,4.469],[5.32,-3.121],[-2.393,-4.47],[-5.32,3.247]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[836.856,597.967],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.17,3.342],[6.26,-4.523],[-2.266,-3.336],[-6.26,4.523]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[850.696,598.389],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.943,-0.231],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.228,2.857],[-0.184,4.769],[4.228,-1.242],[0.877,-4.769]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[842.218,578.161],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.535,2.989],[0,0],[-20.447,-14.096],[-8.12,3.722],[0,0],[18.846,4.466],[6.984,4.916],[2.506,7.51]],"o":[[0,0],[0,0],[20.447,14.097],[0,0],[0,0],[-2.123,-0.792],[-12.467,-8.565],[-0.248,-1.766]],"v":[[-33.83,-27.631],[-37.516,-15.83],[-15.725,13.533],[31.361,21.269],[37.516,12.617],[7.616,14.957],[-12.254,5.465],[-32.624,-19.724]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[826.237,578.524],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[19.512,-16.923],[-4.701,-12.714],[-15.28,-5.095],[-8.531,13.367],[7.21,2.84]],"o":[[0,0],[4.702,12.713],[15.279,5.094],[8.531,-13.367],[-5.237,-3.383]],"v":[[-36.797,-20.184],[-39.601,-0.681],[-5.818,30.103],[35.771,23.74],[16.845,-15.517]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[833.897,561.428],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false}],"ip":31,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"coin 2 Outlines 2","parent":29,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[172.53,143.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.451,-0.726]],"o":[[0,0],[0,0]],"v":[[-5.034,-3.168],[5.034,3.168]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[866.284,415.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.767,0.299],[-6.672,15.95],[5.965,9.596]],"o":[[0,0],[9.427,-1.937],[6.74,-16.113],[0,0]],"v":[[-25.286,32.835],[-10.608,35.814],[18.546,5.926],[19.173,-36.113]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[852.203,454.928],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-6.391,15.28],[-9.517,-2.971]],"o":[[-5.855,-6.826],[7.379,-17.642],[0,0]],"v":[[-12.352,33.119],[-11.908,-4.122],[18.298,-30.148]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[837.004,446.969],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.61,-18.195],[9.56,3.999],[-7.61,18.195],[-9.561,-3.999]],"o":[[-7.61,18.195],[-9.56,-3.998],[7.61,-18.194],[9.56,3.999]],"v":[[17.311,7.24],[-13.779,32.945],[-17.31,-7.24],[13.78,-32.945]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[837.661,446.824],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[9.065,-21.674],[13.254,5.543],[-9.065,21.675],[-13.254,-5.544]],"o":[[-9.066,21.674],[-13.253,-5.544],[9.066,-21.674],[13.253,5.543]],"v":[[23.998,10.037],[-16.415,39.245],[-23.998,-10.037],[16.415,-39.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[838.873,447.398],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.055,-2.162],[-3.405,-4.374],[-5.055,2.022],[3.253,4.374]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[869.608,451.818],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.633,-1.947],[-2.909,-4.365],[-5.633,1.891],[2.499,4.365]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[864.75,463.758],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6.66,-1.718],[-1.937,-4.151],[-6.66,1.446],[1.966,4.151]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[857.453,474.804],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.027,2.639],[0,0]],"o":[[0,0],[0,0],[0.925,0.262],[0,0]],"v":[[0.941,3.825],[-8.34,1.198],[-0.655,-3.825],[8.34,-1.278]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[846.768,484.527],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.861,14.069],[-9.786,7.621],[-7.779,-3.47],[13.301,-8.936],[-0.013,-14.495]],"o":[[0,0],[1.862,-14.068],[0,0],[0,0],[-13.301,8.935],[0.014,14.494]],"v":[[-11.141,35.771],[-14.832,15.169],[4.208,-22.185],[20.098,-26.865],[1.159,-26.836],[-20.085,18.531]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[835.729,443.946],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.241,-2.199],[-3.663,-4.978],[-4.241,2.83],[3.728,4.978]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[871.56,439.319],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3.21,-1.495],[-5.122,-5.781],[-3.095,2.586],[5.122,5.781]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[870.576,425.511],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.137,0.961],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3.296,4.004],[4.799,-0.21],[-1.621,-4.004],[-4.799,-0.32]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[851.254,435.873],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.922,-0.829],[0,0],[-12,21.744],[4.509,7.71],[0,0],[2.575,-19.196],[4.199,-7.438],[7.225,-3.239]],"o":[[0,0],[0,0],[11.999,-21.745],[0,0],[0,0],[-0.578,2.19],[-7.287,13.255],[-1.732,0.422]],"v":[[-25.582,36.245],[-13.474,38.741],[13.583,14.147],[16.612,-33.474],[7.392,-38.741],[12.685,-9.22],[5.211,11.494],[-17.834,34.261]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[854.678,451.978],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-18.774,-17.738],[-12.184,5.939],[-3.554,15.709],[14.147,7.163],[2.112,-7.456]],"o":[[0,0],[12.185,-5.939],[3.553,-15.71],[-14.147,-7.163],[-2.846,5.548]],"v":[[-15.942,38.467],[3.742,39.323],[31.025,2.654],[20.569,-38.099],[-16.618,-15.374]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[834.97,446.043],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false}],"ip":31,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":34,"ty":4,"nm":"coin 3 Outlines 2","parent":30,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[211.53,170.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.158,-0.415],[0.659,-0.378]],"o":[[0,0],[-0.977,2.479],[0,0]],"v":[[2.692,-6.135],[2.436,-5.488],[-2.692,6.135]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[842.943,441.815],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.22,-0.635],[0.72,-2.491],[-0.086,-0.244],[-0.036,-0.122],[-0.122,-0.366],[-0.183,-0.452],[-8.9,-5.933],[-1.721,-0.977],[-1.795,-0.843],[-0.33,-0.147],[-0.318,-0.134],[-1.6,-0.574],[-2.161,-0.623],[-1.733,-0.378],[-5.323,0.452],[-2.881,1.721]],"o":[[0,0],[-0.55,1.648],[-0.488,1.612],[0.024,0.123],[0.074,0.366],[0.123,0.452],[2.552,6.324],[1.612,1.075],[1.722,0.977],[0.329,0.171],[0.317,0.146],[1.538,0.684],[2.124,0.805],[1.734,0.488],[6.264,1.356],[4.237,-0.354],[0,0]],"v":[[-34.759,-23.949],[-35.113,-22.923],[-37.495,-15.439],[-38.203,-12.314],[-38.117,-11.934],[-37.824,-10.835],[-37.36,-9.48],[-18.863,10.017],[-13.857,13.095],[-8.583,15.829],[-7.594,16.293],[-6.654,16.72],[-1.94,18.613],[4.505,20.738],[9.719,22.043],[27.435,23.496],[38.289,20.433]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[801.962,427.738],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.037,0.012],[-15.09,-6.629],[1.905,-6.642]],"o":[[0.037,-0.012],[5.97,-3.37],[17.496,7.704],[0,0]],"v":[[-32.538,-13.65],[-32.44,-13.699],[2.942,-8.559],[30.633,17.069]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[806.992,417.281],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.172,-0.769],[15.176,6.679],[-2.051,7.484],[-0.122,0.28],[-18.058,-7.948],[3.26,-7.424]],"o":[[-6.202,4.151],[-17.374,-7.643],[0.073,-0.294],[3.26,-7.424],[18.045,7.936],[-0.525,1.172]],"v":[[29.669,17.484],[-6.362,13.601],[-33.442,-13.344],[-33.137,-14.211],[5.457,-13.259],[32.232,14.554]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[807.993,416.927],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.074,0.391],[2.247,0.989],[0.659,0.305],[1.306,0.708],[2.234,1.502],[1.746,1.465],[1.367,1.416],[1.331,2.21],[0.501,1.721],[0.012,0.036],[0.074,0.464],[-0.879,2.003],[-21.513,-9.462],[4.518,-10.281],[0.244,-0.379],[3.492,-1.172],[0.037,-0.012],[0.879,-0.183],[2.759,0],[0.232,0],[1.819,0.208],[2.601,0.61],[1.77,0.537]],"o":[[-2.21,-0.757],[-0.671,-0.293],[-1.379,-0.647],[-2.552,-1.355],[-2.051,-1.379],[-1.648,-1.367],[-2.125,-2.21],[-1.086,-1.795],[-0.012,-0.037],[-0.134,-0.476],[-0.439,-2.356],[4.53,-10.28],[21.501,9.462],[-0.183,0.403],[-1.539,2.527],[-0.025,0],[-0.793,0.257],[-2.295,0.501],[-0.232,0],[-1.685,-0.012],[-2.418,-0.269],[-1.709,-0.379],[-1.05,-0.317]],"v":[[-3.223,23.014],[-9.914,20.402],[-11.904,19.499],[-15.933,17.472],[-23.112,13.174],[-28.814,8.901],[-33.331,4.726],[-38.545,-1.941],[-40.938,-7.227],[-40.962,-7.337],[-41.292,-8.766],[-40.669,-15.348],[7.117,-17.63],[37.214,18.913],[36.591,20.085],[28.9,25.639],[28.814,25.664],[26.299,26.336],[18.693,27.092],[18.009,27.081],[12.747,26.751],[5.189,25.445],[-0.024,24.065]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[808.787,416.243],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.11,-0.476],[0.721,-2.49]],"o":[[0.134,0.488],[-0.549,1.648],[0,0]],"v":[[0.825,-4.469],[1.19,-3.016],[-1.19,4.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[765.657,407.831],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.073,0.464],[-0.11,-0.452]],"o":[[0.11,0.501],[-0.135,-0.477]],"v":[[-0.165,-0.715],[0.165,0.715]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[767.66,408.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.1,-2.466],[0,0],[0,0],[0,0]],"o":[[-0.806,2.649],[0,0],[0,0],[1.294,2.369]],"v":[[3.815,-0.244],[1.852,7.532],[-3.816,0.651],[-1.215,-7.532]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[771.31,422.323],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.124,-2.21],[0.122,-0.403],[1.294,2.369],[0,0]],"o":[[-0.098,0.342],[-2.1,-2.466],[0,0],[1.33,2.21]],"v":[[2.68,2.777],[2.35,3.888],[-2.68,-3.401],[-2.533,-3.888]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[772.776,418.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.601,-2.076],[0.232,-0.745],[1.331,2.21],[0,0]],"o":[[-0.061,0.208],[-2.124,-2.21],[0,0],[0,0]],"v":[[2.833,3.137],[2.38,4.639],[-2.833,-2.027],[-2.039,-4.639]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[773.075,416.329],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.552,6.325],[0.122,0.452],[0.061,0.257],[0.024,0.122],[0,0],[-0.55,1.648],[-0.196,-0.842],[-0.134,-0.476],[-0.012,-0.037],[-0.134,-0.574],[-0.683,-1.246],[0,0],[0,0],[-0.806,2.649],[-1.649,-1.501],[0,0]],"o":[[0,0],[-8.9,-5.934],[-0.183,-0.451],[-0.146,-0.476],[-0.036,-0.122],[0,0],[0.72,-2.491],[0.232,0.916],[0.073,0.464],[0.013,0.037],[0.183,0.818],[0.501,1.185],[0,0],[0,0],[0,0],[1.282,1.501],[0,0],[0,0]],"v":[[9.719,16.323],[9.62,16.47],[-8.877,-3.029],[-9.341,-4.384],[-9.634,-5.483],[-9.719,-5.861],[-9.01,-8.987],[-6.63,-16.47],[-5.983,-13.81],[-5.654,-12.381],[-5.629,-12.271],[-5.153,-10.147],[-3.383,-6.496],[-5.238,-0.366],[-0.281,7.129],[1.977,-0.318],[6.495,3.858],[3.943,11.513]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[773.478,421.286],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,-1.49],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.673,1.526]],"v":[[3.87,-0.983],[1.904,5.513],[-3.871,0.703],[-1.795,-5.513]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[781.292,432.096],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.051,-1.38],[0,0],[1.673,1.527],[0,0]],"o":[[0,0],[-2.112,-1.489],[0,0],[1.746,1.465]],"v":[[3.089,1.288],[2.576,2.985],[-3.089,-1.545],[-2.613,-2.985]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[782.586,428.129],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.746,1.465],[0,0]],"o":[[0,0],[-2.051,-1.379],[0,0],[0,0]],"v":[[2.906,2.228],[2.796,2.595],[-2.906,-1.678],[-2.6,-2.595]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[782.879,426.822],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.819,-1.062],[0,0],[1.612,1.074],[0,0],[0,0]],"o":[[0,0],[-1.722,-0.977],[0,0],[0,0],[1.551,1.099]],"v":[[3.816,-2.375],[1.191,5.708],[-3.815,2.631],[-3.717,2.484],[-1.24,-5.708]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[786.914,435.125],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.721,0.977],[0,0]],"o":[[0,0],[-1.794,-0.843]],"v":[[-2.637,-1.368],[2.637,1.368]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[790.741,442.2],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.33,-0.147],[0,0],[0,0]],"o":[[0,0],[0,0],[0.33,0.171]],"v":[[0.495,0.207],[0.482,0.257],[-0.495,-0.257]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[793.873,443.824],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.002,-0.855],[0,0],[0.329,0.171],[0,0],[0,0],[-0.146,-0.085]],"o":[[0,0],[-0.33,-0.147],[0,0],[0,0],[0.147,0.085],[1.758,1.038]],"v":[[4.133,-1.74],[2.131,4.841],[1.142,4.377],[-4.133,1.642],[-2.021,-4.841],[-1.581,-4.585]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[792.237,439.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.38,-0.647],[0,0],[1.758,1.037],[0.146,0.086],[0,0],[0,0]],"o":[[0,0],[-2.002,-0.854],[-0.146,-0.086],[0,0],[0,0],[1.306,0.708]],"v":[[3.333,0.641],[2.82,2.35],[-2.894,-0.494],[-3.333,-0.751],[-2.82,-2.35],[-0.696,-1.386]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[793.55,435.1],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.307,0.708]],"o":[[0,0],[-1.379,-0.647],[0,0]],"v":[[2.039,0.854],[1.99,1.014],[-2.039,-1.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[794.893,434.728],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.831,-0.635],[0,0],[1.538,0.684],[0.317,0.146],[0,0]],"o":[[0,0],[-1.6,-0.573],[-0.317,-0.134],[0,0],[1.905,0.818]],"v":[[4.029,-2.656],[1.624,5.305],[-3.089,3.413],[-4.029,2.986],[-1.514,-5.305]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[798.397,441.046],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.161,-0.623],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[2.125,0.805]],"v":[[3.272,1.007],[3.235,1.117],[-3.272,-0.812],[-3.175,-1.117]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[803.195,447.469],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.697,-0.488],[0,0],[2.124,0.805],[0,0]],"o":[[0,0],[-2.161,-0.623],[0,0],[2.418,0.843]],"v":[[4.182,-2.405],[2.264,4.42],[-4.182,2.296],[-2.156,-4.42]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[804.202,444.056],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.05,-0.317],[0,0],[2.417,0.843],[0,0],[0,0]],"o":[[0,0],[-1.697,-0.488],[0,0],[0,0],[1.075,0.391]],"v":[[3.358,0.287],[2.979,1.63],[-3.357,-0.385],[-2.979,-1.63],[0.159,-0.763]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[805.405,440.021],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.074,0.391]],"o":[[0,0],[-1.05,-0.318],[0,0]],"v":[[1.618,0.378],[1.581,0.526],[-1.617,-0.526]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[807.182,439.783],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.794,-0.098],[0,0],[0,0],[1.734,0.489],[0,0],[-0.513,-0.147]],"o":[[0,0],[0,0],[-1.734,-0.379],[0,0],[1.33,0.391],[0.83,0.122]],"v":[[3.755,-3.358],[1.556,4.261],[1.459,4.737],[-3.755,3.43],[-1.458,-4.737],[1.008,-3.999]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[810.221,445.045],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.393,-0.073],[0,0],[1.635,0.746],[0,0]],"o":[[0,0],[-3.106,-0.235],[0,0],[2.76,0.342]],"v":[[4.805,-3.436],[2.08,4.034],[-4.805,2.485],[-2.924,-4.034]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[816.583,446.82],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.417,-0.269],[0,0],[2.759,0.342],[0,0]],"o":[[0,0],[-2.393,-0.074],[0,0],[2.601,0.61]],"v":[[3.938,0.457],[3.791,0.849],[-3.938,0.25],[-3.621,-0.849]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[817.596,442.536],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.6,0.611],[0,0]],"o":[[0,0],[-2.417,-0.269],[0,0],[0,0]],"v":[[3.944,-0.092],[3.614,0.812],[-3.943,-0.495],[-3.845,-0.812]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[817.92,442.182],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.734,-0.378],[-5.324,0.452],[15.823,9.132],[1.844,4.957],[-8.901,-5.934],[-1.722,-0.977],[-1.794,-0.842],[0,0],[0,0],[-0.317,-0.135],[-1.599,-0.574],[0,0],[0,0],[0,0]],"o":[[6.263,1.355],[-9.982,0.426],[-15.836,-9.121],[2.552,6.324],[1.612,1.074],[1.721,0.976],[0,0],[0,0],[0.318,0.147],[1.539,0.683],[0,0],[0,0],[0,0],[1.733,0.488]],"v":[[14.682,14.809],[32.398,16.262],[-8.25,6.397],[-32.397,-16.715],[-13.9,2.784],[-8.894,5.861],[-3.62,8.595],[-2.643,9.108],[-2.631,9.059],[-1.691,9.486],[3.022,11.379],[2.924,11.684],[9.432,13.613],[9.469,13.504]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[796.999,434.973],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.232,0.024],[0,0],[0.232,0]],"o":[[0,0],[-0.232,0],[0.244,0]],"v":[[0.354,-0.025],[0.33,0.025],[-0.354,0.013]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[827.15,443.311],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.295,0.501],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[2.759,0]],"v":[[5.494,-4.406],[1.735,4.039],[-5.494,4.406],[-2.112,-3.649]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[829.592,446.984],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.378],[0,0],[2.759,0],[0,0]],"o":[[0,0],[-2.296,0.501],[0,0],[2.991,-0.159]],"v":[[3.846,-0.464],[3.761,-0.293],[-3.846,0.464],[-3.821,0.415]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[831.325,442.872],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.72,0.171],[0.879,-0.183],[0,0]],"o":[[0.891,-0.171],[-0.793,0.257],[0,0],[0,0]],"v":[[-1.159,0.165],[1.258,-0.336],[-1.258,0.336],[-1.172,0.165]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[836.343,442.243],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[2.991,-0.159],[0,0]],"o":[[0,0],[0,0],[-2.112,0.378],[0,0],[0,0]],"v":[[4.505,-1.685],[3.174,0.806],[3.162,0.806],[-4.505,1.685],[-3.895,0.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[832.009,441.602],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.091,-6.63],[1.904,-6.642],[0,0],[15.176,6.678],[-2.051,7.484]],"o":[[17.496,7.704],[0,0],[-6.202,4.152],[-17.374,-7.643],[5.971,-3.37]],"v":[[3.92,-10.665],[31.611,14.962],[31.647,15.023],[-4.382,11.141],[-31.464,-15.805]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[806.015,419.387],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-18.058,-7.948],[3.26,-7.423],[1.172,-0.769],[0,0],[17.496,7.704],[5.97,-3.37],[-0.122,0.28]],"o":[[18.045,7.936],[-0.525,1.172],[0,0],[1.905,-6.642],[-15.091,-6.63],[0.073,-0.293],[3.26,-7.424]],"v":[[4.432,-11.184],[31.207,16.63],[28.643,19.56],[28.606,19.498],[0.916,-6.128],[-34.467,-11.268],[-34.162,-12.135]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[809.019,414.851],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.663,-0.659],[6.263,1.355],[0,0],[0,0],[0,0],[-1.673,0.086],[-0.232,0],[0,0],[0,0],[0,0],[-0.794,0.256],[-0.024,0]],"o":[[0,0],[-2.051,1.16],[-5.323,0.452],[0,0],[0,0],[0,0],[1.929,0.049],[0.232,0],[0,0],[0,0],[0,0],[0.879,-0.184],[0.037,-0.012],[2.796,-0.647]],"v":[[16.293,-6.679],[12.276,3.161],[1.422,6.227],[-16.293,4.773],[-16.196,4.297],[-9.029,4.945],[-6.587,-1.625],[-1.178,-1.685],[-0.495,-1.672],[-3.205,4.945],[4.108,3.161],[7.112,-2.43],[9.627,-3.102],[9.712,-3.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[827.974,445.008],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.244,-0.378],[3.492,-1.172],[0.036,-0.013],[0.892,-0.171],[0,0],[0,0],[0,0],[0.245,0],[1.819,0.208],[0,0],[0,0],[0,0],[1.771,0.537],[0,0],[0,0],[2.246,0.989],[0.659,0.305],[0,0],[0,0],[2.234,1.501],[0,0],[0,0],[0,0],[1.368,1.416],[-0.061,0.208],[0,0],[0,0],[0.5,1.721],[0.012,0.037],[0.11,0.501],[-0.88,2.002],[-21.513,-9.462],[4.517,-10.28]],"o":[[-1.538,2.527],[-0.024,0],[-0.721,0.171],[0,0],[0,0],[0,0],[-0.232,0.025],[-1.684,-0.012],[0,0],[0,0],[0,0],[-1.71,-0.379],[0,0],[0,0],[-2.209,-0.757],[-0.672,-0.293],[0,0],[0,0],[-2.552,-1.355],[0,0],[0,0],[0,0],[-1.648,-1.367],[0.232,-0.745],[-2.601,-2.076],[0,0],[-1.087,-1.794],[-0.012,-0.037],[-0.11,-0.452],[-0.44,-2.356],[4.529,-10.281],[21.5,9.463],[-0.183,0.403]],"v":[[36.592,20.09],[28.9,25.646],[28.815,25.67],[26.397,26.17],[27.728,23.68],[19.328,25.56],[18.718,27.049],[18.009,27.086],[12.747,26.756],[13.077,25.853],[5.286,25.133],[5.19,25.451],[-0.024,24.07],[0.013,23.924],[-3.223,23.021],[-9.913,20.407],[-11.904,19.504],[-11.855,19.345],[-15.932,17.477],[-23.111,13.18],[-23.003,12.813],[-28.508,7.991],[-28.813,8.906],[-33.331,4.732],[-32.879,3.229],[-37.75,-4.548],[-38.544,-1.935],[-40.938,-7.221],[-40.961,-7.332],[-41.292,-8.76],[-40.668,-15.341],[7.119,-17.625],[37.215,18.918]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.073,-0.293],[-17.374,-7.643],[-6.203,4.151],[-0.525,1.172],[18.045,7.936],[3.26,-7.423]],"o":[[-2.051,7.484],[15.176,6.678],[1.172,-0.769],[3.26,-7.423],[-18.058,-7.948],[-0.122,0.281]],"v":[[-34.234,-12.655],[-7.154,14.292],[28.876,18.173],[31.44,15.243],[4.665,-12.57],[-33.93,-13.522]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[808.787,416.237],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":4,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false}],"ip":31,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":35,"ty":4,"nm":"coin 4 Outlines 2","parent":31,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[180.53,227.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.067,-0.853]],"o":[[0,0],[0,0]],"v":[[-2.216,-5.533],[2.149,5.533]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[874.021,353.443],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.795,-0.213],[-14.817,8.909],[-0.87,11.266]],"o":[[0,0],[8.745,4.018],[14.969,-9.001],[0,0]],"v":[[-38.321,7.081],[-28.251,18.169],[12.937,11.33],[38.321,-22.187]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[837.854,381.254],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-14.194,8.535],[-5.913,-8.027]],"o":[[-0.68,-8.968],[16.388,-9.854],[0,0]],"v":[[-30.734,20.444],[-8.336,-9.313],[31.415,-12.417]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[832.984,360.364],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[16.902,-10.163],[5.34,8.881],[-16.902,10.163],[-5.34,-8.881]],"o":[[-16.902,10.163],[-5.34,-8.881],[16.902,-10.163],[5.34,8.882]],"v":[[9.669,16.081],[-30.604,18.402],[-9.669,-16.08],[30.604,-18.402]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[832.422,361.693],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[20.134,-12.107],[7.403,12.312],[-20.134,12.107],[-7.403,-12.312]],"o":[[-20.134,12.107],[-7.403,-12.312],[20.135,-12.106],[7.403,12.312]],"v":[[13.405,22.292],[-36.456,21.921],[-13.404,-22.294],[36.456,-21.922]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[833.058,362.874],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.312,1.294],[-0.198,-5.496],[-5.312,-1.316],[-0.008,5.496]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[855.26,384.579],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.676,1.886],[0.222,-5.118],[-5.676,-1.689],[-0.585,5.118]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[844.253,391.253],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6.305,2.548],[0.814,-4.501],[-6.305,-2.783],[-0.953,4.501]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[831.898,395.969],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-3.195,0.927],[0,0]],"o":[[0,0],[0,0],[0.591,0.759],[0,0]],"v":[[-1.529,3.673],[-7.456,-3.938],[1.711,-3.438],[7.456,3.938]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[817.474,397.442],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-9.826,10.239],[-12.398,0.352],[-4.217,-7.401],[16.009,0.669],[8.566,-11.692]],"o":[[0,0],[9.826,-10.238],[0,0],[0,0],[-16.01,-0.669],[-8.567,11.692]],"v":[[-28.701,21.928],[-19.484,3.138],[17.97,-15.705],[33.548,-10.075],[18.265,-21.259],[-25.707,2.739]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.043137254902,0.105882360421,0.203921583587,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[831.118,358.543],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.907,0.718],[0.18,-6.199],[-4.906,-0.246],[0.246,6.199]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[864.002,375.723],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3.749,0.694],[-0.431,-7.69],[-3.749,0.253],[0.984,7.69]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[871.29,363.992],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.68,0.694],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.13,4.682],[3.836,2.174],[0.905,-4.682],[-3.836,-3.593]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[850.017,361.405],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.846,1.061],[0,0],[-22.541,10.427],[-0.928,8.884],[0,0],[13.436,-13.949],[7.786,-3.51],[7.74,1.665]],"o":[[0,0],[0,0],[22.541,-10.427],[0,0],[0,0],[-1.762,1.425],[-13.718,6.373],[-1.646,-0.685]],"v":[[-37.635,12.569],[-29.353,21.747],[7.013,17.935],[37.635,-18.661],[33.32,-28.362],[20.117,-1.434],[1.834,10.841],[-30.216,15.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[838.653,377.426],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.636,-25.409],[-13.336,-2.423],[-12.161,10.56],[7.165,14.146],[6.114,-4.761]],"o":[[0,0],[13.336,2.423],[12.162,-10.56],[-7.165,-14.146],[-5.577,2.787]],"v":[[-38.636,19.748],[-23.275,32.087],[20.417,18.674],[36.107,-20.364],[-7.318,-24.052]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[833.735,361.296],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false}],"ip":31,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":36,"ty":3,"nm":"E thumb peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":31,"s":[-7]},{"t":38,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[-193,13,0],"to":[0.667,0.667,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":31,"s":[-189,17,0],"to":[0,0,0],"ti":[0.667,0.667,0]},{"t":38,"s":[-193,13,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":30,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":31,"s":[100,100,100]},{"t":38,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":37,"ty":3,"nm":"E fingers peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[2]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[2]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":31,"s":[9]},{"t":38,"s":[1]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[-95,49,0],"to":[0.333,0.333,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":31,"s":[-93,51,0],"to":[0,0,0],"ti":[0.333,0.333,0]},{"t":38,"s":[-95,49,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":30,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":31,"s":[100,100,100]},{"t":38,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":38,"ty":3,"nm":"E main peg","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":31,"s":[1]},{"t":38,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":30,"s":[-330,302,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":31,"s":[-330,302,0],"to":[0,0,0],"ti":[0,0,0]},{"t":38,"s":[-330,302,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":30,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":31,"s":[100,100,100]},{"t":38,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":39,"ty":4,"nm":"E fingers Outlines","parent":37,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[144.6,2.609,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,98,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.309,0.431],[-10.616,9.995],[-9.03,-2.408],[-0.754,-5.912],[2.655,-5.336],[15.388,-5.06],[16.02,2.394],[16.375,7.756]],"o":[[6.464,4.309],[14.509,-1.451],[6.804,-6.406],[5.758,1.535],[0.754,5.912],[-7.216,14.502],[-15.387,5.06],[-18.019,-2.693],[0,0]],"v":[[-35.541,-5.875],[-1.499,-0.703],[35.991,-17.078],[59.258,-32.031],[69.692,-18.8],[65.894,-1.596],[30.1,29.38],[-19.166,31.185],[-70.445,15.672]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[914.356,615.855],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-11.635,7.326],[-9.03,-2.408],[-0.754,-5.911],[3.091,-5.095],[14.221,-3.016],[15.783,3.642],[16.375,7.757]],"o":[[30.595,10.773],[7.909,-4.979],[5.759,1.536],[0.754,5.912],[-5.428,8.947],[-11.35,2.408],[-11.204,-2.586],[0,0]],"v":[[-51.544,-4.195],[16.57,-13.482],[40.355,-26.147],[50.789,-12.916],[46.991,4.288],[15.277,23.146],[-35.14,21.854],[-41.633,20.798]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[924.325,591.337],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-11.635,7.326],[-9.03,-2.408],[-0.754,-5.912],[3.091,-5.096],[14.22,-3.017],[15.784,3.642],[16.375,7.756]],"o":[[22.408,9.049],[7.908,-4.979],[5.758,1.536],[0.754,5.912],[-5.428,8.947],[-11.35,2.408],[-11.203,-2.586],[0,0]],"v":[[-47.019,-7.094],[12.046,-14.226],[35.831,-26.891],[46.265,-13.66],[42.467,3.544],[10.753,22.402],[-23.319,25.656],[-28.49,20.054]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[911.182,572.258],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-11.634,7.325],[-9.03,-2.408],[-0.753,-5.912],[3.091,-5.096],[14.22,-3.017],[15.783,3.642],[16.375,7.757]],"o":[[42.23,12.497],[7.909,-4.98],[5.759,1.535],[0.754,5.912],[-5.427,8.947],[-11.351,2.407],[-11.204,-2.585],[0,0]],"v":[[-52.606,-13.274],[17.633,-11.981],[41.418,-24.646],[51.852,-11.415],[48.054,5.789],[16.341,24.647],[0.397,22.061],[-15.978,17.321]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[889.622,556.462],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":40,"ty":4,"nm":"E thumb Outlines","parent":36,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[242.53,36.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[26.73,-2.11]],"o":[[-21.17,-0.008],[0,0]],"v":[[17.971,-13.732],[-17.971,13.74]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.137254901961,0.121568634931,0.125490196078,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[818.177,557.355],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-33.759,2.149],[-8.046,8.473],[-10.915,-1.148],[4.517,-10.012],[5.751,-0.574]],"o":[[0,0],[24.712,-1.575],[4.468,-4.713],[10.915,1.148],[-5.312,11.77],[0,0]],"v":[[-58.275,27.001],[-13.467,-5.744],[23.308,-10.347],[44.564,-25.853],[53.758,-6.318],[29.046,13.217]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[807.102,530.406],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.86,11.829],[-0.02,0.089],[-7.268,0.1],[-4.968,11.008],[10.915,1.148],[4.468,-4.713],[24.712,-1.575],[0,0],[-26.072,-3.855]],"o":[[0.016,-0.087],[1.678,-7.331],[6.271,-1.33],[4.517,-10.012],[-10.915,-1.148],[-8.046,8.473],[-33.759,2.149],[0,0],[8.616,0.102]],"v":[[13.855,17.906],[13.901,17.645],[30.26,6.125],[53.758,-13.213],[44.564,-32.748],[23.308,-17.242],[-13.467,-12.639],[-58.275,20.106],[-6.896,33.794]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[807.102,537.301],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":41,"ty":4,"nm":"E main Outlines 2","parent":38,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[379.53,-252.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-37.392,-8.009]],"o":[[14.498,-26.82],[0,0]],"v":[[-43.66,13.41],[43.661,-0.374]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[792.488,543.997],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.427,-22.404]],"o":[[27.141,12.502],[0,0]],"v":[[-15.725,-27.581],[15.299,27.581]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[717.437,594.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.428,-30.169]],"o":[[27.154,7.326],[0,0]],"v":[[-18.101,-26.72],[18.1,26.72]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[688.349,607.825],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.576,-42.671]],"o":[[12.93,-1.294],[0,0]],"v":[[-21.329,-26.073],[18.753,27.367]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[665.291,627.433],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[30.718,0],[15.885,-5.518],[8.241,-5.531],[6.214,-8.485],[0.171,-22.514],[0,0],[0,0],[0,0],[-39.534,37.641],[-0.195,0.183],[-8.84,5.385],[-9.865,3.419],[0,0]],"o":[[55.589,12.49],[0,0],[0,0],[-12.149,0],[-8.937,3.089],[-8.29,5.543],[-9.877,13.479],[-0.574,75.832],[0,0],[0,0],[0,-18.961],[0.195,-0.196],[8.644,-8.156],[10.866,-6.642],[26.775,-9.279],[0,0]],"v":[[84.183,-161.648],[148.392,-81.933],[99.701,-70.298],[25.005,-90.407],[-18.937,-82.825],[-45.04,-70.017],[-67.139,-49.102],[-83.585,4.399],[-84.159,161.648],[-147.928,161.648],[-147.928,9.563],[-108.858,-103.617],[-108.26,-104.179],[-81.839,-124.361],[-50.388,-139.195],[-3.138,-147.863]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[751.965,705.27],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.576,-42.672],[0,0],[0.17,-22.514],[0,0],[0,0],[0,0],[-39.533,37.641],[-0.195,0.183],[0,0]],"o":[[0,0],[-9.877,13.48],[-0.574,75.832],[0,0],[0,0],[0,-18.961],[0.196,-0.195],[0,0],[12.93,-1.294]],"v":[[38.948,-78.692],[39.728,-77.324],[23.284,-23.823],[22.709,133.426],[-41.061,133.426],[-41.061,-18.658],[-1.991,-131.839],[-1.393,-132.401],[-1.135,-132.131]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[645.097,733.492],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.427,-30.169],[0,0],[6.215,-8.486],[0,0],[12.929,-1.294],[0,0],[-8.839,5.384],[0,0]],"o":[[0,0],[-8.29,5.543],[0,0],[2.576,-42.671],[0,0],[8.645,-8.156],[0,0],[27.154,7.325]],"v":[[31.134,16.006],[31.61,16.714],[9.511,37.629],[8.73,36.261],[-31.353,-17.179],[-31.61,-17.447],[-5.189,-37.629],[-5.067,-37.434]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[675.315,618.539],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.427,-22.404],[0,0],[8.241,-5.531],[0,0],[27.153,7.325],[0,0],[-9.865,3.418],[0,0]],"o":[[0,0],[-8.937,3.089],[0,0],[-0.427,-30.17],[0,0],[10.866,-6.642],[0,0],[27.141,12.503]],"v":[[31.091,20.951],[31.384,21.781],[5.281,34.589],[4.804,33.881],[-31.396,-19.559],[-31.518,-19.755],[-0.067,-34.589],[0.067,-34.211]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[701.644,600.665],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[55.589,12.49],[21.76,-0.093],[0,0],[26.775,-9.279],[0,0],[0.428,-22.404],[0,0],[-12.149,0],[0,0],[0,0]],"o":[[-10.971,-2.251],[-33.759,2.148],[0,0],[0,0],[27.142,12.502],[0,0],[15.885,-5.518],[30.718,0],[0,0],[0,0]],"v":[[35.181,-42.484],[-14.9,-48.773],[-52.14,-28.699],[-99.39,-20.031],[-99.256,-19.651],[-68.232,35.51],[-67.939,36.339],[-23.997,28.757],[50.699,48.866],[99.39,37.231]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[800.967,586.106],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"ct":1,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"main","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[171.5,223.5,0],"ix":2,"l":2},"a":{"a":0,"k":[966,543.5,0],"ix":1,"l":2},"s":{"a":0,"k":[44,44,100],"ix":6,"l":2}},"ao":0,"w":1932,"h":1087,"ip":0,"op":106,"st":0,"bm":0}],"markers":[]}
\ No newline at end of file
diff --git a/assets/fonts/native/ExpensifyMono-Bold.otf b/assets/fonts/native/ExpensifyMono-Bold.otf
index 4198f46f6d79..86b7850ccf5c 100755
Binary files a/assets/fonts/native/ExpensifyMono-Bold.otf and b/assets/fonts/native/ExpensifyMono-Bold.otf differ
diff --git a/assets/fonts/native/ExpensifyMono-Regular.otf b/assets/fonts/native/ExpensifyMono-Regular.otf
index 1c6242a717f9..13c388d5334d 100755
Binary files a/assets/fonts/native/ExpensifyMono-Regular.otf and b/assets/fonts/native/ExpensifyMono-Regular.otf differ
diff --git a/assets/fonts/native/ExpensifyNeue-Bold.otf b/assets/fonts/native/ExpensifyNeue-Bold.otf
index 7534aecda322..ac0f9cb66ba8 100755
Binary files a/assets/fonts/native/ExpensifyNeue-Bold.otf and b/assets/fonts/native/ExpensifyNeue-Bold.otf differ
diff --git a/assets/fonts/native/ExpensifyNeue-BoldItalic.otf b/assets/fonts/native/ExpensifyNeue-BoldItalic.otf
index 4c28031fedd6..47514e0e3ffa 100755
Binary files a/assets/fonts/native/ExpensifyNeue-BoldItalic.otf and b/assets/fonts/native/ExpensifyNeue-BoldItalic.otf differ
diff --git a/assets/fonts/native/ExpensifyNeue-Italic.otf b/assets/fonts/native/ExpensifyNeue-Italic.otf
index a5d19502dbfe..e398dd94665b 100755
Binary files a/assets/fonts/native/ExpensifyNeue-Italic.otf and b/assets/fonts/native/ExpensifyNeue-Italic.otf differ
diff --git a/assets/fonts/native/ExpensifyNeue-Regular.otf b/assets/fonts/native/ExpensifyNeue-Regular.otf
index d4d8cbe63b44..6a5f283f0178 100755
Binary files a/assets/fonts/native/ExpensifyNeue-Regular.otf and b/assets/fonts/native/ExpensifyNeue-Regular.otf differ
diff --git a/assets/fonts/web/ExpensifyMono-Bold.woff b/assets/fonts/web/ExpensifyMono-Bold.woff
index 6cbe62241ccb..6d0876b3543e 100755
Binary files a/assets/fonts/web/ExpensifyMono-Bold.woff and b/assets/fonts/web/ExpensifyMono-Bold.woff differ
diff --git a/assets/fonts/web/ExpensifyMono-Bold.woff2 b/assets/fonts/web/ExpensifyMono-Bold.woff2
index 73a872d7612c..c81dcc4d5d9e 100755
Binary files a/assets/fonts/web/ExpensifyMono-Bold.woff2 and b/assets/fonts/web/ExpensifyMono-Bold.woff2 differ
diff --git a/assets/fonts/web/ExpensifyMono-Regular.woff b/assets/fonts/web/ExpensifyMono-Regular.woff
index 094b25062760..e7b890b4a729 100755
Binary files a/assets/fonts/web/ExpensifyMono-Regular.woff and b/assets/fonts/web/ExpensifyMono-Regular.woff differ
diff --git a/assets/fonts/web/ExpensifyMono-Regular.woff2 b/assets/fonts/web/ExpensifyMono-Regular.woff2
index 497eed2191c0..0d466258d91f 100755
Binary files a/assets/fonts/web/ExpensifyMono-Regular.woff2 and b/assets/fonts/web/ExpensifyMono-Regular.woff2 differ
diff --git a/assets/fonts/web/ExpensifyNeue-Bold.woff b/assets/fonts/web/ExpensifyNeue-Bold.woff
index 387c232dffcc..b8960a37dd5e 100755
Binary files a/assets/fonts/web/ExpensifyNeue-Bold.woff and b/assets/fonts/web/ExpensifyNeue-Bold.woff differ
diff --git a/assets/fonts/web/ExpensifyNeue-Bold.woff2 b/assets/fonts/web/ExpensifyNeue-Bold.woff2
index 36ba41100e56..958e92d764be 100755
Binary files a/assets/fonts/web/ExpensifyNeue-Bold.woff2 and b/assets/fonts/web/ExpensifyNeue-Bold.woff2 differ
diff --git a/assets/fonts/web/ExpensifyNeue-BoldItalic.woff b/assets/fonts/web/ExpensifyNeue-BoldItalic.woff
index fae33b057ef9..f05beecfc88d 100755
Binary files a/assets/fonts/web/ExpensifyNeue-BoldItalic.woff and b/assets/fonts/web/ExpensifyNeue-BoldItalic.woff differ
diff --git a/assets/fonts/web/ExpensifyNeue-BoldItalic.woff2 b/assets/fonts/web/ExpensifyNeue-BoldItalic.woff2
index 40829f25d10b..dc968d000aa7 100755
Binary files a/assets/fonts/web/ExpensifyNeue-BoldItalic.woff2 and b/assets/fonts/web/ExpensifyNeue-BoldItalic.woff2 differ
diff --git a/assets/fonts/web/ExpensifyNeue-Italic.woff b/assets/fonts/web/ExpensifyNeue-Italic.woff
index 6592e735e982..569923ec21ca 100755
Binary files a/assets/fonts/web/ExpensifyNeue-Italic.woff and b/assets/fonts/web/ExpensifyNeue-Italic.woff differ
diff --git a/assets/fonts/web/ExpensifyNeue-Italic.woff2 b/assets/fonts/web/ExpensifyNeue-Italic.woff2
index 1085e342cd14..501443a70d2a 100755
Binary files a/assets/fonts/web/ExpensifyNeue-Italic.woff2 and b/assets/fonts/web/ExpensifyNeue-Italic.woff2 differ
diff --git a/assets/fonts/web/ExpensifyNeue-Regular.woff b/assets/fonts/web/ExpensifyNeue-Regular.woff
index a8a311d59e77..449ad4b35304 100755
Binary files a/assets/fonts/web/ExpensifyNeue-Regular.woff and b/assets/fonts/web/ExpensifyNeue-Regular.woff differ
diff --git a/assets/fonts/web/ExpensifyNeue-Regular.woff2 b/assets/fonts/web/ExpensifyNeue-Regular.woff2
index cdec638e361b..f5e0f2c77d8a 100755
Binary files a/assets/fonts/web/ExpensifyNeue-Regular.woff2 and b/assets/fonts/web/ExpensifyNeue-Regular.woff2 differ
diff --git a/assets/images/expensify-logo--adhoc.svg b/assets/images/expensify-logo--adhoc.svg
new file mode 100644
index 000000000000..63b6f896e3a5
--- /dev/null
+++ b/assets/images/expensify-logo--adhoc.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/images/expensify-logo--dev.svg b/assets/images/expensify-logo--dev.svg
new file mode 100644
index 000000000000..42a0f1d8e952
--- /dev/null
+++ b/assets/images/expensify-logo--dev.svg
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/images/expensify-logo--staging.svg b/assets/images/expensify-logo--staging.svg
new file mode 100644
index 000000000000..335c41a294e3
--- /dev/null
+++ b/assets/images/expensify-logo--staging.svg
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/images/home-background--desktop.svg b/assets/images/home-background--desktop.svg
new file mode 100644
index 000000000000..7241c46036c0
--- /dev/null
+++ b/assets/images/home-background--desktop.svg
@@ -0,0 +1,8839 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/images/home-background--mobile.svg b/assets/images/home-background--mobile.svg
new file mode 100644
index 000000000000..0af3aac59146
--- /dev/null
+++ b/assets/images/home-background--mobile.svg
@@ -0,0 +1,6556 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/images/home-fade-gradient--mobile.svg b/assets/images/home-fade-gradient--mobile.svg
new file mode 100644
index 000000000000..ca03eb3323af
--- /dev/null
+++ b/assets/images/home-fade-gradient--mobile.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/images/home-fade-gradient.svg b/assets/images/home-fade-gradient.svg
new file mode 100644
index 000000000000..6aada6633a8b
--- /dev/null
+++ b/assets/images/home-fade-gradient.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/images/new-expensify-adhoc.svg b/assets/images/new-expensify-adhoc.svg
new file mode 100644
index 000000000000..db2f420c4e0e
--- /dev/null
+++ b/assets/images/new-expensify-adhoc.svg
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/images/product-illustrations/home-illustration-hands.svg b/assets/images/product-illustrations/home-illustration-hands.svg
new file mode 100644
index 000000000000..9a70d8cc6363
--- /dev/null
+++ b/assets/images/product-illustrations/home-illustration-hands.svg
@@ -0,0 +1,545 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/images/task.svg b/assets/images/task.svg
new file mode 100644
index 000000000000..20412f771b69
--- /dev/null
+++ b/assets/images/task.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/config/electronBuilder.config.js b/config/electronBuilder.config.js
index ba018e04b8bc..46433e4b1574 100644
--- a/config/electronBuilder.config.js
+++ b/config/electronBuilder.config.js
@@ -6,13 +6,13 @@ const pullRequestNumber = process.env.PULL_REQUEST_NUMBER;
const s3Bucket = {
production: 'expensify-cash',
staging: 'staging-expensify-cash',
- internal: 'ad-hoc-expensify-cash',
+ adhoc: 'ad-hoc-expensify-cash',
};
const s3Path = {
production: '/',
staging: '/',
- internal: process.env.PULL_REQUEST_NUMBER
+ adhoc: process.env.PULL_REQUEST_NUMBER
? `/desktop/${pullRequestNumber}/`
: '/',
};
@@ -20,10 +20,10 @@ const s3Path = {
const macIcon = {
production: './desktop/icon.png',
staging: './desktop/icon-stg.png',
- internal: './desktop/icon-stg.png',
+ adhoc: './desktop/icon-adhoc.png',
};
-const isCorrectElectronEnv = ['production', 'staging', 'internal'].includes(
+const isCorrectElectronEnv = ['production', 'staging', 'adhoc'].includes(
process.env.ELECTRON_ENV,
);
diff --git a/config/webpack/webpack.common.js b/config/webpack/webpack.common.js
index 50bc7f0f9a81..59b34693b267 100644
--- a/config/webpack/webpack.common.js
+++ b/config/webpack/webpack.common.js
@@ -29,6 +29,7 @@ const envToLogoSuffixMap = {
production: '',
staging: '-stg',
dev: '-dev',
+ adhoc: '-adhoc',
};
function mapEnvToLogoSuffix(envFile) {
@@ -120,7 +121,7 @@ const webpackConfig = ({envFile = '.env', platform = 'web'}) => ({
// React Native JavaScript environment requires the global __DEV__ variable to be accessible.
// react-native-render-html uses variable to log exclusively during development.
// See https://reactnative.dev/docs/javascript-environment
- __DEV__: /staging|prod/.test(envFile) === false,
+ __DEV__: /staging|prod|adhoc/.test(envFile) === false,
}),
// This allows us to interactively inspect JS bundle contents
diff --git a/contributingGuides/CONTRIBUTING.md b/contributingGuides/CONTRIBUTING.md
index e4264a5cb56e..fb256bf7e955 100644
--- a/contributingGuides/CONTRIBUTING.md
+++ b/contributingGuides/CONTRIBUTING.md
@@ -59,7 +59,7 @@ Please be aware that compensation for any support in solving an issue is provide
- Merged PR within 9 business days - 50% **penalty**
- No PR within 12 business days - **Contract terminated**
-If the PR causes a regression within 7 days of being deployed to production, contributors are not eligible for the 50% bonus.
+If the PR causes a regression at any point within the regression period (starting when the code is merged and ending 7 days after being deployed to production), contributors are not eligible for the 50% bonus.
## Finding Jobs
A job could be fixing a bug or working on a new feature. There are two ways you can find a job that you can contribute to:
@@ -81,6 +81,7 @@ Please follow these steps to propose a job:
4. If there is no existing GitHub issue or Upwork job, check if the issue is happening on prod (as opposed to only happening on dev)
5. If the issue is just in dev then it means it's a new issue and has not been deployed to production. In this case, you should try to find the offending PR and comment in the issue tied to the PR and ask the assigned users to add the `DeployBlockerCash` label. If you can't find it, follow the reporting instructions in the next item, but note that the issue is a regression only found in dev and not in prod.
6. If the issue happens in main, staging, or production then report the issue(s) in the #expensify-bugs Slack channel, prefixed with `Bug:` or `Feature Request:`. Please use the templates for bugs and feature requests that are bookmarked in the #expensify-bugs channel. View [this guide](https://github.com/Expensify/App/blob/main/contributingGuides/HOW_TO_CREATE_A_PLAN.md) for help creating a plan when proposing a feature request.
+ - **Important note/reminder**: never share any information pertaining to a customer of Expensify when describing the bug. This includes, and is not limited to, a customer's name, email, and contact information.
7. The Expensify team will review your job proposal in the appropriate slack channel. If you've provided a quality proposal that we choose to implement, a GitHub issue will be created and your Slack handle will be included in the original post after `Issue reported by:`
8. If an external contributor other than yourself is hired to work on the issue, you will also be hired for the same job in Upwork to receive your payout. No additional work is required. If the issue is fixed internally, a dedicated job will be created to hire and pay you after the issue is fixed.
9. Payment will be made 7 days after code is deployed to production if there are no regressions. If a regression is discovered, payment will be issued 7 days after all regressions are fixed.
@@ -111,7 +112,7 @@ Additionally if you want to discuss an idea with the open source community witho
3. If you cannot reproduce the problem, pause on this step and add a comment to the issue explaining where you are stuck or that you don't think the issue can be reproduced.
#### Propose a solution for the job
-4. Do not propose solutions to jobs without the `Help Wanted` label applied. Any proposals submitted when that label is not present will not be reviewed.
+4. You can propose solutions on any issue at at any time, but if you propose solutions to jobs before the `Help Wanted` label is applied, you do so at your own risk. Proposals will not be reviewed until the label is added and there is always a chance that we might not add the label or hire an external contributor for the job.
5. After you reproduce the issue, complete the [proposal template here](./PROPOSAL_TEMPLATE.md) and post it as a comment in the corresponding GitHub issue (linked in the Upwork job).
- Note: Before submitting a proposal on an issue, be sure to read any other existing proposals. ALL NEW PROPOSALS MUST BE DIFFERENT FROM EXISTING PROPOSALS. The *difference* should be important, meaningful or considerable.
6. Refrain from leaving additional comments until someone from the Contributor-Plus team and / or someone from Expensify provides feedback on your proposal (do not create a pull request yet).
@@ -177,3 +178,12 @@ Follow all the above above steps and processes. When you find a job you'd like t
- If no proposals have been submitted by other contributors, BugZero (BZ) team member or an internal engineer will assign the issue to you.
- If there are existing proposals, BZ will put the issue on hold. Contributor+ (C+) will review the existing proposals. If a contributor’s proposal is accepted then contributor will be assigned to the issue. If not the issue will be assigned to the agency-employee.
- Once assigned follow the steps [here](https://github.com/Expensify/App/blob/main/contributingGuides/CONTRIBUTING.md#propose-a-solution-for-the-job) to submit your proposal
+
+#### Guide on Acronyms used within Expensify Communication
+During communication with Expensify, you will come across a variety of acronyms used by our team. While acronyms can be useful, they cease to be the moment they are not known to the receiver. As such, we wanted to create a list here of our most commonly used acronyms and what they're referring to. Lastly, please never hesitate to ask in slack or the GH issue if there are any that are not understood/known!
+- BZ: Bug Zero (Expensify internal team in charge of managing the GH issues related to our open-source project)
+- LHN: Left Hand Navigation (Primary navigation modal in Expensify Chat, docked on the left hand side)
+- OP: Original Post (Most commonly the post in E/App GH issues that reports the bug)
+- GBR: Green Brick Road (UX Design Principle that utlizes green indicators on action items to encourage the user down the optimal path for a given process or task)
+- VBA: Verified Bank Account (Bank account that has been verified as real and belonging to the correct business/individual)
+- NAB: Not a Blocker (An issue that doesn't block progress, but would be nice to not have)
diff --git a/contributingGuides/FORMS.md b/contributingGuides/FORMS.md
index 3ecfefefed90..fdfb97d25eae 100644
--- a/contributingGuides/FORMS.md
+++ b/contributingGuides/FORMS.md
@@ -302,7 +302,3 @@ In case there's a nested Picker in Form, we should pass the props below to Form,
#### Enable ScrollContext
Pass the `scrollContextEnabled` prop to enable scrolling up when Picker is pressed, making sure the Picker is always in view and doesn't get covered by virtual keyboards for example.
-
-#### Enable scrolling to overflow
-
-In addition to the `scrollContextEnabled` prop, we can also pass `scrollToOverflowEnabled` when the nested Picker is at the bottom of the Form to prevent the popup selector from covering Picker.
diff --git a/contributingGuides/REGRESSION_TEST_BEST_PRACTICES.md b/contributingGuides/REGRESSION_TEST_BEST_PRACTICES.md
index 72348133f9f6..842fa711ba15 100644
--- a/contributingGuides/REGRESSION_TEST_BEST_PRACTICES.md
+++ b/contributingGuides/REGRESSION_TEST_BEST_PRACTICES.md
@@ -7,6 +7,22 @@ Welcome to the Regression Test Best Practices page! Thanks for taking the time t
## Context
We use a third party to run QA on our new application (the one you're helping build!) to catch bugs. When a bug is found, we then create a job available to our community of open-source contributors, and once the bug is successfully squashed, we want to ensure that the bug never comes back - because after all, the whole point of squashing a bug is to ensure it's dead! Therefore, we need to either create a new test case for our QA team to complete and make sure the bug doesn't come back, or update an existing test case to cover this scenario. Our QA tests are broken into various categories that cover the scenario taking place in the User Experience such as starting a new 1:1 chat, requesting money, or updating profile settings. Then we break down the scenario into _exact_ written steps for the QA team to replicate and ensure they get the correct result. This is where you come in!
+## Determining if we should create a regression test for the bug
+
+Before proposing test steps for a bug, we first need to determine whether or not we should create a test for it. In order to determine this, we look for these common traits:
+- Is it easy to test for this bug?
+- Is the bug related to an important user flow? (For example, adding a bank account)
+- Is it an impactful bug?
+
+If the answer is yes to all of those questions, you can feel confident that we should create a test for the bug.
+
+If the answer is no to all of those questions, you can feel confident we shouldn't create a test for the bug.
+
+Once you've come to an answer on determining if we should create a test or not, you'll then post a comment in the GH outlining your recommendation and your reasoning for why (short and sweet is fine!).
+- Note: If you feel the answer is no to some, but not all, of the questions, trust your gut and proceed to post your recommendation and reasoning for it in the GH.
+
+Once your decision is posted you can either move on to the below steps, or ensure the other items in the checklist are complete and wait to be paid!
+
## Formatting of regression test step proposals
#### Location and format of the proposal post
diff --git a/contributingGuides/REVIEWER_CHECKLIST.md b/contributingGuides/REVIEWER_CHECKLIST.md
index 5beafc1dd542..4370978c8a27 100644
--- a/contributingGuides/REVIEWER_CHECKLIST.md
+++ b/contributingGuides/REVIEWER_CHECKLIST.md
@@ -19,11 +19,12 @@
- [ ] If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
- [ ] I verified proper code patterns were followed (see [Reviewing the code](https://github.com/Expensify/App/blob/main/contributingGuides/PR_REVIEW_GUIDELINES.md#reviewing-the-code))
- [ ] I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. `toggleReport` and not `onIconClick`).
+ - [ ] I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. `myBool && `.
- [ ] I verified that comments were added to code that is not self explanatory
- [ ] I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
- [ ] I verified any copy / text shown in the product is localized by adding it to `src/languages/*` files and using the [translation method](https://github.com/Expensify/App/blob/4bd99402cebdf4d7394e0d1f260879ea238197eb/src/components/withLocalize.js#L60)
- [ ] I verified all numbers, amounts, dates and phone numbers shown in the product are using the [localization methods](https://github.com/Expensify/App/blob/4bd99402cebdf4d7394e0d1f260879ea238197eb/src/components/withLocalize.js#L60-L68)
- - [ ] I verified any copy / text that was added to the app is correct English and approved by marketing by adding the `Waiting for Copy` label for a copy review on the original GH to get the correct copy.
+ - [ ] I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is approved by marketing by adding the `Waiting for Copy` label for a copy review on the original GH to get the correct copy.
- [ ] I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
- [ ] I verified the JSDocs style guidelines (in [`STYLE.md`](https://github.com/Expensify/App/blob/main/contributingGuides/STYLE.md#jsdocs)) were followed
- [ ] If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
diff --git a/desktop/icon-adhoc.png b/desktop/icon-adhoc.png
new file mode 100644
index 000000000000..5812ad6c5404
Binary files /dev/null and b/desktop/icon-adhoc.png differ
diff --git a/desktop/main.js b/desktop/main.js
index 07c51a0bf5f9..662b2a136146 100644
--- a/desktop/main.js
+++ b/desktop/main.js
@@ -241,7 +241,7 @@ const mainWindow = (() => {
if (__DEV__) {
console.debug('CONFIG: ', CONFIG);
app.dock.setIcon(`${__dirname}/../icon-dev.png`);
- app.setName('New Expensify');
+ app.setName('New Expensify Dev');
}
app.on('will-finish-launching', () => {
diff --git a/docs/.gitignore b/docs/.gitignore
index f40fbd8ba564..217151928969 100644
--- a/docs/.gitignore
+++ b/docs/.gitignore
@@ -3,3 +3,4 @@ _site
.jekyll-cache
.jekyll-metadata
vendor
+_data/routes.yml
diff --git a/docs/README.md b/docs/README.md
index 9193439c4b59..1e54ad58393f 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -68,7 +68,7 @@ More details about the Jekyll project structure can be found [here](https://jeky
## Add content
-Copy the [template](https://github.com/Expensify/App/blob/main/docs/TEMPLATE.md) file into the correct subdirectory of `/articles`. For example, if the article belongs in the `Send money` hub, then copy the template into `articles/send-money` directory. Next, rename the copy with the name of the article title, i.e. [The-Free-Plan.md](https://github.com/Expensify/App/blob/main/docs/articles/send-money/The-Free-Plan.md) (you can use dashes for spaces in the file name if it's needed) and put the new file inside of the respective hub folder or sub-folder. The title will be rendered automatically according to the filename (the dashes will be removed in the generated site page).
+Copy the [template](https://github.com/Expensify/App/blob/main/docs/TEMPLATE.md) file into the correct subdirectory of `/articles`. For example, if the article belongs in the `Send money` hub and `Workspaces` section, then copy the template into `articles/send-money/workspaces` directory. Next, rename the copy with the name of the article title, i.e. [The-Free-Plan.md](https://github.com/Expensify/App/blob/main/docs/articles/send-money/The-Free-Plan.md) (you can use dashes for spaces in the file name if it's needed) and put the new file inside of the respective hub folder or sub-folder. The title will be rendered automatically according to the filename (the dashes will be removed in the generated site page).
The sections of the article will be filled and nested automatically in the LHN, just ensure to use the [heading markdown tags](https://www.markdownguide.org/cheat-sheet/) correctly.
@@ -88,7 +88,9 @@ Just update the content for each variable accordingly or remove it if the inform
## Add the new page to routes.yml
-Next, add the article to `_data/routes.yml`. Note that hubs contain one or more articles, which may or may not be grouped into sections with other related articles.
+Next, run the command `npm run createDocsRoutes` to add the article to `_data/routes.yml`. Note that hubs contain one or more articles, which may or may not be grouped into sections with other related articles. All articles grouped under a section will be under the same subfolder in the hub folder.
+
+If you have added a new hub, make sure to update the `_routes.yml` with the folder name, title, icon and description of the hub.
# How the site is deployed
This site is hosted on GitHub Pages. GitHub Pages has a built-in Jekyll integration, and we have it configured such that whenever code is merged to main, GitHub will automatically build the Jekyll site housed in the `/docs` directory and deploy it straight to production. The help site is publicly discoverable at https://help.expensify.com/
diff --git a/docs/_data/_routes.yml b/docs/_data/_routes.yml
new file mode 100644
index 000000000000..aff9c961544c
--- /dev/null
+++ b/docs/_data/_routes.yml
@@ -0,0 +1,26 @@
+home:
+ href: home
+ title: Welcome to ExpensifyHelp!
+ description: Find the answers to all of your questions about receipts, expenses, corporate cards, or anything else in the spend management universe.
+
+# Hubs are comprised of sections and articles. Sections contain multiple related articles, but there can be standalone articles as well
+hubs:
+ - href: send-money
+ title: Send money
+ description: With only a couple of clicks, send money to your friends or coworkers.
+ icon: /assets/images/paper-airplane.svg
+
+ - href: request-money
+ title: Request money
+ icon: /assets/images/money-case.svg
+ description: Request money for work expenses, bills, or a night out with friends.
+
+ - href: playbooks
+ title: Playbooks
+ icon: /assets/images/playbook.svg
+ description: Best practices for how to best deploy Expensify for your business
+
+ - href: other
+ title: Other
+ description: Everything else you're looking for is right here.
+ icon: /assets/images/lightbulb.svg
diff --git a/docs/_data/routes.yml b/docs/_data/routes.yml
deleted file mode 100644
index 0eb26895e9ec..000000000000
--- a/docs/_data/routes.yml
+++ /dev/null
@@ -1,54 +0,0 @@
-home:
- href: home
- title: Welcome to ExpensifyHelp!
- description: Find the answers to all of your questions about receipts, expenses, corporate cards, or anything else in the spend management universe.
-
-# Hubs are comprised of sections and articles. Sections contain multiple related articles, but there can be standalone articles as well
-hubs:
- - href: send-money
- title: Send money
- description: With only a couple of clicks, send money to your friends or coworkers.
- icon: /assets/images/paper-airplane.svg
- sections:
- - href: workspaces
- title: Workspaces
- articles:
- - href: The-Free-Plan
- title: The Free Plan
- - href: paying-friends
- title: Paying Friends
- articles:
- - href: Request-and-Send-Money
- title: Request and Send Money
-
- - href: request-money
- title: Request money
- icon: /assets/images/money-case.svg
- description: Request money for work expenses, bills, or a night out with friends.
- articles:
- - href: Request-and-Send-Money
- title: Request and Send Money
-
- - href: playbooks
- title: Playbooks
- icon: /assets/images/playbook.svg
- description: Best practices for how to best deploy Expensify for your business
- articles:
- - href: Expensify-Playbook-for-US-based-VC-Backed-Startups
- title: Expensify Playbook for US-Based VC-Backed Startups
- - href: Expensify-Playbook-for-US-Based-Bootstrapped-Startups
- title: Expensify Playbook for US-Based Bootstrapped Startups
- - href: Expensify-Playbook-for-US-Based-Small-Businesses
- title: Expensify Playbook for US-Based Small Businesses
-
- - href: other
- title: Other
- description: Everything else you're looking for is right here.
- icon: /assets/images/lightbulb.svg
- articles:
- - href: Your-Expensify-Account-Manager
- title: Your Expensify Account Manager
- - href: Your-Expensify-Partner-Manager
- title: Your Expensify Partner Manager
- - href: Everything-About-Chat
- title: Everything About Chat
diff --git a/docs/_includes/article-card.html b/docs/_includes/article-card.html
index 644863c83d04..a088e5e406db 100644
--- a/docs/_includes/article-card.html
+++ b/docs/_includes/article-card.html
@@ -3,6 +3,6 @@
{{ include.title }}
-
+
diff --git a/docs/_includes/hub.html b/docs/_includes/hub.html
index b0f26d19f220..acdc901a38f6 100644
--- a/docs/_includes/hub.html
+++ b/docs/_includes/hub.html
@@ -17,7 +17,8 @@
{% for article in section.articles %}
- {% include article-card.html hub=hub.href href=article.href title=article.title %}
+ {% assign article_href = section.href | append: '/' | append: article.href %}
+ {% include article-card.html hub=hub.href href=article_href title=article.title %}
{% endfor %}
diff --git a/docs/_includes/lhn-template.html b/docs/_includes/lhn-template.html
index cbc5f3bae539..0473e5da9e9c 100644
--- a/docs/_includes/lhn-template.html
+++ b/docs/_includes/lhn-template.html
@@ -13,7 +13,7 @@
{% if hub.href == activeHub %}
-
+
{{ hub.title }}
@@ -23,7 +23,8 @@
{{ section.title }}
{% for article in section.articles %}
- {% include lhn-article-link.html hub=hub.href href=article.href title=article.title %}
+ {% assign article_href = section.href | append: '/' | append: article.href %}
+ {% include lhn-article-link.html hub=hub.href href=article_href title=article.title %}
{% endfor %}
@@ -38,7 +39,7 @@
{% else %}
-
+
{{ hub.title }}
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html
index 9c256602144a..e0ed71b46818 100644
--- a/docs/_layouts/default.html
+++ b/docs/_layouts/default.html
@@ -22,8 +22,8 @@
// and finally commonAncestorContainer.parentNode.closest('data-testid') is targeted dom.
if (range.commonAncestorContainer instanceof HTMLElement) {
- node = range.commonAncestorContainer.closest(`[${tagAttribute}]`);
+ parent = range.commonAncestorContainer.closest(`[${tagAttribute}]`);
} else {
- node = range.commonAncestorContainer.parentNode.closest(`[${tagAttribute}]`);
+ parent = range.commonAncestorContainer.parentNode.closest(`[${tagAttribute}]`);
}
- // This means "range.commonAncestorContainer" is a text node. We simply get its parent node.
- if (!node) {
- node = range.commonAncestorContainer.parentNode;
+ // Keep traversing up to clone all parents with 'data-testid' attribute.
+ while (parent) {
+ const cloned = parent.cloneNode();
+ cloned.appendChild(child);
+ child = cloned;
+
+ parent = parent.parentNode.closest(`[${tagAttribute}]`);
}
- node = node.cloneNode();
- node.appendChild(clonedSelection);
- div.appendChild(node);
+ div.appendChild(child);
}
}
diff --git a/src/libs/SidebarUtils.js b/src/libs/SidebarUtils.js
index 061bc0a837a7..e3d33b5f4afd 100644
--- a/src/libs/SidebarUtils.js
+++ b/src/libs/SidebarUtils.js
@@ -10,6 +10,7 @@ import * as Localize from './Localize';
import CONST from '../CONST';
import * as OptionsListUtils from './OptionsListUtils';
import * as CollectionUtils from './CollectionUtils';
+import * as LocalePhoneNumber from './LocalePhoneNumber';
// Note: It is very important that the keys subscribed to here are the same
// keys that are connected to SidebarLinks withOnyx(). If there was a key missing from SidebarLinks and it's data was updated
@@ -251,6 +252,9 @@ function getOptionData(reportID) {
const hasMultipleParticipants = participantPersonalDetailList.length > 1 || result.isChatRoom || result.isPolicyExpenseChat;
const subtitle = ReportUtils.getChatRoomSubtitle(report, policies);
+ const login = Str.removeSMSDomain(lodashGet(personalDetail, 'login', ''));
+ const formattedLogin = Str.isSMSLogin(login) ? LocalePhoneNumber.formatPhoneNumber(login) : login;
+
// We only create tooltips for the first 10 users or so since some reports have hundreds of users, causing performance to degrade.
const displayNamesWithTooltips = ReportUtils.getDisplayNamesWithTooltips((participantPersonalDetailList || []).slice(0, 10), hasMultipleParticipants);
@@ -258,7 +262,7 @@ function getOptionData(reportID) {
if (ReportUtils.isReportMessageAttachment({text: report.lastMessageText, html: report.lastMessageHtml})) {
lastMessageTextFromReport = `[${Localize.translateLocal('common.attachment')}]`;
} else {
- lastMessageTextFromReport = Str.htmlDecode(report ? report.lastMessageText : '');
+ lastMessageTextFromReport = report ? report.lastMessageText || '' : '';
}
// If the last actor's details are not currently saved in Onyx Collection,
@@ -302,7 +306,7 @@ function getOptionData(reportID) {
}).join(' ');
}
- result.alternateText = lastMessageText || Str.removeSMSDomain(personalDetail.login);
+ result.alternateText = lastMessageText || formattedLogin;
}
result.isIOUReportOwner = ReportUtils.isIOUOwnedByCurrentUser(result, iouReports);
diff --git a/src/libs/ValidationUtils.js b/src/libs/ValidationUtils.js
index a6bfa519c911..90eccdd7e94b 100644
--- a/src/libs/ValidationUtils.js
+++ b/src/libs/ValidationUtils.js
@@ -1,5 +1,6 @@
import moment from 'moment';
import _ from 'underscore';
+import {URL_REGEX_WITH_REQUIRED_PROTOCOL} from 'expensify-common/lib/Url';
import CONST from '../CONST';
import * as CardUtils from './CardUtils';
import * as LoginUtils from './LoginUtils';
@@ -194,16 +195,27 @@ function isValidPaypalUsername(paypalUsername) {
}
/**
- * Validate that "date" is between 18 and 150 years in the past
+ * Validate that a date meets the minimum age requirement.
*
* @param {String} date
* @returns {Boolean}
*/
-function meetsAgeRequirements(date) {
- const eighteenYearsAgo = moment().subtract(18, 'years');
- const oneHundredFiftyYearsAgo = moment().subtract(150, 'years');
+function meetsMinimumAgeRequirement(date) {
const testDate = moment(date);
- return testDate.isValid() && testDate.isBetween(oneHundredFiftyYearsAgo, eighteenYearsAgo);
+ const minDate = moment().subtract(CONST.DATE_BIRTH.MIN_AGE_FOR_PAYMENT, 'years');
+ return testDate.isValid() && testDate.isSameOrBefore(minDate, 'day');
+}
+
+/**
+ * Validate that a date meets the maximum age requirement.
+ *
+ * @param {String} date
+ * @returns {Boolean}
+ */
+function meetsMaximumAgeRequirement(date) {
+ const testDate = moment(date);
+ const maxDate = moment().subtract(CONST.DATE_BIRTH.MAX_AGE, 'years');
+ return testDate.isValid() && testDate.isSameOrAfter(maxDate, 'day');
}
/**
@@ -221,7 +233,7 @@ function getAgeRequirementError(date, minimumAge, maximumAge) {
if (!testDate.isValid()) {
return Localize.translateLocal('common.error.dateInvalid');
}
- if (testDate.isBetween(longAgoDate, recentDate, undefined, [])) {
+ if (testDate.isBetween(longAgoDate, recentDate, undefined, '[]')) {
return '';
}
if (testDate.isSameOrAfter(recentDate)) {
@@ -238,7 +250,7 @@ function getAgeRequirementError(date, minimumAge, maximumAge) {
* @returns {Boolean}
*/
function isValidWebsite(url) {
- return CONST.REGEX.WEBSITE.test(url);
+ return new RegExp(`^${URL_REGEX_WITH_REQUIRED_PROTOCOL}$`, 'i').test(url);
}
/**
@@ -266,9 +278,9 @@ function validateIdentity(identity) {
}
// dob field has multiple validations/errors, we are handling it temporarily like this.
- if (!isValidDate(identity.dob)) {
+ if (!isValidDate(identity.dob) || !meetsMaximumAgeRequirement(identity.dob)) {
errors.dob = true;
- } else if (!meetsAgeRequirements(identity.dob)) {
+ } else if (!meetsMinimumAgeRequirement(identity.dob)) {
errors.dobAge = true;
}
@@ -431,7 +443,8 @@ function isValidTaxID(taxID) {
}
export {
- meetsAgeRequirements,
+ meetsMinimumAgeRequirement,
+ meetsMaximumAgeRequirement,
getAgeRequirementError,
isValidAddress,
isValidDate,
diff --git a/src/libs/actions/App.js b/src/libs/actions/App.js
index 30c825f40f90..2790765745be 100644
--- a/src/libs/actions/App.js
+++ b/src/libs/actions/App.js
@@ -58,6 +58,15 @@ Onyx.connect({
callback: val => preferredLocale = val,
});
+let resolveIsReadyPromise;
+const isReadyToOpenApp = new Promise((resolve) => {
+ resolveIsReadyPromise = resolve;
+});
+
+function confirmReadyToOpenApp() {
+ resolveIsReadyPromise();
+}
+
/**
* @param {Array} policies
* @return {Array} array of policy ids
@@ -128,36 +137,38 @@ AppState.addEventListener('change', (nextAppState) => {
* Fetches data needed for app initialization
*/
function openApp() {
- // We need a fresh connection/callback here to make sure that the list of policyIDs that is sent to OpenApp is the most updated list from Onyx
- const connectionID = Onyx.connect({
- key: ONYXKEYS.COLLECTION.POLICY,
- waitForCollectionCallback: true,
- callback: (policies) => {
- Onyx.disconnect(connectionID);
- API.read('OpenApp', {policyIDList: getNonOptimisticPolicyIDs(policies)}, {
- optimisticData: [
- {
- onyxMethod: CONST.ONYX.METHOD.MERGE,
- key: ONYXKEYS.IS_LOADING_REPORT_DATA,
- value: true,
- },
- ],
- successData: [
- {
- onyxMethod: CONST.ONYX.METHOD.MERGE,
- key: ONYXKEYS.IS_LOADING_REPORT_DATA,
- value: false,
- },
- ],
- failureData: [
- {
- onyxMethod: CONST.ONYX.METHOD.MERGE,
- key: ONYXKEYS.IS_LOADING_REPORT_DATA,
- value: false,
- },
- ],
- });
- },
+ isReadyToOpenApp.then(() => {
+ // We need a fresh connection/callback here to make sure that the list of policyIDs that is sent to OpenApp is the most updated list from Onyx
+ const connectionID = Onyx.connect({
+ key: ONYXKEYS.COLLECTION.POLICY,
+ waitForCollectionCallback: true,
+ callback: (policies) => {
+ Onyx.disconnect(connectionID);
+ API.read('OpenApp', {policyIDList: getNonOptimisticPolicyIDs(policies)}, {
+ optimisticData: [
+ {
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
+ key: ONYXKEYS.IS_LOADING_REPORT_DATA,
+ value: true,
+ },
+ ],
+ successData: [
+ {
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
+ key: ONYXKEYS.IS_LOADING_REPORT_DATA,
+ value: false,
+ },
+ ],
+ failureData: [
+ {
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
+ key: ONYXKEYS.IS_LOADING_REPORT_DATA,
+ value: false,
+ },
+ ],
+ });
+ },
+ });
});
}
@@ -294,4 +305,5 @@ export {
openProfile,
openApp,
reconnectApp,
+ confirmReadyToOpenApp,
};
diff --git a/src/libs/actions/BankAccounts.js b/src/libs/actions/BankAccounts.js
index 6bc5e6d608d4..d4a037baeef1 100644
--- a/src/libs/actions/BankAccounts.js
+++ b/src/libs/actions/BankAccounts.js
@@ -266,7 +266,6 @@ function openReimbursementAccountPage(stepToOpen, subStep, localCurrentStep) {
onyxMethod: CONST.ONYX.METHOD.MERGE,
key: ONYXKEYS.REIMBURSEMENT_ACCOUNT,
value: {
- errors: null,
isLoading: true,
},
},
diff --git a/src/libs/actions/IOU.js b/src/libs/actions/IOU.js
index 3ada54cc294b..050c1b0e7f6b 100644
--- a/src/libs/actions/IOU.js
+++ b/src/libs/actions/IOU.js
@@ -311,8 +311,8 @@ function createSplitsAndOnyxData(participants, currentUserLogin, amount, comment
];
// Loop through participants creating individual chats, iouReports and reportActionIDs as needed
- const splitAmount = IOUUtils.calculateAmount(participants, amount);
- const splits = [{email: currentUserEmail, amount: IOUUtils.calculateAmount(participants, amount, true)}];
+ const splitAmount = IOUUtils.calculateAmount(participants, amount, currency, false);
+ const splits = [{email: currentUserEmail, amount: IOUUtils.calculateAmount(participants, amount, currency, true)}];
const hasMultipleParticipants = participants.length > 1;
_.each(participants, (participant) => {
@@ -553,7 +553,7 @@ function cancelMoneyRequest(chatReportID, iouReportID, type, moneyRequestAction)
type,
amount,
moneyRequestAction.originalMessage.currency,
- moneyRequestAction.originalMessage.comment,
+ Str.htmlDecode(moneyRequestAction.originalMessage.comment),
[],
'',
transactionID,
@@ -636,6 +636,15 @@ function setIOUSelectedCurrency(selectedCurrencyCode) {
Onyx.merge(ONYXKEYS.IOU, {selectedCurrencyCode});
}
+/**
+ * Sets Money Request description
+ *
+ * @param {String} comment
+ */
+function setMoneyRequestDescription(comment) {
+ Onyx.merge(ONYXKEYS.IOU, {comment: comment.trim()});
+}
+
/**
* @param {Number} amount
* @param {String} submitterPayPalMeAddress
@@ -1002,6 +1011,7 @@ export {
payMoneyRequestElsewhere,
payMoneyRequestViaPaypal,
setIOUSelectedCurrency,
+ setMoneyRequestDescription,
sendMoneyWithWallet,
payMoneyRequestWithWallet,
};
diff --git a/src/libs/actions/Link.js b/src/libs/actions/Link.js
index c38f901bb391..2cccfc447f6b 100644
--- a/src/libs/actions/Link.js
+++ b/src/libs/actions/Link.js
@@ -34,33 +34,35 @@ function showGrowlIfOffline() {
}
/**
- * @param {String} url
+ * @param {String} [url] the url path
+ * @param {String} [shortLivedAuthToken]
+ *
+ * @returns {Promise}
*/
-function openOldDotLink(url) {
- /**
- * @param {String} [shortLivedAuthToken]
- * @returns {Promise}
- */
- function buildOldDotURL(shortLivedAuthToken) {
- const hasHashParams = url.indexOf('#') !== -1;
- const hasURLParams = url.indexOf('?') !== -1;
+function buildOldDotURL(url, shortLivedAuthToken) {
+ const hasHashParams = url.indexOf('#') !== -1;
+ const hasURLParams = url.indexOf('?') !== -1;
- const authTokenParam = shortLivedAuthToken ? `authToken=${shortLivedAuthToken}` : '';
- const emailParam = `email=${encodeURIComponent(currentUserEmail)}`;
+ const authTokenParam = shortLivedAuthToken ? `authToken=${shortLivedAuthToken}` : '';
+ const emailParam = `email=${encodeURIComponent(currentUserEmail)}`;
- const params = _.compact([authTokenParam, emailParam]).join('&');
+ const params = _.compact([authTokenParam, emailParam]).join('&');
- return Environment.getOldDotEnvironmentURL()
- .then((environmentURL) => {
- const oldDotDomain = Url.addTrailingForwardSlash(environmentURL);
+ return Environment.getOldDotEnvironmentURL()
+ .then((environmentURL) => {
+ const oldDotDomain = Url.addTrailingForwardSlash(environmentURL);
- // If the URL contains # or ?, we can assume they don't need to have the `?` token to start listing url parameters.
- return `${oldDotDomain}${url}${hasHashParams || hasURLParams ? '&' : '?'}${params}`;
- });
- }
+ // If the URL contains # or ?, we can assume they don't need to have the `?` token to start listing url parameters.
+ return `${oldDotDomain}${url}${hasHashParams || hasURLParams ? '&' : '?'}${params}`;
+ });
+}
+/**
+ * @param {String} url the url path
+ */
+function openOldDotLink(url) {
if (isNetworkOffline) {
- buildOldDotURL().then(oldDotURL => Linking.openURL(oldDotURL));
+ buildOldDotURL(url).then(oldDotURL => Linking.openURL(oldDotURL));
return;
}
@@ -69,11 +71,11 @@ function openOldDotLink(url) {
API.makeRequestWithSideEffects(
'OpenOldDotLink', {}, {},
).then((response) => {
- buildOldDotURL(response.shortLivedAuthToken).then((oldDotUrl) => {
+ buildOldDotURL(url, response.shortLivedAuthToken).then((oldDotUrl) => {
Linking.openURL(oldDotUrl);
});
}).catch(() => {
- buildOldDotURL().then((oldDotUrl) => {
+ buildOldDotURL(url).then((oldDotUrl) => {
Linking.openURL(oldDotUrl);
});
});
@@ -92,6 +94,7 @@ function openExternalLink(url, shouldSkipCustomSafariLogic = false) {
}
export {
+ buildOldDotURL,
openOldDotLink,
openExternalLink,
};
diff --git a/src/libs/actions/PersonalDetails.js b/src/libs/actions/PersonalDetails.js
index 138b70da78f0..8e4b9e1bc564 100644
--- a/src/libs/actions/PersonalDetails.js
+++ b/src/libs/actions/PersonalDetails.js
@@ -6,6 +6,7 @@ import ONYXKEYS from '../../ONYXKEYS';
import CONST from '../../CONST';
import * as API from '../API';
import * as ReportUtils from '../ReportUtils';
+import * as LocalePhoneNumber from '../LocalePhoneNumber';
import ROUTES from '../../ROUTES';
import Navigation from '../Navigation/Navigation';
@@ -29,9 +30,9 @@ Onyx.connect({
* @returns {String}
*/
function getDisplayName(login, personalDetail) {
- // If we have a number like +15857527441@expensify.sms then let's remove @expensify.sms
+ // If we have a number like +15857527441@expensify.sms then let's remove @expensify.sms and format it
// so that the option looks cleaner in our UI.
- const userLogin = Str.removeSMSDomain(login);
+ const userLogin = LocalePhoneNumber.formatPhoneNumber(login);
const userDetails = personalDetail || lodashGet(personalDetails, login);
if (!userDetails) {
@@ -181,7 +182,7 @@ function updateDateOfBirth(dob) {
*/
function updateAddress(street, street2, city, state, zip, country) {
const parameters = {
- addressStreet: street,
+ homeAddressStreet: street,
addressStreet2: street2,
addressCity: city,
addressState: state,
@@ -289,11 +290,13 @@ function updateAvatar(file) {
[currentUserEmail]: {
avatar: file.uri,
avatarThumbnail: file.uri,
+ originalFileName: file.name,
errorFields: {
avatar: null,
},
pendingFields: {
avatar: CONST.RED_BRICK_ROAD_PENDING_ACTION.UPDATE,
+ originalFileName: null,
},
},
},
diff --git a/src/libs/actions/Policy.js b/src/libs/actions/Policy.js
index f090af06be1f..8069e12d69c8 100644
--- a/src/libs/actions/Policy.js
+++ b/src/libs/actions/Policy.js
@@ -515,7 +515,7 @@ function hideWorkspaceAlertMessage(policyID) {
function updateWorkspaceCustomUnit(policyID, currentCustomUnit, newCustomUnit, lastModified) {
const optimisticData = [
{
- onyxMethod: 'merge',
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
key: `${ONYXKEYS.COLLECTION.POLICY}${policyID}`,
value: {
customUnits: {
@@ -530,7 +530,7 @@ function updateWorkspaceCustomUnit(policyID, currentCustomUnit, newCustomUnit, l
const successData = [
{
- onyxMethod: 'merge',
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
key: `${ONYXKEYS.COLLECTION.POLICY}${policyID}`,
value: {
customUnits: {
@@ -545,7 +545,7 @@ function updateWorkspaceCustomUnit(policyID, currentCustomUnit, newCustomUnit, l
const failureData = [
{
- onyxMethod: 'merge',
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
key: `${ONYXKEYS.COLLECTION.POLICY}${policyID}`,
value: {
customUnits: {
@@ -553,9 +553,6 @@ function updateWorkspaceCustomUnit(policyID, currentCustomUnit, newCustomUnit, l
customUnitID: currentCustomUnit.customUnitID,
name: currentCustomUnit.name,
attributes: currentCustomUnit.attributes,
- errors: {
- [DateUtils.getMicroseconds()]: Localize.translateLocal('workspace.reimburse.updateCustomUnitError'),
- },
},
},
},
@@ -579,7 +576,7 @@ function updateWorkspaceCustomUnit(policyID, currentCustomUnit, newCustomUnit, l
function updateCustomUnitRate(policyID, currentCustomUnitRate, customUnitID, newCustomUnitRate, lastModified) {
const optimisticData = [
{
- onyxMethod: 'merge',
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
key: `${ONYXKEYS.COLLECTION.POLICY}${policyID}`,
value: {
customUnits: {
@@ -599,7 +596,7 @@ function updateCustomUnitRate(policyID, currentCustomUnitRate, customUnitID, new
const successData = [
{
- onyxMethod: 'merge',
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
key: `${ONYXKEYS.COLLECTION.POLICY}${policyID}`,
value: {
customUnits: {
@@ -617,7 +614,7 @@ function updateCustomUnitRate(policyID, currentCustomUnitRate, customUnitID, new
const failureData = [
{
- onyxMethod: 'merge',
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
key: `${ONYXKEYS.COLLECTION.POLICY}${policyID}`,
value: {
customUnits: {
diff --git a/src/libs/actions/ReimbursementAccount/errors.js b/src/libs/actions/ReimbursementAccount/errors.js
index 3427524711c2..5969559f3f93 100644
--- a/src/libs/actions/ReimbursementAccount/errors.js
+++ b/src/libs/actions/ReimbursementAccount/errors.js
@@ -27,7 +27,10 @@ function setBankAccountFormValidationErrors(errorFields) {
*/
function resetReimbursementAccount() {
setBankAccountFormValidationErrors({});
- Onyx.merge(ONYXKEYS.REIMBURSEMENT_ACCOUNT, {errors: null});
+ Onyx.merge(ONYXKEYS.REIMBURSEMENT_ACCOUNT, {
+ errors: null,
+ pendingAction: null,
+ });
}
/**
diff --git a/src/libs/actions/ReimbursementAccount/resetFreePlanBankAccount.js b/src/libs/actions/ReimbursementAccount/resetFreePlanBankAccount.js
index 94799fa6b3c6..ae7f26a9bfcd 100644
--- a/src/libs/actions/ReimbursementAccount/resetFreePlanBankAccount.js
+++ b/src/libs/actions/ReimbursementAccount/resetFreePlanBankAccount.js
@@ -24,6 +24,17 @@ function resetFreePlanBankAccount(bankAccountID) {
},
{
optimisticData: [
+ {
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
+ key: ONYXKEYS.REIMBURSEMENT_ACCOUNT,
+ value: {
+ shouldShowResetModal: false,
+ isLoading: true,
+ pendingAction: CONST.RED_BRICK_ROAD_PENDING_ACTION.DELETE,
+ },
+ },
+ ],
+ successData: [
{
onyxMethod: CONST.ONYX.METHOD.SET,
key: ONYXKEYS.ONFIDO_TOKEN,
@@ -44,29 +55,17 @@ function resetFreePlanBankAccount(bankAccountID) {
key: ONYXKEYS.REIMBURSEMENT_ACCOUNT,
value: ReimbursementAccountProps.reimbursementAccountDefaultProps,
},
- {
- onyxMethod: CONST.ONYX.METHOD.MERGE,
- key: ONYXKEYS.REIMBURSEMENT_ACCOUNT,
- value: {isLoading: true},
- },
{
onyxMethod: CONST.ONYX.METHOD.SET,
key: ONYXKEYS.REIMBURSEMENT_ACCOUNT_DRAFT,
value: {},
},
],
- successData: [
- {
- onyxMethod: CONST.ONYX.METHOD.MERGE,
- key: ONYXKEYS.REIMBURSEMENT_ACCOUNT,
- value: {isLoading: false},
- },
- ],
failureData: [
{
onyxMethod: CONST.ONYX.METHOD.MERGE,
key: ONYXKEYS.REIMBURSEMENT_ACCOUNT,
- value: {isLoading: false},
+ value: {isLoading: false, pendingAction: null},
},
],
});
diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js
index 0e7ccaea53e6..0890b6e5720e 100644
--- a/src/libs/actions/Report.js
+++ b/src/libs/actions/Report.js
@@ -3,6 +3,7 @@ import _ from 'underscore';
import lodashGet from 'lodash/get';
import ExpensiMark from 'expensify-common/lib/ExpensiMark';
import Onyx from 'react-native-onyx';
+import Str from 'expensify-common/lib/str';
import ONYXKEYS from '../../ONYXKEYS';
import * as Pusher from '../Pusher/pusher';
import LocalNotification from '../Notification/LocalNotification';
@@ -201,9 +202,11 @@ function addActions(reportID, text = '', file) {
const currentTime = DateUtils.getDBTime();
+ const lastCommentText = ReportUtils.formatReportLastMessageText(lastAction.message[0].text);
+
const optimisticReport = {
lastVisibleActionCreated: currentTime,
- lastMessageText: ReportUtils.formatReportLastMessageText(lastAction.message[0].text),
+ lastMessageText: Str.htmlDecode(lastCommentText),
lastActorEmail: currentUserEmail,
lastReadTime: currentTime,
};
@@ -521,6 +524,47 @@ function openPaymentDetailsPage(chatReportID, iouReportID) {
});
}
+/**
+ * Gets transactions and data associated with the linked report (expense or IOU report)
+ *
+ * @param {String} chatReportID
+ * @param {String} linkedReportID
+ */
+function openMoneyRequestsReportPage(chatReportID, linkedReportID) {
+ API.read('OpenMoneyRequestsReportPage', {
+ reportID: chatReportID,
+ linkedReportID,
+ }, {
+ optimisticData: [
+ {
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
+ key: ONYXKEYS.IOU,
+ value: {
+ loading: true,
+ },
+ },
+ ],
+ successData: [
+ {
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
+ key: ONYXKEYS.IOU,
+ value: {
+ loading: false,
+ },
+ },
+ ],
+ failureData: [
+ {
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
+ key: ONYXKEYS.IOU,
+ value: {
+ loading: false,
+ },
+ },
+ ],
+ });
+}
+
/**
* Marks the new report actions as read
*
@@ -684,6 +728,7 @@ function deleteReportComment(reportID, reportAction) {
pendingAction: CONST.RED_BRICK_ROAD_PENDING_ACTION.DELETE,
previousMessage: reportAction.message,
message: deletedMessage,
+ errors: null,
},
};
@@ -778,42 +823,42 @@ const getRemovedMarkdownLinks = (oldComment, newComment) => {
};
/**
- * Removes the links in a markdown comment.
+ * Removes the links in html of a comment.
* example:
- * comment="test [link](https://www.google.com) test",
+ * html="test https://www.google.com test"
* links=["https://www.google.com"]
- * returns: "test link test"
- * @param {String} comment
+ * returns: "test https://www.google.com test"
+ *
+ * @param {String} html
* @param {Array} links
* @returns {String}
*/
-const removeLinks = (comment, links) => {
- let commentCopy = comment.slice();
+const removeLinksFromHtml = (html, links) => {
+ let htmlCopy = html.slice();
_.forEach(links, (link) => {
- const regex = new RegExp(`\\[([^\\[\\]]*)\\]\\(${link}\\)`, 'gm');
- const linkMatch = regex.exec(commentCopy);
- const linkText = linkMatch && linkMatch[1];
- commentCopy = commentCopy.replace(`[${linkText}](${link})`, linkText);
+ // We want to match the anchor tag of the link and replace the whole anchor tag with the text of the anchor tag
+ const regex = new RegExp(`<(a)[^><]*href\\s*=\\s*(['"])(${Str.escapeForRegExp(link)})\\2(?:".*?"|'.*?'|[^'"><])*>([\\s\\S]*?)<\\/\\1>(?![^<]*(<\\/pre>|<\\/code>))`, 'gi');
+ htmlCopy = htmlCopy.replace(regex, '$4');
});
- return commentCopy;
+ return htmlCopy;
};
/**
* This function will handle removing only links that were purposely removed by the user while editing.
+ *
* @param {String} newCommentText text of the comment after editing.
- * @param {Array} originalHtml original html of the comment before editing
+ * @param {String} originalHtml original html of the comment before editing.
* @returns {String}
*/
-const handleUserDeletedLinks = (newCommentText, originalHtml) => {
+const handleUserDeletedLinksInHtml = (newCommentText, originalHtml) => {
const parser = new ExpensiMark();
if (newCommentText.length >= CONST.MAX_MARKUP_LENGTH) {
return newCommentText;
}
- const htmlWithAutoLinks = parser.replace(newCommentText);
- const markdownWithAutoLinks = parser.htmlToMarkdown(htmlWithAutoLinks).trim();
const markdownOriginalComment = parser.htmlToMarkdown(originalHtml).trim();
+ const htmlForNewComment = parser.replace(newCommentText);
const removedLinks = getRemovedMarkdownLinks(markdownOriginalComment, newCommentText);
- return removeLinks(markdownWithAutoLinks, removedLinks);
+ return removeLinksFromHtml(htmlForNewComment, removedLinks);
};
/**
@@ -830,16 +875,13 @@ function editReportComment(reportID, originalReportAction, textForNewComment) {
// https://github.com/Expensify/App/issues/9090
// https://github.com/Expensify/App/issues/13221
const originalCommentHTML = lodashGet(originalReportAction, 'message[0].html');
- const markdownForNewComment = handleUserDeletedLinks(textForNewComment, originalCommentHTML);
-
- const autolinkFilter = {filterRules: _.filter(_.pluck(parser.rules, 'name'), name => name !== 'autolink')};
+ const htmlForNewComment = handleUserDeletedLinksInHtml(textForNewComment, originalCommentHTML);
// For comments shorter than 10k chars, convert the comment from MD into HTML because that's how it is stored in the database
// For longer comments, skip parsing and display plaintext for performance reasons. It takes over 40s to parse a 100k long string!!
- let htmlForNewComment = markdownForNewComment;
let parsedOriginalCommentHTML = originalCommentHTML;
- if (markdownForNewComment.length < CONST.MAX_MARKUP_LENGTH) {
- htmlForNewComment = parser.replace(markdownForNewComment, autolinkFilter);
+ if (textForNewComment.length < CONST.MAX_MARKUP_LENGTH) {
+ const autolinkFilter = {filterRules: _.filter(_.pluck(parser.rules, 'name'), name => name !== 'autolink')};
parsedOriginalCommentHTML = parser.replace(parser.htmlToMarkdown(originalCommentHTML).trim(), autolinkFilter);
}
@@ -864,7 +906,7 @@ function editReportComment(reportID, originalReportAction, textForNewComment) {
...originalMessage,
isEdited: true,
html: htmlForNewComment,
- text: markdownForNewComment,
+ text: textForNewComment,
}],
},
};
@@ -877,6 +919,20 @@ function editReportComment(reportID, originalReportAction, textForNewComment) {
},
];
+ const lastVisibleAction = ReportActionsUtils.getLastVisibleAction(reportID, optimisticReportActions);
+ if (reportActionID === lastVisibleAction.reportActionID) {
+ const reportComment = parser.htmlToText(htmlForNewComment);
+ const lastMessageText = ReportUtils.formatReportLastMessageText(reportComment);
+ const optimisticReport = {
+ lastMessageText: Str.htmlDecode(lastMessageText),
+ };
+ optimisticData.push({
+ onyxMethod: CONST.ONYX.METHOD.MERGE,
+ key: `${ONYXKEYS.COLLECTION.REPORT}${reportID}`,
+ value: optimisticReport,
+ });
+ }
+
const failureData = [
{
onyxMethod: CONST.ONYX.METHOD.MERGE,
@@ -1416,7 +1472,7 @@ export {
broadcastUserIsTyping,
togglePinnedState,
editReportComment,
- handleUserDeletedLinks,
+ handleUserDeletedLinksInHtml,
saveReportActionDraft,
saveReportActionDraftNumberOfLines,
deleteReportComment,
@@ -1432,6 +1488,7 @@ export {
openReportFromDeepLink,
navigateToAndOpenReport,
openPaymentDetailsPage,
+ openMoneyRequestsReportPage,
updatePolicyRoomName,
clearPolicyRoomNameErrors,
clearIOUError,
diff --git a/src/libs/actions/Session/index.js b/src/libs/actions/Session/index.js
index b0de89d816db..ef3f7cddb987 100644
--- a/src/libs/actions/Session/index.js
+++ b/src/libs/actions/Session/index.js
@@ -92,7 +92,7 @@ function resendValidationLink(login = credentials.login) {
key: ONYXKEYS.ACCOUNT,
value: {
isLoading: false,
- message: Localize.translateLocal('resendValidationForm.linkHasBeenResent'),
+ message: 'resendValidationForm.linkHasBeenResent',
},
}];
const failureData = [{
@@ -127,7 +127,7 @@ function resendValidateCode(login = credentials.login) {
key: ONYXKEYS.ACCOUNT,
value: {
isLoading: false,
- message: Localize.translateLocal('validateCodeForm.codeSent'),
+ message: 'validateCodeForm.codeSent',
},
}];
const failureData = [{
@@ -345,7 +345,11 @@ function signIn(password, validateCode, twoFactorAuthCode, preferredLocale = CON
API.write('SigninUser', params, {optimisticData, successData, failureData});
}
-function signInWithValidateCode(accountID, validateCode, twoFactorAuthCode) {
+function signInWithValidateCode(accountID, code, twoFactorAuthCode) {
+ // If this is called from the 2fa step, get the validateCode directly from onyx
+ // instead of the one passed from the component state because the state is changing when this method is called.
+ const validateCode = twoFactorAuthCode ? credentials.validateCode : code;
+
const optimisticData = [
{
onyxMethod: CONST.ONYX.METHOD.MERGE,
@@ -473,7 +477,7 @@ function resendResetPassword() {
key: ONYXKEYS.ACCOUNT,
value: {
isLoading: false,
- message: Localize.translateLocal('resendValidationForm.linkHasBeenResent'),
+ message: 'resendValidationForm.linkHasBeenResent',
},
},
],
diff --git a/src/libs/actions/TestTool.js b/src/libs/actions/TestTool.js
new file mode 100644
index 000000000000..20e4bba308ac
--- /dev/null
+++ b/src/libs/actions/TestTool.js
@@ -0,0 +1,22 @@
+import Onyx from 'react-native-onyx';
+import _ from 'underscore';
+import ONYXKEYS from '../../ONYXKEYS';
+import CONST from '../../CONST';
+
+let isTestToolsModalOpen = false;
+Onyx.connect({
+ key: ONYXKEYS.IS_TEST_TOOLS_MODAL_OPEN,
+ callback: val => isTestToolsModalOpen = val || false,
+});
+
+/**
+ * Toggle the test tools modal open or closed.
+ * Throttle the toggle to make the modal stay open if you accidentally tap an extra time, which is easy to do.
+ */
+function toggleTestToolsModal() {
+ const toggle = () => Onyx.set(ONYXKEYS.IS_TEST_TOOLS_MODAL_OPEN, !isTestToolsModalOpen);
+ const throttledToggle = _.throttle(toggle, CONST.TIMING.TEST_TOOLS_MODAL_THROTTLE_TIME);
+ throttledToggle();
+}
+
+export default toggleTestToolsModal;
diff --git a/src/libs/actions/User.js b/src/libs/actions/User.js
index b016ec2110ef..916733dd3a8f 100644
--- a/src/libs/actions/User.js
+++ b/src/libs/actions/User.js
@@ -185,12 +185,15 @@ function updateNewsletterSubscription(isSubscribed) {
* Delete a specific contact method
*
* @param {String} contactMethod - the contact method being deleted
- * @param {Object} oldLoginData
+ * @param {Array} loginList
*/
-function deleteContactMethod(contactMethod, oldLoginData) {
+function deleteContactMethod(contactMethod, loginList) {
+ const oldLoginData = loginList[contactMethod];
+
// If the contact method failed to be added to the account, then it should only be deleted locally.
if (lodashGet(oldLoginData, 'errorFields.addedLogin', null)) {
Onyx.merge(ONYXKEYS.LOGIN_LIST, {[contactMethod]: null});
+ Navigation.navigate(ROUTES.SETTINGS_CONTACT_METHODS);
return;
}
@@ -392,7 +395,6 @@ function validateSecondaryLogin(contactMethod, validateCode) {
partnerUserID: contactMethod,
validateCode,
}, {optimisticData, successData, failureData});
- Navigation.navigate(ROUTES.SETTINGS_CONTACT_METHODS);
}
/**
diff --git a/src/libs/actions/Welcome.js b/src/libs/actions/Welcome.js
index 63bdc9411572..50c5ed3c6ab7 100644
--- a/src/libs/actions/Welcome.js
+++ b/src/libs/actions/Welcome.js
@@ -7,6 +7,7 @@ import ROUTES from '../../ROUTES';
import * as Policy from './Policy';
import ONYXKEYS from '../../ONYXKEYS';
import SCREENS from '../../SCREENS';
+import CONST from '../../CONST';
let resolveIsReadyPromise;
let isReadyPromise = new Promise((resolve) => {
@@ -36,7 +37,11 @@ Onyx.connect({
key: ONYXKEYS.NVP_IS_FIRST_TIME_NEW_EXPENSIFY_USER,
initWithStoredValues: false,
callback: (val) => {
- isFirstTimeNewExpensifyUser = val;
+ // If isFirstTimeNewExpensifyUser was true do not update it to false. We update it to false inside the Welcome.show logic
+ // More context here https://github.com/Expensify/App/pull/16962#discussion_r1167351359
+ if (!isFirstTimeNewExpensifyUser) {
+ isFirstTimeNewExpensifyUser = val;
+ }
checkOnReady();
},
});
@@ -96,9 +101,10 @@ Onyx.connect({
*
* @param {Object} params
* @param {Object} params.routes
- * @param {Function} params.showCreateMenu
+ * @param {Function} [params.showCreateMenu]
+ * @param {Function} [params.showPopoverMenu]
*/
-function show({routes, showCreateMenu}) {
+function show({routes, showCreateMenu = () => {}, showPopoverMenu = () => {}}) {
isReadyPromise.then(() => {
if (!isFirstTimeNewExpensifyUser) {
return;
@@ -113,9 +119,21 @@ function show({routes, showCreateMenu}) {
const isDisplayingWorkspaceRoute = isWorkspaceRoute || exitingToWorkspaceRoute;
// We want to display the Workspace chat first since that means a user is already in a Workspace and doesn't need to create another one
- const workspaceChatReport = _.find(allReports, report => ReportUtils.isPolicyExpenseChat(report) && report.ownerEmail === email);
+ const workspaceChatReport = _.find(
+ allReports,
+ report => ReportUtils.isPolicyExpenseChat(report) && report.ownerEmail === email && report.statusNum !== CONST.REPORT.STATUS.CLOSED,
+ );
if (workspaceChatReport && !isDisplayingWorkspaceRoute) {
+ // This key is only updated when we call ReconnectApp, setting it to false now allows the user to navigate normally instead of always redirecting to the workspace chat
+ Onyx.set(ONYXKEYS.NVP_IS_FIRST_TIME_NEW_EXPENSIFY_USER, false);
Navigation.navigate(ROUTES.getReportRoute(workspaceChatReport.reportID));
+
+ // If showPopoverMenu exists and returns true then it opened the Popover Menu successfully, and we can update isFirstTimeNewExpensifyUser
+ // so the Welcome logic doesn't run again
+ if (showPopoverMenu()) {
+ isFirstTimeNewExpensifyUser = false;
+ }
+
return;
}
@@ -124,6 +142,9 @@ function show({routes, showCreateMenu}) {
if (!Policy.isAdminOfFreePolicy(allPolicies) && !isDisplayingWorkspaceRoute) {
showCreateMenu();
}
+
+ // Update isFirstTimeNewExpensifyUser so the Welcome logic doesn't run again
+ isFirstTimeNewExpensifyUser = false;
});
}
diff --git a/src/libs/fileDownload/index.android.js b/src/libs/fileDownload/index.android.js
index 9cca7eeac182..245601f131f0 100644
--- a/src/libs/fileDownload/index.android.js
+++ b/src/libs/fileDownload/index.android.js
@@ -51,17 +51,26 @@ function handleDownload(url, fileName) {
path: `${path}/${attachmentName}`,
addAndroidDownloads: {
useDownloadManager: true,
- notification: true,
+ notification: false,
path: `${path}/Expensify/${attachmentName}`,
},
}).fetch('GET', url);
+ let attachmentPath;
+
// Resolving the fetched attachment
fetchedAttachment.then((attachment) => {
if (!attachment || !attachment.info()) {
- return;
+ return Promise.reject();
}
-
+ attachmentPath = attachment.path();
+ return RNFetchBlob.MediaCollection.copyToMediaStore({
+ name: attachmentName,
+ parentFolder: 'Expensify',
+ mimeType: null,
+ }, 'Download', attachmentPath);
+ }).then(() => {
+ RNFetchBlob.fs.unlink(attachmentPath);
FileUtils.showSuccessAlert();
}).catch(() => {
FileUtils.showGeneralErrorAlert();
diff --git a/src/pages/AddPersonalBankAccountPage.js b/src/pages/AddPersonalBankAccountPage.js
index 0901f31dae74..36d82b1a7068 100644
--- a/src/pages/AddPersonalBankAccountPage.js
+++ b/src/pages/AddPersonalBankAccountPage.js
@@ -85,7 +85,10 @@ class AddPersonalBankAccountPage extends React.Component {
const shouldShowSuccess = lodashGet(this.props, 'personalBankAccount.shouldShowSuccess', false);
return (
-
+
@@ -127,9 +131,10 @@ class DetailsPage extends React.PureComponent {
{({show}) => (
{Boolean(details.displayName) && (
- {isSMSLogin ? this.props.toLocalPhone(details.displayName) : details.displayName}
+ {displayName}
)}
{details.login ? (
@@ -161,11 +166,13 @@ class DetailsPage extends React.PureComponent {
? 'common.phoneNumber'
: 'common.email')}
-
-
+
+
{isSMSLogin
- ? this.props.toLocalPhone(getPhoneNumber(details))
+ ? this.props.formatPhoneNumber(phoneNumber)
: details.login}
@@ -186,7 +193,7 @@ class DetailsPage extends React.PureComponent {
{details.login !== this.props.session.email && (
Report.navigateToAndOpenReport([details.login])}
wrapperStyle={styles.breakAll}
diff --git a/src/pages/EnablePayments/AdditionalDetailsStep.js b/src/pages/EnablePayments/AdditionalDetailsStep.js
index ca1532ba66b6..ec188330d129 100644
--- a/src/pages/EnablePayments/AdditionalDetailsStep.js
+++ b/src/pages/EnablePayments/AdditionalDetailsStep.js
@@ -129,9 +129,9 @@ class AdditionalDetailsStep extends React.Component {
errors[INPUT_IDS.LEGAL_LAST_NAME] = this.props.translate(this.errorTranslationKeys.legalLastName);
}
- if (!ValidationUtils.isValidPastDate(values[INPUT_IDS.DOB])) {
+ if (!ValidationUtils.isValidPastDate(values[INPUT_IDS.DOB]) || !ValidationUtils.meetsMaximumAgeRequirement(values[INPUT_IDS.DOB])) {
ErrorUtils.addErrorMessage(errors, INPUT_IDS.DOB, this.props.translate(this.errorTranslationKeys.dob));
- } else if (!ValidationUtils.meetsAgeRequirements(values[INPUT_IDS.DOB])) {
+ } else if (!ValidationUtils.meetsMinimumAgeRequirement(values[INPUT_IDS.DOB])) {
ErrorUtils.addErrorMessage(errors, INPUT_IDS.DOB, this.props.translate(this.errorTranslationKeys.age));
}
@@ -228,7 +228,6 @@ class AdditionalDetailsStep extends React.Component {
validate={this.validate}
onSubmit={this.activateWallet}
scrollContextEnabled
- scrollToOverflowEnabled
submitButtonText={this.props.translate('common.saveAndContinue')}
style={[styles.mh5, styles.flexGrow1]}
>
diff --git a/src/pages/GetAssistancePage.js b/src/pages/GetAssistancePage.js
index e2115c6d7814..89544b25dcfe 100644
--- a/src/pages/GetAssistancePage.js
+++ b/src/pages/GetAssistancePage.js
@@ -57,6 +57,7 @@ const GetAssistancePage = (props) => {
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
wrapperStyle: [styles.cardMenuItem],
+ link: CONST.NEWHELP_URL,
}];
// If the user is eligible for calls with their Guide, add the 'Schedule a setup call' item at the second position in the list
diff --git a/src/pages/NewChatPage.js b/src/pages/NewChatPage.js
index 0ca8d13fbcc8..0521891ce123 100755
--- a/src/pages/NewChatPage.js
+++ b/src/pages/NewChatPage.js
@@ -233,7 +233,7 @@ class NewChatPage extends Component {
maxParticipantsReached,
);
return (
-
+
{({didScreenTransitionEnd, safeAreaPaddingBottomStyle}) => (
<>
) : (
diff --git a/src/pages/NewTaskPage.js b/src/pages/NewTaskPage.js
new file mode 100644
index 000000000000..a93025dfd5a6
--- /dev/null
+++ b/src/pages/NewTaskPage.js
@@ -0,0 +1,96 @@
+import React from 'react';
+import {View} from 'react-native';
+import {withOnyx} from 'react-native-onyx';
+import PropTypes from 'prop-types';
+import withLocalize, {withLocalizePropTypes} from '../components/withLocalize';
+import compose from '../libs/compose';
+import HeaderWithCloseButton from '../components/HeaderWithCloseButton';
+import Navigation from '../libs/Navigation/Navigation';
+import ScreenWrapper from '../components/ScreenWrapper';
+import styles from '../styles/styles';
+import ONYXKEYS from '../ONYXKEYS';
+import * as ErrorUtils from '../libs/ErrorUtils';
+import Form from '../components/Form';
+import TextInput from '../components/TextInput';
+import Permissions from '../libs/Permissions';
+
+const propTypes = {
+ /** List of betas available to current user */
+ betas: PropTypes.arrayOf(PropTypes.string),
+
+ ...withLocalizePropTypes,
+};
+const defaultProps = {
+ betas: [],
+};
+
+// NOTE: This page is going to be updated in https://github.com/Expensify/App/issues/16855, this is just a placeholder for now
+const NewTaskPage = (props) => {
+ /**
+ * @param {Object} values - form input values passed by the Form component
+ * @returns {Boolean}
+ */
+ function validate(values) {
+ const errors = {};
+
+ if (!values.taskTitle) {
+ // We error if the user doesn't enter a room name
+ ErrorUtils.addErrorMessage(errors, 'taskTitle', props.translate('newTaskPage.pleaseEnterTaskName'));
+ }
+
+ return errors;
+ }
+
+ function onSubmit() {
+
+ }
+
+ if (!Permissions.canUseTasks(props.betas)) {
+ Navigation.dismissModal();
+ return null;
+ }
+
+ return (
+
+ Navigation.dismissModal()}
+ />
+
+
+ );
+};
+
+NewTaskPage.displayName = 'NewTaskPage';
+NewTaskPage.propTypes = propTypes;
+NewTaskPage.defaultProps = defaultProps;
+
+export default compose(
+ withOnyx({
+ betas: {
+ key: ONYXKEYS.BETAS,
+ },
+ }),
+ withLocalize,
+)(NewTaskPage);
diff --git a/src/pages/ReimbursementAccount/ACHContractStep.js b/src/pages/ReimbursementAccount/ACHContractStep.js
index 414b9f44414a..18948af1c2de 100644
--- a/src/pages/ReimbursementAccount/ACHContractStep.js
+++ b/src/pages/ReimbursementAccount/ACHContractStep.js
@@ -66,8 +66,12 @@ class ACHContractStep extends React.Component {
}
});
- if (values[`beneficialOwner_${ownerKey}_dob`] && !ValidationUtils.meetsAgeRequirements(values[`beneficialOwner_${ownerKey}_dob`])) {
- errors[`beneficialOwner_${ownerKey}_dob`] = this.props.translate('bankAccount.error.age');
+ if (values[`beneficialOwner_${ownerKey}_dob`]) {
+ if (!ValidationUtils.meetsMinimumAgeRequirement(values[`beneficialOwner_${ownerKey}_dob`])) {
+ errors[`beneficialOwner_${ownerKey}_dob`] = this.props.translate('bankAccount.error.age');
+ } else if (!ValidationUtils.meetsMaximumAgeRequirement(values[`beneficialOwner_${ownerKey}_dob`])) {
+ errors[`beneficialOwner_${ownerKey}_dob`] = this.props.translate('bankAccount.error.dob');
+ }
}
if (values[`beneficialOwner_${ownerKey}_ssnLast4`] && !ValidationUtils.isValidSSNLastFour(values[`beneficialOwner_${ownerKey}_ssnLast4`])) {
diff --git a/src/pages/ReimbursementAccount/BankAccountManualStep.js b/src/pages/ReimbursementAccount/BankAccountManualStep.js
index a17f5f291d1a..edc2aeab5a9c 100644
--- a/src/pages/ReimbursementAccount/BankAccountManualStep.js
+++ b/src/pages/ReimbursementAccount/BankAccountManualStep.js
@@ -59,7 +59,7 @@ class BankAccountManualStep extends React.Component {
lodashGet(this.props.reimbursementAccount, 'achData.bankAccountID') || 0,
values.accountNumber,
values.routingNumber,
- this.props.getDefaultStateForField('plaidMask'),
+ lodashGet(this.props, ['reimbursementAccountDraft', 'plaidMask']),
);
}
diff --git a/src/pages/ReimbursementAccount/BankAccountPlaidStep.js b/src/pages/ReimbursementAccount/BankAccountPlaidStep.js
index 89339e0d7968..65b7dea3e395 100644
--- a/src/pages/ReimbursementAccount/BankAccountPlaidStep.js
+++ b/src/pages/ReimbursementAccount/BankAccountPlaidStep.js
@@ -68,7 +68,10 @@ class BankAccountPlaidStep extends React.Component {
const selectedPlaidAccountID = lodashGet(this.props.reimbursementAccountDraft, 'plaidAccountID', '');
return (
-
+
diff --git a/src/pages/ReimbursementAccount/ContinueBankAccountSetup.js b/src/pages/ReimbursementAccount/ContinueBankAccountSetup.js
index c84296d4c33d..e7468b0209e7 100644
--- a/src/pages/ReimbursementAccount/ContinueBankAccountSetup.js
+++ b/src/pages/ReimbursementAccount/ContinueBankAccountSetup.js
@@ -2,6 +2,7 @@ import PropTypes from 'prop-types';
import React from 'react';
import {ScrollView} from 'react-native';
import _ from 'underscore';
+import lodashGet from 'lodash/get';
import * as Expensicons from '../../components/Icon/Expensicons';
import * as Illustrations from '../../components/Icon/Illustrations';
import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize';
@@ -20,6 +21,7 @@ import withPolicy from '../workspace/withPolicy';
import * as ReimbursementAccountProps from './reimbursementAccountPropTypes';
import WorkspaceResetBankAccountModal from '../workspace/WorkspaceResetBankAccountModal';
import * as BankAccounts from '../../libs/actions/BankAccounts';
+import OfflineWithFeedback from '../../components/OfflineWithFeedback';
const propTypes = {
/** Bank account currently in setup */
@@ -28,9 +30,6 @@ const propTypes = {
/** Callback to continue to the next step of the setup */
continue: PropTypes.func.isRequired,
- /** Callback to reset the bank account */
- startOver: PropTypes.func.isRequired,
-
/** Policy values needed in the component */
policy: PropTypes.shape({
name: PropTypes.string,
@@ -44,55 +43,67 @@ const propTypes = {
const defaultProps = {policyName: ''};
-const ContinueBankAccountSetup = props => (
-
-
-
-
-
-
- {props.translate('workspace.bankAccount.youreAlmostDone')}
-
-
- BankAccounts.requestResetFreePlanBankAccount()}
- shouldShowRightIcon
- wrapperStyle={[styles.cardMenuItem]}
- />
-
-
-
+const ContinueBankAccountSetup = (props) => {
+ const errors = lodashGet(props.reimbursementAccount, 'errors', {});
+ const pendingAction = lodashGet(props.reimbursementAccount, 'pendingAction', null);
+ return (
+
+
+
+
+
+
+
+ {props.translate('workspace.bankAccount.youreAlmostDone')}
+
+
+ BankAccounts.requestResetFreePlanBankAccount()}
+ shouldShowRightIcon
+ wrapperStyle={[styles.cardMenuItem]}
+ disabled={Boolean(pendingAction) || !_.isEmpty(errors)}
+ />
+
+
+
+
- {props.reimbursementAccount.shouldShowResetModal && (
-
- )}
-
-);
+ {props.reimbursementAccount.shouldShowResetModal && (
+
+ )}
+
+ );
+};
ContinueBankAccountSetup.propTypes = propTypes;
ContinueBankAccountSetup.defaultProps = defaultProps;
diff --git a/src/pages/ReimbursementAccount/Enable2FAPrompt.js b/src/pages/ReimbursementAccount/Enable2FAPrompt.js
index 51c62b8957c1..cb7bc1f004d3 100644
--- a/src/pages/ReimbursementAccount/Enable2FAPrompt.js
+++ b/src/pages/ReimbursementAccount/Enable2FAPrompt.js
@@ -13,31 +13,36 @@ import themeColors from '../../styles/themes/default';
const propTypes = {
...withLocalizePropTypes,
};
-const Enable2FAPrompt = props => (
- {
- Link.openOldDotLink(encodeURI(`settings?param={"section":"account","action":"enableTwoFactorAuth","exitTo":"${ROUTES.getBankAccountRoute()}","isFromNewDot":"true"}`));
+const Enable2FAPrompt = (props) => {
+ const secureYourAccountUrl = encodeURI(`settings?param={"section":"account","action":"enableTwoFactorAuth","exitTo":"${ROUTES.getBankAccountRoute()}","isFromNewDot":"true"}`);
+
+ return (
+ {
+ Link.openOldDotLink(secureYourAccountUrl);
+ },
+ icon: Expensicons.Shield,
+ shouldShowRightIcon: true,
+ iconRight: Expensicons.NewWindow,
+ iconFill: themeColors.success,
+ wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(secureYourAccountUrl),
},
- icon: Expensicons.Shield,
- shouldShowRightIcon: true,
- iconRight: Expensicons.NewWindow,
- iconFill: themeColors.success,
- wrapperStyle: [styles.cardMenuItem],
- },
- ]}
- >
-
-
- {props.translate('validationStep.enable2FAText')}
-
-
-
-);
+ ]}
+ >
+
+
+ {props.translate('validationStep.enable2FAText')}
+
+
+
+ );
+};
Enable2FAPrompt.propTypes = propTypes;
Enable2FAPrompt.displayName = 'Enable2FAPrompt';
diff --git a/src/pages/ReimbursementAccount/EnableStep.js b/src/pages/ReimbursementAccount/EnableStep.js
index 2b54f7eab1fa..03b431b270f1 100644
--- a/src/pages/ReimbursementAccount/EnableStep.js
+++ b/src/pages/ReimbursementAccount/EnableStep.js
@@ -1,4 +1,5 @@
import React from 'react';
+import _ from 'underscore';
import {ScrollView} from 'react-native';
import {withOnyx} from 'react-native-onyx';
import PropTypes from 'prop-types';
@@ -14,6 +15,7 @@ import CONST from '../../CONST';
import Button from '../../components/Button';
import * as Expensicons from '../../components/Icon/Expensicons';
import MenuItem from '../../components/MenuItem';
+import OfflineWithFeedback from '../../components/OfflineWithFeedback';
import getBankIcon from '../../components/Icon/BankIcons';
import * as ReimbursementAccountProps from './reimbursementAccountPropTypes';
import userPropTypes from '../settings/userPropTypes';
@@ -54,6 +56,8 @@ const EnableStep = (props) => {
: '';
const bankName = achData.addressName;
+ const errors = lodashGet(props.reimbursementAccount, 'errors', {});
+ const pendingAction = lodashGet(props.reimbursementAccount, 'pendingAction', null);
return (
{
title={!isUsingExpensifyCard ? props.translate('workspace.bankAccount.oneMoreThing') : props.translate('workspace.bankAccount.allSet')}
icon={!isUsingExpensifyCard ? Illustrations.ConciergeNew : Illustrations.ThumbsUpStars}
>
-
-
- {!isUsingExpensifyCard
- ? props.translate('workspace.bankAccount.accountDescriptionNoCards')
- : props.translate('workspace.bankAccount.accountDescriptionWithCards')}
-
- {!isUsingExpensifyCard && (
- {
- Link.openOldDotLink(CONST.ADD_SECONDARY_LOGIN_URL);
- User.subscribeToExpensifyCardUpdates();
- }}
- icon={Expensicons.Mail}
- style={[styles.mt4]}
- iconStyles={[styles.buttonCTAIcon]}
- shouldShowRightIcon
- large
- success
+
+
+
+
+ {!isUsingExpensifyCard
+ ? props.translate('workspace.bankAccount.accountDescriptionNoCards')
+ : props.translate('workspace.bankAccount.accountDescriptionWithCards')}
+
+ {!isUsingExpensifyCard && (
+ {
+ Link.openOldDotLink(CONST.ADD_SECONDARY_LOGIN_URL);
+ User.subscribeToExpensifyCardUpdates();
+ }}
+ icon={Expensicons.Mail}
+ style={[styles.mt4]}
+ iconStyles={[styles.buttonCTAIcon]}
+ shouldShowRightIcon
+ large
+ success
+ />
+ )}
+
- )}
-
+
{Boolean(props.user.isCheckingDomain) && (
diff --git a/src/pages/ReimbursementAccount/ReimbursementAccountPage.js b/src/pages/ReimbursementAccount/ReimbursementAccountPage.js
index d1dc8846549d..2dabdcceefcc 100644
--- a/src/pages/ReimbursementAccount/ReimbursementAccountPage.js
+++ b/src/pages/ReimbursementAccount/ReimbursementAccountPage.js
@@ -89,11 +89,14 @@ class ReimbursementAccountPage extends React.Component {
this.continue = this.continue.bind(this);
this.getDefaultStateForField = this.getDefaultStateForField.bind(this);
this.goBack = this.goBack.bind(this);
- const achData = lodashGet(this.props.reimbursementAccount, 'achData', {});
- const hasInProgressVBBA = achData.bankAccountID && achData.state !== BankAccount.STATE.OPEN && achData.state !== BankAccount.STATE.LOCKED;
+ // The first time we open this page, the props.reimbursementAccount has not been loaded from the server.
+ // Calculating shouldShowContinueSetupButton on the default data doesn't make sense, and we should recalculate
+ // it once we get the response from the server the first time in componentDidUpdate.
+ const hasACHDataBeenLoaded = this.props.reimbursementAccount !== ReimbursementAccountProps.reimbursementAccountDefaultProps;
this.state = {
- shouldHideContinueSetupButton: !hasInProgressVBBA,
+ hasACHDataBeenLoaded,
+ shouldShowContinueSetupButton: hasACHDataBeenLoaded ? this.getShouldShowContinueSetupButtonInitialValue() : false,
};
}
@@ -105,21 +108,73 @@ class ReimbursementAccountPage extends React.Component {
if (prevProps.network.isOffline && !this.props.network.isOffline) {
this.fetchData();
}
+ if (!this.state.hasACHDataBeenLoaded) {
+ // If the ACHData has not been loaded yet, and we are seeing the default data for props.reimbursementAccount
+ // We don't need to do anything yet
+ if (this.props.reimbursementAccount !== ReimbursementAccountProps.reimbursementAccountDefaultProps
+ && !this.props.reimbursementAccount.isLoading) {
+ // If we are here, it is because this is the first time we load the ACHData from the server and
+ // this.props.reimbursementAccount.isLoading just changed to false. From now on, it makes sense to run the code
+ // below updating states and the route, and this will happen in the next react lifecycle.
+ this.setState({
+ shouldShowContinueSetupButton: this.getShouldShowContinueSetupButtonInitialValue(),
+ hasACHDataBeenLoaded: true,
+ });
+ }
+ return;
+ }
+
+ if (prevProps.reimbursementAccount.pendingAction === CONST.RED_BRICK_ROAD_PENDING_ACTION.DELETE
+ && this.props.reimbursementAccount.pendingAction !== prevProps.reimbursementAccount.pendingAction) {
+ // We are here after the user tried to delete the bank account. We will want to set
+ // this.state.shouldShowContinueSetupButton to `false` if the bank account was deleted.
+ this.setState({shouldShowContinueSetupButton: this.hasInProgressVBBA()});
+ }
+
const currentStep = lodashGet(this.props.reimbursementAccount, 'achData.currentStep') || CONST.BANK_ACCOUNT.STEP.BANK_ACCOUNT;
- const previousStep = lodashGet(prevProps.reimbursementAccount, 'achData.currentStep') || CONST.BANK_ACCOUNT.STEP.BANK_ACCOUNT;
- if (currentStep === previousStep) {
+
+ if (this.state.shouldShowContinueSetupButton) {
+ // If we are showing the "Continue with setup" / "Start over" buttons:
+ // - We don't want to update the route in case the user reloads the page. If we update the route and the user reloads, we will
+ // take the user to the step set in the route and skip chosing the options.
+ // - We don't want to clear possible errors because we want to allow the user to clear them clicking the X
return;
}
+ const currentStepRouteParam = this.getStepToOpenFromRouteParams();
+ if (currentStepRouteParam === currentStep) {
+ // The route is showing the correct step, no need to update the route param or clear errors.
+ return;
+ }
+ if (currentStepRouteParam !== '') {
+ // When we click "Connect bank account", we load the page without the current step param, if there
+ // was an error when we tried to disconnect or start over, we want the user to be able to see the error,
+ // so we don't clear it. We only want to clear the errors if we are moving between steps.
+ BankAccounts.hideBankAccountErrors();
+ }
+
// When the step changes we will navigate to update the route params. This is mostly cosmetic as we only use
// the route params when the component first mounts to jump to a specific route instead of picking up where the
// user left off in the flow.
- BankAccounts.hideBankAccountErrors();
Navigation.navigate(ROUTES.getBankAccountRoute(
this.getRouteForCurrentStep(currentStep), lodashGet(this.props.route.params, 'policyID'),
));
}
+ /*
+ * Calculates the state used to show the "Continue with setup" view. If a bank account setup is already in progress and
+ * no specific further step was passed in the url we'll show the workspace bank account reset modal if the user wishes to start over
+ */
+ getShouldShowContinueSetupButtonInitialValue() {
+ if (!this.hasInProgressVBBA()) {
+ // Since there is no VBBA in progress, we won't need to show the component ContinueBankAccountSetup
+ return false;
+ }
+ const achData = lodashGet(this.props.reimbursementAccount, 'achData', {});
+ return achData.state === BankAccount.STATE.PENDING
+ || _.contains([CONST.BANK_ACCOUNT.STEP.BANK_ACCOUNT, ''], this.getStepToOpenFromRouteParams());
+ }
+
/**
* @param {String} fieldName
* @param {*} defaultValue
@@ -176,6 +231,15 @@ class ReimbursementAccountPage extends React.Component {
}
}
+ /**
+ * Returns true if a VBBA exists in any state other than OPEN or LOCKED
+ * @returns {Boolean}
+ */
+ hasInProgressVBBA() {
+ const achData = lodashGet(this.props.reimbursementAccount, 'achData', {});
+ return achData.bankAccountID && achData.state !== BankAccount.STATE.OPEN && achData.state !== BankAccount.STATE.LOCKED;
+ }
+
/**
* Retrieve verified business bank account currently being set up.
* @param {boolean} ignoreLocalCurrentStep Pass true if you want the last "updated" view (from db), not the last "viewed" view (from onyx).
@@ -195,7 +259,7 @@ class ReimbursementAccountPage extends React.Component {
continue() {
this.setState({
- shouldHideContinueSetupButton: true,
+ shouldShowContinueSetupButton: false,
});
this.fetchData(true);
}
@@ -205,11 +269,10 @@ class ReimbursementAccountPage extends React.Component {
const currentStep = achData.currentStep || CONST.BANK_ACCOUNT.STEP.BANK_ACCOUNT;
const subStep = achData.subStep;
const shouldShowOnfido = this.props.onfidoToken && !achData.isOnfidoSetupComplete;
- const hasInProgressVBBA = achData.bankAccountID && achData.state !== BankAccount.STATE.OPEN && achData.state !== BankAccount.STATE.LOCKED;
switch (currentStep) {
case CONST.BANK_ACCOUNT.STEP.BANK_ACCOUNT:
- if (hasInProgressVBBA) {
- this.setState({shouldHideContinueSetupButton: false});
+ if (this.hasInProgressVBBA()) {
+ this.setState({shouldShowContinueSetupButton: true});
}
if (subStep) {
BankAccounts.setBankAccountSubStep(null);
@@ -236,7 +299,7 @@ class ReimbursementAccountPage extends React.Component {
BankAccounts.goToWithdrawalAccountSetupStep(CONST.BANK_ACCOUNT.STEP.ACH_CONTRACT);
} else if (achData.state === BankAccount.STATE.PENDING) {
this.setState({
- shouldHideContinueSetupButton: false,
+ shouldShowContinueSetupButton: true,
});
} else {
Navigation.goBack();
@@ -271,21 +334,11 @@ class ReimbursementAccountPage extends React.Component {
);
}
- // Show the "Continue with setup" button if a bank account setup is already in progress and no specific further step was passed in the url
- // We'll show the workspace bank account reset modal if the user wishes to start over
- if (!this.state.shouldHideContinueSetupButton
- && Boolean(achData.bankAccountID)
- && achData.state !== BankAccount.STATE.OPEN
- && achData.state !== BankAccount.STATE.LOCKED
- && (
- _.contains([CONST.BANK_ACCOUNT.STEP.BANK_ACCOUNT, ''], this.getStepToOpenFromRouteParams())
- || achData.state === BankAccount.STATE.PENDING
- )) {
+ if (this.state.shouldShowContinueSetupButton) {
return (
this.setState({shouldHideContinueSetupButton: true})}
policyName={policyName}
/>
);
diff --git a/src/pages/ReimbursementAccount/RequestorStep.js b/src/pages/ReimbursementAccount/RequestorStep.js
index 92108110ef49..d62cda9fa779 100644
--- a/src/pages/ReimbursementAccount/RequestorStep.js
+++ b/src/pages/ReimbursementAccount/RequestorStep.js
@@ -53,8 +53,12 @@ class RequestorStep extends React.Component {
errors.dob = this.props.translate('bankAccount.error.dob');
}
- if (values.dob && !ValidationUtils.meetsAgeRequirements(values.dob)) {
- errors.dob = this.props.translate('bankAccount.error.age');
+ if (values.dob) {
+ if (!ValidationUtils.meetsMinimumAgeRequirement(values.dob)) {
+ errors.dob = this.props.translate('bankAccount.error.age');
+ } else if (!ValidationUtils.meetsMaximumAgeRequirement(values.dob)) {
+ errors.dob = this.props.translate('bankAccount.error.dob');
+ }
}
if (!ValidationUtils.isRequiredFulfilled(values.ssnLast4) || !ValidationUtils.isValidSSNLastFour(values.ssnLast4)) {
diff --git a/src/pages/SearchPage.js b/src/pages/SearchPage.js
index 560ec388ef99..270432325e06 100755
--- a/src/pages/SearchPage.js
+++ b/src/pages/SearchPage.js
@@ -70,6 +70,7 @@ class SearchPage extends Component {
this.state = {
searchValue: '',
+ headerMessage: '',
recentReports,
personalDetails,
userToInvite,
@@ -134,10 +135,18 @@ class SearchPage extends Component {
this.state.searchValue.trim(),
this.props.betas,
);
- this.setState({
- userToInvite,
- recentReports,
- personalDetails,
+ this.setState((prevState) => {
+ const headerMessage = OptionsListUtils.getHeaderMessage(
+ (recentReports.length + personalDetails.length) !== 0,
+ Boolean(userToInvite),
+ prevState.searchValue,
+ );
+ return ({
+ headerMessage,
+ userToInvite,
+ recentReports,
+ personalDetails,
+ });
});
}
@@ -164,11 +173,6 @@ class SearchPage extends Component {
render() {
const sections = this.getSections();
- const headerMessage = OptionsListUtils.getHeaderMessage(
- (this.state.recentReports.length + this.state.personalDetails.length) !== 0,
- Boolean(this.state.userToInvite),
- this.state.searchValue,
- );
return (
{({didScreenTransitionEnd, safeAreaPaddingBottomStyle}) => (
@@ -183,11 +187,11 @@ class SearchPage extends Component {
value={this.state.searchValue}
onSelectRow={this.selectReport}
onChangeText={this.onChangeText}
- headerMessage={headerMessage}
+ headerMessage={this.state.headerMessage}
hideSectionHeaders
showTitleTooltip
shouldShowOptions={didScreenTransitionEnd}
- placeholderText={this.props.translate('optionsSelector.nameEmailOrPhoneNumber')}
+ textInputLabel={this.props.translate('optionsSelector.nameEmailOrPhoneNumber')}
onLayout={this.searchRendered}
safeAreaPaddingBottomStyle={safeAreaPaddingBottomStyle}
/>
diff --git a/src/pages/SetPasswordPage.js b/src/pages/SetPasswordPage.js
index 63ad2392109b..e8993e12d042 100755
--- a/src/pages/SetPasswordPage.js
+++ b/src/pages/SetPasswordPage.js
@@ -1,8 +1,6 @@
import React, {Component} from 'react';
-import {
- SafeAreaView,
- View,
-} from 'react-native';
+import {View} from 'react-native';
+import {SafeAreaView} from 'react-native-safe-area-context';
import PropTypes from 'prop-types';
import {withOnyx} from 'react-native-onyx';
import _ from 'underscore';
@@ -21,7 +19,6 @@ import NewPasswordForm from './settings/NewPasswordForm';
import FormAlertWithSubmitButton from '../components/FormAlertWithSubmitButton';
import FormSubmit from '../components/FormSubmit';
import * as ErrorUtils from '../libs/ErrorUtils';
-import OfflineIndicator from '../components/OfflineIndicator';
const propTypes = {
/* Onyx Props */
@@ -121,7 +118,6 @@ class SetPasswordPage extends Component {
/>
-
);
diff --git a/src/pages/YearPickerPage.js b/src/pages/YearPickerPage.js
index f2a4cdee3024..54b5d2c3c4f0 100644
--- a/src/pages/YearPickerPage.js
+++ b/src/pages/YearPickerPage.js
@@ -70,9 +70,15 @@ class YearPickerPage extends React.Component {
* @param {String} text
*/
filterYearList(text) {
- this.setState({
- inputText: text,
- yearOptions: _.filter(this.yearList, year => year.text.includes(text.trim())),
+ const searchText = text.replace(CONST.REGEX.NON_NUMERIC, '');
+ this.setState((prevState) => {
+ if (searchText === prevState.inputText) {
+ return {};
+ }
+ return {
+ inputText: searchText,
+ yearOptions: _.filter(this.yearList, year => year.text.includes(searchText)),
+ };
});
}
diff --git a/src/pages/home/report/ContextMenu/BaseReportActionContextMenu.js b/src/pages/home/report/ContextMenu/BaseReportActionContextMenu.js
index e562a417d423..1da859e123c0 100755
--- a/src/pages/home/report/ContextMenu/BaseReportActionContextMenu.js
+++ b/src/pages/home/report/ContextMenu/BaseReportActionContextMenu.js
@@ -45,7 +45,7 @@ const defaultProps = {
class BaseReportActionContextMenu extends React.Component {
constructor(props) {
super(props);
- this.wrapperStyle = getReportActionContextMenuStyles(this.props.isMini);
+ this.wrapperStyle = getReportActionContextMenuStyles(this.props.isMini, this.props.isSmallScreenWidth);
this.state = {
shouldKeepOpen: false,
diff --git a/src/pages/home/report/FloatingMessageCounter/index.js b/src/pages/home/report/FloatingMessageCounter/index.js
index 5754993fbda5..1a6f2035147a 100644
--- a/src/pages/home/report/FloatingMessageCounter/index.js
+++ b/src/pages/home/report/FloatingMessageCounter/index.js
@@ -77,22 +77,21 @@ class FloatingMessageCounter extends PureComponent {
success
small
onPress={this.props.onClick}
- ContentComponent={() => (
-
-
-
- {this.props.translate('newMessages')}
-
-
- )}
- />
+ >
+
+
+
+ {this.props.translate('newMessages')}
+
+
+
diff --git a/src/pages/home/report/ParticipantLocalTime.js b/src/pages/home/report/ParticipantLocalTime.js
index ab1b3dcc4b5d..fb494afb05e9 100644
--- a/src/pages/home/report/ParticipantLocalTime.js
+++ b/src/pages/home/report/ParticipantLocalTime.js
@@ -56,7 +56,7 @@ class ParticipantLocalTime extends PureComponent {
render() {
const reportRecipientDisplayName = this.props.participant.firstName
|| (Str.isSMSLogin(this.props.participant.login)
- ? this.props.toLocalPhone(this.props.participant.displayName)
+ ? this.props.formatPhoneNumber(this.props.participant.displayName)
: this.props.participant.displayName);
return (
diff --git a/src/pages/home/report/ReportActionCompose/index.js b/src/pages/home/report/ReportActionCompose.js
similarity index 62%
rename from src/pages/home/report/ReportActionCompose/index.js
rename to src/pages/home/report/ReportActionCompose.js
index 741bf50d1056..e4c88999000b 100644
--- a/src/pages/home/report/ReportActionCompose/index.js
+++ b/src/pages/home/report/ReportActionCompose.js
@@ -9,49 +9,53 @@ import {
import _ from 'underscore';
import lodashGet from 'lodash/get';
import {withOnyx} from 'react-native-onyx';
-import styles from '../../../../styles/styles';
-import themeColors from '../../../../styles/themes/default';
-import Composer from '../../../../components/Composer';
-import ONYXKEYS from '../../../../ONYXKEYS';
-import Icon from '../../../../components/Icon';
-import * as Expensicons from '../../../../components/Icon/Expensicons';
-import AttachmentPicker from '../../../../components/AttachmentPicker';
-import * as Report from '../../../../libs/actions/Report';
-import ReportTypingIndicator from '../ReportTypingIndicator';
-import AttachmentModal from '../../../../components/AttachmentModal';
-import compose from '../../../../libs/compose';
-import PopoverMenu from '../../../../components/PopoverMenu';
-import withWindowDimensions, {windowDimensionsPropTypes} from '../../../../components/withWindowDimensions';
-import withDrawerState from '../../../../components/withDrawerState';
-import withLocalize, {withLocalizePropTypes} from '../../../../components/withLocalize';
-import willBlurTextInputOnTapOutside from '../../../../libs/willBlurTextInputOnTapOutside';
-import CONST from '../../../../CONST';
-import Navigation from '../../../../libs/Navigation/Navigation';
-import ROUTES from '../../../../ROUTES';
-import reportActionPropTypes from '../reportActionPropTypes';
-import * as ReportUtils from '../../../../libs/ReportUtils';
-import ReportActionComposeFocusManager from '../../../../libs/ReportActionComposeFocusManager';
-import participantPropTypes from '../../../../components/participantPropTypes';
-import ParticipantLocalTime from '../ParticipantLocalTime';
-import withCurrentUserPersonalDetails, {withCurrentUserPersonalDetailsPropTypes, withCurrentUserPersonalDetailsDefaultProps} from '../../../../components/withCurrentUserPersonalDetails';
-import {withNetwork, withPersonalDetails} from '../../../../components/OnyxProvider';
-import * as User from '../../../../libs/actions/User';
-import Tooltip from '../../../../components/Tooltip';
-import EmojiPickerButton from '../../../../components/EmojiPicker/EmojiPickerButton';
-import * as DeviceCapabilities from '../../../../libs/DeviceCapabilities';
-import toggleReportActionComposeView from '../../../../libs/toggleReportActionComposeView';
-import OfflineIndicator from '../../../../components/OfflineIndicator';
-import ExceededCommentLength from '../../../../components/ExceededCommentLength';
-import withNavigationFocus from '../../../../components/withNavigationFocus';
-import * as EmojiUtils from '../../../../libs/EmojiUtils';
-import ReportDropUI from '../ReportDropUI';
-import DragAndDrop from '../../../../components/DragAndDrop';
-import reportPropTypes from '../../../reportPropTypes';
-import EmojiSuggestions from '../../../../components/EmojiSuggestions';
-import withKeyboardState, {keyboardStatePropTypes} from '../../../../components/withKeyboardState';
-import ArrowKeyFocusManager from '../../../../components/ArrowKeyFocusManager';
-import KeyboardShortcut from '../../../../libs/KeyboardShortcut';
-import KeyDownAction from './keyDownAction';
+import styles from '../../../styles/styles';
+import themeColors from '../../../styles/themes/default';
+import Composer from '../../../components/Composer';
+import ONYXKEYS from '../../../ONYXKEYS';
+import Icon from '../../../components/Icon';
+import * as Expensicons from '../../../components/Icon/Expensicons';
+import AttachmentPicker from '../../../components/AttachmentPicker';
+import * as Report from '../../../libs/actions/Report';
+import ReportTypingIndicator from './ReportTypingIndicator';
+import AttachmentModal from '../../../components/AttachmentModal';
+import compose from '../../../libs/compose';
+import PopoverMenu from '../../../components/PopoverMenu';
+import withWindowDimensions, {windowDimensionsPropTypes} from '../../../components/withWindowDimensions';
+import withDrawerState from '../../../components/withDrawerState';
+import withLocalize, {withLocalizePropTypes} from '../../../components/withLocalize';
+import willBlurTextInputOnTapOutside from '../../../libs/willBlurTextInputOnTapOutside';
+import CONST from '../../../CONST';
+import Navigation from '../../../libs/Navigation/Navigation';
+import ROUTES from '../../../ROUTES';
+import reportActionPropTypes from './reportActionPropTypes';
+import * as ReportUtils from '../../../libs/ReportUtils';
+import ReportActionComposeFocusManager from '../../../libs/ReportActionComposeFocusManager';
+import participantPropTypes from '../../../components/participantPropTypes';
+import ParticipantLocalTime from './ParticipantLocalTime';
+import withCurrentUserPersonalDetails, {withCurrentUserPersonalDetailsPropTypes, withCurrentUserPersonalDetailsDefaultProps} from '../../../components/withCurrentUserPersonalDetails';
+import {withNetwork, withPersonalDetails} from '../../../components/OnyxProvider';
+import * as User from '../../../libs/actions/User';
+import Tooltip from '../../../components/Tooltip';
+import EmojiPickerButton from '../../../components/EmojiPicker/EmojiPickerButton';
+import * as DeviceCapabilities from '../../../libs/DeviceCapabilities';
+import toggleReportActionComposeView from '../../../libs/toggleReportActionComposeView';
+import OfflineIndicator from '../../../components/OfflineIndicator';
+import ExceededCommentLength from '../../../components/ExceededCommentLength';
+import withNavigationFocus from '../../../components/withNavigationFocus';
+import withNavigation from '../../../components/withNavigation';
+import * as EmojiUtils from '../../../libs/EmojiUtils';
+import ReportDropUI from './ReportDropUI';
+import DragAndDrop from '../../../components/DragAndDrop';
+import reportPropTypes from '../../reportPropTypes';
+import EmojiSuggestions from '../../../components/EmojiSuggestions';
+import withKeyboardState, {keyboardStatePropTypes} from '../../../components/withKeyboardState';
+import ArrowKeyFocusManager from '../../../components/ArrowKeyFocusManager';
+import OfflineWithFeedback from '../../../components/OfflineWithFeedback';
+import KeyboardShortcut from '../../../libs/KeyboardShortcut';
+import * as ComposerUtils from '../../../libs/ComposerUtils';
+import * as Welcome from '../../../libs/actions/Welcome';
+import Permissions from '../../../libs/Permissions';
const propTypes = {
/** Beta features list */
@@ -114,6 +118,9 @@ const propTypes = {
keywords: PropTypes.arrayOf(PropTypes.string),
})),
+ /** The type of action that's pending */
+ pendingAction: PropTypes.oneOf(['add', 'update', 'delete']),
+
...windowDimensionsPropTypes,
...withLocalizePropTypes,
...withCurrentUserPersonalDetailsPropTypes,
@@ -132,6 +139,7 @@ const defaultProps = {
preferredSkinTone: CONST.EMOJI_DEFAULT_SKIN_TONE,
frequentlyUsedEmojis: [],
isComposerFullSize: false,
+ pendingAction: null,
...withCurrentUserPersonalDetailsDefaultProps,
};
@@ -164,17 +172,17 @@ class ReportActionCompose extends React.Component {
this.setIsFullComposerAvailable = this.setIsFullComposerAvailable.bind(this);
this.focus = this.focus.bind(this);
this.addEmojiToTextBox = this.addEmojiToTextBox.bind(this);
- this.replaceSelectionWithInput = this.replaceSelectionWithInput.bind(this);
- this.keydownListener = this.keydownListener.bind(this);
this.onSelectionChange = this.onSelectionChange.bind(this);
this.isEmojiCode = this.isEmojiCode.bind(this);
this.setTextInputRef = this.setTextInputRef.bind(this);
this.getInputPlaceholder = this.getInputPlaceholder.bind(this);
this.getMoneyRequestOptions = this.getMoneyRequestOptions.bind(this);
+ this.getTaskOption = this.getTaskOption.bind(this);
this.addAttachment = this.addAttachment.bind(this);
this.insertSelectedEmoji = this.insertSelectedEmoji.bind(this);
this.setExceededMaxCommentLength = this.setExceededMaxCommentLength.bind(this);
this.updateNumberOfLines = this.updateNumberOfLines.bind(this);
+ this.showPopoverMenu = this.showPopoverMenu.bind(this);
this.comment = props.comment;
// React Native will retain focus on an input for native devices but web/mWeb behave differently so we have some focus management
@@ -204,13 +212,10 @@ class ReportActionCompose extends React.Component {
isEmojiPickerLarge: false,
composerHeight: 0,
hasExceededMaxCommentLength: false,
- isEmojiPickerVisible: false,
};
}
componentDidMount() {
- KeyDownAction.listenKeyDown(this.keydownListener);
-
// This callback is used in the contextMenuActions to manage giving focus back to the compose input.
// TODO: we should clean up this convoluted code and instead move focus management to something like ReportFooter.js or another higher up component
ReportActionComposeFocusManager.onComposerFocus(() => {
@@ -228,10 +233,18 @@ class ReportActionCompose extends React.Component {
}
this.updateComment('', true);
- }, shortcutConfig.descriptionKey, shortcutConfig.modifiers, true);
+ }, shortcutConfig.descriptionKey, shortcutConfig.modifiers, true, true);
this.setMaxLines();
this.updateComment(this.comment);
+
+ // Shows Popover Menu on Workspace Chat at first sign-in
+ if (!this.props.disabled) {
+ Welcome.show({
+ routes: lodashGet(this.props.navigation.getState(), 'routes', []),
+ showPopoverMenu: this.showPopoverMenu,
+ });
+ }
}
componentDidUpdate(prevProps) {
@@ -266,9 +279,6 @@ class ReportActionCompose extends React.Component {
}
componentWillUnmount() {
- if (this.keydownListener) {
- KeyDownAction.removeListenKeyDown(this.keydownListener);
- }
ReportActionComposeFocusManager.clear();
if (this.unsubscribeEscapeKey) {
@@ -395,13 +405,39 @@ class ReportActionCompose extends React.Component {
}
}
+ /**
+ * Determines if we can show the task option
+ * @param {Array} reportParticipants
+ * @returns {Boolean}
+ */
+ getTaskOption(reportParticipants) {
+ // We only prevent the task option from showing if it's a DM and the other user is an Expensify default email
+ if (!Permissions.canUseTasks(this.props.betas) || (lodashGet(this.props.report, 'participants', []).length === 1 && _.some(reportParticipants, email => _.contains(
+ CONST.EXPENSIFY_EMAILS,
+ email,
+ )))) {
+ return [];
+ }
+
+ return [
+ {
+ icon: Expensicons.Task,
+ text: this.props.translate('newTaskPage.assignTask'),
+ onSelected: () => Navigation.navigate(ROUTES.getNewTaskRoute(this.props.reportID)),
+ },
+ ];
+ }
+
/**
* Clean data related to EmojiSuggestions
*/
resetSuggestedEmojis() {
this.setState({
suggestedEmojis: [],
+ highlightedEmojiIndex: 0,
+ colonIndex: -1,
shouldShowSuggestionMenu: false,
+ isEmojiPickerLarge: true,
});
}
@@ -409,6 +445,10 @@ class ReportActionCompose extends React.Component {
* Calculates and cares about the content of an Emoji Suggester
*/
calculateEmojiSuggestion() {
+ if (!this.state.value) {
+ this.resetSuggestedEmojis();
+ return;
+ }
const leftString = this.state.value.substring(0, this.state.selection.end);
const colonIndex = leftString.lastIndexOf(':');
const isCurrentlyShowingEmojiSuggestion = this.isEmojiCode(this.state.value, this.state.selection.end);
@@ -443,7 +483,7 @@ class ReportActionCompose extends React.Component {
* @returns {Boolean}
*/
isEmojiCode(str, pos) {
- const leftWords = str.slice(0, pos).split(CONST.REGEX.NEW_LINE_OR_WHITE_SPACE);
+ const leftWords = str.slice(0, pos).split(CONST.REGEX.NEW_LINE_OR_WHITE_SPACE_OR_EMOJI);
const leftWord = _.last(leftWords);
return CONST.REGEX.HAS_COLON_ONLY_AT_THE_BEGINNING.test(leftWord) && leftWord.length > 2;
@@ -474,53 +514,19 @@ class ReportActionCompose extends React.Component {
return _.size(this.props.reportActions) === 1;
}
- keydownListener(e) {
- if (this.state.isFocused || this.state.isEmojiPickerVisible || this.props.modal.isVisible || this.props.isSmallScreenWidth) {
- return;
- }
-
- // If the key pressed is non-character keys like Enter, Shift, ... do not focus
- if (e.key.length > 1) {
- return;
- }
-
- // If a key is pressed in combination with Meta, Control or Alt do not focus
- if (e.metaKey || e.ctrlKey || e.altKey) {
- return;
- }
-
- // If we're typing on another input/text area, do not focus
- if (e.target.nodeName === 'INPUT' || e.target.nodeName === 'TEXTAREA') {
- return;
- }
-
- this.focus();
- this.replaceSelectionWithInput(e.key);
- }
-
- /**
- * @param {String} text
- */
- replaceSelectionWithInput(text) {
- const newComment = this.comment.slice(0, this.state.selection.start)
- + text
- + this.comment.slice(this.state.selection.end, this.comment.length);
- this.setState(prevState => ({
- selection: {
- start: prevState.selection.start + text.length,
- end: prevState.selection.start + text.length,
- },
- }), this.updateComment(newComment));
- }
-
/**
* Callback for the emoji picker to add whatever emoji is chosen into the main input
*
* @param {String} emoji
*/
addEmojiToTextBox(emoji) {
- const emojiWithSpace = `${emoji} `;
- this.replaceSelectionWithInput(emojiWithSpace);
+ this.setState(prevState => ({
+ selection: {
+ start: prevState.selection.start + emoji.length,
+ end: prevState.selection.start + emoji.length,
+ },
+ }));
+ this.updateComment(ComposerUtils.insertText(this.comment, this.state.selection, emoji));
}
/**
@@ -720,6 +726,15 @@ class ReportActionCompose extends React.Component {
this.props.onSubmit(comment);
}
+ /**
+ * Used to show Popover menu on Workspace chat at first sign-in
+ * @returns {Boolean}
+ */
+ showPopoverMenu() {
+ this.setMenuVisibility(true);
+ return true;
+ }
+
render() {
const reportParticipants = _.without(lodashGet(this.props.report, 'participants', []), this.props.currentUserPersonalDetails.login);
const participantsWithoutExpensifyEmails = _.difference(reportParticipants, CONST.EXPENSIFY_EMAILS);
@@ -741,70 +756,75 @@ class ReportActionCompose extends React.Component {
this.props.isComposerFullSize && styles.chatItemFullComposeRow,
]}
>
- {shouldShowReportRecipientLocalTime && }
-
- }
+
- {({displayFileInModal}) => (
- <>
-
- {({openPicker}) => (
- <>
-
- {this.props.isComposerFullSize && (
-
- {
- e.preventDefault();
- this.setShouldShowSuggestionMenuToFalse();
- Report.setIsComposerFullSize(this.props.reportID, false);
- }}
-
- // Keep focus on the composer when Collapse button is clicked.
- onMouseDown={e => e.preventDefault()}
- style={styles.composerSizeButton}
- disabled={isBlockedFromConcierge || this.props.disabled}
- >
-
-
-
-
- )}
- {(!this.props.isComposerFullSize && this.state.isFullComposerAvailable) && (
-
- {
- e.preventDefault();
- this.setShouldShowSuggestionMenuToFalse();
- Report.setIsComposerFullSize(this.props.reportID, true);
- }}
-
- // Keep focus on the composer when Expand button is clicked.
- onMouseDown={e => e.preventDefault()}
- style={styles.composerSizeButton}
- disabled={isBlockedFromConcierge || this.props.disabled}
- >
-
-
-
- )}
-
-
+
+ {({displayFileInModal}) => (
+ <>
+
+ {({openPicker}) => (
+ <>
+
+ {this.props.isComposerFullSize && (
+
+ {
+ e.preventDefault();
+ this.setShouldShowSuggestionMenuToFalse();
+ Report.setIsComposerFullSize(this.props.reportID, false);
+ }}
+
+ // Keep focus on the composer when Collapse button is clicked.
+ onMouseDown={e => e.preventDefault()}
+ style={styles.composerSizeButton}
+ disabled={isBlockedFromConcierge || this.props.disabled}
+ >
+
+
+
+
+ )}
+ {(!this.props.isComposerFullSize && this.state.isFullComposerAvailable) && (
+
+ {
+ e.preventDefault();
+ this.setShouldShowSuggestionMenuToFalse();
+ Report.setIsComposerFullSize(this.props.reportID, true);
+ }}
+
+ // Keep focus on the composer when Expand button is clicked.
+ onMouseDown={e => e.preventDefault()}
+ style={styles.composerSizeButton}
+ disabled={isBlockedFromConcierge || this.props.disabled}
+ >
+
+
+
+ )}
+
this.actionButton = el}
onPress={(e) => {
@@ -819,136 +839,134 @@ class ReportActionCompose extends React.Component {
>
-
-
-
- this.setMenuVisibility(false)}
- onItemSelected={() => this.setMenuVisibility(false)}
- anchorPosition={styles.createMenuPositionReportActionCompose}
- menuItems={[...this.getMoneyRequestOptions(reportParticipants),
- {
- icon: Expensicons.Paperclip,
- text: this.props.translate('reportActionCompose.addAttachment'),
- onSelected: () => {
- openPicker({
- onPicked: displayFileInModal,
- });
+
+
+ this.setMenuVisibility(false)}
+ onItemSelected={() => this.setMenuVisibility(false)}
+ anchorPosition={styles.createMenuPositionReportActionCompose}
+ menuItems={[...this.getMoneyRequestOptions(reportParticipants), ...this.getTaskOption(reportParticipants),
+ {
+ icon: Expensicons.Paperclip,
+ text: this.props.translate('reportActionCompose.addAttachment'),
+ onSelected: () => {
+ openPicker({
+ onPicked: displayFileInModal,
+ });
+ },
},
- },
- ]}
- />
- >
- )}
-
-
- {
- this.setState({isDraggingOver: true});
- }}
- onDragLeave={() => {
- this.setState({isDraggingOver: false});
- }}
- onDrop={(e) => {
- e.preventDefault();
-
- const file = lodashGet(e, ['dataTransfer', 'files', 0]);
-
- displayFileInModal(file);
-
- this.setState({isDraggingOver: false});
- }}
- disabled={this.props.disabled}
- >
- this.updateComment(comment, true)}
- onKeyPress={this.triggerHotkeyActions}
- style={[styles.textInputCompose, this.props.isComposerFullSize ? styles.textInputFullCompose : styles.flex4]}
- maxLines={this.state.maxLines}
- onFocus={() => this.setIsFocused(true)}
- onBlur={() => {
- this.setIsFocused(false);
- this.resetSuggestedEmojis();
+ ]}
+ />
+ >
+ )}
+
+
+ {
+ this.setState({isDraggingOver: true});
}}
- onPasteFile={displayFileInModal}
- shouldClear={this.state.textInputShouldClear}
- onClear={() => this.setTextInputShouldClear(false)}
- isDisabled={isComposeDisabled || isBlockedFromConcierge || this.props.disabled}
- selection={this.state.selection}
- onSelectionChange={this.onSelectionChange}
- isFullComposerAvailable={this.state.isFullComposerAvailable}
- setIsFullComposerAvailable={this.setIsFullComposerAvailable}
- isComposerFullSize={this.props.isComposerFullSize}
- value={this.state.value}
- numberOfLines={this.props.numberOfLines}
- onNumberOfLinesChange={this.updateNumberOfLines}
- onLayout={(e) => {
- const composerHeight = e.nativeEvent.layout.height;
- if (this.state.composerHeight === composerHeight) {
- return;
- }
- this.setState({composerHeight});
+ onDragLeave={() => {
+ this.setState({isDraggingOver: false});
}}
- onScroll={() => this.setShouldShowSuggestionMenuToFalse()}
- />
-
-
- >
- )}
-
- {DeviceCapabilities.canUseTouchScreen() && this.props.isMediumScreenWidth ? null : (
- {
- this.focus(true);
- this.setState({isEmojiPickerVisible: false});
- }}
- onEmojiSelected={this.addEmojiToTextBox}
- onWillShow={() => this.setState({isEmojiPickerVisible: true})}
- />
- )}
- {
+ e.preventDefault();
- // Keep focus on the composer when Send message is clicked.
- onMouseDown={e => e.preventDefault()}
- >
-
-
+ this.updateComment(comment, true)}
+ onKeyPress={this.triggerHotkeyActions}
+ style={[styles.textInputCompose, this.props.isComposerFullSize ? styles.textInputFullCompose : styles.flex4]}
+ maxLines={this.state.maxLines}
+ onFocus={() => this.setIsFocused(true)}
+ onBlur={() => {
+ this.setIsFocused(false);
+ this.resetSuggestedEmojis();
+ }}
+ onPasteFile={displayFileInModal}
+ shouldClear={this.state.textInputShouldClear}
+ onClear={() => this.setTextInputShouldClear(false)}
+ isDisabled={isComposeDisabled || isBlockedFromConcierge || this.props.disabled}
+ selection={this.state.selection}
+ onSelectionChange={this.onSelectionChange}
+ isFullComposerAvailable={this.state.isFullComposerAvailable}
+ setIsFullComposerAvailable={this.setIsFullComposerAvailable}
+ isComposerFullSize={this.props.isComposerFullSize}
+ value={this.state.value}
+ numberOfLines={this.props.numberOfLines}
+ onNumberOfLinesChange={this.updateNumberOfLines}
+ onLayout={(e) => {
+ const composerHeight = e.nativeEvent.layout.height;
+ if (this.state.composerHeight === composerHeight) {
+ return;
+ }
+ this.setState({composerHeight});
+ }}
+ onScroll={() => this.setShouldShowSuggestionMenuToFalse()}
+ />
+
+
+ >
+ )}
+
+ {DeviceCapabilities.canUseTouchScreen() && this.props.isMediumScreenWidth ? null : (
+ {
+ this.focus(true);
}}
- >
-
-
-
+ onEmojiSelected={this.addEmojiToTextBox}
+ />
+ )}
+ e.preventDefault()}
+ >
+
+
+
+
+
+
-
-
- {!this.props.isSmallScreenWidth && }
-
-
-
+
+ {!this.props.isSmallScreenWidth && }
+
+
+
+
{this.state.isDraggingOver && }
{!_.isEmpty(this.state.suggestedEmojis) && this.state.shouldShowSuggestionMenu && (
this.setState({value: newComment})}
colonIndex={this.state.colonIndex}
- prefix={this.state.value.slice(this.state.colonIndex + 1).split(' ')[0]}
+ prefix={this.state.value.slice(this.state.colonIndex + 1, this.state.selection.start)}
onSelect={this.insertSelectedEmoji}
isComposerFullSize={this.props.isComposerFullSize}
preferredSkinToneIndex={this.props.preferredSkinTone}
@@ -985,6 +1003,7 @@ ReportActionCompose.defaultProps = defaultProps;
export default compose(
withWindowDimensions,
withDrawerState,
+ withNavigation,
withNavigationFocus,
withLocalize,
withNetwork(),
diff --git a/src/pages/home/report/ReportActionCompose/keyDownAction.js b/src/pages/home/report/ReportActionCompose/keyDownAction.js
deleted file mode 100644
index ecd82f79e51d..000000000000
--- a/src/pages/home/report/ReportActionCompose/keyDownAction.js
+++ /dev/null
@@ -1,10 +0,0 @@
-function listenKeyDown(callback) {
- document.addEventListener('keydown', callback);
-}
-
-function removeListenKeyDown(callback) {
- document.removeEventListener('keydown', callback);
-}
-
-export default {listenKeyDown, removeListenKeyDown};
-
diff --git a/src/pages/home/report/ReportActionCompose/keyDownAction.native.js b/src/pages/home/report/ReportActionCompose/keyDownAction.native.js
deleted file mode 100644
index 38244160ecb2..000000000000
--- a/src/pages/home/report/ReportActionCompose/keyDownAction.native.js
+++ /dev/null
@@ -1,5 +0,0 @@
-function listenKeyDown() {}
-function removeListenKeyDown() {}
-
-export default {removeListenKeyDown, listenKeyDown};
-
diff --git a/src/pages/home/report/ReportActionItem.js b/src/pages/home/report/ReportActionItem.js
index 59ee05e67f57..27d777c06755 100644
--- a/src/pages/home/report/ReportActionItem.js
+++ b/src/pages/home/report/ReportActionItem.js
@@ -24,7 +24,12 @@ import * as DeviceCapabilities from '../../../libs/DeviceCapabilities';
import MiniReportActionContextMenu from './ContextMenu/MiniReportActionContextMenu';
import * as ReportActionContextMenu from './ContextMenu/ReportActionContextMenu';
import * as ContextMenuActions from './ContextMenu/ContextMenuActions';
-import {withBlockedFromConcierge, withNetwork, withReportActionsDrafts} from '../../../components/OnyxProvider';
+import {
+ withBlockedFromConcierge,
+ withNetwork,
+ withPersonalDetails,
+ withReportActionsDrafts,
+} from '../../../components/OnyxProvider';
import RenameAction from '../../../components/ReportActionItem/RenameAction';
import InlineSystemMessage from '../../../components/InlineSystemMessage';
import styles from '../../../styles/styles';
@@ -40,6 +45,11 @@ import ChronosOOOListActions from '../../../components/ReportActionItem/ChronosO
import ReportActionItemReactions from '../../../components/Reactions/ReportActionItemReactions';
import * as Report from '../../../libs/actions/Report';
import withLocalize from '../../../components/withLocalize';
+import Icon from '../../../components/Icon';
+import * as Expensicons from '../../../components/Icon/Expensicons';
+import Text from '../../../components/Text';
+import DisplayNames from '../../../components/DisplayNames';
+import personalDetailsPropType from '../../personalDetailsPropType';
const propTypes = {
/** Report for this action */
@@ -69,6 +79,9 @@ const propTypes = {
/** Stores user's preferred skin tone */
preferredSkinTone: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
+ /** All of the personalDetails */
+ personalDetails: PropTypes.objectOf(personalDetailsPropType),
+
...windowDimensionsPropTypes,
};
@@ -76,6 +89,7 @@ const defaultProps = {
draftMessage: '',
hasOutstandingIOU: false,
preferredSkinTone: CONST.EMOJI_DEFAULT_SKIN_TONE,
+ personalDetails: {},
};
class ReportActionItem extends Component {
@@ -98,7 +112,10 @@ class ReportActionItem extends Component {
|| this.props.hasOutstandingIOU !== nextProps.hasOutstandingIOU
|| this.props.shouldDisplayNewMarker !== nextProps.shouldDisplayNewMarker
|| !_.isEqual(this.props.action, nextProps.action)
- || this.state.isContextMenuActive !== nextState.isContextMenuActive;
+ || this.state.isContextMenuActive !== nextState.isContextMenuActive
+ || lodashGet(this.props.report, 'statusNum') !== lodashGet(nextProps.report, 'statusNum')
+ || lodashGet(this.props.report, 'stateNum') !== lodashGet(nextProps.report, 'stateNum')
+ || this.props.translate !== nextProps.translate;
}
componentDidUpdate(prevProps) {
@@ -122,8 +139,8 @@ class ReportActionItem extends Component {
* @param {Object} [event] - A press event.
*/
showPopover(event) {
- // Block menu on the message being Edited
- if (this.props.draftMessage) {
+ // Block menu on the message being Edited or if the report action item has errors
+ if (this.props.draftMessage || !_.isEmpty(this.props.action.errors)) {
return;
}
@@ -236,6 +253,14 @@ class ReportActionItem extends Component {
if (this.props.action.actionName === CONST.REPORT.ACTIONS.TYPE.CHRONOSOOOLIST) {
return ;
}
+
+ const hasErrors = !_.isEmpty(this.props.action.errors);
+ const whisperedTo = lodashGet(this.props.action, 'whisperedTo', []);
+ const isWhisper = whisperedTo.length > 0;
+ const isMultipleParticipant = whisperedTo.length > 1;
+ const isWhisperOnlyVisibleByUser = isWhisper && ReportUtils.isCurrentUserTheOnlyParticipant(whisperedTo);
+ const whisperedToPersonalDetails = isWhisper ? _.filter(this.props.personalDetails, details => _.includes(whisperedTo, details.login)) : [];
+ const displayNamesWithTooltips = isWhisper ? ReportUtils.getDisplayNamesWithTooltips(whisperedToPersonalDetails, isMultipleParticipant) : [];
return (
this.props.isSmallScreenWidth && DeviceCapabilities.canUseTouchScreen() && ControlSelection.block()}
onPressOut={() => ControlSelection.unblock()}
onSecondaryInteraction={this.showPopover}
- preventDefaultContentMenu={!this.props.draftMessage}
+ preventDefaultContextMenu={!this.props.draftMessage && !hasErrors}
withoutFocusOnSecondaryInteraction
>
@@ -255,6 +280,7 @@ class ReportActionItem extends Component {
+ {isWhisper && (
+
+
+
+
+
+ {this.props.translate('reportActionContextMenu.onlyVisible')}
+
+
+
+
+ )}
{!this.props.displayAsGroup
? (
-
+
{this.renderItemContent(hovered || this.state.isContextMenuActive)}
)
: (
-
+
{this.renderItemContent(hovered || this.state.isContextMenuActive)}
)}
@@ -294,6 +343,7 @@ class ReportActionItem extends Component {
isVisible={
hovered
&& !this.props.draftMessage
+ && !hasErrors
}
draftMessage={this.props.draftMessage}
isChronosReport={ReportUtils.chatIncludesChronos(this.props.report)}
@@ -315,6 +365,7 @@ export default compose(
withWindowDimensions,
withLocalize,
withNetwork(),
+ withPersonalDetails(),
withBlockedFromConcierge({propName: 'blockedFromConcierge'}),
withReportActionsDrafts({
propName: 'draftMessage',
diff --git a/src/pages/home/report/ReportActionItemGrouped.js b/src/pages/home/report/ReportActionItemGrouped.js
index e811144ccaad..9c65afd9b6f3 100644
--- a/src/pages/home/report/ReportActionItemGrouped.js
+++ b/src/pages/home/report/ReportActionItemGrouped.js
@@ -6,10 +6,18 @@ import styles from '../../../styles/styles';
const propTypes = {
/** Children view component for this action item */
children: PropTypes.node.isRequired,
+
+ /** Styles for the outermost View */
+ // eslint-disable-next-line react/forbid-prop-types
+ wrapperStyles: PropTypes.arrayOf(PropTypes.object),
+};
+
+const defaultProps = {
+ wrapperStyles: [styles.chatItem],
};
const ReportActionItemGrouped = props => (
-
+
{props.children}
@@ -17,5 +25,6 @@ const ReportActionItemGrouped = props => (
);
ReportActionItemGrouped.propTypes = propTypes;
+ReportActionItemGrouped.defaultProps = defaultProps;
ReportActionItemGrouped.displayName = 'ReportActionItemGrouped';
export default ReportActionItemGrouped;
diff --git a/src/pages/home/report/ReportActionItemMessageEdit.js b/src/pages/home/report/ReportActionItemMessageEdit.js
index db037c4122b0..e65fc73432df 100644
--- a/src/pages/home/report/ReportActionItemMessageEdit.js
+++ b/src/pages/home/report/ReportActionItemMessageEdit.js
@@ -5,7 +5,6 @@ import {InteractionManager, Keyboard, View} from 'react-native';
import PropTypes from 'prop-types';
import _ from 'underscore';
import ExpensiMark from 'expensify-common/lib/ExpensiMark';
-import {withOnyx} from 'react-native-onyx';
import reportActionPropTypes from './reportActionPropTypes';
import styles from '../../../styles/styles';
import Composer from '../../../components/Composer';
@@ -26,7 +25,7 @@ import CONST from '../../../CONST';
import withWindowDimensions, {windowDimensionsPropTypes} from '../../../components/withWindowDimensions';
import withLocalize, {withLocalizePropTypes} from '../../../components/withLocalize';
import withKeyboardState, {keyboardStatePropTypes} from '../../../components/withKeyboardState';
-import ONYXKEYS from '../../../ONYXKEYS';
+import * as ComposerUtils from '../../../libs/ComposerUtils';
const propTypes = {
/** All the data of the action */
@@ -35,9 +34,6 @@ const propTypes = {
/** Draft message */
draftMessage: PropTypes.string.isRequired,
- /** Number of lines for the draft message */
- numberOfLines: PropTypes.number,
-
/** ReportID that holds the comment we're editing */
reportID: PropTypes.string.isRequired,
@@ -66,7 +62,6 @@ const defaultProps = {
forwardedRef: () => {},
report: {},
shouldDisableEmojiPicker: false,
- numberOfLines: undefined,
preferredSkinTone: CONST.EMOJI_DEFAULT_SKIN_TONE,
};
@@ -81,7 +76,6 @@ class ReportActionItemMessageEdit extends React.Component {
this.onSelectionChange = this.onSelectionChange.bind(this);
this.addEmojiToTextBox = this.addEmojiToTextBox.bind(this);
this.setExceededMaxCommentLength = this.setExceededMaxCommentLength.bind(this);
- this.updateNumberOfLines = this.updateNumberOfLines.bind(this);
this.saveButtonID = 'saveButton';
this.cancelButtonID = 'cancelButton';
this.emojiButtonID = 'emojiButton';
@@ -159,14 +153,6 @@ class ReportActionItemMessageEdit extends React.Component {
}
}
- /**
- * Update the number of lines for a draft in Onyx
- * @param {Number} numberOfLines
- */
- updateNumberOfLines(numberOfLines) {
- Report.saveReportActionDraftNumberOfLines(this.props.reportID, this.props.action.reportActionID, numberOfLines);
- }
-
/**
* Delete the draft of the comment being edited. This will take the comment out of "edit mode" with the old content.
*/
@@ -229,15 +215,13 @@ class ReportActionItemMessageEdit extends React.Component {
* @param {String} emoji
*/
addEmojiToTextBox(emoji) {
- const newComment = this.state.draft.slice(0, this.state.selection.start)
- + emoji + this.state.draft.slice(this.state.selection.end, this.state.draft.length);
this.setState(prevState => ({
selection: {
start: prevState.selection.start + emoji.length,
end: prevState.selection.start + emoji.length,
},
}));
- this.updateDraft(newComment);
+ this.updateDraft(ComposerUtils.insertText(this.state.draft, this.state.selection, emoji));
}
/**
@@ -304,8 +288,6 @@ class ReportActionItemMessageEdit extends React.Component {
}}
selection={this.state.selection}
onSelectionChange={this.onSelectionChange}
- numberOfLines={this.props.numberOfLines}
- onNumberOfLinesChange={this.updateNumberOfLines}
/>
`${ONYXKEYS.COLLECTION.REPORT_DRAFT_COMMENT_NUMBER_OF_LINES}${reportID}_${action.reportActionID}`,
- initWithStoredValues: false,
- },
- }),
)(React.forwardRef((props, ref) => (
/* eslint-disable-next-line react/jsx-props-no-spreading */
diff --git a/src/pages/home/report/ReportActionItemSingle.js b/src/pages/home/report/ReportActionItemSingle.js
index 19d2cc05f58c..ed208a7db999 100644
--- a/src/pages/home/report/ReportActionItemSingle.js
+++ b/src/pages/home/report/ReportActionItemSingle.js
@@ -65,7 +65,10 @@ const ReportActionItemSingle = (props) => {
// we'll need to take the displayName from personal details and have it be in the same format for now. Eventually,
// we should stop referring to the report history items entirely for this information.
const personArray = displayName
- ? [{type: 'TEXT', text: Str.isSMSLogin(login) ? props.toLocalPhone(displayName) : displayName}]
+ ? [{
+ type: 'TEXT',
+ text: Str.isSMSLogin(login) ? props.formatPhoneNumber(displayName) : displayName,
+ }]
: props.action.person;
return (
diff --git a/src/pages/home/report/ReportActionsView.js b/src/pages/home/report/ReportActionsView.js
index 98f48e7c839a..d06075dc047f 100755
--- a/src/pages/home/report/ReportActionsView.js
+++ b/src/pages/home/report/ReportActionsView.js
@@ -165,6 +165,13 @@ class ReportActionsView extends React.Component {
return true;
}
+ if (
+ lodashGet(this.props.report, 'statusNum') !== lodashGet(nextProps.report, 'statusNum')
+ || lodashGet(this.props.report, 'stateNum') !== lodashGet(nextProps.report, 'stateNum')
+ ) {
+ return true;
+ }
+
return !_.isEqual(lodashGet(this.props.report, 'icons', []), lodashGet(nextProps.report, 'icons', []));
}
diff --git a/src/pages/home/report/ReportFooter.js b/src/pages/home/report/ReportFooter.js
index fa3f300fc6e5..81491f1cfffd 100644
--- a/src/pages/home/report/ReportFooter.js
+++ b/src/pages/home/report/ReportFooter.js
@@ -7,7 +7,6 @@ import CONST from '../../../CONST';
import ReportActionCompose from './ReportActionCompose';
import SwipeableView from '../../../components/SwipeableView';
import OfflineIndicator from '../../../components/OfflineIndicator';
-import OfflineWithFeedback from '../../../components/OfflineWithFeedback';
import ArchivedReportFooter from '../../../components/ArchivedReportFooter';
import compose from '../../../libs/compose';
import ONYXKEYS from '../../../ONYXKEYS';
@@ -89,20 +88,15 @@ class ReportFooter extends React.Component {
{(!hideComposer && this.props.shouldShowComposeInput) && (
-
-
-
+ isComposerFullSize={this.props.isComposerFullSize}
+ disabled={this.props.shouldDisableCompose}
+ />
)}
diff --git a/src/pages/home/report/reportActionPropTypes.js b/src/pages/home/report/reportActionPropTypes.js
index f5821dfb9323..46cba2b5c365 100644
--- a/src/pages/home/report/reportActionPropTypes.js
+++ b/src/pages/home/report/reportActionPropTypes.js
@@ -29,4 +29,7 @@ export default {
/** Error message that's come back from the server. */
error: PropTypes.string,
+
+ /** Emails of the people to which the whisper was sent to (if any). Returns empty array if it is not a whisper */
+ whisperedTo: PropTypes.arrayOf(PropTypes.string),
};
diff --git a/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.js b/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.js
index 426a50e68285..ebff5f4e6a51 100644
--- a/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.js
+++ b/src/pages/home/sidebar/SidebarScreen/FloatingActionButtonAndPopover.js
@@ -211,6 +211,13 @@ class FloatingActionButtonAndPopover extends React.Component {
onSelected: () => Navigation.navigate(ROUTES.IOU_BILL),
},
] : []),
+ ...(Permissions.canUseTasks(this.props.betas) ? [
+ {
+ icon: Expensicons.Task,
+ text: this.props.translate('newTaskPage.assignTask'),
+ onSelected: () => Navigation.navigate(ROUTES.NEW_TASK),
+ },
+ ] : []),
...(!this.props.isLoading && !Policy.hasActiveFreePolicy(this.props.allPolicies) ? [
{
icon: Expensicons.NewWorkspace,
diff --git a/src/pages/iou/IOUCurrencySelection.js b/src/pages/iou/IOUCurrencySelection.js
index 1d4524be7d66..ec0f9a64134b 100644
--- a/src/pages/iou/IOUCurrencySelection.js
+++ b/src/pages/iou/IOUCurrencySelection.js
@@ -124,7 +124,7 @@ class IOUCurrencySelection extends Component {
onSelectRow={this.confirmCurrencySelection}
value={this.state.searchValue}
onChangeText={this.changeSearchValue}
- placeholderText={this.props.translate('common.search')}
+ textInputLabel={this.props.translate('common.search')}
headerMessage={headerMessage}
safeAreaPaddingBottomStyle={safeAreaPaddingBottomStyle}
/>
diff --git a/src/pages/iou/ModalHeader.js b/src/pages/iou/ModalHeader.js
index a89b184fb897..990a8ccecceb 100644
--- a/src/pages/iou/ModalHeader.js
+++ b/src/pages/iou/ModalHeader.js
@@ -28,7 +28,7 @@ const defaultProps = {
};
const ModalHeader = props => (
-
+
(
>
{props.shouldShowBackButton
&& (
-
-
-
-
-
-
-
+
+
+
+
+
)}
diff --git a/src/pages/iou/MoneyRequestDescriptionPage.js b/src/pages/iou/MoneyRequestDescriptionPage.js
new file mode 100644
index 000000000000..b03debb9bb86
--- /dev/null
+++ b/src/pages/iou/MoneyRequestDescriptionPage.js
@@ -0,0 +1,97 @@
+import React, {Component} from 'react';
+import {View} from 'react-native';
+import {withOnyx} from 'react-native-onyx';
+import PropTypes from 'prop-types';
+import TextInput from '../../components/TextInput';
+import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize';
+import ScreenWrapper from '../../components/ScreenWrapper';
+import HeaderWithCloseButton from '../../components/HeaderWithCloseButton';
+import Form from '../../components/Form';
+import ONYXKEYS from '../../ONYXKEYS';
+import styles from '../../styles/styles';
+import Navigation from '../../libs/Navigation/Navigation';
+import compose from '../../libs/compose';
+import * as IOU from '../../libs/actions/IOU';
+
+const propTypes = {
+ ...withLocalizePropTypes,
+
+ /** Onyx Props */
+ /** Holds data related to Money Request view state, rather than the underlying Money Request data. */
+ iou: PropTypes.shape({
+ comment: PropTypes.string,
+ }),
+};
+
+const defaultProps = {
+ iou: {
+ comment: '',
+ },
+};
+
+class MoneyRequestDescriptionPage extends Component {
+ constructor(props) {
+ super(props);
+
+ this.updateComment = this.updateComment.bind(this);
+ }
+
+ /**
+ * Closes the modal and clears the description from Onyx.
+ */
+ onCloseButtonPress() {
+ IOU.setMoneyRequestDescription('');
+ Navigation.dismissModal();
+ }
+
+ /**
+ * Sets the money request comment by saving it to Onyx.
+ *
+ * @param {Object} value
+ * @param {String} value.moneyRequestComment
+ */
+ updateComment(value) {
+ IOU.setMoneyRequestDescription(value.moneyRequestComment);
+ Navigation.goBack();
+ }
+
+ render() {
+ return (
+
+
+
+
+ );
+ }
+}
+
+MoneyRequestDescriptionPage.propTypes = propTypes;
+MoneyRequestDescriptionPage.defaultProps = defaultProps;
+
+export default compose(
+ withLocalize,
+ withOnyx({
+ iou: {key: ONYXKEYS.IOU},
+ }),
+)(MoneyRequestDescriptionPage);
diff --git a/src/pages/iou/MoneyRequestModal.js b/src/pages/iou/MoneyRequestModal.js
index 13a167a56e13..fb727646a61b 100644
--- a/src/pages/iou/MoneyRequestModal.js
+++ b/src/pages/iou/MoneyRequestModal.js
@@ -6,10 +6,9 @@ import {View} from 'react-native';
import PropTypes from 'prop-types';
import lodashGet from 'lodash/get';
import {withOnyx} from 'react-native-onyx';
-import Str from 'expensify-common/lib/str';
-import IOUAmountPage from './steps/IOUAmountPage';
-import IOUParticipantsPage from './steps/IOUParticipantsPage/IOUParticipantsPage';
-import IOUConfirmPage from './steps/IOUConfirmPage';
+import MoneyRequestAmountPage from './steps/MoneyRequestAmountPage';
+import MoneyRequestParticipantsPage from './steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsPage';
+import MoneyRequestConfirmPage from './steps/MoneyRequestConfirmPage';
import ModalHeader from './ModalHeader';
import styles from '../../styles/styles';
import * as IOU from '../../libs/actions/IOU';
@@ -29,6 +28,7 @@ import {withNetwork} from '../../components/OnyxProvider';
import reportPropTypes from '../reportPropTypes';
import * as ReportUtils from '../../libs/ReportUtils';
import * as ReportScrollManager from '../../libs/ReportScrollManager';
+import * as DeviceCapabilities from '../../libs/DeviceCapabilities';
/**
* A modal used for requesting money, splitting bills or sending money.
@@ -99,44 +99,34 @@ const defaultProps = {
// Determines type of step to display within Modal, value provides the title for that page.
const Steps = {
- IOUAmount: 'iou.amount',
- IOUParticipants: 'iou.participants',
- IOUConfirm: 'iou.confirm',
+ MoneyRequestAmount: 'moneyRequest.amount',
+ MoneyRequestParticipants: 'moneyRequest.participants',
+ MoneyRequestConfirm: 'moneyRequest.confirm',
};
const MoneyRequestModal = (props) => {
+ // Skip MoneyRequestParticipants step if participants are passed in
const reportParticipants = lodashGet(props, 'report.participants', []);
- const participantsWithDetails = _.map(OptionsListUtils.getPersonalDetailsForLogins(reportParticipants, props.personalDetails), personalDetails => ({
- login: personalDetails.login,
- text: personalDetails.displayName,
- firstName: lodashGet(personalDetails, 'firstName', ''),
- lastName: lodashGet(personalDetails, 'lastName', ''),
- alternateText: Str.isSMSLogin(personalDetails.login) ? Str.removeSMSDomain(personalDetails.login) : personalDetails.login,
- icons: [{
- source: ReportUtils.getAvatar(personalDetails.avatar, personalDetails.login),
- name: personalDetails.login,
- type: CONST.ICON_TYPE_AVATAR,
- }],
- keyForList: personalDetails.login,
- payPalMeAddress: lodashGet(personalDetails, 'payPalMeAddress', ''),
- phoneNumber: lodashGet(personalDetails, 'phoneNumber', ''),
- }));
-
- // Skip IOUParticipants step if participants are passed in
- const steps = reportParticipants.length ? [Steps.IOUAmount, Steps.IOUConfirm] : [Steps.IOUAmount, Steps.IOUParticipants, Steps.IOUConfirm];
-
+ const steps = useMemo(() => (reportParticipants.length
+ ? [Steps.MoneyRequestAmount, Steps.MoneyRequestConfirm]
+ : [Steps.MoneyRequestAmount, Steps.MoneyRequestParticipants, Steps.MoneyRequestConfirm]),
+ [reportParticipants.length]);
const prevCreatingIOUTransactionStatusRef = useRef(lodashGet(props.iou, 'creatingIOUTransaction'));
const prevNetworkStatusRef = useRef(props.network.isOffline);
- const [previousStepIndex, setPreviousStepIndex] = useState(0);
+ const [previousStepIndex, setPreviousStepIndex] = useState(-1);
const [currentStepIndex, setCurrentStepIndex] = useState(0);
- const [participants, setParticipants] = useState(participantsWithDetails);
+ const [selectedOptions, setSelectedOptions] = useState(
+ ReportUtils.isPolicyExpenseChat(props.report)
+ ? OptionsListUtils.getPolicyExpenseReportOptions(props.report)
+ : OptionsListUtils.getParticipantsOptions(props.report, props.personalDetails),
+ );
const [amount, setAmount] = useState('');
- const [comment, setComment] = useState('');
useEffect(() => {
PersonalDetails.openMoneyRequestModalPage();
IOU.setIOUSelectedCurrency(props.currentUserPersonalDetails.localCurrencyCode);
+ IOU.setMoneyRequestDescription('');
// eslint-disable-next-line react-hooks/exhaustive-deps -- props.currentUserPersonalDetails will always exist from Onyx and we don't want this effect to run again
}, []);
@@ -175,6 +165,17 @@ const MoneyRequestModal = (props) => {
* @returns {String|null}
*/
const direction = useMemo(() => {
+ // If we're going to the "amount" step from the "confirm" step, push it in and pop it out like we're moving
+ // forward instead of backwards.
+ const amountIndex = _.indexOf(steps, Steps.MoneyRequestAmount);
+ const confirmIndex = _.indexOf(steps, Steps.MoneyRequestConfirm);
+ if (previousStepIndex === confirmIndex && currentStepIndex === amountIndex) {
+ return 'in';
+ }
+ if (previousStepIndex === amountIndex && currentStepIndex === confirmIndex) {
+ return 'out';
+ }
+
if (previousStepIndex < currentStepIndex) {
return 'in';
}
@@ -186,7 +187,7 @@ const MoneyRequestModal = (props) => {
if (previousStepIndex === currentStepIndex) {
return null;
}
- }, [previousStepIndex, currentStepIndex]);
+ }, [previousStepIndex, currentStepIndex, steps]);
/**
* Retrieve title for current step, based upon current step and type of request
@@ -195,6 +196,10 @@ const MoneyRequestModal = (props) => {
*/
const titleForStep = useMemo(() => {
if (currentStepIndex === 0) {
+ const confirmIndex = _.indexOf(steps, Steps.MoneyRequestConfirm);
+ if (previousStepIndex === confirmIndex) {
+ return props.translate('iou.amount');
+ }
if (props.iouType === CONST.IOU.MONEY_REQUEST_TYPE.SEND) {
return props.translate('iou.sendMoney');
}
@@ -202,19 +207,38 @@ const MoneyRequestModal = (props) => {
}
return props.translate('iou.cash');
// eslint-disable-next-line react-hooks/exhaustive-deps -- props does not need to be a dependency as it will always exist
- }, [currentStepIndex, props.translate]);
+ }, [currentStepIndex, props.translate, steps]);
+
+ /**
+ * Navigate to a provided step.
+ *
+ * @param {Number} stepIndex
+ * @type {(function(*): void)|*}
+ */
+ const navigateToStep = useCallback((stepIndex) => {
+ if (stepIndex < 0 || stepIndex > steps.length) {
+ return;
+ }
+
+ if (currentStepIndex === stepIndex) {
+ return;
+ }
+
+ setPreviousStepIndex(currentStepIndex);
+ setCurrentStepIndex(stepIndex);
+ }, [currentStepIndex, steps.length]);
/**
* Navigate to the previous request step if possible
*/
const navigateToPreviousStep = useCallback(() => {
- if (currentStepIndex <= 0) {
+ if (currentStepIndex <= 0 && previousStepIndex < 0) {
return;
}
setPreviousStepIndex(currentStepIndex);
setCurrentStepIndex(currentStepIndex - 1);
- }, [currentStepIndex]);
+ }, [currentStepIndex, previousStepIndex]);
/**
* Navigate to the next request step if possible
@@ -224,9 +248,16 @@ const MoneyRequestModal = (props) => {
return;
}
+ // If we're coming from the confirm step, it means we were editing something so go back to the confirm step.
+ const confirmIndex = _.indexOf(steps, Steps.MoneyRequestConfirm);
+ if (previousStepIndex === confirmIndex) {
+ navigateToStep(confirmIndex);
+ return;
+ }
+
setPreviousStepIndex(currentStepIndex);
setCurrentStepIndex(currentStepIndex + 1);
- }, [currentStepIndex, steps.length]);
+ }, [currentStepIndex, previousStepIndex, navigateToStep, steps]);
/**
* Checks if user has a GOLD wallet then creates a paid IOU report on the fly
@@ -236,8 +267,8 @@ const MoneyRequestModal = (props) => {
const sendMoney = useCallback((paymentMethodType) => {
const amountInDollars = Math.round(amount * 100);
const currency = props.iou.selectedCurrencyCode;
- const trimmedComment = comment.trim();
- const participant = participants[0];
+ const trimmedComment = props.iou.comment.trim();
+ const participant = selectedOptions[0];
if (paymentMethodType === CONST.IOU.PAYMENT_TYPE.ELSEWHERE) {
IOU.sendMoneyElsewhere(
@@ -273,14 +304,14 @@ const MoneyRequestModal = (props) => {
participant,
);
}
- }, [amount, comment, participants, props.currentUserPersonalDetails.login, props.iou.selectedCurrencyCode, props.report]);
+ }, [amount, props.iou.comment, selectedOptions, props.currentUserPersonalDetails.login, props.iou.selectedCurrencyCode, props.report]);
/**
* @param {Array} selectedParticipants
*/
const createTransaction = useCallback((selectedParticipants) => {
const reportID = lodashGet(props.route, 'params.reportID', '');
- const trimmedComment = comment.trim();
+ const trimmedComment = props.iou.comment.trim();
// IOUs created from a group report will have a reportID param in the route.
// Since the user is already viewing the report, we don't need to navigate them to the report
@@ -309,6 +340,11 @@ const MoneyRequestModal = (props) => {
);
return;
}
+ if (!selectedParticipants[0].login) {
+ // TODO - request to the policy expense chat. Not implemented yet!
+ // Will be implemented here: https://github.com/Expensify/Expensify/issues/270581
+ return;
+ }
IOU.requestMoney(
props.report,
Math.round(amount * 100),
@@ -317,27 +353,38 @@ const MoneyRequestModal = (props) => {
selectedParticipants[0],
trimmedComment,
);
- }, [amount, comment, props.currentUserPersonalDetails.login, props.hasMultipleParticipants, props.iou.selectedCurrencyCode, props.preferredLocale, props.report, props.route]);
+ }, [amount, props.iou.comment, props.currentUserPersonalDetails.login, props.hasMultipleParticipants, props.iou.selectedCurrencyCode, props.preferredLocale, props.report, props.route]);
const currentStep = steps[currentStepIndex];
+ const moneyRequestStepIndex = _.indexOf(steps, Steps.MoneyRequestConfirm);
+ const isEditingAmountAfterConfirm = currentStepIndex === 0 && previousStepIndex === _.indexOf(steps, Steps.MoneyRequestConfirm);
const reportID = lodashGet(props, 'route.params.reportID', '');
- const shouldShowBackButton = currentStepIndex > 0;
- const modalHeader = ;
+ const shouldShowBackButton = currentStepIndex > 0 || isEditingAmountAfterConfirm;
+ const modalHeader = (
+ navigateToStep(moneyRequestStepIndex) : navigateToPreviousStep}
+ />
+ );
+ const amountButtonText = isEditingAmountAfterConfirm ? props.translate('common.save') : props.translate('common.next');
+ const enableMaxHeight = DeviceCapabilities.canUseTouchScreen() && currentStep === Steps.MoneyRequestParticipants;
+
return (
-
+
{({didScreenTransitionEnd, safeAreaPaddingBottomStyle}) => (
<>
{!didScreenTransitionEnd && }
{didScreenTransitionEnd && (
<>
- {currentStep === Steps.IOUAmount && (
+ {currentStep === Steps.MoneyRequestAmount && (
{modalHeader}
- {
setAmount(value);
navigateToNextStep();
@@ -347,32 +394,33 @@ const MoneyRequestModal = (props) => {
selectedAmount={amount}
navigation={props.navigation}
iouType={props.iouType}
+ buttonText={amountButtonText}
/>
)}
- {currentStep === Steps.IOUParticipants && (
+ {currentStep === Steps.MoneyRequestParticipants && (
{modalHeader}
- setParticipants(selectedParticipants)}
+ onAddParticipants={setSelectedOptions}
onStepComplete={navigateToNextStep}
safeAreaPaddingBottomStyle={safeAreaPaddingBottomStyle}
iouType={props.iouType}
/>
)}
- {currentStep === Steps.IOUConfirm && (
+ {currentStep === Steps.MoneyRequestConfirm && (
{modalHeader}
- {
// TODO: ADD HANDLING TO DISABLE BUTTON FUNCTIONALITY WHILE REQUEST IS IN FLIGHT
createTransaction(selectedParticipants);
@@ -384,10 +432,8 @@ const MoneyRequestModal = (props) => {
ReportScrollManager.scrollToBottom();
}}
hasMultipleParticipants={props.hasMultipleParticipants}
- participants={_.filter(participants, email => props.currentUserPersonalDetails.login !== email.login)}
+ participants={_.filter(selectedOptions, email => props.currentUserPersonalDetails.login !== email.login)}
iouAmount={amount}
- comment={comment}
- onUpdateComment={value => setComment(value)}
iouType={props.iouType}
// The participants can only be modified when the action is initiated from directly within a group chat and not the floating-action-button.
@@ -396,6 +442,7 @@ const MoneyRequestModal = (props) => {
// split rather than forcing the user to create a new group, just for that expense. The reportID is empty, when the action was initiated from
// the floating-action-button (since it is something that exists outside the context of a report).
canModifyParticipants={!_.isEmpty(reportID)}
+ navigateToStep={navigateToStep}
/>
)}
diff --git a/src/pages/iou/steps/IOUConfirmPage.js b/src/pages/iou/steps/IOUConfirmPage.js
deleted file mode 100644
index a409daf9479a..000000000000
--- a/src/pages/iou/steps/IOUConfirmPage.js
+++ /dev/null
@@ -1,75 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import IOUConfirmationList from '../../../components/IOUConfirmationList';
-import CONST from '../../../CONST';
-import avatarPropTypes from '../../../components/avatarPropTypes';
-
-const propTypes = {
- /** Callback to inform parent modal of success */
- onConfirm: PropTypes.func.isRequired,
-
- /** Callback to to parent modal to send money */
- onSendMoney: PropTypes.func.isRequired,
-
- /** Callback to update comment from MoneyRequestModal */
- onUpdateComment: PropTypes.func,
-
- /** Comment value from MoneyRequestModal */
- comment: PropTypes.string,
-
- /** Should we request a single or multiple participant selection from user */
- hasMultipleParticipants: PropTypes.bool.isRequired,
-
- /** IOU amount */
- iouAmount: PropTypes.string.isRequired,
-
- /** Selected participants from MoneyRequestModal with login */
- participants: PropTypes.arrayOf(PropTypes.shape({
- login: PropTypes.string.isRequired,
- alternateText: PropTypes.string,
- hasDraftComment: PropTypes.bool,
- icons: PropTypes.arrayOf(avatarPropTypes),
- searchText: PropTypes.string,
- text: PropTypes.string,
- keyForList: PropTypes.string,
- isPinned: PropTypes.bool,
- reportID: PropTypes.string,
- // eslint-disable-next-line react/forbid-prop-types
- participantsList: PropTypes.arrayOf(PropTypes.object),
- payPalMeAddress: PropTypes.string,
- phoneNumber: PropTypes.string,
- })).isRequired,
-
- /** IOU type */
- iouType: PropTypes.string,
-
- /** Can the participants be modified or not */
- canModifyParticipants: PropTypes.bool,
-};
-
-const defaultProps = {
- onUpdateComment: null,
- comment: '',
- iouType: CONST.IOU.MONEY_REQUEST_TYPE.REQUEST,
- canModifyParticipants: false,
-};
-
-const IOUConfirmPage = props => (
-
-);
-
-IOUConfirmPage.displayName = 'IOUConfirmPage';
-IOUConfirmPage.propTypes = propTypes;
-IOUConfirmPage.defaultProps = defaultProps;
-
-export default IOUConfirmPage;
diff --git a/src/pages/iou/steps/IOUAmountPage.js b/src/pages/iou/steps/MoneyRequestAmountPage.js
similarity index 92%
rename from src/pages/iou/steps/IOUAmountPage.js
rename to src/pages/iou/steps/MoneyRequestAmountPage.js
index 04a003e973c8..7fb169fa3d84 100755
--- a/src/pages/iou/steps/IOUAmountPage.js
+++ b/src/pages/iou/steps/MoneyRequestAmountPage.js
@@ -32,6 +32,9 @@ const propTypes = {
/** Previously selected amount to show if the user comes back to this screen */
selectedAmount: PropTypes.string.isRequired,
+ /** Text to display on the button that "saves" the amount */
+ buttonText: PropTypes.string.isRequired,
+
/* Onyx Props */
/** Holds data related to IOU view state, rather than the underlying IOU data. */
@@ -48,7 +51,7 @@ const defaultProps = {
selectedCurrencyCode: CONST.CURRENCY.USD,
},
};
-class IOUAmountPage extends React.Component {
+class MoneyRequestAmountPage extends React.Component {
constructor(props) {
super(props);
@@ -56,6 +59,7 @@ class IOUAmountPage extends React.Component {
this.updateLongPressHandlerState = this.updateLongPressHandlerState.bind(this);
this.updateAmount = this.updateAmount.bind(this);
this.stripCommaFromAmount = this.stripCommaFromAmount.bind(this);
+ this.stripSpacesFromAmount = this.stripSpacesFromAmount.bind(this);
this.focusTextInput = this.focusTextInput.bind(this);
this.navigateToCurrencySelectionPage = this.navigateToCurrencySelectionPage.bind(this);
this.amountViewID = 'amountView';
@@ -123,13 +127,16 @@ class IOUAmountPage extends React.Component {
* @returns {Object}
*/
getNewState(prevState, newAmount) {
- if (!this.validateAmount(newAmount)) {
+ // Remove spaces from the newAmount value because Safari on iOS adds spaces when pasting a copied value
+ // More info: https://github.com/Expensify/App/issues/16974
+ const newAmountWithoutSpaces = this.stripSpacesFromAmount(newAmount);
+ if (!this.validateAmount(newAmountWithoutSpaces)) {
// Use a shallow copy of selection to trigger setSelection
// More info: https://github.com/Expensify/App/issues/16385
return {amount: prevState.amount, selection: {...prevState.selection}};
}
- const selection = this.getNewSelection(prevState.selection, prevState.amount.length, newAmount.length);
- return {amount: this.stripCommaFromAmount(newAmount), selection};
+ const selection = this.getNewSelection(prevState.selection, prevState.amount.length, newAmountWithoutSpaces.length);
+ return {amount: this.stripCommaFromAmount(newAmountWithoutSpaces), selection};
}
/**
@@ -191,6 +198,16 @@ class IOUAmountPage extends React.Component {
return amount.replace(/,/g, '');
}
+ /**
+ * Strip spaces from the amount
+ *
+ * @param {String} amount
+ * @returns {String}
+ */
+ stripSpacesFromAmount(amount) {
+ return amount.replace(/\s+/g, '');
+ }
+
/**
* Adds a leading zero to the amount if user entered just the decimal separator
*
@@ -336,7 +353,7 @@ class IOUAmountPage extends React.Component {
onPress={() => this.props.onStepComplete(this.state.amount)}
pressOnEnter
isDisabled={!this.state.amount.length || parseFloat(this.state.amount) < 0.01}
- text={this.props.translate('common.next')}
+ text={this.props.buttonText}
/>
>
@@ -344,12 +361,12 @@ class IOUAmountPage extends React.Component {
}
}
-IOUAmountPage.propTypes = propTypes;
-IOUAmountPage.defaultProps = defaultProps;
+MoneyRequestAmountPage.propTypes = propTypes;
+MoneyRequestAmountPage.defaultProps = defaultProps;
export default compose(
withLocalize,
withOnyx({
iou: {key: ONYXKEYS.IOU},
}),
-)(IOUAmountPage);
+)(MoneyRequestAmountPage);
diff --git a/src/pages/iou/steps/MoneyRequestConfirmPage.js b/src/pages/iou/steps/MoneyRequestConfirmPage.js
new file mode 100644
index 000000000000..673c229ad9c9
--- /dev/null
+++ b/src/pages/iou/steps/MoneyRequestConfirmPage.js
@@ -0,0 +1,55 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import MoneyRequestConfirmationList from '../../../components/MoneyRequestConfirmationList';
+import CONST from '../../../CONST';
+import optionPropTypes from '../../../components/optionPropTypes';
+
+const propTypes = {
+ /** Callback to inform parent modal of success */
+ onConfirm: PropTypes.func.isRequired,
+
+ /** Callback to parent modal to send money */
+ onSendMoney: PropTypes.func.isRequired,
+
+ /** Should we request a single or multiple participant selection from user */
+ hasMultipleParticipants: PropTypes.bool.isRequired,
+
+ /** IOU amount */
+ iouAmount: PropTypes.string.isRequired,
+
+ /** Selected participants from MoneyRequestModal with login */
+ participants: PropTypes.arrayOf(optionPropTypes).isRequired,
+
+ /** IOU type */
+ iouType: PropTypes.string,
+
+ /** Can the participants be modified or not */
+ canModifyParticipants: PropTypes.bool,
+
+ /** Function to navigate to a given step in the parent MoneyRequestModal */
+ navigateToStep: PropTypes.func.isRequired,
+};
+
+const defaultProps = {
+ iouType: CONST.IOU.MONEY_REQUEST_TYPE.REQUEST,
+ canModifyParticipants: false,
+};
+
+const MoneyRequestConfirmPage = props => (
+
+);
+
+MoneyRequestConfirmPage.displayName = 'IOUConfirmPage';
+MoneyRequestConfirmPage.propTypes = propTypes;
+MoneyRequestConfirmPage.defaultProps = defaultProps;
+
+export default MoneyRequestConfirmPage;
diff --git a/src/pages/iou/steps/IOUParticipantsPage/IOUParticipantsPage.js b/src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsPage.js
similarity index 69%
rename from src/pages/iou/steps/IOUParticipantsPage/IOUParticipantsPage.js
rename to src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsPage.js
index 0b6b08f38975..e94a6330f2b5 100644
--- a/src/pages/iou/steps/IOUParticipantsPage/IOUParticipantsPage.js
+++ b/src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsPage.js
@@ -3,11 +3,11 @@ import PropTypes from 'prop-types';
import {withOnyx} from 'react-native-onyx';
import {View} from 'react-native';
import ONYXKEYS from '../../../../ONYXKEYS';
-import IOUParticipantsSplit from './IOUParticipantsSplit';
-import IOUParticipantsRequest from './IOUParticipantsRequest';
+import MoneyRequestParticipantsSplitSelector from './MoneyRequestParticipantsSplitSelector';
+import MoneyRequestParticipantsSelector from './MoneyRequestParticipantsSelector';
import styles from '../../../../styles/styles';
import FullScreenLoadingIndicator from '../../../../components/FullscreenLoadingIndicator';
-import avatarPropTypes from '../../../../components/avatarPropTypes';
+import optionPropTypes from '../../../../components/optionPropTypes';
const propTypes = {
/** Callback to inform parent modal of success */
@@ -20,19 +20,7 @@ const propTypes = {
onAddParticipants: PropTypes.func.isRequired,
/** Selected participants from MoneyRequestModal with login */
- participants: PropTypes.arrayOf(PropTypes.shape({
- login: PropTypes.string.isRequired,
- alternateText: PropTypes.string,
- hasDraftComment: PropTypes.bool,
- icons: PropTypes.arrayOf(avatarPropTypes),
- searchText: PropTypes.string,
- text: PropTypes.string,
- keyForList: PropTypes.string,
- isPinned: PropTypes.bool,
- reportID: PropTypes.string,
- phoneNumber: PropTypes.string,
- payPalMeAddress: PropTypes.string,
- })),
+ participants: PropTypes.arrayOf(optionPropTypes),
/* Onyx Props */
@@ -59,7 +47,7 @@ const defaultProps = {
safeAreaPaddingBottomStyle: {},
};
-const IOUParticipantsPage = (props) => {
+const MoneyRequestParticipantsPage = (props) => {
if (props.iou.loading) {
return (
@@ -70,7 +58,7 @@ const IOUParticipantsPage = (props) => {
return (props.hasMultipleParticipants
? (
- {
/>
)
: (
- {
);
};
-IOUParticipantsPage.displayName = 'IOUParticipantsPage';
-IOUParticipantsPage.propTypes = propTypes;
-IOUParticipantsPage.defaultProps = defaultProps;
+MoneyRequestParticipantsPage.displayName = 'IOUParticipantsPage';
+MoneyRequestParticipantsPage.propTypes = propTypes;
+MoneyRequestParticipantsPage.defaultProps = defaultProps;
export default withOnyx({
iou: {key: ONYXKEYS.IOU},
-})(IOUParticipantsPage);
+})(MoneyRequestParticipantsPage);
diff --git a/src/pages/iou/steps/IOUParticipantsPage/IOUParticipantsRequest.js b/src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSelector.js
similarity index 94%
rename from src/pages/iou/steps/IOUParticipantsPage/IOUParticipantsRequest.js
rename to src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSelector.js
index 697642d3c8f4..e75a51d3bfd3 100755
--- a/src/pages/iou/steps/IOUParticipantsPage/IOUParticipantsRequest.js
+++ b/src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSelector.js
@@ -46,7 +46,7 @@ const defaultProps = {
betas: [],
};
-class IOUParticipantsRequest extends Component {
+class MoneyRequestParticipantsSelector extends Component {
constructor(props) {
super(props);
@@ -161,7 +161,7 @@ class IOUParticipantsRequest extends Component {
onSelectRow={this.addSingleParticipant}
onChangeText={this.updateOptionsWithSearchTerm}
headerMessage={headerMessage}
- placeholderText={this.props.translate('optionsSelector.nameEmailOrPhoneNumber')}
+ textInputLabel={this.props.translate('optionsSelector.nameEmailOrPhoneNumber')}
boldStyle
safeAreaPaddingBottomStyle={this.props.safeAreaPaddingBottomStyle}
/>
@@ -169,8 +169,8 @@ class IOUParticipantsRequest extends Component {
}
}
-IOUParticipantsRequest.propTypes = propTypes;
-IOUParticipantsRequest.defaultProps = defaultProps;
+MoneyRequestParticipantsSelector.propTypes = propTypes;
+MoneyRequestParticipantsSelector.defaultProps = defaultProps;
export default compose(
withLocalize,
@@ -185,4 +185,4 @@ export default compose(
key: ONYXKEYS.BETAS,
},
}),
-)(IOUParticipantsRequest);
+)(MoneyRequestParticipantsSelector);
diff --git a/src/pages/iou/steps/IOUParticipantsPage/IOUParticipantsSplit.js b/src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSplitSelector.js
similarity index 96%
rename from src/pages/iou/steps/IOUParticipantsPage/IOUParticipantsSplit.js
rename to src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSplitSelector.js
index 4d7c05c461e1..c13095ef8897 100755
--- a/src/pages/iou/steps/IOUParticipantsPage/IOUParticipantsSplit.js
+++ b/src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSplitSelector.js
@@ -60,7 +60,7 @@ const defaultProps = {
safeAreaPaddingBottomStyle: {},
};
-class IOUParticipantsSplit extends Component {
+class MoneyRequestParticipantsSplitSelector extends Component {
constructor(props) {
super(props);
@@ -236,7 +236,7 @@ class IOUParticipantsSplit extends Component {
shouldShowConfirmButton
confirmButtonText={this.props.translate('common.next')}
onConfirmSelection={this.finalizeParticipants}
- placeholderText={this.props.translate('optionsSelector.nameEmailOrPhoneNumber')}
+ textInputLabel={this.props.translate('optionsSelector.nameEmailOrPhoneNumber')}
safeAreaPaddingBottomStyle={this.props.safeAreaPaddingBottomStyle}
/>
@@ -244,8 +244,8 @@ class IOUParticipantsSplit extends Component {
}
}
-IOUParticipantsSplit.propTypes = propTypes;
-IOUParticipantsSplit.defaultProps = defaultProps;
+MoneyRequestParticipantsSplitSelector.propTypes = propTypes;
+MoneyRequestParticipantsSplitSelector.defaultProps = defaultProps;
export default compose(
withLocalize,
@@ -260,4 +260,4 @@ export default compose(
key: ONYXKEYS.BETAS,
},
}),
-)(IOUParticipantsSplit);
+)(MoneyRequestParticipantsSplitSelector);
diff --git a/src/pages/settings/AboutPage/AboutPage.js b/src/pages/settings/AboutPage/AboutPage.js
index 7c7840fdbbdb..9ad5364dcef0 100644
--- a/src/pages/settings/AboutPage/AboutPage.js
+++ b/src/pages/settings/AboutPage/AboutPage.js
@@ -17,8 +17,11 @@ import Logo from '../../../../assets/images/new-expensify.svg';
import pkg from '../../../../package.json';
import * as Report from '../../../libs/actions/Report';
import * as Link from '../../../libs/actions/Link';
-import getPlatformSpecificMenuItems from './getPlatformSpecificMenuItems';
import compose from '../../../libs/compose';
+import * as ReportActionContextMenu from '../../home/report/ContextMenu/ReportActionContextMenu';
+import {CONTEXT_MENU_TYPES} from '../../home/report/ContextMenu/ContextMenuActions';
+import * as KeyboardShortcuts from '../../../libs/actions/KeyboardShortcuts';
+import * as Environment from '../../../libs/Environment/Environment';
const propTypes = {
...withLocalizePropTypes,
@@ -26,8 +29,7 @@ const propTypes = {
};
const AboutPage = (props) => {
- const platformSpecificMenuItems = getPlatformSpecificMenuItems(props.isSmallScreenWidth);
-
+ let popoverAnchor;
const menuItems = [
{
translationKey: 'initialSettingsPage.aboutPage.appDownloadLinks',
@@ -36,7 +38,11 @@ const AboutPage = (props) => {
Navigation.navigate(ROUTES.SETTINGS_APP_DOWNLOAD_LINKS);
},
},
- ...platformSpecificMenuItems,
+ {
+ translationKey: 'initialSettingsPage.aboutPage.viewKeyboardShortcuts',
+ icon: Expensicons.Keyboard,
+ action: KeyboardShortcuts.showKeyboardShortcutModal,
+ },
{
translationKey: 'initialSettingsPage.aboutPage.viewTheCode',
icon: Expensicons.Eye,
@@ -44,6 +50,7 @@ const AboutPage = (props) => {
action: () => {
Link.openExternalLink(CONST.GITHUB_URL);
},
+ link: CONST.GITHUB_URL,
},
{
translationKey: 'initialSettingsPage.aboutPage.viewOpenJobs',
@@ -52,6 +59,7 @@ const AboutPage = (props) => {
action: () => {
Link.openExternalLink(CONST.UPWORK_URL);
},
+ link: CONST.UPWORK_URL,
},
{
translationKey: 'initialSettingsPage.aboutPage.reportABug',
@@ -93,7 +101,7 @@ const AboutPage = (props) => {
]}
>
v
- {pkg.version}
+ {Environment.isInternalTestBuild() ? `${pkg.version} PR:${CONST.PULL_REQUEST_NUMBER}` : pkg.version}
{props.translate('initialSettingsPage.aboutPage.description')}
@@ -107,6 +115,10 @@ const AboutPage = (props) => {
icon={item.icon}
iconRight={item.iconRight}
onPress={() => item.action()}
+ shouldBlockSelection={Boolean(item.link)}
+ onSecondaryInteraction={!_.isEmpty(item.link)
+ ? e => ReportActionContextMenu.showContextMenu(CONTEXT_MENU_TYPES.LINK, e, item.link, popoverAnchor) : undefined}
+ ref={el => popoverAnchor = el}
shouldShowRightIcon
/>
))}
diff --git a/src/pages/settings/AboutPage/getPlatformSpecificMenuItems/index.js b/src/pages/settings/AboutPage/getPlatformSpecificMenuItems/index.js
deleted file mode 100644
index 52f8ffa2250f..000000000000
--- a/src/pages/settings/AboutPage/getPlatformSpecificMenuItems/index.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import * as KeyboardShortcuts from '../../../../libs/actions/KeyboardShortcuts';
-import * as Expensicons from '../../../../components/Icon/Expensicons';
-
-export default (isSmallScreenWidth) => {
- if (isSmallScreenWidth) {
- return [];
- }
- return [
- {
- translationKey: 'initialSettingsPage.aboutPage.viewKeyboardShortcuts',
- icon: Expensicons.Keyboard,
- action: KeyboardShortcuts.showKeyboardShortcutModal,
- },
- ];
-};
diff --git a/src/pages/settings/AboutPage/getPlatformSpecificMenuItems/index.native.js b/src/pages/settings/AboutPage/getPlatformSpecificMenuItems/index.native.js
deleted file mode 100644
index 4ba9480748fc..000000000000
--- a/src/pages/settings/AboutPage/getPlatformSpecificMenuItems/index.native.js
+++ /dev/null
@@ -1 +0,0 @@
-export default () => [];
diff --git a/src/pages/settings/AppDownloadLinks.js b/src/pages/settings/AppDownloadLinks.js
index 9b47bdb644ef..8acd2e95dafb 100644
--- a/src/pages/settings/AppDownloadLinks.js
+++ b/src/pages/settings/AppDownloadLinks.js
@@ -11,12 +11,9 @@ import compose from '../../libs/compose';
import MenuItem from '../../components/MenuItem';
import styles from '../../styles/styles';
import * as Link from '../../libs/actions/Link';
-import PressableWithSecondaryInteraction from '../../components/PressableWithSecondaryInteraction';
-import ControlSelection from '../../libs/ControlSelection';
import withWindowDimensions, {windowDimensionsPropTypes} from '../../components/withWindowDimensions';
-import * as DeviceCapabilities from '../../libs/DeviceCapabilities';
import * as ReportActionContextMenu from '../home/report/ContextMenu/ReportActionContextMenu';
-import * as ContextMenuActions from '../home/report/ContextMenu/ContextMenuActions';
+import {CONTEXT_MENU_TYPES} from '../home/report/ContextMenu/ContextMenuActions';
const propTypes = {
...withLocalizePropTypes,
@@ -56,21 +53,6 @@ const AppDownloadLinksPage = (props) => {
},
];
- /**
- * Show the ReportActionContextMenu modal popover.
- *
- * @param {Object} [event] - A press event.
- * @param {String} [selection] - Copied content.
- */
- const showPopover = (event, selection) => {
- ReportActionContextMenu.showContextMenu(
- ContextMenuActions.CONTEXT_MENU_TYPES.LINK,
- event,
- selection,
- popoverAnchor,
- );
- };
-
return (
{
/>
{_.map(menuItems, item => (
- props.isSmallScreenWidth && DeviceCapabilities.canUseTouchScreen() && ControlSelection.block()}
- onPressOut={() => ControlSelection.unblock()}
- onSecondaryInteraction={e => showPopover(e, item.link)}
- ref={el => popoverAnchor = el}
+ onPress={() => item.action()}
+ onSecondaryInteraction={e => ReportActionContextMenu.showContextMenu(CONTEXT_MENU_TYPES.LINK, e, item.link, popoverAnchor)}
onKeyDown={(event) => {
event.target.blur();
}}
- >
- item.action()}
- shouldShowRightIcon
- />
-
+ ref={el => popoverAnchor = el}
+ title={props.translate(item.translationKey)}
+ icon={item.icon}
+ iconRight={item.iconRight}
+ shouldBlockSelection
+ shouldShowRightIcon
+ />
))}
diff --git a/src/pages/settings/InitialSettingsPage.js b/src/pages/settings/InitialSettingsPage.js
index 71578843b7a3..80291126530e 100755
--- a/src/pages/settings/InitialSettingsPage.js
+++ b/src/pages/settings/InitialSettingsPage.js
@@ -4,7 +4,6 @@ import {View, ScrollView, Pressable} from 'react-native';
import PropTypes from 'prop-types';
import _ from 'underscore';
import {withOnyx} from 'react-native-onyx';
-import Str from 'expensify-common/lib/str';
import {withNetwork} from '../../components/OnyxProvider';
import styles from '../../styles/styles';
import Text from '../../components/Text';
@@ -34,8 +33,11 @@ import ConfirmModal from '../../components/ConfirmModal';
import * as ReportUtils from '../../libs/ReportUtils';
import * as Link from '../../libs/actions/Link';
import OfflineWithFeedback from '../../components/OfflineWithFeedback';
+import * as ReimbursementAccountProps from '../ReimbursementAccount/reimbursementAccountPropTypes';
import * as UserUtils from '../../libs/UserUtils';
import policyMemberPropType from '../policyMemberPropType';
+import * as ReportActionContextMenu from '../home/report/ContextMenu/ReportActionContextMenu';
+import {CONTEXT_MENU_TYPES} from '../home/report/ContextMenu/ContextMenuActions';
const propTypes = {
/* Onyx Props */
@@ -76,6 +78,9 @@ const propTypes = {
/** List of cards */
cardList: PropTypes.objectOf(cardPropTypes),
+ /** Bank account attached to free plan */
+ reimbursementAccount: ReimbursementAccountProps.reimbursementAccountPropTypes,
+
/** List of betas available to current user */
betas: PropTypes.arrayOf(PropTypes.string),
@@ -104,6 +109,7 @@ const defaultProps = {
userWallet: {
currentBalance: 0,
},
+ reimbursementAccount: {},
betas: [],
walletTerms: {},
bankAccountList: {},
@@ -117,6 +123,8 @@ class InitialSettingsPage extends React.Component {
constructor(props) {
super(props);
+ this.popoverAnchor = React.createRef();
+
this.getWalletBalance = this.getWalletBalance.bind(this);
this.getDefaultMenuItems = this.getDefaultMenuItems.bind(this);
this.getMenuItem = this.getMenuItem.bind(this);
@@ -151,7 +159,7 @@ class InitialSettingsPage extends React.Component {
getDefaultMenuItems() {
const policiesAvatars = _.chain(this.props.policies)
.filter(policy => PolicyUtils.shouldShowPolicy(policy, this.props.network.isOffline))
- .sortBy(policy => policy.name)
+ .sortBy(policy => policy.name.toLowerCase())
.map(policy => ({
source: policy.avatar || ReportUtils.getDefaultWorkspaceAvatar(policy.name),
name: policy.name,
@@ -159,10 +167,11 @@ class InitialSettingsPage extends React.Component {
}))
.value();
- const policyBrickRoadIndicator = _.chain(this.props.policies)
- .filter(policy => policy && policy.type === CONST.POLICY.TYPE.FREE && policy.role === CONST.POLICY.ROLE.ADMIN)
- .find(policy => PolicyUtils.hasPolicyError(policy) || PolicyUtils.getPolicyBrickRoadIndicatorStatus(policy, this.props.policyMembers))
- .value() ? 'error' : null;
+ const policyBrickRoadIndicator = (!_.isEmpty(this.props.reimbursementAccount.errors)
+ || _.chain(this.props.policies)
+ .filter(policy => policy && policy.type === CONST.POLICY.TYPE.FREE && policy.role === CONST.POLICY.ROLE.ADMIN)
+ .some(policy => PolicyUtils.hasPolicyError(policy) || PolicyUtils.getPolicyBrickRoadIndicatorStatus(policy, this.props.policyMembers))
+ .value()) ? CONST.BRICK_ROAD_INDICATOR_STATUS.ERROR : null;
const profileBrickRoadIndicator = UserUtils.getLoginListBrickRoadIndicator(this.props.loginList);
return ([
@@ -203,6 +212,7 @@ class InitialSettingsPage extends React.Component {
action: () => { Link.openExternalLink(CONST.NEWHELP_URL); },
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
+ link: CONST.NEWHELP_URL,
},
{
translationKey: 'initialSettingsPage.about',
@@ -236,6 +246,9 @@ class InitialSettingsPage extends React.Component {
brickRoadIndicator={item.brickRoadIndicator}
floatRightAvatars={item.floatRightAvatars}
shouldStackHorizontally={item.shouldStackHorizontally}
+ ref={this.popoverAnchor}
+ shouldBlockSelection={Boolean(item.link)}
+ onSecondaryInteraction={!_.isEmpty(item.link) ? e => ReportActionContextMenu.showContextMenu(CONTEXT_MENU_TYPES.LINK, e, item.link, this.popoverAnchor.current) : undefined}
/>
);
}
@@ -296,7 +309,7 @@ class InitialSettingsPage extends React.Component {
{this.props.currentUserPersonalDetails.displayName
? this.props.currentUserPersonalDetails.displayName
- : Str.removeSMSDomain(this.props.session.email)}
+ : this.props.formatPhoneNumber(this.props.session.email)}
@@ -305,7 +318,7 @@ class InitialSettingsPage extends React.Component {
style={[styles.textLabelSupporting, styles.mt1]}
numberOfLines={1}
>
- {Str.removeSMSDomain(this.props.session.email)}
+ {this.props.formatPhoneNumber(this.props.session.email)}
)}
@@ -355,6 +368,9 @@ export default compose(
bankAccountList: {
key: ONYXKEYS.BANK_ACCOUNT_LIST,
},
+ reimbursementAccount: {
+ key: ONYXKEYS.REIMBURSEMENT_ACCOUNT,
+ },
cardList: {
key: ONYXKEYS.CARD_LIST,
},
diff --git a/src/pages/settings/Payments/AddDebitCardPage.js b/src/pages/settings/Payments/AddDebitCardPage.js
index bc4c7f0f945f..ae7b7f3b7330 100644
--- a/src/pages/settings/Payments/AddDebitCardPage.js
+++ b/src/pages/settings/Payments/AddDebitCardPage.js
@@ -126,7 +126,6 @@ class DebitCardPage extends Component {
onSubmit={PaymentMethods.addPaymentCard}
submitButtonText={this.props.translate('common.save')}
scrollContextEnabled
- scrollToOverflowEnabled
style={[styles.mh5, styles.flexGrow1]}
>
{
+ const [payPalMeUsername, setPayPalMeUsername] = useState('');
+ const [payPalMeUsernameError, setPayPalMeUsernameError] = useState(false);
+ const payPalMeInput = useRef(null);
- this.state = {
- payPalMeUsername: '',
- payPalMeUsernameError: false,
- };
- this.setPayPalMeUsername = this.setPayPalMeUsername.bind(this);
- this.focusPayPalMeInput = this.focusPayPalMeInput.bind(this);
- }
+ const growlMessageOnSave = props.translate('addPayPalMePage.growlMessageOnSave');
/**
- * Sets the payPalMeUsername for the current user
+ * Sets the payPalMe username and error data for the current user
*/
- setPayPalMeUsername() {
- const isValid = ValidationUtils.isValidPaypalUsername(this.state.payPalMeUsername);
- if (!isValid) {
- this.setState({payPalMeUsernameError: true});
+ const setPayPalMeData = useCallback(() => {
+ if (!ValidationUtils.isValidPaypalUsername(payPalMeUsername)) {
+ setPayPalMeUsernameError(true);
return;
}
- this.setState({payPalMeUsernameError: false});
- User.addPaypalMeAddress(this.state.payPalMeUsername);
+ setPayPalMeUsernameError(false);
+ User.addPaypalMeAddress(payPalMeUsername);
- Growl.show(this.props.translate('addPayPalMePage.growlMessageOnSave'), CONST.GROWL.SUCCESS, 3000);
+ Growl.show(growlMessageOnSave, CONST.GROWL.SUCCESS, 3000);
Navigation.navigate(ROUTES.SETTINGS_PAYMENTS);
- }
+ }, [payPalMeUsername, growlMessageOnSave]);
- focusPayPalMeInput() {
- if (!this.payPalMeInputRef) {
- return;
- }
-
- this.payPalMeInputRef.focus();
- }
-
- render() {
- return (
-
- Navigation.navigate(ROUTES.SETTINGS_PAYMENTS)}
- onCloseButtonPress={() => Navigation.dismissModal(true)}
- />
-
-
-
- {this.props.translate('addPayPalMePage.enterYourUsernameToGetPaidViaPayPal')}
+ return (
+ payPalMeInput.current && payPalMeInput.current.focus()}>
+ Navigation.navigate(ROUTES.SETTINGS_PAYMENTS)}
+ onCloseButtonPress={() => Navigation.dismissModal(true)}
+ />
+
+
+
+ {props.translate('addPayPalMePage.enterYourUsernameToGetPaidViaPayPal')}
+
+ {
+ setPayPalMeUsername(text);
+ setPayPalMeUsernameError(false);
+ }}
+ returnKeyType="done"
+ hasError={payPalMeUsernameError}
+ errorText={payPalMeUsernameError ? props.translate('addPayPalMePage.formatError') : ''}
+ />
+
+
+ {props.translate('addPayPalMePage.checkListOf')}
- this.payPalMeInputRef = el}
- label={this.props.translate('addPayPalMePage.payPalMe')}
- autoCompleteType="off"
- autoCorrect={false}
- value={this.state.payPalMeUsername}
- placeholder={this.props.translate('addPayPalMePage.yourPayPalUsername')}
- onChangeText={text => this.setState({payPalMeUsername: text, payPalMeUsernameError: false})}
- returnKeyType="done"
- hasError={this.state.payPalMeUsernameError}
- errorText={this.state.payPalMeUsernameError ? this.props.translate('addPayPalMePage.formatError') : ''}
- />
+ Linking.openURL('https://developer.paypal.com/docs/reports/reference/paypal-supported-currencies')}
+ >
+
+
+ {props.translate('addPayPalMePage.supportedCurrencies')}
+
+
+
+
+
+
-
-
-
-
- );
- }
-}
+
+
+
+
+
+ );
+};
AddPayPalMePage.propTypes = {...withLocalizePropTypes};
+AddPayPalMePage.displayName = 'AddPayPalMePage';
export default withLocalize(AddPayPalMePage);
diff --git a/src/pages/settings/Preferences/PreferencesPage.js b/src/pages/settings/Preferences/PreferencesPage.js
index 953b6de8dd66..3594e37d6deb 100755
--- a/src/pages/settings/Preferences/PreferencesPage.js
+++ b/src/pages/settings/Preferences/PreferencesPage.js
@@ -47,7 +47,7 @@ const PreferencesPage = (props) => {
const languages = props.translate('languagePage.languages');
// Enable additional test features in the staging or dev environments
- const shouldShowTestToolMenu = _.contains([CONST.ENVIRONMENT.STAGING, CONST.ENVIRONMENT.DEV], props.environment);
+ const shouldShowTestToolMenu = _.contains([CONST.ENVIRONMENT.STAGING, CONST.ENVIRONMENT.ADHOC, CONST.ENVIRONMENT.DEV], props.environment);
return (
diff --git a/src/pages/settings/Profile/Contacts/ContactMethodDetailsPage.js b/src/pages/settings/Profile/Contacts/ContactMethodDetailsPage.js
index ba5c0e5fbb5b..277b86f1d611 100644
--- a/src/pages/settings/Profile/Contacts/ContactMethodDetailsPage.js
+++ b/src/pages/settings/Profile/Contacts/ContactMethodDetailsPage.js
@@ -97,6 +97,17 @@ class ContactMethodDetailsPage extends Component {
};
}
+ componentDidUpdate(prevProps) {
+ const errorFields = lodashGet(this.props.loginList, [this.getContactMethod(), 'errorFields'], {});
+ const prevPendingFields = lodashGet(prevProps.loginList, [this.getContactMethod(), 'pendingFields'], {});
+
+ // Navigate to methods page on successful magic code verification
+ // validateLogin property of errorFields & prev pendingFields is responsible to decide the status of the magic code verification
+ if (!errorFields.validateLogin && prevPendingFields.validateLogin === CONST.RED_BRICK_ROAD_PENDING_ACTION.UPDATE) {
+ Navigation.navigate(ROUTES.SETTINGS_CONTACT_METHODS);
+ }
+ }
+
/**
* Gets the current contact method from the route params
*
@@ -111,7 +122,7 @@ class ContactMethodDetailsPage extends Component {
*/
deleteContactMethod() {
if (!_.isEmpty(lodashGet(this.props.loginList, [this.getContactMethod(), 'errorFields'], {}))) {
- User.deleteContactMethod(this.getContactMethod());
+ User.deleteContactMethod(this.getContactMethod(), this.props.loginList);
return;
}
this.toggleDeleteModal(true);
@@ -130,7 +141,7 @@ class ContactMethodDetailsPage extends Component {
*/
confirmDeleteAndHideModal() {
this.toggleDeleteModal(false);
- User.deleteContactMethod(this.getContactMethod());
+ User.deleteContactMethod(this.getContactMethod(), this.props.loginList);
}
/**
@@ -156,6 +167,12 @@ class ContactMethodDetailsPage extends Component {
render() {
const contactMethod = this.getContactMethod();
+
+ // replacing spaces with "hard spaces" to prevent breaking the number
+ const formattedContactMethod = Str.isSMSLogin(contactMethod)
+ ? this.props.formatPhoneNumber(contactMethod).replace(/ /g, '\u00A0')
+ : contactMethod;
+
const loginData = this.props.loginList[contactMethod];
if (!contactMethod || !loginData) {
return ;
@@ -169,7 +186,7 @@ class ContactMethodDetailsPage extends Component {
return (
Navigation.navigate(ROUTES.SETTINGS_CONTACT_METHODS)}
onCloseButtonPress={() => Navigation.dismissModal(true)}
@@ -191,7 +208,7 @@ class ContactMethodDetailsPage extends Component {
- {this.props.translate('contacts.enterMagicCode', {contactMethod})}
+ {this.props.translate('contacts.enterMagicCode', {contactMethod: formattedContactMethod})}
diff --git a/src/pages/settings/Profile/Contacts/ContactMethodsPage.js b/src/pages/settings/Profile/Contacts/ContactMethodsPage.js
index 7d8e362a438e..1ff413582418 100644
--- a/src/pages/settings/Profile/Contacts/ContactMethodsPage.js
+++ b/src/pages/settings/Profile/Contacts/ContactMethodsPage.js
@@ -59,7 +59,14 @@ const defaultProps = {
};
const ContactMethodsPage = (props) => {
- const loginMenuItems = _.map(props.loginList, (login, loginName) => {
+ const loginNames = _.keys(props.loginList);
+
+ // Sort the login names by placing the one corresponding to the default contact method as the first item before displaying the contact methods.
+ // The default contact method is determined by checking against the session email (the current login).
+ const sortedLoginNames = _.sortBy(loginNames, loginName => (props.loginList[loginName].partnerUserID === props.session.email ? 0 : 1));
+
+ const loginMenuItems = _.map(sortedLoginNames, (loginName) => {
+ const login = props.loginList[loginName];
const pendingAction = lodashGet(login, 'pendingFields.deletedLogin') || lodashGet(login, 'pendingFields.addedLogin');
if (!login.partnerUserID && _.isEmpty(pendingAction)) {
return null;
@@ -83,13 +90,15 @@ const ContactMethodsPage = (props) => {
// Default to using login key if we deleted login.partnerUserID optimistically
// but still need to show the pending login being deleted while offline.
const partnerUserID = login.partnerUserID || loginName;
+ const menuItemTitle = Str.isSMSLogin(partnerUserID) ? props.formatPhoneNumber(partnerUserID) : partnerUserID;
+
return (
Navigation.navigate(ROUTES.getEditContactMethodRoute(partnerUserID))}
brickRoadIndicator={indicator}
diff --git a/src/pages/settings/Profile/Contacts/NewContactMethodPage.js b/src/pages/settings/Profile/Contacts/NewContactMethodPage.js
index 70e0860feb95..0c59cb17ba4e 100644
--- a/src/pages/settings/Profile/Contacts/NewContactMethodPage.js
+++ b/src/pages/settings/Profile/Contacts/NewContactMethodPage.js
@@ -1,4 +1,6 @@
-import React, {Component} from 'react';
+import React, {
+ useCallback, useMemo, useRef, useState,
+} from 'react';
import PropTypes from 'prop-types';
import {View} from 'react-native';
import {ScrollView} from 'react-native-gesture-handler';
@@ -52,99 +54,87 @@ const defaultProps = {
loginList: {},
};
-class NewContactMethodPage extends Component {
- constructor(props) {
- super(props);
-
- this.state = {
- login: '',
- password: '',
- };
- this.onLoginChange = this.onLoginChange.bind(this);
- this.validateForm = this.validateForm.bind(this);
- this.submitForm = this.submitForm.bind(this);
- }
-
- onLoginChange(login) {
- this.setState({login});
- }
-
- /**
- * Determine whether the form is valid
- *
- * @returns {Boolean}
- */
- validateForm() {
- const login = this.state.login.trim();
+function NewContactMethodPage(props) {
+ const [login, setLogin] = useState('');
+ const [password, setPassword] = useState('');
+ const loginInputRef = useRef(null);
+
+ const handleLoginChange = useCallback((value) => {
+ setLogin(value.trim());
+ }, []);
+
+ const handlePasswordChange = useCallback((value) => {
+ setPassword(value.trim());
+ }, []);
+
+ const isFormValid = useMemo(() => {
const phoneLogin = LoginUtils.getPhoneNumberWithoutSpecialChars(login);
- return (Permissions.canUsePasswordlessLogins(this.props.betas) || this.state.password)
+ return (Permissions.canUsePasswordlessLogins(props.betas) || password)
&& (Str.isValidEmail(login) || Str.isValidPhone(phoneLogin));
- }
+ }, [login, password, props.betas]);
- submitForm() {
+ const submitForm = useCallback(() => {
// If this login already exists, just go back.
- if (lodashGet(this.props.loginList, this.state.login)) {
+ if (lodashGet(props.loginList, login)) {
Navigation.navigate(ROUTES.SETTINGS_CONTACT_METHODS);
return;
}
- User.addNewContactMethodAndNavigate(this.state.login, this.state.password);
- }
-
- render() {
- return (
- {
- if (!this.loginInputRef) {
- return;
- }
- this.loginInputRef.focus();
- }}
- >
- Navigation.navigate(ROUTES.SETTINGS_CONTACT_METHODS)}
- onCloseButtonPress={() => Navigation.dismissModal(true)}
- />
-
-
- {this.props.translate('common.pleaseEnterEmailOrPhoneNumber')}
-
-
- this.loginInputRef = el}
- value={this.state.login}
- onChangeText={this.onLoginChange}
- autoCapitalize="none"
- returnKeyType={Permissions.canUsePasswordlessLogins(this.props.betas) ? 'done' : 'next'}
- />
-
- {!Permissions.canUsePasswordlessLogins(this.props.betas)
- && (
-
- this.setState({password})}
- returnKeyType="done"
- />
-
- )}
-
-
- {
+ if (!loginInputRef.current) {
+ return;
+ }
+ loginInputRef.current.focus();
+ }}
+ >
+ Navigation.navigate(ROUTES.SETTINGS_CONTACT_METHODS)}
+ onCloseButtonPress={() => Navigation.dismissModal(true)}
+ />
+
+
+ {props.translate('common.pleaseEnterEmailOrPhoneNumber')}
+
+
+
-
-
- );
- }
+
+ {!Permissions.canUsePasswordlessLogins(props.betas)
+ && (
+
+
+
+ )}
+
+
+
+
+
+ );
}
NewContactMethodPage.propTypes = propTypes;
diff --git a/src/pages/settings/Profile/PersonalDetails/DateOfBirthPage.js b/src/pages/settings/Profile/PersonalDetails/DateOfBirthPage.js
index 3174c8d6e998..1725d7e866d5 100644
--- a/src/pages/settings/Profile/PersonalDetails/DateOfBirthPage.js
+++ b/src/pages/settings/Profile/PersonalDetails/DateOfBirthPage.js
@@ -119,7 +119,6 @@ class DateOfBirthPage extends Component {
enabledWhenOffline
>
{
+ PersonalDetails.updateLegalName(
+ values.legalFirstName.trim(),
+ values.legalLastName.trim(),
+ );
+};
- /**
- * Submit form to update user's legal first and last name
- * @param {Object} values
- * @param {String} values.legalFirstName
- * @param {String} values.legalLastName
- */
- updateLegalName(values) {
- PersonalDetails.updateLegalName(
- values.legalFirstName.trim(),
- values.legalLastName.trim(),
- );
- }
+function LegalNamePage(props) {
+ const legalFirstName = lodashGet(props.privatePersonalDetails, 'legalFirstName', '');
+ const legalLastName = lodashGet(props.privatePersonalDetails, 'legalLastName', '');
+ const translate = props.translate;
- /**
- * @param {Object} values
- * @param {String} values.legalFirstName
- * @param {String} values.legalLastName
- * @returns {Object} - An object containing the errors for each inputID
- */
- validate(values) {
+ const validate = useCallback((values) => {
const errors = {};
if (!ValidationUtils.isValidLegalName(values.legalFirstName)) {
- errors.legalFirstName = this.props.translate('privatePersonalDetails.error.hasInvalidCharacter');
+ errors.legalFirstName = translate('privatePersonalDetails.error.hasInvalidCharacter');
} else if (_.isEmpty(values.legalFirstName)) {
- errors.legalFirstName = this.props.translate('common.error.fieldRequired');
+ errors.legalFirstName = translate('common.error.fieldRequired');
}
if (!ValidationUtils.isValidLegalName(values.legalLastName)) {
- errors.legalLastName = this.props.translate('privatePersonalDetails.error.hasInvalidCharacter');
+ errors.legalLastName = translate('privatePersonalDetails.error.hasInvalidCharacter');
} else if (_.isEmpty(values.legalLastName)) {
- errors.legalLastName = this.props.translate('common.error.fieldRequired');
+ errors.legalLastName = translate('common.error.fieldRequired');
}
return errors;
- }
-
- render() {
- const privateDetails = this.props.privatePersonalDetails || {};
+ }, [translate]);
- return (
-
- Navigation.navigate(ROUTES.SETTINGS_PERSONAL_DETAILS)}
- onCloseButtonPress={() => Navigation.dismissModal(true)}
- />
-
-
- );
- }
+ return (
+
+ Navigation.navigate(ROUTES.SETTINGS_PERSONAL_DETAILS)}
+ onCloseButtonPress={() => Navigation.dismissModal(true)}
+ />
+
+
+ );
}
LegalNamePage.propTypes = propTypes;
diff --git a/src/pages/settings/Profile/PersonalDetails/PersonalDetailsInitialPage.js b/src/pages/settings/Profile/PersonalDetails/PersonalDetailsInitialPage.js
index 88e886ae0e6d..c21b4e43c4e2 100644
--- a/src/pages/settings/Profile/PersonalDetails/PersonalDetailsInitialPage.js
+++ b/src/pages/settings/Profile/PersonalDetails/PersonalDetailsInitialPage.js
@@ -1,4 +1,4 @@
-import React from 'react';
+import React, {useEffect} from 'react';
import PropTypes from 'prop-types';
import {ScrollView, View} from 'react-native';
import {withOnyx} from 'react-native-onyx';
@@ -13,6 +13,7 @@ import compose from '../../../../libs/compose';
import MenuItemWithTopDescription from '../../../../components/MenuItemWithTopDescription';
import * as PersonalDetails from '../../../../libs/actions/PersonalDetails';
import ONYXKEYS from '../../../../ONYXKEYS';
+import {withNetwork} from '../../../../components/OnyxProvider';
const propTypes = {
/* Onyx Props */
@@ -53,7 +54,12 @@ const defaultProps = {
};
const PersonalDetailsInitialPage = (props) => {
- PersonalDetails.openPersonalDetailsPage();
+ useEffect(() => {
+ if (props.network.isOffline) {
+ return;
+ }
+ PersonalDetails.openPersonalDetailsPage();
+ }, [props.network.isOffline]);
const privateDetails = props.privatePersonalDetails || {};
const address = privateDetails.address || {};
@@ -135,4 +141,5 @@ export default compose(
key: ONYXKEYS.PRIVATE_PERSONAL_DETAILS,
},
}),
+ withNetwork(),
)(PersonalDetailsInitialPage);
diff --git a/src/pages/settings/Profile/ProfilePage.js b/src/pages/settings/Profile/ProfilePage.js
index 3ea4f9abb9f7..88890bcd0f99 100755
--- a/src/pages/settings/Profile/ProfilePage.js
+++ b/src/pages/settings/Profile/ProfilePage.js
@@ -1,4 +1,3 @@
-import Str from 'expensify-common/lib/str';
import lodashGet from 'lodash/get';
import React from 'react';
import {View} from 'react-native';
@@ -65,7 +64,7 @@ const ProfilePage = (props) => {
},
{
description: props.translate('contacts.contactMethod'),
- title: Str.removeSMSDomain(lodashGet(currentUserDetails, 'login', '')),
+ title: props.formatPhoneNumber(lodashGet(currentUserDetails, 'login', '')),
pageRoute: ROUTES.SETTINGS_CONTACT_METHODS,
brickRoadIndicator: contactMethodBrickRoadIndicator,
},
diff --git a/src/pages/settings/Profile/PronounsPage.js b/src/pages/settings/Profile/PronounsPage.js
index 1b0a1f4188a4..1de081076ad6 100644
--- a/src/pages/settings/Profile/PronounsPage.js
+++ b/src/pages/settings/Profile/PronounsPage.js
@@ -81,29 +81,32 @@ class PronounsPage extends Component {
loadPronouns() {
const currentPronouns = lodashGet(this.props.currentUserPersonalDetails, 'pronouns', '');
- this.pronounsList = _.map(this.props.translate('pronouns'), (value, key) => {
- const fullPronounKey = `${CONST.PRONOUNS.PREFIX}${key}`;
- const isCurrentPronouns = fullPronounKey === currentPronouns;
-
- if (isCurrentPronouns) {
- this.initiallyFocusedOption = {
+ this.pronounsList = _.chain(this.props.translate('pronouns'))
+ .map((value, key) => {
+ const fullPronounKey = `${CONST.PRONOUNS.PREFIX}${key}`;
+ const isCurrentPronouns = fullPronounKey === currentPronouns;
+
+ if (isCurrentPronouns) {
+ this.initiallyFocusedOption = {
+ text: value,
+ keyForList: key,
+ };
+ }
+
+ return {
text: value,
+ value: fullPronounKey,
keyForList: key,
- };
- }
- return {
- text: value,
- value: fullPronounKey,
- keyForList: key,
+ // Include the green checkmark icon to indicate the currently selected value
+ customIcon: isCurrentPronouns ? greenCheckmark : undefined,
- // Include the green checkmark icon to indicate the currently selected value
- customIcon: isCurrentPronouns ? greenCheckmark : undefined,
-
- // This property will make the currently selected value have bold text
- boldStyle: isCurrentPronouns,
- };
- });
+ // This property will make the currently selected value have bold text
+ boldStyle: isCurrentPronouns,
+ };
+ })
+ .sortBy(pronoun => pronoun.text.toLowerCase())
+ .value();
}
/**
@@ -127,7 +130,7 @@ class PronounsPage extends Component {
onBackButtonPress={() => Navigation.navigate(ROUTES.SETTINGS_PROFILE)}
onCloseButtonPress={() => Navigation.dismissModal(true)}
/>
-
+
{this.props.translate('pronounsPage.isShownOnProfile')}
(
{!_.isEmpty(props.credentials.login) && (
-
- {props.translate('common.not')}
-
- {Str.removeSMSDomain(props.credentials.login)}
- {'? '}
+
+ {props.translate('loginForm.notYou', {user: props.formatPhoneNumber(props.credentials.login)})}
)}
@@ -183,6 +184,7 @@ class LoginForm extends React.Component {
autoCorrect={false}
keyboardType={CONST.KEYBOARD_TYPE.EMAIL_ADDRESS}
errorText={formErrorText}
+ hasError={hasError}
/>
{!_.isEmpty(this.props.account.success) && (
diff --git a/src/pages/signin/PasswordForm.js b/src/pages/signin/PasswordForm.js
index 56e21f0fffa2..cc99614ac001 100755
--- a/src/pages/signin/PasswordForm.js
+++ b/src/pages/signin/PasswordForm.js
@@ -168,6 +168,12 @@ class PasswordForm extends React.Component {
}
render() {
+ const isTwoFactorAuthRequired = Boolean(this.props.account.requiresTwoFactorAuth);
+ const hasServerError = Boolean(this.props.account) && !_.isEmpty(this.props.account.errors);
+
+ // When the 2FA required flag is set, user has already passed/completed the password field
+ const passwordFieldHasError = !isTwoFactorAuthRequired && hasServerError;
+ const twoFactorFieldHasError = isTwoFactorAuthRequired && hasServerError;
return (
<>
@@ -184,6 +190,7 @@ class PasswordForm extends React.Component {
onSubmitEditing={this.validateAndSubmitForm}
blurOnSubmit={false}
errorText={this.state.formError.password ? this.props.translate(this.state.formError.password) : ''}
+ hasError={passwordFieldHasError}
/>
- {this.props.account.requiresTwoFactorAuth && (
+ {isTwoFactorAuthRequired && (
this.input2FA = el}
@@ -211,11 +218,12 @@ class PasswordForm extends React.Component {
blurOnSubmit={false}
maxLength={CONST.TFA_CODE_LENGTH}
errorText={this.state.formError.twoFactorAuthCode ? this.props.translate(this.state.formError.twoFactorAuthCode) : ''}
+ hasError={twoFactorFieldHasError}
/>
)}
- {Boolean(this.props.account) && !_.isEmpty(this.props.account.errors) && (
+ {hasServerError && (
)}
diff --git a/src/pages/signin/ResendValidationForm.js b/src/pages/signin/ResendValidationForm.js
index 01f5cf7ea37e..a4f0b467b4c7 100755
--- a/src/pages/signin/ResendValidationForm.js
+++ b/src/pages/signin/ResendValidationForm.js
@@ -49,7 +49,12 @@ const defaultProps = {
const ResendValidationForm = (props) => {
const isSMSLogin = Str.isSMSLogin(props.credentials.login);
- const login = isSMSLogin ? props.toLocalPhone(Str.removeSMSDomain(props.credentials.login)) : props.credentials.login;
+
+ // replacing spaces with "hard spaces" to prevent breaking the number
+ const login = isSMSLogin
+ ? props.formatPhoneNumber(props.credentials.login).replace(/ /g, '\u00A0')
+ : props.credentials.login;
+
const loginType = (isSMSLogin ? props.translate('common.phone') : props.translate('common.email')).toLowerCase();
return (
@@ -60,7 +65,7 @@ const ResendValidationForm = (props) => {
imageStyles={[styles.mr2]}
/>
-
+
{login}
@@ -73,7 +78,7 @@ const ResendValidationForm = (props) => {
{!_.isEmpty(props.account.message) && (
// DotIndicatorMessage mostly expects onyxData errors so we need to mock an object so that the messages looks similar to prop.account.errors
-
+
)}
{!_.isEmpty(props.account.errors) && (
diff --git a/src/pages/signin/SignInHeroCopy.js b/src/pages/signin/SignInHeroCopy.js
new file mode 100644
index 000000000000..f8ef85081691
--- /dev/null
+++ b/src/pages/signin/SignInHeroCopy.js
@@ -0,0 +1,37 @@
+import {View} from 'react-native';
+import React from 'react';
+import Text from '../../components/Text';
+import withWindowDimensions, {windowDimensionsPropTypes} from '../../components/withWindowDimensions';
+import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize';
+import compose from '../../libs/compose';
+import * as StyleUtils from '../../styles/StyleUtils';
+import styles from '../../styles/styles';
+import variables from '../../styles/variables';
+
+const propTypes = {
+ ...windowDimensionsPropTypes,
+ ...withLocalizePropTypes,
+};
+
+const SignInHeroCopy = props => (
+
+
+ {props.translate('login.hero.header')}
+
+
+ {props.translate('login.hero.body')}
+
+
+);
+
+SignInHeroCopy.displayName = 'SignInHeroCopy';
+SignInHeroCopy.propTypes = propTypes;
+
+export default compose(
+ withWindowDimensions,
+ withLocalize,
+)(SignInHeroCopy);
diff --git a/src/pages/signin/SignInHeroImage.js b/src/pages/signin/SignInHeroImage.js
new file mode 100644
index 000000000000..24f1895ed5e0
--- /dev/null
+++ b/src/pages/signin/SignInHeroImage.js
@@ -0,0 +1,44 @@
+import React from 'react';
+import Lottie from 'lottie-react-native';
+import hands from '../../../assets/animations/Hands.json';
+import withWindowDimensions, {windowDimensionsPropTypes} from '../../components/withWindowDimensions';
+import styles from '../../styles/styles';
+import variables from '../../styles/variables';
+
+const propTypes = {
+ ...windowDimensionsPropTypes,
+};
+
+const SignInHeroImage = (props) => {
+ let imageSize;
+ if (props.isSmallScreenWidth) {
+ imageSize = {
+ height: variables.signInHeroImageMobileHeight,
+ width: variables.signInHeroImageMobileWidth,
+ };
+ } else if (props.isMediumScreenWidth) {
+ imageSize = {
+ height: variables.signInHeroImageTabletHeight,
+ width: variables.signInHeroImageTabletWidth,
+ };
+ } else {
+ imageSize = {
+ height: variables.signInHeroImageDesktopHeight,
+ width: variables.signInHeroImageDesktopWidth,
+ };
+ }
+
+ return (
+
+ );
+};
+
+SignInHeroImage.displayName = 'SignInHeroImage';
+SignInHeroImage.propTypes = propTypes;
+
+export default withWindowDimensions(SignInHeroImage);
diff --git a/src/pages/signin/SignInPage.js b/src/pages/signin/SignInPage.js
index 53c4d5545485..3282e16d50b2 100644
--- a/src/pages/signin/SignInPage.js
+++ b/src/pages/signin/SignInPage.js
@@ -16,6 +16,7 @@ import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize
import Performance from '../../libs/Performance';
import * as App from '../../libs/actions/App';
import Permissions from '../../libs/Permissions';
+import withWindowDimensions, {windowDimensionsPropTypes} from '../../components/withWindowDimensions';
import * as Localize from '../../libs/Localize';
const propTypes = {
@@ -41,6 +42,8 @@ const propTypes = {
}),
...withLocalizePropTypes,
+
+ ...windowDimensionsPropTypes,
};
const defaultProps = {
@@ -89,27 +92,46 @@ class SignInPage extends Component {
&& (!this.props.account.validated || this.props.account.forgotPassword)
&& !Permissions.canUsePasswordlessLogins(this.props.betas);
+ let welcomeHeader = '';
let welcomeText = '';
if (showValidateCodeForm) {
if (this.props.account.requiresTwoFactorAuth) {
// We will only know this after a user signs in successfully, without their 2FA code
+ welcomeHeader = this.props.isSmallScreenWidth ? '' : this.props.translate('welcomeText.welcomeBack');
welcomeText = this.props.translate('validateCodeForm.enterAuthenticatorCode');
} else {
const userLogin = Str.removeSMSDomain(lodashGet(this.props, 'credentials.login', ''));
- welcomeText = this.props.account.validated
- ? this.props.translate('welcomeText.welcomeBackEnterMagicCode', {login: userLogin})
- : this.props.translate('welcomeText.welcomeEnterMagicCode', {login: userLogin});
+
+ // replacing spaces with "hard spaces" to prevent breaking the number
+ const userLoginToDisplay = Str.isSMSLogin(userLogin) ? this.props.formatPhoneNumber(userLogin).replace(/ /g, '\u00A0') : userLogin;
+ if (this.props.account.validated) {
+ welcomeHeader = this.props.isSmallScreenWidth ? '' : this.props.translate('welcomeText.welcomeBack');
+ welcomeText = this.props.isSmallScreenWidth
+ ? `${this.props.translate('welcomeText.welcomeBack')} ${this.props.translate('welcomeText.welcomeEnterMagicCode', {login: userLoginToDisplay})}`
+ : this.props.translate('welcomeText.welcomeEnterMagicCode', {login: userLoginToDisplay});
+ } else {
+ welcomeHeader = this.props.isSmallScreenWidth ? '' : this.props.translate('welcomeText.welcome');
+ welcomeText = this.props.isSmallScreenWidth
+ ? `${this.props.translate('welcomeText.welcome')} ${this.props.translate('welcomeText.newFaceEnterMagicCode', {login: userLoginToDisplay})}`
+ : this.props.translate('welcomeText.newFaceEnterMagicCode', {login: userLoginToDisplay});
+ }
}
} else if (showPasswordForm) {
- welcomeText = this.props.translate('welcomeText.welcomeBack');
+ welcomeHeader = this.props.isSmallScreenWidth ? '' : this.props.translate('welcomeText.welcomeBack');
+ welcomeText = this.props.isSmallScreenWidth
+ ? `${this.props.translate('welcomeText.welcomeBack')} ${this.props.translate('welcomeText.enterPassword')}`
+ : this.props.translate('welcomeText.enterPassword');
} else if (!showResendValidationForm) {
- welcomeText = this.props.translate('welcomeText.welcome');
+ welcomeHeader = this.props.isSmallScreenWidth ? this.props.translate('login.hero.header') : this.props.translate('welcomeText.getStarted');
+ welcomeText = this.props.isSmallScreenWidth ? this.props.translate('welcomeText.getStarted') : '';
}
return (
{/* LoginForm and PasswordForm must use the isVisible prop. This keeps them mounted, but visually hidden
@@ -132,6 +154,7 @@ SignInPage.defaultProps = defaultProps;
export default compose(
withLocalize,
+ withWindowDimensions,
withOnyx({
account: {key: ONYXKEYS.ACCOUNT},
betas: {key: ONYXKEYS.BETAS},
diff --git a/src/pages/signin/SignInPageHero.js b/src/pages/signin/SignInPageHero.js
new file mode 100644
index 000000000000..633a709758d1
--- /dev/null
+++ b/src/pages/signin/SignInPageHero.js
@@ -0,0 +1,34 @@
+import {View} from 'react-native';
+import React from 'react';
+import * as StyleUtils from '../../styles/StyleUtils';
+import withWindowDimensions, {windowDimensionsPropTypes} from '../../components/withWindowDimensions';
+import SignInHeroImage from './SignInHeroImage';
+import SignInHeroCopy from './SignInHeroCopy';
+import styles from '../../styles/styles';
+import variables from '../../styles/variables';
+
+const propTypes = {
+ ...windowDimensionsPropTypes,
+};
+
+const SignInPageHero = props => (
+
+
+
+
+
+
+);
+
+SignInPageHero.displayName = 'SignInPageHero';
+SignInPageHero.propTypes = propTypes;
+
+export default withWindowDimensions(SignInPageHero);
diff --git a/src/pages/signin/SignInPageLayout/Footer.js b/src/pages/signin/SignInPageLayout/Footer.js
index 99ace5d47176..5fd421901f1d 100644
--- a/src/pages/signin/SignInPageLayout/Footer.js
+++ b/src/pages/signin/SignInPageLayout/Footer.js
@@ -1,8 +1,11 @@
+import PropTypes from 'prop-types';
import {View} from 'react-native';
import React from 'react';
import _ from 'underscore';
import Text from '../../../components/Text';
import styles from '../../../styles/styles';
+import * as StyleUtils from '../../../styles/StyleUtils';
+import themeColors from '../../../styles/themes/default';
import variables from '../../../styles/variables';
import * as Expensicons from '../../../components/Icon/Expensicons';
import TextLink from '../../../components/TextLink';
@@ -13,16 +16,38 @@ import Licenses from '../Licenses';
import Socials from '../Socials';
import Hoverable from '../../../components/Hoverable';
import CONST from '../../../CONST';
-import Navigation from '../../../libs/Navigation/Navigation';
+import Navigation, {navigationRef} from '../../../libs/Navigation/Navigation';
import * as Session from '../../../libs/actions/Session';
+import SignInGradient from '../../../../assets/images/home-fade-gradient--mobile.svg';
+import screens from '../../../SCREENS';
const propTypes = {
+ scrollViewRef: PropTypes.shape({
+ // eslint-disable-next-line react/forbid-prop-types
+ current: PropTypes.any,
+ }),
...windowDimensionsPropTypes,
...withLocalizePropTypes,
};
-const navigateHome = () => {
- Navigation.navigate();
+const defaultProps = {
+ scrollViewRef: undefined,
+};
+
+const navigateHome = (scrollViewRef) => {
+ const currentRoute = navigationRef.current.getCurrentRoute();
+ if (
+ currentRoute.name === screens.HOME
+ && scrollViewRef
+ && scrollViewRef.current
+ ) {
+ scrollViewRef.current.scrollTo({
+ y: 0,
+ animated: true,
+ });
+ } else {
+ Navigation.navigate();
+ }
// We need to clear sign in data in case the user is already in the ValidateCodeForm or PasswordForm pages
Session.clearSignInData();
@@ -148,13 +173,18 @@ const Footer = (props) => {
const imageDirection = isVertical ? styles.flexRow : styles.flexColumn;
const imageStyle = isVertical ? styles.pr0 : styles.alignSelfCenter;
const columnDirection = isVertical ? styles.flexColumn : styles.flexRow;
- const pageFooterWrapper = [styles.footerWrapper, imageDirection, imageStyle];
+ const pageFooterWrapper = [styles.footerWrapper, imageDirection, imageStyle, isVertical ? styles.pl10 : {}];
const footerColumns = [styles.footerColumnsContainer, columnDirection];
const footerColumn = isVertical ? [styles.p4] : [styles.p4, props.isMediumScreenWidth ? styles.w50 : styles.w25];
return (
-
+
+ {props.isSmallScreenWidth ? (
+
+
+
+ ) : null}
{_.map(columns, (column, i) => (
@@ -174,7 +204,7 @@ const Footer = (props) => {
row.onPress(props.scrollViewRef) : undefined}
>
{props.translate(row.translationPath)}
@@ -211,6 +241,7 @@ const Footer = (props) => {
Footer.propTypes = propTypes;
Footer.displayName = 'Footer';
+Footer.defaultProps = defaultProps;
export default compose(
withLocalize,
diff --git a/src/pages/signin/SignInPageLayout/SignInPageContent.js b/src/pages/signin/SignInPageLayout/SignInPageContent.js
index 76f03ec87715..9991cac126c2 100755
--- a/src/pages/signin/SignInPageLayout/SignInPageContent.js
+++ b/src/pages/signin/SignInPageLayout/SignInPageContent.js
@@ -1,17 +1,18 @@
import React from 'react';
-import {ScrollView, View} from 'react-native';
+import {View, ScrollView} from 'react-native';
import PropTypes from 'prop-types';
import {withSafeAreaInsets} from 'react-native-safe-area-context';
import styles from '../../../styles/styles';
-import variables from '../../../styles/variables';
-import ExpensifyCashLogo from '../../../components/ExpensifyCashLogo';
+import ExpensifyWordmark from '../../../components/ExpensifyWordmark';
import Text from '../../../components/Text';
import withLocalize, {withLocalizePropTypes} from '../../../components/withLocalize';
import SignInPageForm from '../../../components/SignInPageForm';
import compose from '../../../libs/compose';
import withWindowDimensions, {windowDimensionsPropTypes} from '../../../components/withWindowDimensions';
-import KeyboardAvoidingView from '../../../components/KeyboardAvoidingView';
import OfflineIndicator from '../../../components/OfflineIndicator';
+import SignInHeroImage from '../SignInHeroImage';
+import * as StyleUtils from '../../../styles/StyleUtils';
+import variables from '../../../styles/variables';
const propTypes = {
/** The children to show inside the layout */
@@ -21,9 +22,16 @@ const propTypes = {
* on form type (set password, sign in, etc.) */
welcomeText: PropTypes.string.isRequired,
+ /** Welcome header to show in the header of the form, changes depending
+ * on form type (set password, sign in, etc.) and small vs large screens */
+ welcomeHeader: PropTypes.string.isRequired,
+
/** Whether to show welcome text on a particular page */
shouldShowWelcomeText: PropTypes.bool.isRequired,
+ /** Whether to show welcome header on a particular page */
+ shouldShowWelcomeHeader: PropTypes.bool.isRequired,
+
...withLocalizePropTypes,
...windowDimensionsPropTypes,
};
@@ -34,41 +42,45 @@ const SignInPageContent = props => (
keyboardShouldPersistTaps="handled"
style={[!props.isSmallScreenWidth && styles.signInPageLeftContainerWide, styles.flex1]}
>
-
+
{/* This empty view creates margin on the top of the sign in form which will shrink and grow depending on if the keyboard is open or not */}
-
+
-
-
+
+
- {props.shouldShowWelcomeText && (
-
- {props.welcomeText}
-
+ {(props.shouldShowWelcomeHeader && props.welcomeHeader) ? (
+
+ {props.welcomeHeader}
+
+ ) : null}
+ {(props.shouldShowWelcomeText && props.welcomeText) ? (
+
+ {props.welcomeText}
+
+ ) : null}
- )}
{props.children}
+
+
+
+ {props.isSmallScreenWidth ? (
+
+
+
+ ) : null}
-
-
-
);
diff --git a/src/pages/signin/SignInPageLayout/index.js b/src/pages/signin/SignInPageLayout/index.js
index 7ce7a0d94ef9..f3e1a926639c 100644
--- a/src/pages/signin/SignInPageLayout/index.js
+++ b/src/pages/signin/SignInPageLayout/index.js
@@ -1,4 +1,4 @@
-import React from 'react';
+import React, {useRef} from 'react';
import {View, ScrollView} from 'react-native';
import {withSafeAreaInsets} from 'react-native-safe-area-context';
import PropTypes from 'prop-types';
@@ -7,9 +7,14 @@ import SignInPageContent from './SignInPageContent';
import Footer from './Footer';
import withWindowDimensions, {windowDimensionsPropTypes} from '../../../components/withWindowDimensions';
import styles from '../../../styles/styles';
-import SignInPageGraphics from './SignInPageGraphics';
+import SignInPageHero from '../SignInPageHero';
import * as StyleUtils from '../../../styles/StyleUtils';
import scrollViewContentContainerStyles from './signInPageStyles';
+import themeColors from '../../../styles/themes/default';
+import SignInHeroBackgroundImage from '../../../../assets/images/home-background--desktop.svg';
+import SignInHeroBackgroundImageMobile from '../../../../assets/images/home-background--mobile.svg';
+import SignInGradient from '../../../../assets/images/home-fade-gradient.svg';
+import variables from '../../../styles/variables';
const propTypes = {
/** The children to show inside the layout */
@@ -19,13 +24,21 @@ const propTypes = {
* on form type (set password, sign in, etc.) */
welcomeText: PropTypes.string.isRequired,
+ /** Welcome header to show in the header of the form, changes depending
+ * on form type (set password, sign in, etc.) and small vs large screens */
+ welcomeHeader: PropTypes.string.isRequired,
+
/** Whether to show welcome text on a particular page */
shouldShowWelcomeText: PropTypes.bool.isRequired,
+ /** Whether to show welcome header on a particular page */
+ shouldShowWelcomeHeader: PropTypes.bool.isRequired,
+
...windowDimensionsPropTypes,
};
const SignInPageLayout = (props) => {
+ const scrollViewRef = useRef(null);
let containerStyles = [styles.flex1, styles.signInPageInner];
let contentContainerStyles = [styles.flex1, styles.flexRow];
@@ -43,34 +56,65 @@ const SignInPageLayout = (props) => {
? (
{props.children}
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
) : (
-
+
+
{props.children}
-
+
)}
diff --git a/src/pages/signin/ValidateCodeForm/BaseValidateCodeForm.js b/src/pages/signin/ValidateCodeForm/BaseValidateCodeForm.js
index 06443c696cc0..04f6c6f6c9d1 100755
--- a/src/pages/signin/ValidateCodeForm/BaseValidateCodeForm.js
+++ b/src/pages/signin/ValidateCodeForm/BaseValidateCodeForm.js
@@ -189,6 +189,7 @@ class BaseValidateCodeForm extends React.Component {
}
render() {
+ const hasError = Boolean(this.props.account) && !_.isEmpty(this.props.account.errors);
return (
<>
{/* At this point, if we know the account requires 2FA we already successfully authenticated */}
@@ -206,6 +207,7 @@ class BaseValidateCodeForm extends React.Component {
blurOnSubmit={false}
maxLength={CONST.TFA_CODE_LENGTH}
errorText={this.state.formError.twoFactorAuthCode ? this.props.translate(this.state.formError.twoFactorAuthCode) : ''}
+ hasError={hasError}
/>
) : (
@@ -223,12 +225,13 @@ class BaseValidateCodeForm extends React.Component {
blurOnSubmit={false}
keyboardType={CONST.KEYBOARD_TYPE.NUMBER_PAD}
errorText={this.state.formError.validateCode ? this.props.translate(this.state.formError.validateCode) : ''}
+ hasError={hasError}
autoFocus
/>
{this.state.linkSent ? (
- {this.props.account.message}
+ {this.props.account.message ? this.props.translate(this.props.account.message) : ''}
) : (
)}
- {Boolean(this.props.account) && !_.isEmpty(this.props.account.errors) && (
+ {hasError && (
)}
diff --git a/src/pages/workspace/WorkspaceInitialPage.js b/src/pages/workspace/WorkspaceInitialPage.js
index ada7a6a4cf8e..061e37f748cf 100644
--- a/src/pages/workspace/WorkspaceInitialPage.js
+++ b/src/pages/workspace/WorkspaceInitialPage.js
@@ -26,6 +26,7 @@ import CONST from '../../CONST';
import * as ReimbursementAccount from '../../libs/actions/ReimbursementAccount';
import ONYXKEYS from '../../ONYXKEYS';
import OfflineWithFeedback from '../../components/OfflineWithFeedback';
+import * as ReimbursementAccountProps from '../ReimbursementAccount/reimbursementAccountPropTypes';
import * as ReportUtils from '../../libs/ReportUtils';
const propTypes = {
@@ -35,11 +36,14 @@ const propTypes = {
/** All reports shared with the user (coming from Onyx) */
reports: PropTypes.objectOf(reportPropTypes),
+ /** Bank account attached to free plan */
+ reimbursementAccount: ReimbursementAccountProps.reimbursementAccountPropTypes,
};
const defaultProps = {
reports: {},
...policyDefaultProps,
+ reimbursementAccount: {},
};
/**
@@ -120,6 +124,7 @@ const WorkspaceInitialPage = (props) => {
translationKey: 'workspace.common.bankAccount',
icon: Expensicons.Bank,
action: () => ReimbursementAccount.navigateToBankAccountRoute(policy.id),
+ brickRoadIndicator: !_.isEmpty(props.reimbursementAccount.errors) ? CONST.BRICK_ROAD_INDICATOR_STATUS.ERROR : '',
},
];
@@ -250,5 +255,8 @@ export default compose(
reports: {
key: ONYXKEYS.COLLECTION.REPORT,
},
+ reimbursementAccount: {
+ key: ONYXKEYS.REIMBURSEMENT_ACCOUNT,
+ },
}),
)(WorkspaceInitialPage);
diff --git a/src/pages/workspace/WorkspaceInvitePage.js b/src/pages/workspace/WorkspaceInvitePage.js
index e1fbdbeda817..135f4a09704a 100644
--- a/src/pages/workspace/WorkspaceInvitePage.js
+++ b/src/pages/workspace/WorkspaceInvitePage.js
@@ -106,8 +106,8 @@ class WorkspaceInvitePage extends React.Component {
componentDidUpdate(prevProps) {
if (
- prevProps.preferredLocale !== this.props.preferredLocale
- && this.state.welcomeNote === Localize.translate(prevProps.preferredLocale, 'workspace.invite.welcomeNote', {workspaceName: this.props.policy.name})
+ (prevProps.preferredLocale !== this.props.preferredLocale || prevProps.policy.name !== this.props.policy.name)
+ && this.state.welcomeNote === Localize.translate(prevProps.preferredLocale, 'workspace.invite.welcomeNote', {workspaceName: prevProps.policy.name})
) {
this.setState({welcomeNote: this.getWelcomeNote()});
}
@@ -300,7 +300,7 @@ class WorkspaceInvitePage extends React.Component {
const policyName = lodashGet(this.props.policy, 'name');
return (
-
+
{({didScreenTransitionEnd}) => (
) : (
diff --git a/src/pages/workspace/WorkspaceMembersPage.js b/src/pages/workspace/WorkspaceMembersPage.js
index a8eaafffdf2e..132b848af0e5 100644
--- a/src/pages/workspace/WorkspaceMembersPage.js
+++ b/src/pages/workspace/WorkspaceMembersPage.js
@@ -6,7 +6,6 @@ import {
} from 'react-native';
import PropTypes from 'prop-types';
import {withOnyx} from 'react-native-onyx';
-import Str from 'expensify-common/lib/str';
import styles from '../../styles/styles';
import ONYXKEYS from '../../ONYXKEYS';
import HeaderWithCloseButton from '../../components/HeaderWithCloseButton';
@@ -281,7 +280,6 @@ class WorkspaceMembersPage extends React.Component {
activeOpacity={0.7}
>
this.toggleUser(item.login, item.pendingAction)}
/>
@@ -290,8 +288,8 @@ class WorkspaceMembersPage extends React.Component {
onSelectRow={() => this.toggleUser(item.login, item.pendingAction)}
boldStyle
option={{
- text: Str.removeSMSDomain(item.displayName),
- alternateText: Str.removeSMSDomain(item.login),
+ text: this.props.formatPhoneNumber(item.displayName),
+ alternateText: this.props.formatPhoneNumber(item.login),
participantsList: [item],
icons: [{
source: ReportUtils.getAvatar(item.avatar, item.login),
@@ -303,12 +301,10 @@ class WorkspaceMembersPage extends React.Component {
/>
{(this.props.session.email === item.login || item.role === 'admin') && (
-
-
-
- {this.props.translate('common.admin')}
-
-
+
+
+ {this.props.translate('common.admin')}
+
)}
@@ -412,20 +408,18 @@ class WorkspaceMembersPage extends React.Component {
{data.length > 0 ? (
-
- _.contains(this.state.selectedEmployees, memberEmail))}
- onPress={() => this.toggleAllUsers(removableMembers)}
- />
-
-
+ _.contains(this.state.selectedEmployees, memberEmail))}
+ onPress={() => this.toggleAllUsers(removableMembers)}
+ />
+
{this.props.translate('workspace.people.selectAll')}
@@ -444,7 +438,7 @@ class WorkspaceMembersPage extends React.Component {
) : (
- {this.props.translate('common.noResultsFound')}
+ {this.props.translate('workspace.common.memberNotFound')}
)}
diff --git a/src/pages/workspace/WorkspaceNewRoomPage.js b/src/pages/workspace/WorkspaceNewRoomPage.js
index 61ebf4fc23b3..546a911b1da5 100644
--- a/src/pages/workspace/WorkspaceNewRoomPage.js
+++ b/src/pages/workspace/WorkspaceNewRoomPage.js
@@ -138,7 +138,10 @@ class WorkspaceNewRoomPage extends React.Component {
}));
return (
-
+
Navigation.dismissModal()}
diff --git a/src/pages/workspace/WorkspacePageWithSections.js b/src/pages/workspace/WorkspacePageWithSections.js
index eb5d17c0a3c2..85582d23b627 100644
--- a/src/pages/workspace/WorkspacePageWithSections.js
+++ b/src/pages/workspace/WorkspacePageWithSections.js
@@ -106,7 +106,10 @@ class WorkspacePageWithSections extends React.Component {
const policyName = lodashGet(this.props.policy, 'name');
return (
-
+
Navigation.navigate(ROUTES.SETTINGS_WORKSPACES)}
diff --git a/src/pages/workspace/WorkspaceResetBankAccountModal.js b/src/pages/workspace/WorkspaceResetBankAccountModal.js
index 91059b737494..835bb43ee9cd 100644
--- a/src/pages/workspace/WorkspaceResetBankAccountModal.js
+++ b/src/pages/workspace/WorkspaceResetBankAccountModal.js
@@ -1,5 +1,4 @@
import lodashGet from 'lodash/get';
-import PropTypes from 'prop-types';
import React from 'react';
import ConfirmModal from '../../components/ConfirmModal';
import * as BankAccounts from '../../libs/actions/BankAccounts';
@@ -13,16 +12,9 @@ const propTypes = {
/** Reimbursement account data */
reimbursementAccount: ReimbursementAccountProps.reimbursementAccountPropTypes.isRequired,
- /** Callback when the user confirms resetting the workspace bank account */
- onConfirm: PropTypes.func,
-
...withLocalizePropTypes,
};
-const defaultProps = {
- onConfirm: () => {},
-};
-
const WorkspaceResetBankAccountModal = (props) => {
const achData = lodashGet(props.reimbursementAccount, 'achData') || {};
const isInOpenState = achData.state === BankAccount.STATE.OPEN;
@@ -45,10 +37,7 @@ const WorkspaceResetBankAccountModal = (props) => {
) : props.translate('workspace.bankAccount.clearProgress')}
danger
onCancel={BankAccounts.cancelResetFreePlanBankAccount}
- onConfirm={() => {
- BankAccounts.resetFreePlanBankAccount(bankAccountID);
- props.onConfirm();
- }}
+ onConfirm={() => BankAccounts.resetFreePlanBankAccount(bankAccountID)}
shouldShowCancelButton
isVisible
/>
@@ -57,6 +46,5 @@ const WorkspaceResetBankAccountModal = (props) => {
WorkspaceResetBankAccountModal.displayName = 'WorkspaceResetBankAccountModal';
WorkspaceResetBankAccountModal.propTypes = propTypes;
-WorkspaceResetBankAccountModal.defaultProps = defaultProps;
export default withLocalize(WorkspaceResetBankAccountModal);
diff --git a/src/pages/workspace/WorkspacesListPage.js b/src/pages/workspace/WorkspacesListPage.js
index 9f9cac2940cf..f1dbbbb7f1d3 100755
--- a/src/pages/workspace/WorkspacesListPage.js
+++ b/src/pages/workspace/WorkspacesListPage.js
@@ -24,6 +24,7 @@ import Button from '../../components/Button';
import FixedFooter from '../../components/FixedFooter';
import BlockingView from '../../components/BlockingViews/BlockingView';
import {withNetwork} from '../../components/OnyxProvider';
+import * as ReimbursementAccountProps from '../ReimbursementAccount/reimbursementAccountPropTypes';
import * as ReportUtils from '../../libs/ReportUtils';
const propTypes = {
@@ -47,6 +48,9 @@ const propTypes = {
pendingAction: PropTypes.oneOf(_.values(CONST.RED_BRICK_ROAD_PENDING_ACTION)),
})),
+ /** Bank account attached to free plan */
+ reimbursementAccount: ReimbursementAccountProps.reimbursementAccountPropTypes,
+
/** List of policy members */
policyMembers: PropTypes.objectOf(policyMemberPropType),
@@ -65,6 +69,7 @@ const propTypes = {
const defaultProps = {
policies: {},
policyMembers: {},
+ reimbursementAccount: {},
userWallet: {
currentBalance: 0,
},
@@ -116,6 +121,7 @@ class WorkspacesListPage extends Component {
* @returns {Array} the menu item list
*/
getWorkspaces() {
+ const reimbursementAccountBrickRoadIndicator = !_.isEmpty(this.props.reimbursementAccount.errors) ? CONST.BRICK_ROAD_INDICATOR_STATUS.ERROR : '';
return _.chain(this.props.policies)
.filter(policy => PolicyUtils.shouldShowPolicy(policy, this.props.network.isOffline))
.map(policy => ({
@@ -125,13 +131,13 @@ class WorkspacesListPage extends Component {
action: () => Navigation.navigate(ROUTES.getWorkspaceInitialRoute(policy.id)),
iconFill: themeColors.textLight,
fallbackIcon: Expensicons.FallbackWorkspaceAvatar,
- brickRoadIndicator: PolicyUtils.getPolicyBrickRoadIndicatorStatus(policy, this.props.policyMembers),
+ brickRoadIndicator: reimbursementAccountBrickRoadIndicator || PolicyUtils.getPolicyBrickRoadIndicatorStatus(policy, this.props.policyMembers),
pendingAction: policy.pendingAction,
errors: policy.errors,
dismissError: () => dismissWorkspaceError(policy.id, policy.pendingAction),
disabled: policy.pendingAction === CONST.RED_BRICK_ROAD_PENDING_ACTION.DELETE,
}))
- .sortBy(policy => policy.title)
+ .sortBy(policy => policy.title.toLowerCase())
.value();
}
@@ -217,6 +223,9 @@ export default compose(
policyMembers: {
key: ONYXKEYS.COLLECTION.POLICY_MEMBER_LIST,
},
+ reimbursementAccount: {
+ key: ONYXKEYS.REIMBURSEMENT_ACCOUNT,
+ },
userWallet: {
key: ONYXKEYS.USER_WALLET,
},
diff --git a/src/pages/workspace/bills/WorkspaceBillsFirstSection.js b/src/pages/workspace/bills/WorkspaceBillsFirstSection.js
index f97b6ba946ae..15397ea96776 100644
--- a/src/pages/workspace/bills/WorkspaceBillsFirstSection.js
+++ b/src/pages/workspace/bills/WorkspaceBillsFirstSection.js
@@ -42,6 +42,7 @@ const defaultProps = {
const WorkspaceBillsFirstSection = (props) => {
const emailDomain = Str.extractEmailDomain(props.session.email);
+ const manageYourBillsUrl = `reports?policyID=${props.policyID}&from=all&type=bill&showStates=Open,Processing,Approved,Reimbursed,Archived&isAdvancedFilterMode=true`;
return (
{
{
title: props.translate('workspace.bills.viewAllBills'),
onPress: () => (
- Link.openOldDotLink(`reports?policyID=${props.policyID}&from=all&type=bill&showStates=Open,Processing,Approved,Reimbursed,Archived&isAdvancedFilterMode=true`)
+ Link.openOldDotLink(manageYourBillsUrl)
),
icon: Expensicons.Bill,
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(manageYourBillsUrl),
},
]}
containerStyles={[styles.cardSection]}
diff --git a/src/pages/workspace/bills/WorkspaceBillsVBAView.js b/src/pages/workspace/bills/WorkspaceBillsVBAView.js
index 3731a9cc7b8f..dcb625777c7d 100644
--- a/src/pages/workspace/bills/WorkspaceBillsVBAView.js
+++ b/src/pages/workspace/bills/WorkspaceBillsVBAView.js
@@ -17,30 +17,35 @@ const propTypes = {
...withLocalizePropTypes,
};
-const WorkspaceBillsVBAView = props => (
- <>
-
+const WorkspaceBillsVBAView = (props) => {
+ const reportsUrl = `reports?policyID=${props.policyID}&from=all&type=bill&showStates=Processing,Approved&isAdvancedFilterMode=true`;
- Link.openOldDotLink(`reports?policyID=${props.policyID}&from=all&type=bill&showStates=Processing,Approved&isAdvancedFilterMode=true`),
- icon: Expensicons.Bill,
- shouldShowRightIcon: true,
- iconRight: Expensicons.NewWindow,
- wrapperStyle: [styles.cardMenuItem],
- },
- ]}
- >
-
- {props.translate('workspace.bills.VBACopy')}
-
-
- >
-);
+ return (
+ <>
+
+
+ Link.openOldDotLink(reportsUrl),
+ icon: Expensicons.Bill,
+ shouldShowRightIcon: true,
+ iconRight: Expensicons.NewWindow,
+ wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(reportsUrl),
+ },
+ ]}
+ >
+
+ {props.translate('workspace.bills.VBACopy')}
+
+
+ >
+ );
+};
WorkspaceBillsVBAView.propTypes = propTypes;
WorkspaceBillsVBAView.displayName = 'WorkspaceBillsVBAView';
diff --git a/src/pages/workspace/card/WorkspaceCardVBAWithECardView.js b/src/pages/workspace/card/WorkspaceCardVBAWithECardView.js
index a9a551f23131..4c1213800bac 100644
--- a/src/pages/workspace/card/WorkspaceCardVBAWithECardView.js
+++ b/src/pages/workspace/card/WorkspaceCardVBAWithECardView.js
@@ -13,31 +13,40 @@ const propTypes = {
...withLocalizePropTypes,
};
+const MENU_LINKS = {
+ ISSUE_AND_MANAGE_CARDS: 'domain_companycards',
+ RECONCILE_CARDS: encodeURI('domain_companycards?param={"section":"cardReconciliation"}'),
+ SETTLEMENT_FREQUENCY: encodeURI('domain_companycards?param={"section":"configureSettings"}'),
+};
+
const WorkspaceCardVBAWithECardView = (props) => {
const menuItems = [
{
title: props.translate('workspace.common.issueAndManageCards'),
- onPress: () => Link.openOldDotLink('domain_companycards'),
+ onPress: () => Link.openOldDotLink(MENU_LINKS.ISSUE_AND_MANAGE_CARDS),
icon: Expensicons.ExpensifyCard,
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(MENU_LINKS.ISSUE_AND_MANAGE_CARDS),
},
{
title: props.translate('workspace.common.reconcileCards'),
- onPress: () => Link.openOldDotLink(encodeURI('domain_companycards?param={"section":"cardReconciliation"}')),
+ onPress: () => Link.openOldDotLink(MENU_LINKS.RECONCILE_CARDS),
icon: Expensicons.ReceiptSearch,
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(MENU_LINKS.RECONCILE_CARDS),
},
{
title: props.translate('workspace.common.settlementFrequency'),
- onPress: () => Link.openOldDotLink(encodeURI('domain_companycards?param={"section":"configureSettings"}')),
+ onPress: () => Link.openOldDotLink(MENU_LINKS.SETTLEMENT_FREQUENCY),
icon: Expensicons.Gear,
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(MENU_LINKS.SETTLEMENT_FREQUENCY),
},
];
diff --git a/src/pages/workspace/invoices/WorkspaceInvoicesFirstSection.js b/src/pages/workspace/invoices/WorkspaceInvoicesFirstSection.js
index 4d027542b155..9f3c84d28ff1 100644
--- a/src/pages/workspace/invoices/WorkspaceInvoicesFirstSection.js
+++ b/src/pages/workspace/invoices/WorkspaceInvoicesFirstSection.js
@@ -16,39 +16,46 @@ const propTypes = {
...withLocalizePropTypes,
};
-const WorkspaceInvoicesFirstSection = props => (
- Link.openOldDotLink(encodeURI('reports?param={"createInvoice":true}')),
- icon: Expensicons.Send,
- shouldShowRightIcon: true,
- iconRight: Expensicons.NewWindow,
- wrapperStyle: [styles.cardMenuItem],
- },
- {
- title: props.translate('workspace.invoices.viewAllInvoices'),
- onPress: () => (
- Link.openOldDotLink(`reports?policyID=${props.policyID}&from=all&type=invoice&showStates=Open,Processing,Approved,Reimbursed,Archived&isAdvancedFilterMode=true`)
- ),
- icon: Expensicons.Invoice,
- shouldShowRightIcon: true,
- iconRight: Expensicons.NewWindow,
- wrapperStyle: [styles.cardMenuItem],
- },
- ]}
- containerStyles={[styles.cardSection]}
- >
-
-
- {props.translate('workspace.invoices.invoiceFirstSectionCopy')}
-
-
-
-);
+const WorkspaceInvoicesFirstSection = (props) => {
+ const sendInvoiceUrl = encodeURI('reports?param={"createInvoice":true}');
+ const viewAllInvoicesUrl = `reports?policyID=${props.policyID}&from=all&type=invoice&showStates=Open,Processing,Approved,Reimbursed,Archived&isAdvancedFilterMode=true`;
+
+ return (
+ Link.openOldDotLink(sendInvoiceUrl),
+ icon: Expensicons.Send,
+ shouldShowRightIcon: true,
+ iconRight: Expensicons.NewWindow,
+ wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(sendInvoiceUrl),
+ },
+ {
+ title: props.translate('workspace.invoices.viewAllInvoices'),
+ onPress: () => (
+ Link.openOldDotLink(viewAllInvoicesUrl)
+ ),
+ icon: Expensicons.Invoice,
+ shouldShowRightIcon: true,
+ iconRight: Expensicons.NewWindow,
+ wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(viewAllInvoicesUrl),
+ },
+ ]}
+ containerStyles={[styles.cardSection]}
+ >
+
+
+ {props.translate('workspace.invoices.invoiceFirstSectionCopy')}
+
+
+
+ );
+};
WorkspaceInvoicesFirstSection.propTypes = propTypes;
WorkspaceInvoicesFirstSection.displayName = 'WorkspaceInvoicesFirstSection';
diff --git a/src/pages/workspace/invoices/WorkspaceInvoicesVBAView.js b/src/pages/workspace/invoices/WorkspaceInvoicesVBAView.js
index c88a61eef18b..c4f50bb9d49d 100644
--- a/src/pages/workspace/invoices/WorkspaceInvoicesVBAView.js
+++ b/src/pages/workspace/invoices/WorkspaceInvoicesVBAView.js
@@ -17,30 +17,35 @@ const propTypes = {
...withLocalizePropTypes,
};
-const WorkspaceInvoicesVBAView = props => (
- <>
-
+const WorkspaceInvoicesVBAView = (props) => {
+ const viewUnpaidInvoicesUrl = `reports?policyID=${props.policyID}&from=all&type=invoice&showStates=Processing&isAdvancedFilterMode=true`;
- Link.openOldDotLink(`reports?policyID=${props.policyID}&from=all&type=invoice&showStates=Processing&isAdvancedFilterMode=true`),
- icon: Expensicons.Hourglass,
- shouldShowRightIcon: true,
- iconRight: Expensicons.NewWindow,
- wrapperStyle: [styles.cardMenuItem],
- },
- ]}
- >
-
- {props.translate('workspace.invoices.unlockVBACopy')}
-
-
- >
-);
+ return (
+ <>
+
+
+ Link.openOldDotLink(viewUnpaidInvoicesUrl),
+ icon: Expensicons.Hourglass,
+ shouldShowRightIcon: true,
+ iconRight: Expensicons.NewWindow,
+ wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(viewUnpaidInvoicesUrl),
+ },
+ ]}
+ >
+
+ {props.translate('workspace.invoices.unlockVBACopy')}
+
+
+ >
+ );
+};
WorkspaceInvoicesVBAView.propTypes = propTypes;
WorkspaceInvoicesVBAView.displayName = 'WorkspaceInvoicesVBAView';
diff --git a/src/pages/workspace/reimburse/WorkspaceReimburseSection.js b/src/pages/workspace/reimburse/WorkspaceReimburseSection.js
index 20f443bf5671..3928816fb686 100644
--- a/src/pages/workspace/reimburse/WorkspaceReimburseSection.js
+++ b/src/pages/workspace/reimburse/WorkspaceReimburseSection.js
@@ -57,6 +57,7 @@ class WorkspaceReimburseSection extends React.Component {
render() {
const achState = lodashGet(this.props.reimbursementAccount, 'achData.state', '');
const hasVBA = achState === BankAccount.STATE.OPEN;
+ const reimburseReceiptsUrl = `reports?policyID=${this.props.policy.id}&from=all&type=expense&showStates=Archived&isAdvancedFilterMode=true`;
if (this.props.network.isOffline) {
return (
@@ -93,11 +94,12 @@ class WorkspaceReimburseSection extends React.Component {
menuItems={[
{
title: this.props.translate('workspace.reimburse.reimburseReceipts'),
- onPress: () => Link.openOldDotLink(`reports?policyID=${this.props.policy.id}&from=all&type=expense&showStates=Archived&isAdvancedFilterMode=true`),
+ onPress: () => Link.openOldDotLink(reimburseReceiptsUrl),
icon: Expensicons.Bank,
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(reimburseReceiptsUrl),
},
]}
>
diff --git a/src/pages/workspace/reimburse/WorkspaceReimburseView.js b/src/pages/workspace/reimburse/WorkspaceReimburseView.js
index d103121b9e2a..ccb40d053e7f 100644
--- a/src/pages/workspace/reimburse/WorkspaceReimburseView.js
+++ b/src/pages/workspace/reimburse/WorkspaceReimburseView.js
@@ -214,6 +214,8 @@ class WorkspaceReimburseView extends React.Component {
}
render() {
+ const viewAllReceiptsUrl = `expenses?policyIDList=${this.props.policy.id}&billableReimbursable=reimbursable&submitterEmail=%2B%2B`;
+
return (
<>
Link.openOldDotLink(`expenses?policyIDList=${this.props.policy.id}&billableReimbursable=reimbursable&submitterEmail=%2B%2B`),
+ onPress: () => Link.openOldDotLink(viewAllReceiptsUrl),
icon: Expensicons.Receipt,
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL(viewAllReceiptsUrl),
},
]}
>
diff --git a/src/pages/workspace/travel/WorkspaceTravelVBAView.js b/src/pages/workspace/travel/WorkspaceTravelVBAView.js
index 9c79b55c90b4..79b256136028 100644
--- a/src/pages/workspace/travel/WorkspaceTravelVBAView.js
+++ b/src/pages/workspace/travel/WorkspaceTravelVBAView.js
@@ -8,6 +8,7 @@ import * as Illustrations from '../../../components/Icon/Illustrations';
import Section from '../../../components/Section';
import * as Link from '../../../libs/actions/Link';
import * as Report from '../../../libs/actions/Report';
+import CONST from '../../../CONST';
const propTypes = {
...withLocalizePropTypes,
@@ -25,6 +26,7 @@ const WorkspaceTravelVBAView = props => (
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
wrapperStyle: [styles.cardMenuItem],
+ link: () => Link.buildOldDotURL('domain_companycards'),
},
{
title: props.translate('workspace.travel.bookTravelWithConcierge'),
@@ -37,11 +39,12 @@ const WorkspaceTravelVBAView = props => (
},
{
title: props.translate('requestorStep.learnMore'),
- onPress: () => Link.openExternalLink('https://community.expensify.com/discussion/7066/introducing-concierge-travel'),
+ onPress: () => Link.openExternalLink(CONST.CONCIERGE_TRAVEL_URL),
icon: Expensicons.Info,
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
wrapperStyle: [styles.cardMenuItem],
+ link: CONST.CONCIERGE_TRAVEL_URL,
},
]}
>
diff --git a/src/stories/MenuItem.stories.js b/src/stories/MenuItem.stories.js
index c32790316805..d5e0b5727f2c 100644
--- a/src/stories/MenuItem.stories.js
+++ b/src/stories/MenuItem.stories.js
@@ -20,16 +20,111 @@ const Template = args => ;
// See: https://storybook.js.org/docs/react/writing-stories/introduction#using-args
const Default = Template.bind({});
Default.args = {
+ title: 'Alberta Bobbeth Charleson',
+ icon: Chase,
+ iconHeight: variables.iconSizeExtraLarge,
+ iconWidth: variables.iconSizeExtraLarge,
+};
+
+const Description = Template.bind({});
+Description.args = {
+ title: 'Alberta Bobbeth Charleson',
+ description: 'Account ending in 1111',
+ icon: Chase,
+ iconHeight: variables.iconSizeExtraLarge,
+ iconWidth: variables.iconSizeExtraLarge,
+};
+
+const RightIcon = Template.bind({});
+RightIcon.args = {
+ title: 'Alberta Bobbeth Charleson',
+ icon: Chase,
+ iconHeight: variables.iconSizeExtraLarge,
+ iconWidth: variables.iconSizeExtraLarge,
+ shouldShowRightIcon: true,
+};
+
+const RightIconAndDescription = Template.bind({});
+RightIconAndDescription.args = {
+ title: 'Alberta Bobbeth Charleson',
+ description: 'Account ending in 1111',
+ icon: Chase,
+ iconHeight: variables.iconSizeExtraLarge,
+ iconWidth: variables.iconSizeExtraLarge,
+ shouldShowRightIcon: true,
+};
+
+const Selected = Template.bind({});
+Selected.args = {
title: 'Alberta Bobbeth Charleson',
description: 'Account ending in 1111',
+ icon: Chase,
+ iconHeight: variables.iconSizeExtraLarge,
+ iconWidth: variables.iconSizeExtraLarge,
shouldShowSelectedState: true,
isSelected: true,
+};
+
+const BadgeText = Template.bind({});
+BadgeText.args = {
+ title: 'Alberta Bobbeth Charleson',
+ icon: Chase,
+ iconHeight: variables.iconSizeExtraLarge,
+ iconWidth: variables.iconSizeExtraLarge,
+ shouldShowRightIcon: true,
+ badgeText: '$0.00',
+};
+
+const Focused = Template.bind({});
+Focused.args = {
+ title: 'Alberta Bobbeth Charleson',
+ icon: Chase,
+ iconHeight: variables.iconSizeExtraLarge,
+ iconWidth: variables.iconSizeExtraLarge,
+ shouldShowRightIcon: true,
+ focused: true,
+};
+
+const Disabled = Template.bind({});
+Disabled.args = {
+ title: 'Alberta Bobbeth Charleson',
+ icon: Chase,
+ iconHeight: variables.iconSizeExtraLarge,
+ iconWidth: variables.iconSizeExtraLarge,
+ shouldShowRightIcon: true,
+ disabled: true,
+};
+
+const BrickRoadIndicatorSuccess = Template.bind({});
+BrickRoadIndicatorSuccess.args = {
+ title: 'Alberta Bobbeth Charleson',
+ icon: Chase,
+ iconHeight: variables.iconSizeExtraLarge,
+ iconWidth: variables.iconSizeExtraLarge,
+ shouldShowRightIcon: true,
+ brickRoadIndicator: 'success',
+};
+
+const BrickRoadIndicatorFailure = Template.bind({});
+BrickRoadIndicatorFailure.args = {
+ title: 'Alberta Bobbeth Charleson',
icon: Chase,
iconHeight: variables.iconSizeExtraLarge,
iconWidth: variables.iconSizeExtraLarge,
+ shouldShowRightIcon: true,
+ brickRoadIndicator: 'error',
};
export default story;
export {
Default,
+ Description,
+ RightIcon,
+ RightIconAndDescription,
+ Selected,
+ BadgeText,
+ Focused,
+ Disabled,
+ BrickRoadIndicatorSuccess,
+ BrickRoadIndicatorFailure,
};
diff --git a/src/styles/StyleUtils.js b/src/styles/StyleUtils.js
index ffd454539a26..67e1a9335f90 100644
--- a/src/styles/StyleUtils.js
+++ b/src/styles/StyleUtils.js
@@ -181,12 +181,10 @@ function getNavigationDrawerType(isSmallScreenWidth) {
*/
function getZoomCursorStyle(isZoomed, isDragging) {
if (!isZoomed) {
- return {cursor: 'zoom-in'};
+ return styles.cursorZoomIn;
}
- return {
- cursor: isDragging ? 'grabbing' : 'zoom-out',
- };
+ return isDragging ? styles.cursorGrabbing : styles.cursorZoomOut;
}
/**
@@ -196,14 +194,13 @@ function getZoomCursorStyle(isZoomed, isDragging) {
* @param {Number} zoomScale
* @param {Number} containerHeight
* @param {Number} containerWidth
- * @return {Object}
+ * @param {Boolean} isLoading
+ * @returns {Object | undefined}
*/
-function getZoomSizingStyle(isZoomed, imgWidth, imgHeight, zoomScale, containerHeight, containerWidth) {
- if (imgWidth === 0 || imgHeight === 0) {
- return {
- height: isZoomed ? '250%' : '100%',
- width: isZoomed ? '250%' : '100%',
- };
+function getZoomSizingStyle(isZoomed, imgWidth, imgHeight, zoomScale, containerHeight, containerWidth, isLoading) {
+ // Hide image until finished loading to prevent showing preview with wrong dimensions
+ if (isLoading || imgWidth === 0 || imgHeight === 0) {
+ return undefined;
}
const top = `${Math.max((containerHeight - imgHeight) / 2, 0)}px`;
const left = `${Math.max((containerWidth - imgWidth) / 2, 0)}px`;
@@ -286,6 +283,26 @@ function getBackgroundColorStyle(backgroundColor) {
};
}
+/**
+ * Returns the width style for the wordmark logo on the sign in page
+ *
+ * @param {String} environment
+ * @param {Boolean} isSmallScreenWidth
+ * @returns {Object}
+ */
+function getSignInWordmarkWidthStyle(environment, isSmallScreenWidth) {
+ if (environment === CONST.ENVIRONMENT.DEV) {
+ return isSmallScreenWidth ? {width: variables.signInLogoWidthPill} : {width: variables.signInLogoWidthLargeScreenPill};
+ }
+ if (environment === CONST.ENVIRONMENT.STAGING) {
+ return isSmallScreenWidth ? {width: variables.signInLogoWidthPill} : {width: variables.signInLogoWidthLargeScreenPill};
+ }
+ if (environment === CONST.ENVIRONMENT.PRODUCTION) {
+ return isSmallScreenWidth ? {width: variables.signInLogoWidth} : {width: variables.signInLogoWidthLargeScreen};
+ }
+ return isSmallScreenWidth ? {width: variables.signInLogoWidthPill} : {width: variables.signInLogoWidthLargeScreenPill};
+}
+
/**
* Converts a color in hexadecimal notation into RGB notation.
*
@@ -323,10 +340,14 @@ function getBackgroundColorWithOpacityStyle(backgroundColor, opacity) {
* @param {Boolean} success
* @param {Boolean} error
* @param {boolean} [isPressed=false]
+ * @param {boolean} [isAdHoc=false]
* @return {Object}
*/
-function getBadgeColorStyle(success, error, isPressed = false) {
+function getBadgeColorStyle(success, error, isPressed = false, isAdHoc = false) {
if (success) {
+ if (isAdHoc) {
+ return isPressed ? styles.badgeAdHocSuccessPressed : styles.badgeAdHocSuccess;
+ }
return isPressed ? styles.badgeSuccessPressed : styles.badgeSuccess;
}
if (error) {
@@ -420,15 +441,19 @@ function getModalPaddingStyles({
modalContainerStyleMarginBottom,
modalContainerStylePaddingTop,
modalContainerStylePaddingBottom,
+ insets,
}) {
+ // use fallback value for safeAreaPaddingBottom to keep padding bottom consistent with padding top.
+ // More info: issue #17376
+ const safeAreaPaddingBottomWithFallback = insets.bottom === 0 ? (modalContainerStylePaddingTop || 0) : safeAreaPaddingBottom;
return {
marginTop: (modalContainerStyleMarginTop || 0) + (shouldAddTopSafeAreaMargin ? safeAreaPaddingTop : 0),
- marginBottom: (modalContainerStyleMarginBottom || 0) + (shouldAddBottomSafeAreaMargin ? safeAreaPaddingBottom : 0),
+ marginBottom: (modalContainerStyleMarginBottom || 0) + (shouldAddBottomSafeAreaMargin ? safeAreaPaddingBottomWithFallback : 0),
paddingTop: shouldAddTopSafeAreaPadding
? (modalContainerStylePaddingTop || 0) + safeAreaPaddingTop
: modalContainerStylePaddingTop || 0,
paddingBottom: shouldAddBottomSafeAreaPadding
- ? (modalContainerStylePaddingBottom || 0) + safeAreaPaddingBottom
+ ? (modalContainerStylePaddingBottom || 0) + safeAreaPaddingBottomWithFallback
: modalContainerStylePaddingBottom || 0,
paddingLeft: safeAreaPaddingLeft || 0,
paddingRight: safeAreaPaddingRight || 0,
@@ -516,7 +541,7 @@ function getReportActionItemStyle(isHovered = false, isLoading = false) {
// Warning: Setting this to a non-transparent color will cause unread indicator to break on Android
: colors.transparent,
opacity: isLoading ? 0.5 : 1,
- cursor: 'default',
+ ...styles.cursorInitial,
};
}
@@ -623,6 +648,17 @@ function parseStyleAsArray(styleParam) {
return _.isArray(styleParam) ? styleParam : [styleParam];
}
+/**
+ * Parse style function and return Styles object
+ * @param {Object|Object[]|Function} style
+ * @param {Object} state
+ * @returns {Object[]}
+ */
+function parseStyleFromFunction(style, state) {
+ const functionAppliedStyle = _.isFunction(style) ? style(state) : style;
+ return parseStyleAsArray(functionAppliedStyle);
+}
+
/**
* Receives any number of object or array style objects and returns them all as an array
* @param {Object|Object[]} allStyles
@@ -691,6 +727,17 @@ function getMinimumHeight(minHeight) {
};
}
+/**
+ * Get maximum width as style
+ * @param {Number} maxWidth
+ * @returns {Object}
+ */
+function getMaximumWidth(maxWidth) {
+ return {
+ maxWidth,
+ };
+}
+
/**
* Return style for opacity animation.
*
@@ -789,6 +836,18 @@ function getReportWelcomeTopMarginStyle(isSmallScreenWidth) {
};
}
+/**
+ * Returns fontSize style
+ *
+ * @param {Number} fontSize
+ * @returns {Object}
+ */
+function getFontSizeStyle(fontSize) {
+ return {
+ fontSize,
+ };
+}
+
/**
* Gets the correct size for the empty state container based on screen dimensions
*
@@ -936,6 +995,25 @@ function getDirectionStyle(direction) {
return {};
}
+/**
+ * @param {Boolean} shouldDisplayBorder
+ * @returns {Object}
+ */
+function getGoogleListViewStyle(shouldDisplayBorder) {
+ if (shouldDisplayBorder) {
+ return {
+ ...styles.borderTopRounded,
+ ...styles.borderBottomRounded,
+ marginTop: 4,
+ paddingVertical: 6,
+ };
+ }
+
+ return {
+ transform: [{scale: 0}],
+ };
+}
+
export {
getAvatarSize,
getAvatarStyle,
@@ -966,12 +1044,14 @@ export {
getPaymentMethodMenuWidth,
getThemeBackgroundColor,
parseStyleAsArray,
+ parseStyleFromFunction,
combineStyles,
getPaddingLeft,
convertToLTR,
hasSafeAreas,
getHeight,
getMinimumHeight,
+ getMaximumWidth,
fade,
getHorizontalStackedAvatarBorderStyle,
getReportWelcomeBackgroundImageStyle,
@@ -986,4 +1066,7 @@ export {
getEmojiReactionBubbleTextStyle,
getEmojiReactionCounterTextStyle,
getDirectionStyle,
+ getFontSizeStyle,
+ getSignInWordmarkWidthStyle,
+ getGoogleListViewStyle,
};
diff --git a/src/styles/colors.js b/src/styles/colors.js
index a4c203194f57..592715e66ab1 100644
--- a/src/styles/colors.js
+++ b/src/styles/colors.js
@@ -59,6 +59,7 @@ export default {
pink200: '#FBCCFF',
pink400: '#F68DFE',
+ pink600: '#CF4CD9',
pink700: '#712A76',
pink800: '#49225B',
diff --git a/src/styles/getModalStyles/getBaseModalStyles.js b/src/styles/getModalStyles/getBaseModalStyles.js
index 36c98880f69a..0475635a35f5 100644
--- a/src/styles/getModalStyles/getBaseModalStyles.js
+++ b/src/styles/getModalStyles/getBaseModalStyles.js
@@ -124,6 +124,37 @@ export default (type, windowDimensions, popoverAnchorPosition = {}, innerContain
shouldAddTopSafeAreaPadding = isSmallScreenWidth;
shouldAddBottomSafeAreaPadding = false;
break;
+ case CONST.MODAL.MODAL_TYPE.CENTERED_SMALL:
+ // A centered modal that takes up the minimum possible screen space on all devices
+ modalStyle = {
+ ...modalStyle,
+ ...{
+ alignItems: 'center',
+ },
+ };
+ modalContainerStyle = {
+ // Shadow Styles
+ shadowColor: themeColors.shadow,
+ shadowOffset: {
+ width: 0,
+ height: 0,
+ },
+ shadowOpacity: 0.1,
+ shadowRadius: 5,
+
+ borderRadius: 12,
+ borderWidth: 0,
+ };
+
+ // Allow this modal to be dismissed with a swipe down or swipe right
+ swipeDirection = ['down', 'right'];
+ animationIn = 'fadeIn';
+ animationOut = 'fadeOut';
+ shouldAddTopSafeAreaMargin = false;
+ shouldAddBottomSafeAreaMargin = false;
+ shouldAddTopSafeAreaPadding = false;
+ shouldAddBottomSafeAreaPadding = false;
+ break;
case CONST.MODAL.MODAL_TYPE.BOTTOM_DOCKED:
modalStyle = {
...modalStyle,
diff --git a/src/styles/getReportActionContextMenuStyles.js b/src/styles/getReportActionContextMenuStyles.js
index 496b0762aca7..c1ed4cbd3021 100644
--- a/src/styles/getReportActionContextMenuStyles.js
+++ b/src/styles/getReportActionContextMenuStyles.js
@@ -25,10 +25,20 @@ const bigWrapperStyle = [
* Generate the wrapper styles for the ReportActionContextMenu.
*
* @param {Boolean} isMini
+ * @param {Boolean} isSmallScreenWidth
* @returns {Array}
*/
-function getReportActionContextMenuStyles(isMini) {
- return isMini ? miniWrapperStyle : bigWrapperStyle;
+function getReportActionContextMenuStyles(isMini, isSmallScreenWidth) {
+ if (isMini) {
+ return miniWrapperStyle;
+ }
+
+ return [
+ ...bigWrapperStyle,
+
+ // Small screens use a bottom-docked modal that already has vertical padding.
+ isSmallScreenWidth ? {} : styles.pv3,
+ ];
}
export default getReportActionContextMenuStyles;
diff --git a/src/styles/getTooltipStyles.js b/src/styles/getTooltipStyles.js
index 62b61cabcd87..6594f2f916a8 100644
--- a/src/styles/getTooltipStyles.js
+++ b/src/styles/getTooltipStyles.js
@@ -122,6 +122,12 @@ export default function getTooltipStyles(
// from displaying too near to the edge of the screen.
const horizontalShift = computeHorizontalShift(windowWidth, xOffset, componentWidth, tooltipWidth, manualShiftHorizontal);
+ // Determine if we need to shift the pointer horizontally to prevent it from being too near to the edge of the tooltip
+ // We shift it to the right a bit if the tooltip is positioned on the extreme left
+ // and shift it to left a bit if the tooltip is positioned on the extreme right.
+ const horizontalShiftPointer = horizontalShift > 0 ? Math.max(-horizontalShift, -(tooltipWidth / 2) + (POINTER_WIDTH / 2) + variables.componentBorderRadiusSmall)
+ : Math.min(-horizontalShift, (tooltipWidth / 2) - (POINTER_WIDTH / 2) - variables.componentBorderRadiusSmall);
+
const tooltipVerticalPadding = spacing.pv1;
const tooltipFontSize = variables.fontSizeSmall;
@@ -219,7 +225,7 @@ export default function getTooltipStyles(
// so the pointer's center lines up with the tooltipWidth's center.
// 3) Due to the tip start from the left edge of wrapper Tooltip so we have to remove the
// horizontalShift which is added to adjust it into the Window
- left: -horizontalShift + ((tooltipWidth / 2) - (POINTER_WIDTH / 2)),
+ left: horizontalShiftPointer + ((tooltipWidth / 2) - (POINTER_WIDTH / 2)),
opacity,
},
diff --git a/src/styles/stylePropTypes.js b/src/styles/stylePropTypes.js
index 4c7e825a8848..edc5d0383a75 100644
--- a/src/styles/stylePropTypes.js
+++ b/src/styles/stylePropTypes.js
@@ -3,4 +3,5 @@ import PropTypes from 'prop-types';
export default PropTypes.oneOfType([
PropTypes.object,
PropTypes.arrayOf(PropTypes.object),
+ PropTypes.func,
]);
diff --git a/src/styles/styles.js b/src/styles/styles.js
index ef55f6c2ad99..cd2cb5f9b0cf 100644
--- a/src/styles/styles.js
+++ b/src/styles/styles.js
@@ -20,6 +20,8 @@ import pointerEventsNone from './pointerEventsNone';
import pointerEventsAuto from './pointerEventsAuto';
import overflowXHidden from './overflowXHidden';
import CONST from '../CONST';
+import cursor from './utilities/cursor';
+import userSelect from './utilities/userSelect';
const picker = {
backgroundColor: themeColors.transparent,
@@ -157,6 +159,8 @@ const styles = {
...wordBreak,
...whiteSpace,
...writingDirection,
+ ...cursor,
+ ...userSelect,
...themeColors,
rateCol: {
@@ -292,6 +296,10 @@ const styles = {
fontSize: variables.fontSizeExtraSmall,
},
+ textNormal: {
+ fontSize: variables.fontSizeNormal,
+ },
+
textLarge: {
fontSize: variables.fontSizeLarge,
},
@@ -474,7 +482,7 @@ const styles = {
borderWidth: 0,
},
- buttonSuccessDisabled: {
+ buttonOpacityDisabled: {
opacity: 0.5,
},
@@ -488,16 +496,12 @@ const styles = {
borderWidth: 0,
},
- buttonDangerDisabled: {
- opacity: 0.5,
- },
-
buttonDangerHovered: {
backgroundColor: themeColors.dangerHover,
borderWidth: 0,
},
- buttonDisable: {
+ buttonDisabled: {
backgroundColor: themeColors.buttonDefaultBG,
borderWidth: 0,
},
@@ -628,8 +632,8 @@ const styles = {
appearance: 'none',
height: 26,
opacity: 1,
- cursor: 'pointer',
backgroundColor,
+ ...cursor.cursorPointer,
},
inputAndroid: {
fontFamily: fontFamily.EXP_NEUE,
@@ -671,6 +675,14 @@ const styles = {
backgroundColor: themeColors.successHover,
},
+ badgeAdHocSuccess: {
+ backgroundColor: themeColors.badgeAdHoc,
+ },
+
+ badgeAdHocSuccessPressed: {
+ backgroundColor: themeColors.badgeAdHocHover,
+ },
+
badgeDanger: {
backgroundColor: themeColors.danger,
},
@@ -742,7 +754,8 @@ const styles = {
offlineIndicatorMobile: {
paddingLeft: 20,
- paddingBottom: 9,
+ paddingTop: 5,
+ paddingBottom: 5,
},
offlineIndicatorRow: {
@@ -787,10 +800,6 @@ const styles = {
backgroundColor: themeColors.buttonDefaultBG,
},
- calendarButtonDisabled: {
- opacity: 0.5,
- },
-
textInputContainer: {
flex: 1,
justifyContent: 'center',
@@ -936,7 +945,7 @@ const styles = {
inputWeb: {
appearance: 'none',
- cursor: disabled ? 'not-allowed' : 'pointer',
+ ...(disabled ? cursor.cursorDisabled : cursor.cursorPointer),
...picker,
backgroundColor,
},
@@ -1010,11 +1019,51 @@ const styles = {
},
signInPage: {
- backgroundColor: themeColors.sidebar,
+ backgroundColor: themeColors.highlightBG,
minHeight: '100%',
flex: 1,
},
+ signInPageHeroCenter: {
+ position: 'absolute',
+ top: 0,
+ left: 0,
+ right: 0,
+ bottom: 0,
+ justifyContent: 'center',
+ alignItems: 'center',
+ },
+
+ signInPageGradient: {
+ height: '100%',
+ width: 540,
+ position: 'absolute',
+ top: 0,
+ left: 0,
+ },
+
+ signInPageGradientMobile: {
+ height: 300,
+ width: 800,
+ position: 'absolute',
+ top: 0,
+ left: 0,
+ },
+
+ signInBackgroundDesktop: {
+ position: 'absolute',
+ bottom: 0,
+ left: 0,
+ minHeight: 700,
+ },
+
+ signInBackgroundMobile: {
+ position: 'absolute',
+ bottom: 0,
+ left: 0,
+ minHeight: 700,
+ },
+
signInPageInner: {
marginLeft: 'auto',
marginRight: 'auto',
@@ -1033,7 +1082,7 @@ const styles = {
},
signInPageLeftContainerWide: {
- maxWidth: 360,
+ maxWidth: variables.sideBarWidth,
},
signInPageWelcomeFormContainer: {
@@ -1177,7 +1226,6 @@ const styles = {
popoverMenuIcon: {
width: variables.componentSizeNormal,
- height: variables.componentSizeNormal,
justifyContent: 'center',
alignItems: 'center',
},
@@ -1297,8 +1345,7 @@ const styles = {
// Starting version 6.3.2 @react-navigation/drawer adds "user-select: none;" to its container.
// We add user-select-auto to the inner component to prevent incorrect triple-click text selection.
// For further explanation see - https://github.com/Expensify/App/pull/12730/files#r1022883823
- userSelect: 'auto',
- WebkitUserSelect: 'auto',
+ ...userSelect.userSelectText,
},
appContentHeader: {
@@ -1393,7 +1440,7 @@ const styles = {
fontFamily: fontFamily.EXP_NEUE,
lineHeight: variables.lineHeightXLarge,
maxWidth: '100%',
- cursor: 'auto',
+ ...cursor.cursorAuto,
...whiteSpace.preWrap,
...wordBreak.breakWord,
},
@@ -1616,8 +1663,7 @@ const styles = {
},
navigationModalOverlay: {
- userSelect: 'none',
- WebkitUserSelect: 'none',
+ ...userSelect.userSelectNone,
position: 'absolute',
width: '100%',
height: '100%',
@@ -2132,7 +2178,7 @@ const styles = {
flexDirection: 'row',
alignItems: 'center',
zIndex: 1,
- cursor: 'default',
+ ...cursor.cursorDefault,
},
unreadIndicatorLine: {
@@ -2188,26 +2234,23 @@ const styles = {
attachmentModalArrowsContainer: {
display: 'flex',
justifyContent: 'center',
- cursor: 'unset',
height: '100%',
width: '100%',
+ ...cursor.cursorUnset,
},
- leftAttachmentArrow: {
+ attachmentArrow: {
zIndex: 23,
position: 'absolute',
- left: 32,
- },
-
- rightAttachmentArrow: {
- zIndex: 23,
- position: 'absolute',
- right: 32,
},
arrowIcon: {
- height: 52,
- width: 52,
+ height: 40,
+ width: 40,
+ alignItems: 'center',
+ paddingHorizontal: 0,
+ paddingTop: 0,
+ paddingBottom: 0,
},
detailsPageSectionVersion: {
@@ -2281,6 +2324,19 @@ const styles = {
lineHeight: undefined,
}, 0),
+ moneyRequestConfirmationAmount: {
+ ...headlineFont,
+ fontSize: variables.fontSizeh1,
+ },
+
+ moneyRequestMenuItem: {
+ flexDirection: 'row',
+ borderRadius: 0,
+ justifyContent: 'space-between',
+ width: '100%',
+ marginBottom: 20,
+ },
+
iouPreviewBox: {
backgroundColor: themeColors.cardBG,
borderRadius: variables.componentBorderRadiusCard,
@@ -2441,14 +2497,6 @@ const styles = {
marginVertical: 4,
},
- cursorDefault: {
- cursor: 'default',
- },
-
- cursorDisabled: {
- cursor: 'not-allowed',
- },
-
noSelect: {
boxShadow: 'none',
outline: 'none',
@@ -2458,6 +2506,10 @@ const styles = {
cursor: 'pointer',
},
+ cursorText: {
+ cursor: 'text',
+ },
+
fullscreenCard: {
position: 'absolute',
left: 0,
@@ -2553,6 +2605,7 @@ const styles = {
width: '100%',
flexDirection: 'row',
justifyContent: 'space-between',
+ alignItems: 'center',
...spacing.pt2,
},
@@ -2562,10 +2615,6 @@ const styles = {
...spacing.pb2,
},
- peopleRowCell: {
- justifyContent: 'center',
- },
-
peopleBadge: {
backgroundColor: themeColors.icon,
...spacing.ph3,
@@ -2746,10 +2795,6 @@ const styles = {
right: 60,
},
- googleListView: {
- transform: [{scale: 0}],
- },
-
invert: {
// It's important to invert the Y AND X axis to prevent a react native issue that can lead to ANRs on android 13
transform: [{scaleX: -1}, {scaleY: -1}],
@@ -2757,7 +2802,9 @@ const styles = {
keyboardShortcutModalContainer: {
maxHeight: '100%',
- flex: '0 0 auto',
+ flexShrink: 0,
+ flexGrow: 0,
+ flexBasis: 'auto',
},
keyboardShortcutTableWrapper: {
@@ -2823,7 +2870,7 @@ const styles = {
alignItems: 'center',
justifyContent: 'center',
backgroundColor: themeColors.imageCropBackgroundColor,
- cursor: 'move',
+ ...cursor.cursorMove,
},
sliderKnobTooltipView: {
@@ -2838,9 +2885,8 @@ const styles = {
height: variables.sliderKnobSize,
width: variables.sliderKnobSize,
borderRadius: variables.sliderKnobSize / 2,
- top: -variables.sliderBarHeight,
left: -(variables.sliderKnobSize / 2),
- cursor: 'pointer',
+ ...cursor.cursorPointer,
},
sliderBar: {
@@ -2848,20 +2894,7 @@ const styles = {
height: variables.sliderBarHeight,
borderRadius: variables.sliderBarHeight / 2,
alignSelf: 'stretch',
- },
-
- imageCropRotateButton: {
- height: variables.iconSizeExtraLarge,
- },
-
- userSelectText: {
- userSelect: 'text',
- WebkitUserSelect: 'text',
- },
-
- userSelectNone: {
- userSelect: 'none',
- WebkitUserSelect: 'none',
+ justifyContent: 'center',
},
screenCenteredContainer: {
@@ -2924,6 +2957,10 @@ const styles = {
textAlign: 'left',
},
+ cardSectionTitle: {
+ lineHeight: variables.lineHeightXXLarge,
+ },
+
cardMenuItem: {
paddingLeft: 8,
paddingRight: 0,
@@ -2975,8 +3012,6 @@ const styles = {
justifyContent: 'center',
flexDirection: 'row',
alignSelf: 'flex-start',
- marginTop: 8,
- marginRight: 4,
},
emojiReactionListHeader: {
@@ -3061,14 +3096,10 @@ const styles = {
fontSize: variables.fontSizeXXLarge,
letterSpacing: 4,
},
- footer: {
- backgroundColor: themeColors.midtone,
- },
footerWrapper: {
fontSize: variables.fontSizeNormal,
paddingTop: 64,
- paddingHorizontal: 32,
maxWidth: 1100, // Match footer across all Expensify platforms
},
@@ -3115,11 +3146,28 @@ const styles = {
top: 60,
zIndex: 100,
},
+ loginHeroHeader: {
+ fontFamily: fontFamily.EXP_NEW_KANSAS_MEDIUM,
+ color: themeColors.success,
+ fontWeight: '500',
+ textAlign: 'center',
+ },
+
+ loginHeroBody: {
+ fontFamily: fontFamily.EXP_NEUE,
+ fontSize: variables.fontSizeSignInHeroBody,
+ color: themeColors.textLight,
+ textAlign: 'center',
+ },
validateCodeMessage: {
width: variables.modalContentMaxWidth,
textAlign: 'center',
},
+
+ whisper: {
+ backgroundColor: themeColors.cardBG,
+ },
};
export default styles;
diff --git a/src/styles/themes/default.js b/src/styles/themes/default.js
index c263bddd4ddf..c35b0d53eb26 100644
--- a/src/styles/themes/default.js
+++ b/src/styles/themes/default.js
@@ -30,6 +30,7 @@ const darkTheme = {
successPressed: colors.greenPressed,
transparent: colors.transparent,
midtone: colors.green700,
+ signInPage: colors.green800,
dark: colors.midnight,
// Additional keys
@@ -39,6 +40,7 @@ const darkTheme = {
componentBG: colors.greenAppBackground,
hoverComponentBG: colors.greenHighlightBackground,
activeComponentBG: colors.greenBorders,
+ signInSidebar: colors.green800,
sidebar: colors.greenHighlightBackground,
sidebarHover: colors.greenAppBackground,
heading: colors.white,
@@ -65,6 +67,8 @@ const darkTheme = {
imageCropBackgroundColor: colors.greenIcons,
fallbackIconColor: colors.green700,
reactionActive: '#003C73',
+ badgeAdHoc: colors.pink600,
+ badgeAdHocHover: colors.pink700,
};
const oldTheme = {
diff --git a/src/styles/utilities/cursor/index.js b/src/styles/utilities/cursor/index.js
new file mode 100644
index 000000000000..00f7f9a7b1e3
--- /dev/null
+++ b/src/styles/utilities/cursor/index.js
@@ -0,0 +1,35 @@
+export default {
+ cursorDefault: {
+ cursor: 'default',
+ },
+ cursorDisabled: {
+ cursor: 'not-allowed',
+ },
+ cursorPointer: {
+ cursor: 'pointer',
+ },
+ cursorMove: {
+ cursor: 'move',
+ },
+ cursorUnset: {
+ cursor: 'unset',
+ },
+ cursorAuto: {
+ cursor: 'auto',
+ },
+ cursorZoomIn: {
+ cursor: 'zoom-in',
+ },
+ cursorGrabbing: {
+ cursor: 'grabbing',
+ },
+ cursorZoomOut: {
+ cursor: 'zoom-out',
+ },
+ cursorInitial: {
+ cursor: 'initial',
+ },
+ cursorText: {
+ cursor: 'text',
+ },
+};
diff --git a/src/styles/utilities/cursor/index.native.js b/src/styles/utilities/cursor/index.native.js
new file mode 100644
index 000000000000..95704e55b07a
--- /dev/null
+++ b/src/styles/utilities/cursor/index.native.js
@@ -0,0 +1,13 @@
+export default {
+ cursorDefault: {},
+ cursorDisabled: {},
+ cursorPointer: {},
+ cursorMove: {},
+ cursorUnset: {},
+ cursorAuto: {},
+ cursorZoomIn: {},
+ cursorGrabbing: {},
+ cursorZoomOut: {},
+ cursorInitial: {},
+ cursorText: {},
+};
diff --git a/src/styles/utilities/flex.js b/src/styles/utilities/flex.js
index 4de3409948a4..a8455a265d51 100644
--- a/src/styles/utilities/flex.js
+++ b/src/styles/utilities/flex.js
@@ -36,6 +36,9 @@ export default {
flexDirection: 'column',
},
+ flexColumnReverse: {
+ flexDirection: 'column-reverse',
+ },
justifyContentCenter: {
justifyContent: 'center',
},
diff --git a/src/styles/utilities/positioning.js b/src/styles/utilities/positioning.js
index 51a151ea72af..7fca910835f8 100644
--- a/src/styles/utilities/positioning.js
+++ b/src/styles/utilities/positioning.js
@@ -9,6 +9,9 @@ export default {
pAbsolute: {
position: 'absolute',
},
+ t0: {
+ top: 0,
+ },
tn4: {
top: -16,
},
@@ -18,15 +21,27 @@ export default {
l0: {
left: 0,
},
- l4: {
+ l1: {
left: 4,
},
+ l2: {
+ left: 8,
+ },
+ l8: {
+ left: 32,
+ },
r0: {
right: 0,
},
+ r2: {
+ right: 8,
+ },
r4: {
right: 16,
},
+ r8: {
+ right: 32,
+ },
b0: {
bottom: 0,
},
diff --git a/src/styles/utilities/sizing.js b/src/styles/utilities/sizing.js
index a55774756075..1051098fbe16 100644
--- a/src/styles/utilities/sizing.js
+++ b/src/styles/utilities/sizing.js
@@ -28,6 +28,10 @@ export default {
minWidth: '25%',
},
+ mnw120: {
+ minWidth: 120,
+ },
+
w50: {
width: '50%',
},
diff --git a/src/styles/utilities/spacing.js b/src/styles/utilities/spacing.js
index 7e8b51529c7f..3dbccfe216a3 100644
--- a/src/styles/utilities/spacing.js
+++ b/src/styles/utilities/spacing.js
@@ -177,6 +177,10 @@ export default {
marginTop: 24,
},
+ mt8: {
+ marginTop: 32,
+ },
+
mb0: {
marginBottom: 0,
},
@@ -213,6 +217,10 @@ export default {
marginBottom: 32,
},
+ mb15: {
+ marginBottom: 60,
+ },
+
mbn1: {
marginBottom: -4,
},
@@ -314,6 +322,10 @@ export default {
paddingHorizontal: 40,
},
+ ph25: {
+ paddingHorizontal: 100,
+ },
+
pr0: {
paddingRight: 0,
},
@@ -358,6 +370,14 @@ export default {
paddingLeft: 20,
},
+ pl6: {
+ paddingLeft: 24,
+ },
+
+ pl10: {
+ paddingLeft: 40,
+ },
+
pt0: {
paddingTop: 0,
},
@@ -386,6 +406,10 @@ export default {
paddingTop: 40,
},
+ pt20: {
+ paddingTop: 80,
+ },
+
pb1: {
paddingBottom: 4,
},
@@ -410,7 +434,20 @@ export default {
paddingBottom: 32,
},
+ pb20: {
+ paddingBottom: 80,
+ },
+
pb10Percentage: {
paddingBottom: '10%',
},
+
+ gap1: {
+ gap: 4,
+ },
+
+ gap7: {
+ gap: 28,
+ },
+
};
diff --git a/src/styles/utilities/userSelect/index.js b/src/styles/utilities/userSelect/index.js
new file mode 100644
index 000000000000..c6b71170cf14
--- /dev/null
+++ b/src/styles/utilities/userSelect/index.js
@@ -0,0 +1,10 @@
+export default {
+ userSelectText: {
+ userSelect: 'text',
+ WebkitUserSelect: 'text',
+ },
+ userSelectNone: {
+ userSelect: 'none',
+ WebkitUserSelect: 'none',
+ },
+};
diff --git a/src/styles/utilities/userSelect/index.native.js b/src/styles/utilities/userSelect/index.native.js
new file mode 100644
index 000000000000..0d1dfe97aa1d
--- /dev/null
+++ b/src/styles/utilities/userSelect/index.native.js
@@ -0,0 +1,8 @@
+export default {
+ userSelectText: {
+ userSelect: 'text',
+ },
+ userSelectNone: {
+ userSelect: 'none',
+ },
+};
diff --git a/src/styles/variables.js b/src/styles/variables.js
index 1040a478668f..9ed9fd1c1135 100644
--- a/src/styles/variables.js
+++ b/src/styles/variables.js
@@ -48,11 +48,17 @@ export default {
fontSizeMedium: getValueUsingPixelRatio(16, 22),
fontSizeLarge: getValueUsingPixelRatio(17, 19),
fontSizeHero: 36,
+ fontSizeHeroXL: 72,
fontSizeh1: 19,
fontSizeXLarge: 22,
fontSizeXXLarge: 28,
fontSizeXXXLarge: 32,
fontSizeNormalHeight: getValueUsingPixelRatio(20, 28),
+ fontSizeSignInHeroLarge: 48,
+ fontSizeSignInHeroMedium: 38,
+ fontSizeSignInHeroXSmall: 26,
+ fontSizeSignInHeroSmall: 28,
+ fontSizeSignInHeroBody: 20,
lineHeightHero: 40,
iconSizeXXXSmall: 4,
iconSizeXXSmall: 8,
@@ -73,7 +79,7 @@ export default {
sideBarWidth: 375,
pdfPageMaxWidth: 992,
tooltipzIndex: 10050,
- gutterWidth: 16,
+ gutterWidth: 12,
popoverMenuShadow: '0px 4px 12px 0px rgba(0, 0, 0, 0.06)',
optionRowHeight: 64,
optionRowHeightCompact: 52,
@@ -83,6 +89,7 @@ export default {
lineHeightNormal: getValueUsingPixelRatio(16, 21),
lineHeightLarge: getValueUsingPixelRatio(18, 24),
lineHeightXLarge: getValueUsingPixelRatio(20, 24),
+ lineHeightXXLarge: getValueUsingPixelRatio(27, 32),
inputHeight: getValueUsingPixelRatio(52, 72),
inputHeightSmall: 28,
formErrorLineHeight: getValueUsingPixelRatio(18, 23),
@@ -103,6 +110,29 @@ export default {
verticalLogoHeight: 634,
verticalLogoWidth: 111,
badgeMaxWidth: 180,
+ signInHeroImageMobileHeight: 240.08,
+ signInHeroImageMobileWidth: 303,
+ signInHeroImageTabletHeight: 324.01,
+ signInHeroImageTabletWidth: 346,
+ signInHeroImageDesktopHeight: 362.4,
+ signInHeroImageDesktopWidth: 386.99,
+ signInHeroBackgroundWidth: 2000,
+ signInHeroBackgroundWidthMobile: 800,
+ signInContentMaxWidth: 1360,
+ signInHeroContextMaxWidth: 680,
+ signInContentMinHeight: 800,
+ signInLogoHeightSmallScreen: 28,
+ signInLogoHeight: 34,
+ signInLogoWidth: 120,
+ signInLogoWidthLargeScreen: 144,
+ signInLogoWidthPill: 132,
+ signInLogoWidthLargeScreenPill: 162,
modalContentMaxWidth: 360,
listItemHeightNormal: 64,
+
+ // The height of the empty list is 14px (2px for borders and 12px for vertical padding)
+ // This is calculated based on the values specified in the 'getGoogleListViewStyle' function of the 'StyleUtils' utility
+ googleEmptyListViewHeight: 14,
+ hoverDimValue: 0.5,
+ pressDimValue: 0.2,
};
diff --git a/tests/actions/ReportTest.js b/tests/actions/ReportTest.js
index 34c7c665b7d6..974708dcf4bf 100644
--- a/tests/actions/ReportTest.js
+++ b/tests/actions/ReportTest.js
@@ -430,41 +430,74 @@ describe('actions/Report', () => {
// We should generate link
let originalCommentHTML = 'Original Comment';
let afterEditCommentText = 'Original Comment www.google.com';
- let newCommentMarkdown = Report.handleUserDeletedLinks(afterEditCommentText, originalCommentHTML);
- let expectedOutput = 'Original Comment [www.google.com](https://www.google.com)';
- expect(newCommentMarkdown).toBe(expectedOutput);
+ let newCommentHTML = Report.handleUserDeletedLinksInHtml(afterEditCommentText, originalCommentHTML);
+ let expectedOutput = 'Original Comment www.google.com ';
+ expect(newCommentHTML).toBe(expectedOutput);
// User deletes www.google.com link from comment but keeps link text
// We should not generate link
originalCommentHTML = 'Comment www.google.com ';
afterEditCommentText = 'Comment www.google.com';
- newCommentMarkdown = Report.handleUserDeletedLinks(afterEditCommentText, originalCommentHTML);
+ newCommentHTML = Report.handleUserDeletedLinksInHtml(afterEditCommentText, originalCommentHTML);
expectedOutput = 'Comment www.google.com';
- expect(newCommentMarkdown).toBe(expectedOutput);
+ expect(newCommentHTML).toBe(expectedOutput);
// User Delete only () part of link but leaves the []
// We should not generate link
originalCommentHTML = 'Comment www.google.com ';
afterEditCommentText = 'Comment [www.google.com]';
- newCommentMarkdown = Report.handleUserDeletedLinks(afterEditCommentText, originalCommentHTML);
+ newCommentHTML = Report.handleUserDeletedLinksInHtml(afterEditCommentText, originalCommentHTML);
expectedOutput = 'Comment [www.google.com]';
- expect(newCommentMarkdown).toBe(expectedOutput);
+ expect(newCommentHTML).toBe(expectedOutput);
// User Generates multiple links in one edit
// We should generate both links
originalCommentHTML = 'Comment';
afterEditCommentText = 'Comment www.google.com www.facebook.com';
- newCommentMarkdown = Report.handleUserDeletedLinks(afterEditCommentText, originalCommentHTML);
- expectedOutput = 'Comment [www.google.com](https://www.google.com) [www.facebook.com](https://www.facebook.com)';
- expect(newCommentMarkdown).toBe(expectedOutput);
+ newCommentHTML = Report.handleUserDeletedLinksInHtml(afterEditCommentText, originalCommentHTML);
+ expectedOutput = 'Comment www.google.com '
+ + 'www.facebook.com ';
+ expect(newCommentHTML).toBe(expectedOutput);
// Comment has two links but user deletes only one of them
// Should not generate link again for the deleted one
originalCommentHTML = 'Comment www.google.com www.facebook.com ';
afterEditCommentText = 'Comment www.google.com [www.facebook.com](https://www.facebook.com)';
- newCommentMarkdown = Report.handleUserDeletedLinks(afterEditCommentText, originalCommentHTML);
- expectedOutput = 'Comment www.google.com [www.facebook.com](https://www.facebook.com)';
- expect(newCommentMarkdown).toBe(expectedOutput);
+ newCommentHTML = Report.handleUserDeletedLinksInHtml(afterEditCommentText, originalCommentHTML);
+ expectedOutput = 'Comment www.google.com www.facebook.com ';
+ expect(newCommentHTML).toBe(expectedOutput);
+
+ // User edits and replaces comment with a link containing underscores
+ // We should generate link
+ originalCommentHTML = 'Comment';
+ afterEditCommentText = 'https://www.facebook.com/hashtag/__main/?__eep__=6';
+ newCommentHTML = Report.handleUserDeletedLinksInHtml(afterEditCommentText, originalCommentHTML);
+ expectedOutput = 'https://www.facebook.com/hashtag/__main/?__eep__=6 ';
+ expect(newCommentHTML).toBe(expectedOutput);
+
+ // User edits and deletes the link containing underscores
+ // We should not generate link
+ originalCommentHTML = 'https://www.facebook.com/hashtag/__main/?__eep__=6 ';
+ afterEditCommentText = 'https://www.facebook.com/hashtag/__main/?__eep__=6';
+ newCommentHTML = Report.handleUserDeletedLinksInHtml(afterEditCommentText, originalCommentHTML);
+ expectedOutput = 'https://www.facebook.com/hashtag/__main/?__eep__=6';
+ expect(newCommentHTML).toBe(expectedOutput);
+
+ // User edits and replaces comment with a link containing asterisks
+ // We should generate link
+ originalCommentHTML = 'Comment';
+ afterEditCommentText = 'http://example.com/foo/*/bar/*/test.txt';
+ newCommentHTML = Report.handleUserDeletedLinksInHtml(afterEditCommentText, originalCommentHTML);
+ expectedOutput = 'http://example.com/foo/*/bar/*/test.txt ';
+ expect(newCommentHTML).toBe(expectedOutput);
+
+ // User edits and deletes the link containing asterisks
+ // We should not generate link
+ originalCommentHTML = 'http://example.com/foo/*/bar/*/test.txt ';
+ afterEditCommentText = 'http://example.com/foo/*/bar/*/test.txt';
+ newCommentHTML = Report.handleUserDeletedLinksInHtml(afterEditCommentText, originalCommentHTML);
+ expectedOutput = 'http://example.com/foo/*/bar/*/test.txt';
+ expect(newCommentHTML).toBe(expectedOutput);
});
it('should show a notification for report action updates with shouldNotify', () => {
diff --git a/tests/actions/SessionTest.js b/tests/actions/SessionTest.js
index 62a7e183647d..2a91b0b4ad61 100644
--- a/tests/actions/SessionTest.js
+++ b/tests/actions/SessionTest.js
@@ -75,6 +75,7 @@ describe('Session', () => {
}));
// When we attempt to fetch the initial app data via the API
+ App.confirmReadyToOpenApp();
App.openApp();
return waitForPromisesToResolve();
})
diff --git a/tests/unit/IOUUtilsTest.js b/tests/unit/IOUUtilsTest.js
index 989b33a42359..4ae4f3c5bc4b 100644
--- a/tests/unit/IOUUtilsTest.js
+++ b/tests/unit/IOUUtilsTest.js
@@ -1,6 +1,10 @@
+import Onyx from 'react-native-onyx';
import CONST from '../../src/CONST';
import * as IOUUtils from '../../src/libs/IOUUtils';
import * as ReportUtils from '../../src/libs/ReportUtils';
+import ONYXKEYS from '../../src/ONYXKEYS';
+import waitForPromisesToResolve from '../utils/waitForPromisesToResolve';
+import currencyList from './currencyList.json';
let iouReport;
let reportActions;
@@ -38,27 +42,37 @@ function cancelMoneyRequest(moneyRequestAction, {isOnline} = {}) {
);
}
-beforeEach(() => {
- reportActions = [];
- const chatReportID = ReportUtils.generateReportID();
- const amount = 1000;
- const currency = 'USD';
-
- iouReport = ReportUtils.buildOptimisticIOUReport(
- ownerEmail,
- managerEmail,
- amount,
- chatReportID,
- currency,
- CONST.LOCALES.EN,
- );
-
- // The starting point of all tests is the IOUReport containing a single non-pending transaction in USD
- // All requests in the tests are assumed to be offline, unless isOnline is specified
- createIOUReportAction('create', amount, currency, {IOUTransactionID: '', isOnline: true});
-});
+function initCurrencyList() {
+ Onyx.init({
+ keys: ONYXKEYS,
+ initialKeyStates: {
+ [ONYXKEYS.CURRENCY_LIST]: currencyList,
+ },
+ });
+ return waitForPromisesToResolve();
+}
describe('isIOUReportPendingCurrencyConversion', () => {
+ beforeEach(() => {
+ reportActions = [];
+ const chatReportID = ReportUtils.generateReportID();
+ const amount = 1000;
+ const currency = 'USD';
+
+ iouReport = ReportUtils.buildOptimisticIOUReport(
+ ownerEmail,
+ managerEmail,
+ amount,
+ chatReportID,
+ currency,
+ CONST.LOCALES.EN,
+ );
+
+ // The starting point of all tests is the IOUReport containing a single non-pending transaction in USD
+ // All requests in the tests are assumed to be offline, unless isOnline is specified
+ createIOUReportAction('create', amount, currency, {IOUTransactionID: '', isOnline: true});
+ });
+
test('Requesting money offline in a different currency will show the pending conversion message', () => {
// Request money offline in AED
createIOUReportAction('create', 100, 'AED');
@@ -132,3 +146,57 @@ describe('isIOUReportPendingCurrencyConversion', () => {
});
});
+describe('getCurrencyDecimals', () => {
+ beforeAll(() => initCurrencyList());
+ test('Currency decimals smaller than or equal 2', () => {
+ expect(IOUUtils.getCurrencyDecimals('JPY')).toBe(0);
+ expect(IOUUtils.getCurrencyDecimals('USD')).toBe(2);
+ });
+
+ test('Currency decimals larger than 2 should return 2', () => {
+ // Actual: 3
+ expect(IOUUtils.getCurrencyDecimals('LYD')).toBe(2);
+
+ // Actual: 4
+ expect(IOUUtils.getCurrencyDecimals('UYW')).toBe(2);
+ });
+});
+
+describe('getCurrencyUnit', () => {
+ beforeAll(() => initCurrencyList());
+ test('Currency with decimals smaller than or equal 2', () => {
+ expect(IOUUtils.getCurrencyUnit('JPY')).toBe(1);
+ expect(IOUUtils.getCurrencyUnit('USD')).toBe(100);
+ });
+
+ test('Currency with decimals larger than 2 should be floor to 2', () => {
+ expect(IOUUtils.getCurrencyUnit('LYD')).toBe(100);
+ });
+});
+
+describe('calculateAmount', () => {
+ beforeAll(() => initCurrencyList());
+ test('103 JPY split among 3 participants including the default user should be [35, 34, 34]', () => {
+ const participants = ['tonystark@expensify.com', 'reedrichards@expensify.com'];
+ expect(IOUUtils.calculateAmount(participants, 103, 'JPY', true)).toBe(3500);
+ expect(IOUUtils.calculateAmount(participants, 103, 'JPY')).toBe(3400);
+ });
+
+ test('10 AFN split among 4 participants including the default user should be [1, 3, 3, 3]', () => {
+ const participants = ['tonystark@expensify.com', 'reedrichards@expensify.com', 'suestorm@expensify.com'];
+ expect(IOUUtils.calculateAmount(participants, 10, 'AFN', true)).toBe(100);
+ expect(IOUUtils.calculateAmount(participants, 10, 'AFN')).toBe(300);
+ });
+
+ test('10 BHD split among 3 participants including the default user should be [334, 333, 333]', () => {
+ const participants = ['tonystark@expensify.com', 'reedrichards@expensify.com'];
+ expect(IOUUtils.calculateAmount(participants, 10, 'BHD', true)).toBe(334);
+ expect(IOUUtils.calculateAmount(participants, 10, 'BHD')).toBe(333);
+ });
+
+ test('0.02 USD split among 4 participants including the default user should be [-1, 1, 1, 1]', () => {
+ const participants = ['tonystark@expensify.com', 'reedrichards@expensify.com', 'suestorm@expensify.com'];
+ expect(IOUUtils.calculateAmount(participants, 0.02, 'USD', true)).toBe(-1);
+ expect(IOUUtils.calculateAmount(participants, 0.02, 'USD')).toBe(1);
+ });
+});
diff --git a/tests/unit/LocalePhoneNumberTest.js b/tests/unit/LocalePhoneNumberTest.js
index bb2c250205ad..40d6bcc7bf69 100644
--- a/tests/unit/LocalePhoneNumberTest.js
+++ b/tests/unit/LocalePhoneNumberTest.js
@@ -1,89 +1,49 @@
-const localePhoneNumber = require('../../src/libs/LocalePhoneNumber');
-const CONST = require('../../src/CONST').default;
+import Onyx from 'react-native-onyx';
+import ONYXKEYS from '../../src/ONYXKEYS';
+import * as LocalePhoneNumber from '../../src/libs/LocalePhoneNumber';
+import waitForPromisesToResolve from '../utils/waitForPromisesToResolve';
-describe('localePhoneNumber', () => {
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone(CONST.LOCALES.ES_ES, '34547474747474')).toBe('547474747474');
- });
-
- // Failing due to the use of Trimstart.
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone(CONST.LOCALES.ES_ES, '343434343434')).toBe('3434343434');
- });
-
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone(CONST.LOCALES.ES_ES, '+34547474747474')).toBe('547474747474');
- });
-
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone(CONST.LOCALES.ES_ES, '547474747474')).toBe('547474747474');
- });
-
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone(CONST.LOCALES.ES_ES, '+17474747474')).toBe('+17474747474');
- });
-
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone(CONST.LOCALES.EN, '+1547474747474')).toBe('547474747474');
- });
-
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone(CONST.LOCALES.EN, '1547474747474')).toBe('547474747474');
- });
-
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone(CONST.LOCALES.EN, '547474747474')).toBe('547474747474');
- });
+const ES_NUMBER = '+34702474537';
+const US_NUMBER = '+18332403627';
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone(CONST.LOCALES.EN, '+347474747474')).toBe('+347474747474');
- });
-
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone(CONST.LOCALES.EN, '+34 747 474 7474')).toBe('+34 747 474 7474');
- });
+describe('LocalePhoneNumber utils', () => {
+ beforeAll(() => Onyx.init({
+ keys: ONYXKEYS,
+ }));
- it('Test to local Number Conversion by locale', () => {
- expect(localePhoneNumber.toLocalPhone('en-EN', '+17474747474')).toBe('+17474747474');
- });
+ describe('formatPhoneNumber function - when the current user has a phone number', () => {
+ beforeEach(() => Onyx.multiSet({
+ [ONYXKEYS.SESSION]: {email: 'current@user.com'},
+ [ONYXKEYS.COUNTRY_CODE]: 34,
+ [ONYXKEYS.PERSONAL_DETAILS]: {'current@user.com': {phoneNumber: US_NUMBER}},
+ }).then(waitForPromisesToResolve));
- it('Test to international Number Conversion by locale', () => {
- expect(localePhoneNumber.fromLocalPhone(CONST.LOCALES.ES_ES, '34547474747474')).toBe('+34547474747474');
- });
+ afterEach(() => Onyx.clear());
- it('Test to international Number Conversion by locale', () => {
- expect(localePhoneNumber.fromLocalPhone(CONST.LOCALES.ES_ES, '+34547474747474')).toBe('+34547474747474');
- });
+ it('should display a number from the same region formatted locally', () => {
+ expect(LocalePhoneNumber.formatPhoneNumber(US_NUMBER)).toBe('(833) 240-3627');
+ });
- it('Test to international Number Conversion by locale', () => {
- expect(localePhoneNumber.fromLocalPhone(CONST.LOCALES.ES_ES, '547474747474')).toBe('+34547474747474');
+ it('should display a number from another region formatted internationally', () => {
+ expect(LocalePhoneNumber.formatPhoneNumber(ES_NUMBER)).toBe('+34 702 47 45 37');
+ });
});
- it('Test to international Number Conversion by locale', () => {
- expect(localePhoneNumber.fromLocalPhone(CONST.LOCALES.ES_ES, '+17474747474')).toBe('+3417474747474');
- });
+ describe('formatPhoneNumber function - when the current user does not have a phone number', () => {
+ beforeEach(() => Onyx.multiSet({
+ [ONYXKEYS.SESSION]: {email: 'current@user.com'},
+ [ONYXKEYS.COUNTRY_CODE]: 34,
+ [ONYXKEYS.PERSONAL_DETAILS]: {'current@user.com': {phoneNumber: ''}},
+ }).then(waitForPromisesToResolve));
- it('Test to international Number Conversion by locale', () => {
- expect(localePhoneNumber.fromLocalPhone(CONST.LOCALES.EN, '+1547474747474')).toBe('+1547474747474');
- });
+ afterEach(() => Onyx.clear());
- it('Test to international Number Conversion by locale', () => {
- expect(localePhoneNumber.fromLocalPhone(CONST.LOCALES.EN, '1547474747474')).toBe('+1547474747474');
- });
-
- it('Test to international Number Conversion by locale', () => {
- expect(localePhoneNumber.fromLocalPhone(CONST.LOCALES.EN, '547474747474')).toBe('+1547474747474');
- });
-
- it('Test to international Number Conversion by locale', () => {
- expect(localePhoneNumber.fromLocalPhone(CONST.LOCALES.EN, '+347474747474')).toBe('+1347474747474');
- });
-
- it('Test to international Number Conversion by locale', () => {
- expect(localePhoneNumber.fromLocalPhone(CONST.LOCALES.EN, ' + 34 747 474 7474 ')).toBe('+1 34 747 474 7474');
- });
+ it('should display a number from the same region formatted locally', () => {
+ expect(LocalePhoneNumber.formatPhoneNumber(ES_NUMBER)).toBe('702 47 45 37');
+ });
- it('Test to international Number Conversion by locale', () => {
- expect(localePhoneNumber.fromLocalPhone('en-EN', '+17474747474')).toBe('+17474747474');
+ it('should display a number from another region formatted internationally', () => {
+ expect(LocalePhoneNumber.formatPhoneNumber(US_NUMBER)).toBe('+1 833-240-3627');
+ });
});
});
diff --git a/tests/unit/NetworkTest.js b/tests/unit/NetworkTest.js
index abe7e4964992..a5458f356579 100644
--- a/tests/unit/NetworkTest.js
+++ b/tests/unit/NetworkTest.js
@@ -32,6 +32,7 @@ beforeEach(() => {
MainQueue.clear();
HttpUtils.cancelPendingRequests();
PersistedRequests.clear();
+ NetworkStore.checkRequiredData();
// Wait for any Log command to finish and Onyx to fully clear
jest.advanceTimersByTime(CONST.NETWORK.PROCESS_REQUEST_DELAY_MS);
@@ -96,6 +97,7 @@ describe('NetworkTests', () => {
}));
// This should first trigger re-authentication and then a Failed to fetch
+ App.confirmReadyToOpenApp();
App.openApp();
return waitForPromisesToResolve()
.then(() => Onyx.set(ONYXKEYS.NETWORK, {isOffline: false}))
diff --git a/tests/unit/ReportUtilsTest.js b/tests/unit/ReportUtilsTest.js
index c9fcca5a6a7d..d610b740135f 100644
--- a/tests/unit/ReportUtilsTest.js
+++ b/tests/unit/ReportUtilsTest.js
@@ -25,8 +25,8 @@ const participantsPersonalDetails = {
login: 'lagertha@vikings.net',
pronouns: 'She/her',
},
- '+12223334444@expensify.sms': {
- login: '+12223334444@expensify.sms',
+ '+18332403627@expensify.sms': {
+ login: '+18332403627@expensify.sms',
},
};
const policy = {
@@ -64,8 +64,8 @@ describe('ReportUtils', () => {
pronouns: 'She/her',
},
{
- displayName: '2223334444',
- tooltip: '+12223334444',
+ displayName: '(833) 240-3627',
+ tooltip: '+18332403627',
pronouns: undefined,
},
]);
@@ -89,8 +89,8 @@ describe('ReportUtils', () => {
pronouns: 'She/her',
},
{
- displayName: '2223334444',
- tooltip: '+12223334444',
+ displayName: '(833) 240-3627',
+ tooltip: '+18332403627',
pronouns: undefined,
},
]);
@@ -113,15 +113,15 @@ describe('ReportUtils', () => {
test('SMS', () => {
expect(ReportUtils.getReportName({
- participants: [currentUserEmail, '+12223334444@expensify.sms'],
- })).toBe('2223334444');
+ participants: [currentUserEmail, '+18332403627@expensify.sms'],
+ })).toBe('(833) 240-3627');
});
});
test('Group DM', () => {
expect(ReportUtils.getReportName({
- participants: [currentUserEmail, 'ragnar@vikings.net', 'floki@vikings.net', 'lagertha@vikings.net', '+12223334444@expensify.sms'],
- })).toBe('Ragnar, floki@vikings.net, Lagertha, 2223334444');
+ participants: [currentUserEmail, 'ragnar@vikings.net', 'floki@vikings.net', 'lagertha@vikings.net', '+18332403627@expensify.sms'],
+ })).toBe('Ragnar, floki@vikings.net, Lagertha, (833) 240-3627');
});
describe('Default Policy Room', () => {
diff --git a/tests/unit/ValidationUtilsTest.js b/tests/unit/ValidationUtilsTest.js
index d44e7c958046..e2d7b13f3364 100644
--- a/tests/unit/ValidationUtilsTest.js
+++ b/tests/unit/ValidationUtilsTest.js
@@ -54,6 +54,8 @@ describe('ValidationUtils', () => {
expect(ValidationUtils.isValidWebsite('https://www.expensify.com')).toBe(true);
expect(ValidationUtils.isValidWebsite('https://expensify.com/inbox/')).toBe(true);
expect(ValidationUtils.isValidWebsite('https://we.are.expensify.com/how-we-got-here')).toBe(true);
+ expect(ValidationUtils.isValidWebsite('https://blog.google')).toBe(true);
+ expect(ValidationUtils.isValidWebsite('https://blog.google:65535')).toBe(true);
});
test('Valid URLs with http protocol', () => {
@@ -69,6 +71,8 @@ describe('ValidationUtils', () => {
expect(ValidationUtils.isValidWebsite('expensify')).toBe(false);
expect(ValidationUtils.isValidWebsite('expensify.')).toBe(false);
expect(ValidationUtils.isValidWebsite('192.168.0.1')).toBe(false);
+ expect(ValidationUtils.isValidWebsite('www.googlecom')).toBe(false);
+ expect(ValidationUtils.isValidWebsite('www.google.com:65536')).toBe(false);
});
test('Invalid URLs without protocols', () => {
diff --git a/tests/unit/currencyList.json b/tests/unit/currencyList.json
index 740b3caf2b28..c6eda7bdd766 100644
--- a/tests/unit/currencyList.json
+++ b/tests/unit/currencyList.json
@@ -7,11 +7,13 @@
"AFN": {
"symbol": "Af",
"name": "Afghan Afghani",
+ "decimals": 0,
"ISO4217": "971"
},
"ALL": {
"symbol": "ALL",
"name": "Albanian Lek",
+ "decimals": 0,
"ISO4217": "008"
},
"AMD": {
@@ -123,6 +125,7 @@
"BYR": {
"symbol": "BR",
"name": "Belarus Ruble",
+ "decimals": 0,
"retired": true,
"retirementDate": "2016-07-01",
"ISO4217": "974"
@@ -330,11 +333,13 @@
"IQD": {
"symbol": "IQD",
"name": "Iraqi Dinar",
+ "decimals": 0,
"ISO4217": "368"
},
"IRR": {
"symbol": "﷼",
"name": "Iran Rial",
+ "decimals": 0,
"ISO4217": "364"
},
"ISK": {
@@ -377,16 +382,19 @@
"KMF": {
"symbol": "CF",
"name": "Comoros Franc",
+ "decimals": 0,
"ISO4217": "174"
},
"KPW": {
"symbol": "KP₩",
"name": "North Korean Won",
+ "decimals": 0,
"ISO4217": "408"
},
"KRW": {
"symbol": "₩",
"name": "Korean Won",
+ "decimals": 0,
"ISO4217": "410"
},
"KWD": {
@@ -407,11 +415,13 @@
"LAK": {
"symbol": "₭",
"name": "Lao Kip",
+ "decimals": 0,
"ISO4217": "418"
},
"LBP": {
"symbol": "LBP",
"name": "Lebanese Pound",
+ "decimals": 0,
"ISO4217": "422"
},
"LKR": {
@@ -460,6 +470,7 @@
"MGA": {
"symbol": "MGA",
"name": "Malagasy Ariary",
+ "decimals": 0,
"ISO4217": "969"
},
"MKD": {
@@ -470,6 +481,7 @@
"MMK": {
"symbol": "Ks",
"name": "Myanmar Kyat",
+ "decimals": 0,
"ISO4217": "104"
},
"MNT": {
@@ -594,6 +606,7 @@
"PYG": {
"symbol": "₲",
"name": "Paraguayan Guarani",
+ "decimals": 0,
"ISO4217": "600"
},
"QAR": {
@@ -609,6 +622,7 @@
"RSD": {
"symbol": "РСД",
"name": "Serbian Dinar",
+ "decimals": 0,
"ISO4217": "941"
},
"RUB": {
@@ -660,11 +674,13 @@
"SLL": {
"symbol": "Le",
"name": "Sierra Leone Leone",
+ "decimals": 0,
"ISO4217": "694"
},
"SOS": {
"symbol": "So.",
"name": "Somali Shilling",
+ "decimals": 0,
"ISO4217": "706"
},
"SRD": {
@@ -675,6 +691,7 @@
"STD": {
"symbol": "Db",
"name": "Sao Tome Dobra",
+ "decimals": 0,
"retired": true,
"retirementDate": "2018-07-11",
"ISO4217": "678"
@@ -692,6 +709,7 @@
"SYP": {
"symbol": "SYP",
"name": "Syrian Pound",
+ "decimals": 0,
"ISO4217": "760"
},
"SZL": {
@@ -798,6 +816,7 @@
"VUV": {
"symbol": "Vt",
"name": "Vanuatu Vatu",
+ "decimals": 0,
"ISO4217": "548"
},
"WST": {
@@ -830,7 +849,8 @@
},
"YER": {
"symbol": "YER",
- "name": "Yemen Riyal",
+ "name": "Yemen Riyal",
+ "decimals": 0,
"ISO4217": "886"
},
"ZAR": {
@@ -841,6 +861,7 @@
"ZMK": {
"symbol": "ZK",
"name": "Zambian Kwacha",
+ "decimals": 0,
"retired": true,
"retirementDate": "2013-01-01",
"ISO4217": "894"
@@ -852,4 +873,3 @@
"ISO4217": "967"
}
}
-
\ No newline at end of file
diff --git a/web/index.html b/web/index.html
index 4da68485e4c8..f6a6b9692ee5 100644
--- a/web/index.html
+++ b/web/index.html
@@ -26,6 +26,9 @@
:root {
color-scheme: dark !important;
}
+ * {
+ touch-action: pan-x pan-y;
+ }
body {
overflow: hidden;
overscroll-behavior: none;