diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fb8ce8..b1b69bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,52 +10,78 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe ## Unreleased +## 0.4.0 + +### Added + +- New `svg` example +- New `lottie` example + +### Changed + +- The GitHub repo has migrated into the linebender org: + - You may need to update your git ref from `loopystudios` to `linebender` +- SVG and Lottie features are now feature-gated + - SVG (.svg) support is now added through a cargo feature `svg`. + - Lottie (.json) support is now added through the cargo feature `lottie`. + - experimental `dotLottie` features (`LottiePlayer`, `PlayerTransition`, `PlayerState`) are now feature-gated through the cargo feature `experimental-dotLottie`. This is only partial support, and a work in progress. + - `Theme` is now activated through the `lottie` feature, as it was only possible to style runtime lotties. + - `VelloAsset.metadata()` is no longer available, as it is specific to Lottie. There is now a trait, `LottieExt` that can be imported to call `.metadata()` on a `Composition` instead. This is no longer fallible as a result. +- `PlaybackAlphaOverride` was removed in favor of an `alpha` field on `VelloAsset`. +- `LottiePlayer` was renamed to `DotLottiePlayer`. +- Paths to several locations have changed, e.g. `bevy_vello::assets` -> `bevy_vello::integrations` + +### Fixed + +- A slow startup delay for lottie assets to begin rendering +- A dotLottie issue where the first frame can jump on web platforms. + ## 0.3.3 -### fixed +### Fixed - Projects with a 2D and 3D camera should no longer conflict with `bevy_vello`'s queries. ## 0.3.2 -### added +### Added - Inverse `ZFunction` options added for `BbTop`, `BbBottom`, `BbLeft`, and `BbRight`. -### fixed +### Fixed - A panic that can happen in the extract schedule of lottie files. - Z-ordering now works correctly for `Bb` functions. ## 0.3.1 (2024-05-01) -### fixed +### Fixed - `bevy_vello::prelude::Scene` was removed, since it conflicts with `bevy::prelude::Scene`. ## 0.3.0 (2024-05-01) -### added +### Added - `VelloAssetAlignment` was added to the `VelloAssetBundle`. -### changed +### Changed - `VectorFile` enum variants were flattened into tuple structs. -### removed +### Removed - `bevy_vello::VelloPlugin` was removed from the prelude. ## 0.2.2 (2024-04-22) -### fixed +### Fixed - Now when a `VelloScene` and `VelloText` have the same Z-Index, text will be rendered above the scene. ## 0.2.1 (2024-04-21) -### fixed +### Fixed - `VelloTextAlignment` is now in the `bevy_vello::prelude`. - The playhead now will now always be bounded @@ -63,24 +89,24 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe ## 0.2.0 (2024-04-17) -### added +### Added - Added the `VelloTextAlignment` component to `VelloTextBundle`, which now helps control the alignment of text. - Added the `VelloTextAlignment` to the `bevy_vello::prelude`. -### fixed +### Fixed - Text bounding boxes are now tighter as they are capped by the baseline. ## 0.1.2 (2024-04-08) -### fixed +### Fixed - Fixes a window hang issue in bevy on native platforms ## 0.1.1 (2024-04-04) -### fixed +### Fixed - fixed panic on Windows when window is minimized diff --git a/Cargo.toml b/Cargo.toml index 89bc159..a150183 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,13 +7,15 @@ members = [ "examples/text", "examples/z_ordering", "examples/scene", + "examples/svg", + "examples/lottie", ] [workspace.package] edition = "2021" -version = "0.3.3" +version = "0.4.0" license = "MIT OR Apache-2.0" -repository = "https://github.com/loopystudios/bevy_vello" +repository = "https://github.com/linebender/bevy_vello" [workspace.dependencies] bevy = { version = "0.13.0", default-features = false, features = [ @@ -52,5 +54,15 @@ vello_svg = "0.1.0" velato = "0.1.0" once_cell = "1.19.0" +# TODO: Remove after https://github.com/linebender/velato/pull/19 +serde_json = { optional = true, version = "1" } + [dev-dependencies] wasm-bindgen-test = "0.3.42" + +[features] +default = [] +svg = [] +# TODO: Remove `serde_json` after https://github.com/linebender/velato/pull/19 +lottie = ["serde_json"] +experimental-dotLottie = ["lottie"] diff --git a/README.md b/README.md index 710d2a1..09e4201 100644 --- a/README.md +++ b/README.md @@ -4,22 +4,18 @@ **A vector graphics rendering integration for [Bevy game engine](https://bevyengine.org) using [Vello](https://vello.dev).** -[![Discord](https://img.shields.io/discord/913957940560531456.svg?label=Loopy&logo=discord&logoColor=ffffff&color=ffffff&labelColor=000000)](https://discord.gg/zrjnQzdjCB) +[![Linebender Zulip](https://img.shields.io/badge/Linebender-%23gpu-blue?logo=Zulip)](https://xi.zulipchat.com/#narrow/stream/197075-gpu) [![MIT/Apache 2.0](https://img.shields.io/badge/license-MIT%2FApache-blue.svg)](#license) [![Vello](https://img.shields.io/badge/vello-v0.1.0-purple.svg)](https://crates.io/crates/vello) -[![Following released Bevy versions](https://img.shields.io/badge/bevy%20tracking-released%20version-lightblue)](https://bevyengine.org/learn/quick-start/plugin-development/#main-branch-tracking) - -[![Dependency status](https://deps.rs/repo/github/loopystudios/bevy_vello/status.svg)](https://deps.rs/repo/github/loopystudios/bevy_vello) +[![Following released Bevy versions](https://img.shields.io/badge/bevy%20tracking-released%20version-lightblue)](https://bevyengine.org/learn/quick-start/plugin-development/#main-branch-tracking)\ +[![Dependency status](https://deps.rs/repo/github/linebender/bevy_vello/status.svg)](https://deps.rs/repo/github/linebender/bevy_vello) [![Crates.io](https://img.shields.io/crates/v/bevy_vello.svg)](https://crates.io/crates/bevy_vello) [![Docs](https://img.shields.io/docsrs/bevy_vello)](https://docs.rs/bevy_vello) -[![Build status](https://github.com/loopystudios/bevy_vello/workflows/CI/badge.svg)](https://github.com/loopystudios/bevy_vello/actions) +[![Build status](https://github.com/linebender/bevy_vello/workflows/CI/badge.svg)](https://github.com/linebender/bevy_vello/actions) -> [!WARNING] -> The support of SVG and Lottie is limited. If there is an SVG-related issue, please file the issue in [`vello_svg`](https://github.com/linebender/vello_svg). If there is a Lottie-related issue, please file the issue in [`velato`](https://github.com/linebender/velato). Please see the respective backends for for more information about limitations. - -bevy_vello is a rendering integration for rendering vector graphics in the Bevy game engine. Currently it renders standard vello `Scene`s, as well as SVG and Lottie files. +`bevy_vello` is a cross-platform, 2D compute-centric vector graphics rendering library for Bevy. There is default support for rendering text and scenes, with additional opt-in features for SVG and Lottie. Experimental support for dotLottie is coming. Quickstart to run the demo: @@ -29,32 +25,23 @@ cargo run -p demo ![Alt text](image.png) -It uses several support backends for assets: - -- [`vello_svg`](https://github.com/linebender/vello_svg) - Converting SVG files to a vello `Scene` -- [`velato`](https://github.com/linebender/velato) - Converting Lottie files to a vello `Scene` - -Visual inconsistencies discovered should be reported to the respective backend. - ## Bevy version support -**NOTE**: You must use a git rev for now, but we are planning a publish. See [issue #3](https://github.com/loopystudios/bevy_vello/issues/3). - |bevy|bevy_vello| |---|---| -|0.13|0.1-0.3, main| +|0.13|0.1-0.4, main| |< 0.13| unsupported | -## Features +## Cargo features + +> [!WARNING] +> The support of SVG and Lottie is limited. If there is an SVG-related issue, please file the issue in [`vello_svg`](https://github.com/linebender/vello_svg). If there is a Lottie-related issue, please file the issue in [`velato`](https://github.com/linebender/velato). Please see the respective backends for for more information about limitations. -- Spawn vector graphics rendering in screen-space or world-space coordinates. -- Runtime color swapping of Lottie files with a `Theme` component. -- Augment playback options with a `PlaybackOptions` component. -- Limited state machine support with a `LottiePlayer` component. -- Text - - NOTE: To avoid conflict with bevy's built-in font loader, rename fonts used by `bevy_vello` to end with `*.vtff`. This is a limitation of the bevy game engine, and can probably be an improvement in the future. -- Debug drawing for bounding boxes and origin -- Render immediate-mode vello `Scene`s +|Cargo feature|Description|Default?| +|---|---|----| +|`svg`|Render `.svg` files with [`vello_svg`](https://github.com/linebender/vello_svg)|Yes| +|`lottie`|Render `.json` Lottie files with [`velato`](https://github.com/linebender/velato)|Yes| +|`experimental-dotLottie`|Render `.lottie` Lottie files. **Work in Progress**|No| ## Examples @@ -79,14 +66,14 @@ rustup target add wasm32-unknown-unknown cargo run_wasm -p text ``` -There is also a web demo [available here](https://loopystudios.github.io/bevy_vello) on supporting web browsers. +There is also a web demo [available here](https://linebender.github.io/bevy_vello) on supporting web browsers. > [!WARNING] > The web is not currently a primary target for Vello, and WebGPU implementations are incomplete, so you might run into issues running this example. ## Community -All Loopy projects and development happens in the [Loopy Discord](https://discord.gg/zrjnQzdjCB). The discord is open to the public. +Discussion of Vello development happens in the [Linebender Zulip](https://xi.zulipchat.com/), specifically the [#gpu stream](https://xi.zulipchat.com/#narrow/stream/197075-gpu). All public content can be read without logging in. Contributions are welcome by pull request. The [Rust code of conduct](https://www.rust-lang.org/policies/code-of-conduct) applies. diff --git a/examples/demo/Cargo.toml b/examples/demo/Cargo.toml index 4b14a56..c4e57ee 100644 --- a/examples/demo/Cargo.toml +++ b/examples/demo/Cargo.toml @@ -8,7 +8,7 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bevy_vello = { path = "../../" } +bevy_vello = { path = "../../", features = ["experimental-dotLottie"] } bevy = { workspace = true } bevy_pancam = { version = "0.11", features = ["bevy_egui"] } bevy_egui = "0.25" diff --git a/examples/demo/src/main.rs b/examples/demo/src/main.rs index b721332..a5edd17 100644 --- a/examples/demo/src/main.rs +++ b/examples/demo/src/main.rs @@ -31,7 +31,7 @@ fn setup_vector_graphics(mut commands: Commands, asset_server: ResMut>() + composition.as_ref().get_layers().collect::>() ); } } diff --git a/examples/demo/src/ui.rs b/examples/demo/src/ui.rs index 7a1228b..c4eb0da 100644 --- a/examples/demo/src/ui.rs +++ b/examples/demo/src/ui.rs @@ -8,7 +8,7 @@ use std::time::Duration; pub fn controls_ui( mut contexts: EguiContexts, mut player: Query<( - &mut LottiePlayer, + &mut DotLottiePlayer, &mut Playhead, &mut PlaybackOptions, &mut Theme, @@ -22,8 +22,7 @@ pub fn controls_ui( }; let asset = assets.get(handle.id()).unwrap(); - let metadata = asset.metadata().unwrap(); - let VectorFile::Lottie(composition) = &asset.data else { + let VectorFile::Lottie(composition) = &asset.file else { return; }; @@ -243,7 +242,7 @@ pub fn controls_ui( }); ui.heading("Theme"); - for layer in metadata.get_layers() { + for layer in composition.as_ref().get_layers() { let color = theme.get_mut(layer).cloned().unwrap_or_default(); let mut color_edit = [color.r(), color.g(), color.b(), color.a()]; ui.horizontal(|ui| { diff --git a/examples/lottie/Cargo.toml b/examples/lottie/Cargo.toml new file mode 100644 index 0000000..fb26f20 --- /dev/null +++ b/examples/lottie/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "lottie" +version.workspace = true +license.workspace = true +edition.workspace = true +repository.workspace = true +publish = false + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[dependencies] +bevy_vello = { path = "../../", features = ["lottie"] } +bevy = { workspace = true } diff --git a/examples/z_ordering/src/assets/LICENSE b/examples/lottie/src/assets/LICENSE similarity index 100% rename from examples/z_ordering/src/assets/LICENSE rename to examples/lottie/src/assets/LICENSE diff --git a/examples/z_ordering/src/assets/README.md b/examples/lottie/src/assets/README.md similarity index 100% rename from examples/z_ordering/src/assets/README.md rename to examples/lottie/src/assets/README.md diff --git a/examples/lottie/src/assets/Tiger.json b/examples/lottie/src/assets/Tiger.json new file mode 100644 index 0000000..2aee9d0 --- /dev/null +++ b/examples/lottie/src/assets/Tiger.json @@ -0,0 +1 @@ +{"v":"5.8.1","fr":60,"ip":0,"op":306,"w":1024,"h":1024,"nm":"emoji_tiger","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"body_crouched 2","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500.785,723.054,0],"ix":2,"l":2},"a":{"a":0,"k":[332.6,246.861,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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[22.729,-3.398],[11.543,-0.189],[24.229,-2.332],[7.956,-3.33],[-31.643,7.496],[-25.592,1.551],[-20.92,4.71],[-32.179,31.989]],"o":[[-16.122,16.02],[-17.929,4.479],[-19.022,0.311],[-20.501,2.089],[-5.973,2.5],[31.644,-7.496],[25.672,-1.556],[20.919,-4.71],[0,0]],"v":[[159.409,-78.94],[69.103,8.922],[-25.288,21.552],[-106.408,29.268],[-152.897,22.061],[-99.007,49.248],[5.925,34.07],[77.57,23.395],[173.463,-64.658]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[22.11,-6.268],[11.424,-1.659],[24.229,-2.332],[7.956,-3.33],[-31.643,7.496],[-25.186,4.802],[-20.148,7.339],[-32.179,31.989]],"o":[[-16.122,16.02],[-17.211,6.729],[-18.827,2.734],[-20.501,2.089],[-5.973,2.5],[31.644,-7.496],[25.264,-4.817],[20.148,-7.339],[0,0]],"v":[[159.409,-78.94],[75.275,-14.34],[-29.736,15.222],[-105.908,35.268],[-152.897,22.061],[-99.007,49.248],[2.819,23.658],[85.518,-1.064],[173.463,-64.658]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[22.948,-1.235],[11.51,0.887],[24.341,-0.032],[8.228,-2.587],[-32.209,4.474],[-25.624,-0.884],[-21.271,2.713],[-32.179,31.989]],"o":[[-16.122,16.02],[-18.272,2.765],[-18.966,-1.488],[-20.607,0.142],[-6.182,1.924],[32.211,-4.472],[25.704,0.877],[21.271,-2.712],[0,0]],"v":[[159.409,-55.94],[54.967,33.181],[-40.194,36.834],[-121.68,36.849],[-167.28,25.281],[-115.634,51.466],[-10.304,52.246],[62.029,48.39],[173.463,-41.658]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[22.948,-1.235],[11.51,0.887],[24.341,-0.032],[8.228,-2.587],[-32.209,4.474],[-25.624,-0.884],[-21.271,2.713],[-32.179,31.989]],"o":[[-16.122,16.02],[-18.272,2.765],[-18.966,-1.488],[-20.607,0.142],[-6.182,1.924],[32.211,-4.472],[25.704,0.877],[21.271,-2.712],[0,0]],"v":[[159.409,-55.94],[54.967,33.181],[-40.194,36.834],[-121.68,36.849],[-167.28,25.281],[-115.634,51.466],[-10.304,52.246],[62.029,48.39],[173.463,-41.658]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[18.835,-13.167],[10.25,-5.311],[20.653,-12.881],[5.64,-6.526],[-24.991,20.806],[-22.222,12.789],[-16.631,13.536],[-32.179,31.989]],"o":[[-16.122,16.02],[-14.056,11.997],[-16.892,8.752],[-17.424,11.003],[-4.234,4.898],[24.992,-20.807],[22.291,-12.829],[16.631,-13.536],[0,0]],"v":[[159.409,-155.94],[113.382,-65.934],[34.5,-12.579],[-34.69,30.465],[-79.522,44.722],[-21.837,39.685],[68.021,-15.275],[127.41,-56.747],[173.463,-111.658]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[207.224,429.884],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[93.522,-28.597],[0,0],[19.337,0.273],[-12.623,-28.668],[-12.023,-6.982],[-38.375,8.532],[-6.854,-2.744],[0,0]],"o":[[-3.166,2.793],[-37.669,13.744],[0,0],[-30.141,-0.524],[13.821,31.389],[12.087,7.019],[38.296,-8.514],[6.854,2.744],[0,0]],"v":[[111.124,-123.678],[-2.29,-38.714],[-97.256,-16.568],[-127.819,-22.691],[-165.43,27.677],[-117.591,80.476],[-41.639,84.149],[90.076,65.366],[185.724,-24.669]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[93.522,-28.597],[0,0],[19.337,0.273],[-12.623,-28.668],[-12.023,-6.982],[-38.375,8.532],[-7.148,-1.847],[0,0]],"o":[[-3.166,2.793],[-37.669,13.744],[0,0],[-30.141,-0.524],[13.821,31.389],[12.087,7.019],[38.296,-8.514],[7.148,1.847],[0,0]],"v":[[111.124,-123.678],[-2.29,-38.714],[-97.256,-16.568],[-127.819,-22.691],[-165.43,27.677],[-117.591,80.476],[-41.639,84.149],[97.615,42.052],[185.724,-24.669]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-100.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-110.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-110.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[70.991,-67.264],[0,0],[17.434,-8.37],[-24.072,-20.043],[-13.875,-0.895],[-30.556,24.733],[-7.359,0.597],[0,0]],"o":[[-3.166,2.793],[-27.602,29.085],[0,0],[-27.219,12.958],[26.357,21.946],[13.949,0.9],[30.493,-24.682],[7.358,-0.597],[0,0]],"v":[[131.124,-240.678],[10.096,-62.525],[-65.062,-0.394],[-95.153,7.739],[-106.389,69.587],[-40.039,95.548],[29.597,65.002],[139.154,-10.488],[185.723,-71.669]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[185.973,384.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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[5.248,5.043],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-28.153,-27.053],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-105.7],[-37.483,-60.829],[-19.514,-41.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-121.668]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[5.248,5.043],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-28.153,-27.053],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-105.7],[-37.483,-60.829],[-19.514,-41.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-121.668]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[5.248,5.043],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-28.153,-27.053],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-82.7],[-37.483,-37.829],[-19.514,-18.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-98.668]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-3.777,-28.206],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[3.629,3.227]],"o":[[0,0],[1.701,12.703],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-44.919,-102.7],[-48.733,-56.329],[-32.764,-25.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-9.411,-38.663],[-19.403,-73.321],[-23.871,-118.668]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-3.777,-28.206],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[3.629,3.227]],"o":[[0,0],[1.701,12.703],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-44.919,-102.7],[-48.733,-56.329],[-32.764,-25.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-9.411,-38.663],[-19.403,-73.321],[-23.871,-118.668]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[0.616,-26.235],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[6.089,28.042]],"o":[[0,0],[-0.278,11.816],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-27.905,-165.666],[-38.801,-124.211],[-32.764,-35.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-10.411,-39.163],[-26.403,-78.821],[-37.371,-141.668]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[488.097,390.932],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[6.302,-6.889],[-29.665,-28.551],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-6.375,6.857],[11.504,11.072],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-139.722],[126.697,-168.851],[151.051,-10.805],[95.247,101.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-12.216,140.685],[-27.419,131.872],[-41.285,66.758],[-50.075,31.677]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[11.186,-18.519],[-14.448,-29.556],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[144,-137.333],[33.467,47.822],[-9.516,55.807],[-7.814,14.481],[7.012,14.344],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-180.567,-180.722],[128.697,-197.851],[150.051,-23.805],[111.247,73.464],[104.881,158.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-12.216,140.685],[-27.419,131.872],[-41.285,66.757],[-50.075,31.677]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[6.302,-6.889],[-29.665,-28.551],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-6.375,6.857],[11.504,11.072],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-116.722],[126.697,-166.851],[151.051,-10.805],[95.247,101.464],[96.881,157.501],[58.472,241.288],[-11.85,221.852],[-13.947,167.419],[-12.216,140.684],[-27.419,131.872],[-41.285,89.757],[-50.075,54.677]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[126.697,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[137.796,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[137.796,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[89.398,-120.711],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-153.671,-154.937],[121.141,-187.238],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.288],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,122.219],[-51.806,79.024],[-52.291,65.107]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":249,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[111.576,-113.76],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-148.449,-167.304],[124.268,-187.531],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,121.157],[-51.633,77.9],[-51.887,64.108]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[135.903,-106.136],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-142.72,-179.919],[127.697,-187.852],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.853],[-13.947,167.419],[-4.716,152.685],[-31.669,119.992],[-51.443,76.668],[-51.443,63.011]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":251,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[138.677,-103.935],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-149.87,-191.369],[127.447,-187.601],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,118.4],[-51.184,74.983],[-50.837,61.512]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[141.452,-101.734],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-155.769,-206.57],[127.197,-187.351],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,116.807],[-50.924,73.298],[-50.23,60.013]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":253,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[143.069,-71.057],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-151.849,-236.046],[126.947,-187.101],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.288],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,115.214],[-50.664,71.613],[-49.624,58.514]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[144.685,-40.379],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-147.929,-270.523],[126.697,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,113.622],[-50.405,69.928],[-49.017,57.015]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[504.382,246.861],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[18.249,-7.53],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[59.774,35.283],[-45.316,18.03],[-59.369,3.747],[28.306,-68.658]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[18.249,-7.53],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[59.774,35.283],[-45.316,18.03],[-59.369,3.747],[28.306,-68.658]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[18.249,-7.53],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[59.774,35.283],[-45.316,41.03],[-59.369,26.747],[28.306,-45.658]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[21.902,-11.737]],"v":[[28.274,3.283],[-45.316,41.03],[-59.369,26.747],[17.556,-45.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[21.902,-11.737]],"v":[[28.274,3.283],[-45.316,41.03],[-59.369,26.747],[17.556,-45.158]],"c":true}]},{"t":254,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.573,1.367]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[23.4,-6.994]],"v":[[26.274,-36.217],[-45.316,-28.97],[-59.369,-73.253],[32.44,-109.334]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[426.002,347.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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[49.584,41.444],[-72.339,95.819],[0,0],[0,0],[30.261,41.47],[-8.752,61.494]],"o":[[6.16,3.792],[95.485,55.774],[0,0],[-114.347,42.187],[24.261,-32.53],[-2.752,-8.506]],"v":[[-46.248,-121.777],[106.675,-171.152],[224.96,106.702],[123.507,102.465],[-38.925,102.697],[29.588,-26.327]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[49.584,41.444],[-76.839,70.819],[0,0],[0,0],[30.261,41.47],[-8.752,61.494]],"o":[[6.16,3.792],[95.485,55.774],[0,0],[-114.347,42.187],[24.261,-32.53],[-2.752,-8.506]],"v":[[-48.748,-160.777],[90.675,-202.152],[224.96,106.702],[123.507,102.465],[-38.925,102.697],[29.588,-26.327]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[35.099,21.859],[-81.101,93.862],[0,0],[0,0],[16.768,22.979],[-9.66,62.069]],"o":[[3.413,2.101],[95.485,55.774],[0,0],[-114.347,42.187],[13.443,-18.025],[-4.998,-25.544]],"v":[[-53.263,-123.192],[104.943,-186.768],[224.961,106.702],[123.507,112.72],[-37.588,108.048],[33.394,-13.524]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-86.396,122.496],[0,0],[0,0],[0,0],[-10.789,62.783]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[-7.789,-46.717]],"v":[[-20.748,-102.277],[122.675,-167.652],[224.961,106.702],[123.507,125.465],[-35.925,114.697],[38.124,2.385]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":99,"s":[{"i":[[0,0],[-75.232,110.295],[0,0],[0,0],[0,0],[-1.216,25.625]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[0.85,-75.346]],"v":[[-35.563,-103.202],[122.799,-183.545],[224.96,88.184],[123.507,125.465],[-28.518,118.401],[38.281,23.607]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.636]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[38.294,25.304]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.636]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[38.294,25.304]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.637]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[32.794,11.804]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-116.634,96.626],[0,0],[0,0],[0,0],[-13.515,121.561]],"o":[[0,0],[89.002,64.116],[0,0],[-114.347,42.187],[0,0],[2.503,-22.518]],"v":[[-82.538,-161.717],[134.97,-203.459],[224.96,83.073],[123.507,89.171],[-63.263,106.027],[16.85,-71.393]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-160.024,28.447],[0,0],[0,0],[0,0],[20.041,71.363]],"o":[[0,0],[77.621,78.759],[0,0],[-114.347,42.187],[0,0],[-6.126,-21.813]],"v":[[5.829,-270.994],[164.86,-280.279],[224.96,76.703],[123.507,25.465],[57.858,-83.746],[41.294,-217.196]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[257.48,248.638],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":78,"op":254,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"body_crouched ","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500.785,723.054,0],"ix":2,"l":2},"a":{"a":0,"k":[332.6,246.861,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":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-18.467,-15.742],[-0.646,9.177],[0.161,-14.371],[1.37,-40.661]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"t":246,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[529.669,463.996],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-4.361,18.038],[-10.165,2.398],[4.158,-30.066],[0,0],[6.701,-6.971]],"o":[[0,0],[5.35,-22.128],[10.467,-2.513],[-2.965,21.443],[0,0],[-13.748,14.284]],"v":[[-19.602,34.698],[-1.439,-34.672],[10.681,-98.185],[26.253,-45.734],[16.71,-2.205],[2.699,11.516]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-5.137,17.833],[-10.259,1.956],[5.454,-29.858],[0,0],[7,-6.67]],"o":[[0,0],[6.302,-21.876],[10.566,-2.058],[-3.89,21.294],[0,0],[-14.353,13.676]],"v":[[-30.006,19.053],[-0.36,-79.466],[14.495,-142.396],[27.784,-89.321],[12.868,-17.245],[-6.723,-3.143]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-3.654,18.195],[-10.165,2.398],[4.158,-34.066],[0,0],[6.701,-6.971]],"o":[[0,0],[5.85,-29.128],[10.467,-2.513],[-2.623,21.487],[0,0],[-13.748,14.284]],"v":[[-19.602,57.698],[-2.939,-8.672],[12.681,-79.185],[28.253,-22.234],[16.71,20.795],[2.699,34.516]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-3.654,18.195],[-10.165,2.398],[4.158,-34.066],[0,0],[6.701,-6.971]],"o":[[0,0],[5.85,-29.128],[10.467,-2.513],[-2.623,21.487],[0,0],[-13.748,14.284]],"v":[[-19.602,57.698],[-2.939,-8.672],[12.681,-79.185],[28.253,-22.234],[16.71,20.795],[2.699,34.516]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-1.619,18.487],[-10.165,2.398],[2.158,-22.066],[0,0],[6.701,-6.971]],"o":[[0,0],[1.85,-21.128],[10.467,-2.513],[-2.107,21.544],[0,0],[-13.748,14.284]],"v":[[-19.602,-12.302],[1.061,-103.172],[22.681,-176.685],[26.253,-108.234],[16.71,-49.205],[2.699,-35.484]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[358.404,372.606],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-7.271,-23.247],[-7.708,3.403],[4.041,15.141],[0,0]],"o":[[0,0],[7.271,23.247],[7.708,-3.403],[-2.479,-9.287],[0,0]],"v":[[-18.683,-52.526],[-2.494,-25.435],[17.557,20.766],[25.965,-37.49],[13.835,-66.434]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-7.271,-23.247],[-7.708,3.403],[4.041,15.141],[0,0]],"o":[[0,0],[7.271,23.247],[7.708,-3.403],[-2.479,-9.287],[0,0]],"v":[[-18.683,-52.526],[-2.494,-25.435],[17.557,20.766],[25.965,-37.49],[13.835,-66.434]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-5.041,-23.83],[-7.996,2.657],[2.627,15.449],[0,0]],"o":[[0,0],[5.041,23.83],[7.995,-2.659],[-1.59,-9.48],[0,0]],"v":[[-22.827,-34.137],[-9.271,-5.637],[6.324,42.252],[20.2,-14.948],[10.86,-44.909]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-5.041,-23.83],[-7.996,2.657],[2.627,15.449],[0,0]],"o":[[0,0],[5.041,23.83],[7.995,-2.659],[-1.59,-9.48],[0,0]],"v":[[-22.827,-34.137],[-9.271,-5.637],[6.324,42.252],[20.2,-14.948],[10.86,-44.909]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-16.865,-17.574],[-5.385,6.48],[10.363,11.755],[0,0]],"o":[[0,0],[16.865,17.574],[5.385,-6.48],[-6.356,-7.211],[0,0]],"v":[[-13.074,-86.814],[13.488,-69.77],[52.02,-37.338],[33.598,-93.24],[9.845,-113.75]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[228.041,388.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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-3.239,-12.349],[-3.834,-3.817],[5.458,24.187],[0,0]],"o":[[0,0],[3.24,12.35],[6.21,6.184],[-5.458,-24.186],[0,0]],"v":[[-15.101,-49.605],[0.239,-19.43],[13.385,24.13],[26.192,-27.257],[14.43,-61.249]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-3.239,-12.349],[-3.161,-4.391],[5.458,24.187],[0,0]],"o":[[0,0],[3.24,12.35],[3.329,4.625],[-5.458,-24.186],[0,0]],"v":[[-21.101,-52.105],[-3.761,-20.93],[15.885,10.63],[20.192,-27.757],[10.43,-62.249]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-2.057,-12.6],[-3.438,-4.177],[3.148,24.595],[0,0]],"o":[[0,0],[2.058,12.601],[5.598,6.743],[-3.148,-24.594],[0,0]],"v":[[-21.072,-37.02],[-8.652,-5.53],[0.318,39.077],[17.924,-10.868],[9.427,-45.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-2.057,-12.6],[-3.438,-4.177],[3.148,24.595],[0,0]],"o":[[0,0],[2.058,12.601],[5.598,6.743],[-3.148,-24.594],[0,0]],"v":[[-21.072,-37.02],[-8.652,-5.53],[0.318,39.077],[17.924,-10.868],[9.427,-45.82]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-8.401,-9.613],[-5.133,-1.71],[15.661,19.224],[0,0]],"o":[[0,0],[8.402,9.614],[8.315,2.77],[-15.661,-19.223],[0,0]],"v":[[6.712,-59.328],[33.888,-39.146],[65.061,-6.003],[53.637,-57.714],[27.964,-82.908]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[164.101,408.051],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[22.729,-3.398],[11.543,-0.189],[24.229,-2.332],[7.956,-3.33],[-31.643,7.496],[-25.592,1.551],[-20.92,4.71],[-32.179,31.989]],"o":[[-16.122,16.02],[-17.929,4.479],[-19.022,0.311],[-20.501,2.089],[-5.973,2.5],[31.644,-7.496],[25.672,-1.556],[20.919,-4.71],[0,0]],"v":[[159.409,-78.94],[69.103,8.922],[-25.288,21.552],[-106.408,29.268],[-152.897,22.061],[-99.007,49.248],[5.925,34.07],[77.57,23.395],[173.463,-64.658]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[22.11,-6.268],[11.424,-1.659],[24.229,-2.332],[7.956,-3.33],[-31.643,7.496],[-25.186,4.802],[-20.148,7.339],[-32.179,31.989]],"o":[[-16.122,16.02],[-17.212,6.729],[-18.827,2.734],[-20.501,2.089],[-5.973,2.5],[31.644,-7.496],[25.264,-4.817],[20.148,-7.339],[0,0]],"v":[[159.409,-78.94],[75.275,-14.34],[-29.736,15.222],[-105.908,35.268],[-152.897,22.061],[-99.007,49.248],[2.819,23.658],[85.518,-1.064],[161.463,-73.658]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[22.948,-1.235],[11.51,0.887],[24.341,-0.032],[8.228,-2.587],[-32.209,4.474],[-25.624,-0.884],[-21.271,2.713],[-32.179,31.989]],"o":[[-16.122,16.02],[-18.272,2.765],[-18.966,-1.488],[-20.607,0.142],[-6.182,1.924],[32.211,-4.472],[25.704,0.877],[21.271,-2.712],[0,0]],"v":[[159.409,-55.94],[54.967,33.181],[-40.194,36.834],[-121.68,36.849],[-167.28,25.281],[-115.634,51.466],[-10.304,52.246],[62.029,48.39],[173.463,-41.658]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[22.948,-1.235],[11.51,0.887],[24.341,-0.032],[8.228,-2.587],[-32.209,4.474],[-25.624,-0.884],[-21.271,2.713],[-32.179,31.989]],"o":[[-16.122,16.02],[-18.272,2.765],[-18.966,-1.488],[-20.607,0.142],[-6.182,1.924],[32.211,-4.472],[25.704,0.877],[21.271,-2.712],[0,0]],"v":[[159.409,-55.94],[54.967,33.181],[-40.194,36.834],[-121.68,36.849],[-167.28,25.281],[-115.634,51.466],[-10.304,52.246],[62.029,48.39],[173.463,-41.658]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[18.835,-13.167],[10.25,-5.311],[20.653,-12.881],[5.64,-6.526],[-24.991,20.806],[-22.222,12.789],[-16.631,13.536],[-32.179,31.989]],"o":[[-16.122,16.02],[-14.056,11.997],[-16.892,8.752],[-17.424,11.003],[-4.234,4.898],[24.992,-20.807],[22.291,-12.829],[16.631,-13.536],[0,0]],"v":[[159.409,-155.94],[113.382,-65.934],[34.5,-12.579],[-34.69,30.465],[-79.522,44.722],[-21.837,39.685],[68.021,-15.275],[127.41,-56.747],[173.463,-111.658]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[207.224,429.884],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[1.383,13.08],[18.466,-13.411],[-6.589,-5.26],[-3.832,5.129]],"o":[[-0.688,-6.506],[-14.913,10.894],[3.654,2.917],[6.378,-8.609]],"v":[[29.676,-13.071],[0.926,-12.116],[-7.61,19.525],[9.112,2.388]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[1.383,13.08],[18.466,-13.411],[-6.589,-5.26],[-3.832,5.129]],"o":[[-0.688,-6.506],[-14.913,10.894],[3.654,2.917],[6.378,-8.609]],"v":[[29.676,-13.071],[0.926,-12.116],[-7.61,19.525],[9.112,2.388]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0.182,13.152],[19.651,-11.606],[-6.058,-5.864],[-4.3,4.744]],"o":[[-0.07,-6.542],[-15.876,9.436],[3.362,3.249],[7.163,-7.968]],"v":[[23.038,-9.402],[-5.674,-11.168],[-17.162,19.525],[1.105,4.045]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0.182,13.152],[19.651,-11.606],[-6.058,-5.864],[-4.3,4.744]],"o":[[-0.07,-6.542],[-15.876,9.436],[3.362,3.249],[7.163,-7.968]],"v":[[23.038,-9.402],[-5.674,-11.168],[-17.162,19.525],[1.105,4.045]],"c":true}]},{"t":254,"s":[{"i":[[7.065,11.095],[10.559,-20.233],[-8.243,-1.774],[-1.146,6.299]],"o":[[-3.514,-5.518],[-8.499,16.397],[4.571,0.984],[1.875,-10.549]],"v":[[66.435,17.786],[41.12,31.449],[47.573,63.58],[54.911,40.788]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[25.52,383.022],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[7.206,12.222],[16.845,-11.398],[-3.654,-6.724],[-6.016,3.933]],"o":[[-4.628,-7.91],[-14.906,10.086],[5.702,10.724],[10.151,-6.481]],"v":[[31.006,-18.478],[2.064,-15.877],[-11.509,10.559],[10.337,1.868]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[7.206,12.222],[16.845,-11.398],[-3.654,-6.724],[-6.016,3.933]],"o":[[-4.628,-7.91],[-14.906,10.086],[5.702,10.724],[10.151,-6.481]],"v":[[31.006,-18.478],[2.064,-15.877],[-11.509,10.559],[10.337,1.868]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[6.019,12.848],[17.84,-9.768],[-3.002,-7.039],[-6.361,3.347]],"o":[[-3.86,-8.312],[-15.792,8.632],[4.663,11.215],[10.718,-5.493]],"v":[[21.026,-13.095],[-8.032,-13.241],[-24.043,11.794],[-1.473,5.207]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[6.019,12.848],[17.84,-9.768],[-3.002,-7.039],[-6.361,3.347]],"o":[[-3.86,-8.312],[-15.792,8.632],[4.663,11.215],[10.718,-5.493]],"v":[[21.026,-13.095],[-8.032,-13.241],[-24.043,11.794],[-1.473,5.207]],"c":true}]},{"t":254,"s":[{"i":[[11.896,7.732],[10.004,-17.709],[-6.266,-4.392],[-3.634,6.201]],"o":[[-7.667,-5.02],[-8.852,15.67],[9.882,7.061],[6.201,-10.325]],"v":[[81.029,-0.029],[56.276,15.192],[55.9,44.907],[71.588,27.395]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[43.955,422.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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[93.522,-28.597],[0,0],[19.337,0.273],[-12.623,-28.668],[-12.023,-6.982],[-38.375,8.532],[-6.854,-2.744],[0,0]],"o":[[-3.166,2.793],[-37.669,13.744],[0,0],[-30.141,-0.524],[13.821,31.389],[12.087,7.019],[38.296,-8.514],[6.854,2.744],[0,0]],"v":[[111.124,-123.678],[-2.29,-38.714],[-97.256,-16.568],[-127.819,-22.691],[-165.43,27.677],[-117.591,80.476],[-41.639,84.149],[90.076,65.366],[185.724,-24.669]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[93.522,-28.597],[0,0],[19.337,0.273],[-12.623,-28.668],[-12.023,-6.982],[-38.375,8.532],[-7.148,-1.847],[0,0]],"o":[[-3.166,2.793],[-37.669,13.744],[0,0],[-30.141,-0.524],[13.821,31.389],[12.087,7.019],[38.296,-8.514],[7.148,1.847],[0,0]],"v":[[111.124,-123.678],[-2.29,-38.714],[-97.256,-16.568],[-127.819,-22.691],[-165.43,27.677],[-117.591,80.476],[-41.639,84.149],[97.615,42.052],[185.724,-24.669]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-100.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-110.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-110.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[70.991,-67.264],[0,0],[17.434,-8.37],[-24.072,-20.043],[-13.875,-0.895],[-30.556,24.733],[-7.359,0.597],[0,0]],"o":[[-3.166,2.793],[-27.602,29.085],[0,0],[-27.219,12.958],[26.357,21.946],[13.949,0.9],[30.493,-24.682],[7.358,-0.597],[0,0]],"v":[[131.124,-240.678],[10.096,-62.525],[-65.062,-0.394],[-95.153,7.739],[-106.389,69.587],[-40.039,95.548],[29.597,65.002],[139.154,-10.488],[185.723,-71.669]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[185.973,384.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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-30.242,7.177],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[26.935,-6.371],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-74.192,-26.427],[7.178,-1.894],[65.807,-33.266],[25.161,25.364],[-30.644,32.791],[-59.756,-7.233]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-30.242,7.177],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[26.935,-6.371],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-71.192,-47.427],[3.178,-42.894],[75.307,-74.766],[23.662,-17.136],[-38.144,-7.709],[-59.756,-7.233]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-30.242,7.177],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[26.935,-6.371],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-46.442,10.324],[7.178,-1.894],[65.807,-33.266],[25.161,25.364],[-30.644,32.791],[-37.006,26.017]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-30.242,7.177],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[26.935,-6.371],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-73.192,-16.927],[8.178,-15.394],[66.807,-46.766],[26.161,11.864],[-45.144,19.041],[-59.756,2.516]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-30.242,7.177],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[26.935,-6.371],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-73.192,-16.927],[8.178,-15.394],[66.807,-46.766],[26.161,11.864],[-45.144,19.041],[-59.756,2.517]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-36.643,2.948],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[27.589,-2.22],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-62.948,-40.842],[5.178,-16.894],[66.807,-46.766],[26.161,11.864],[-45.144,9.041],[-59.756,-7.484]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[515.28,362.252],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,19.903],[13.387,34.354],[53.467,-48.789],[-7.58,1.049]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[-5.427,-12.717],[-16.614,13.883],[11.773,-2.12],[11.832,-9.734]],"o":[[2.744,6.429],[31.701,-26.489],[-11.773,2.12],[-11.746,9.664]],"v":[[-33.611,-12.445],[46.785,-6.347],[85.428,-90.411],[23.265,-38.13]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[-3.988,-13.239],[-18.047,11.961],[11.935,-0.806],[12.835,-8.367]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-36.37,42.903],[36.387,34.354],[68.467,-46.789],[15.42,1.049]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[-3.988,-13.239],[-18.047,11.961],[11.935,-0.806],[12.835,-8.367]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-36.37,19.903],[36.387,11.354],[68.467,-69.789],[15.42,-21.951]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-3.988,-13.239],[-18.047,11.961],[11.935,-0.806],[12.835,-8.367]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-36.37,19.903],[36.387,11.354],[68.467,-69.789],[15.42,-21.951]],"c":true}]},{"t":254,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-31.62,4.903],[42.887,17.354],[82.967,-63.289],[21.92,-15.951]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[504.515,270.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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-7.338,21.29],[-12.339,-0.403],[3.548,-18.71],[0,0],[11.836,0.019]],"o":[[0,0],[4.597,-13.226],[12.338,0.403],[-3.629,18.709],[0,0],[-9.726,-0.042]],"v":[[-26.834,41.382],[-16.458,-36.245],[10.156,-85.922],[18.14,-36.084],[27.334,40.324],[-0.271,37.335]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-7.338,21.29],[-12.339,-0.403],[3.548,-18.71],[0,0],[10.896,-13.457]],"o":[[0,0],[4.597,-13.226],[12.338,0.403],[-3.629,18.709],[0,0],[-6.12,7.559]],"v":[[-30.584,24.632],[-16.458,-36.245],[10.156,-85.922],[18.14,-36.084],[18.084,-32.926],[-6.771,0.335]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-7.338,21.29],[-12.339,-0.403],[3.548,-18.71],[0,0],[11.836,0.019]],"o":[[0,0],[4.597,-13.226],[12.338,0.403],[-1.264,22.961],[0,0],[-9.726,-0.042]],"v":[[-26.834,64.382],[-16.458,-13.245],[10.156,-62.922],[18.14,-13.084],[27.834,58.074],[-0.271,60.335]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-7.338,21.29],[-12.339,-0.403],[3.548,-18.71],[0,0],[14.396,-4.957]],"o":[[0,0],[4.597,-13.226],[12.338,0.403],[-3.629,18.709],[0,0],[-9.196,3.167]],"v":[[-29.084,56.632],[-18.208,-38.745],[8.406,-88.422],[16.39,-38.584],[24.584,34.824],[1.479,44.335]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-7.338,21.29],[-12.339,-0.403],[3.548,-18.71],[0,0],[14.396,-4.957]],"o":[[0,0],[4.597,-13.226],[12.338,0.403],[-3.629,18.709],[0,0],[-9.196,3.167]],"v":[[-27.334,62.132],[-16.458,-33.245],[10.156,-82.922],[18.14,-33.084],[26.334,40.324],[3.229,49.835]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-8.862,35.834],[-12.103,-2.428],[6.377,-16.391],[0,0],[15.073,0.939]],"o":[[0,0],[3.304,-13.361],[12.102,2.428],[-6.457,16.376],[0,0],[-17.988,-1.121]],"v":[[-11.913,-8.697],[0.737,-80.207],[36.12,-141.853],[36.323,-95.278],[26.334,30.324],[9.364,-7.502]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[425.44,313.678],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-0.291,-72.46],[-6.753,-3.685],[-34.897,60.024],[25.828,10.105],[41.188,-44.795],[21.099,-62.382]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[4.209,-112.46],[-4.253,-36.685],[-32.897,28.024],[26.828,-21.895],[41.188,-77.795],[23.599,-98.882]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-1.291,-69.46],[-6.753,-3.685],[-34.897,60.024],[25.828,10.105],[41.188,-42.795],[20.099,-59.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-1.291,-89.46],[-6.753,-23.685],[-34.897,40.024],[25.828,-9.895],[41.188,-62.795],[20.099,-79.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-10.976,-89.46],[-15.437,-23.685],[-42.582,40.024],[17.143,-9.895],[31.503,-62.795],[10.414,-79.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-10.976,-89.46],[-15.437,-23.685],[-42.582,40.024],[17.143,-9.895],[31.503,-62.795],[10.414,-79.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[9.808,-89.46],[1.347,-23.685],[-26.798,40.024],[33.927,-9.895],[52.287,-62.795],[31.198,-79.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[9.808,-89.46],[1.347,-23.685],[-26.798,40.024],[33.927,-9.895],[52.287,-62.795],[31.198,-79.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-10.976,-89.46],[-15.437,-23.685],[-42.582,40.024],[17.143,-9.895],[31.503,-62.795],[10.414,-79.382]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-10.976,-89.46],[-15.437,-23.685],[-42.582,40.024],[17.143,-9.895],[31.503,-62.795],[10.414,-79.382]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[13.787,12.189]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-10.173,-8.993]],"v":[[3.209,-99.46],[-6.753,-23.685],[-34.897,40.024],[25.828,-9.895],[42.188,-63.795],[24.099,-84.882]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":251,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[14.447,10.432]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-10.968,-7.888]],"v":[[1.709,-104.21],[-6.753,-23.685],[-34.897,40.024],[25.828,-9.895],[42.188,-63.795],[29.349,-95.382]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[2.209,-107.96],[-6.753,-23.685],[-34.897,40.024],[25.828,-9.895],[42.188,-63.795],[26.099,-100.882]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[13.287,16.689]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-8.457,-10.622]],"v":[[3.709,-103.46],[-6.753,-23.685],[-34.897,40.024],[25.828,-9.895],[42.188,-63.795],[24.099,-87.382]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[588.929,121.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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[14.901,0.752],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.533,-0.784],[0,0],[-0.404,23.951]],"v":[[-19.055,74.54],[19.492,-10.217],[28.893,-85.637],[2.19,-88.757],[-26.796,-87.617],[-21.232,-20.217]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[14.901,0.752],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.533,-0.784],[0,0],[-0.404,23.951]],"v":[[-5.055,25.54],[33.492,-59.217],[42.893,-134.637],[16.19,-137.757],[-12.796,-136.617],[-7.232,-69.217]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[13.455,-0.807],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.526,0.904],[0,0],[-0.404,23.951]],"v":[[-19.055,74.54],[19.492,-0.217],[28.893,-74.887],[-1.31,-92.507],[-26.796,-72.617],[-21.232,-10.217]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[13.455,-0.807],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.526,0.904],[0,0],[-0.404,23.951]],"v":[[-19.055,54.54],[19.492,-20.217],[28.893,-96.637],[-0.31,-109.507],[-28.546,-98.117],[-21.232,-30.217]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[-9.838,-1.21],[-4.827,29.99],[0,0],[13.455,-0.807],[0,0],[-2.886,-44.669]],"o":[[16.129,2.097],[4.827,-29.989],[0,0],[-15.526,0.904],[0,0],[1.486,23.908]],"v":[[-25.24,54.54],[11.751,-21.594],[19.209,-96.637],[-8.244,-111.007],[-36.48,-92.617],[-29.636,-28.352]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[-9.838,-1.21],[-4.827,29.99],[0,0],[13.455,-0.807],[0,0],[-2.886,-44.669]],"o":[[16.129,2.097],[4.827,-29.989],[0,0],[-15.526,0.904],[0,0],[1.486,23.908]],"v":[[-25.24,54.54],[11.751,-21.594],[19.209,-96.637],[-7.994,-119.507],[-36.48,-92.617],[-29.636,-28.352]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[13.455,-0.807],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.526,0.904],[0,0],[-0.404,23.951]],"v":[[-10.956,54.54],[27.592,-20.217],[38.243,-95.637],[7.29,-116.757],[-17.196,-93.617],[-13.133,-30.217]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[13.455,-0.807],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.526,0.904],[0,0],[-0.404,23.951]],"v":[[-10.956,54.54],[27.592,-20.216],[38.243,-95.637],[9.29,-107.257],[-17.196,-93.617],[-13.133,-30.217]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[-9.838,-1.21],[-4.827,29.99],[0,0],[13.455,-0.807],[0,0],[-2.886,-44.669]],"o":[[16.129,2.097],[4.827,-29.989],[0,0],[-15.526,0.904],[0,0],[1.486,23.908]],"v":[[-25.24,54.54],[11.751,-21.594],[19.209,-96.637],[-7.994,-115.757],[-36.48,-92.617],[-29.636,-28.352]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-9.838,-1.21],[-4.827,29.99],[0,0],[13.455,-0.807],[0,0],[-2.886,-44.669]],"o":[[16.129,2.097],[4.827,-29.989],[0,0],[-15.526,0.904],[0,0],[1.486,23.908]],"v":[[-25.24,54.54],[11.751,-21.594],[19.209,-96.637],[-7.494,-95.757],[-36.48,-92.617],[-29.636,-28.352]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[-9.719,-1.786],[-8.887,28.949],[0,0],[13.437,0.001],[0,0],[3.287,-44.503]],"o":[[15.927,3.04],[8.887,-28.948],[0,0],[-15.504,-0.018],[0,0],[-1.818,23.811]],"v":[[-16.836,44.343],[25.944,-27.774],[41.316,-108.64],[11.69,-110.971],[-14.752,-106.237],[-13.993,-40.132]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":251,"s":[{"i":[[-9.667,-2.038],[-9.637,28.7],[0,0],[13.429,0.355],[0,0],[4.447,-44.391]],"o":[[15.838,3.454],[9.637,-28.699],[0,0],[-15.495,-0.423],[0,0],[-2.438,23.75]],"v":[[-15.862,39.868],[28.775,-31.09],[46.609,-116.707],[17.767,-125.825],[-10.217,-119.805],[-10.816,-44.484]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[-9.614,-2.291],[-10.387,28.451],[0,0],[13.421,0.709],[0,0],[5.606,-44.279]],"o":[[15.75,3.868],[10.387,-28.45],[0,0],[-15.485,-0.827],[0,0],[-3.058,23.688]],"v":[[-14.888,35.392],[31.606,-34.407],[53.902,-117.774],[23.844,-135.18],[-4.182,-126.874],[-7.639,-48.835]],"c":true}]},{"t":254,"s":[{"i":[[-9.51,-2.796],[-11.888,27.953],[0,0],[14.094,7.384],[0,0],[7.925,-44.055]],"o":[[15.572,4.696],[11.888,-27.952],[0,0],[-13.776,-7.218],[0,0],[-4.299,23.566]],"v":[[-12.94,26.442],[37.268,-41.039],[58.988,-118.409],[35.998,-130.889],[5.388,-141.011],[-1.285,-57.538]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[498.723,113.81],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-72.918],[-16.256,-15.951],[5.902,66.368],[29.189,-27.277],[28.237,-117.237],[-6.523,-94.344]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-9.617,-48.675],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[6.883,29.825],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-24.631,-130.918],[4.744,-65.95],[37.902,19.868],[47.189,-60.777],[33.737,-158.237],[12.977,-150.344]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-52.418],[-16.256,7.05],[5.902,89.368],[28.189,-3.277],[27.237,-97.737],[-18.773,-92.594]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-2.062,48.151],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[1.974,-46.09],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[28.189,-29.277],[33.237,-122.237],[-21.773,-116.594]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[28.189,-28.276],[24.737,-118.487],[-18.773,-111.594]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[28.189,-28.276],[24.737,-118.487],[-19.773,-103.344]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-2.062,48.151],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[1.974,-46.09],[0,0],[-10.914,11.445]],"v":[[-27.881,-78.668],[-16.256,-12.95],[5.902,69.368],[30.189,-32.277],[34.737,-126.737],[-10.773,-103.344]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-2.062,48.151],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[1.974,-46.09],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[30.189,-32.277],[34.237,-120.237],[-17.273,-109.594]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[28.189,-28.276],[24.737,-118.487],[-18.273,-103.094]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[28.189,-28.276],[24.737,-118.487],[-19.523,-110.094]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-1.672,-46.561],[-9.199,-0.017],[-5.838,46.796],[0,0],[16.253,-9.133]],"o":[[0,0],[1.143,30.48],[11.839,0.023],[5.782,-45.482],[0,0],[-9.432,5.3]],"v":[[-4.523,-105.774],[-0.661,-48.636],[13.421,34.747],[42.773,-50.069],[52.916,-135.791],[18.374,-120.493]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[6.206,-46.557],[-9.14,-1.572],[-12.465,44.416],[0,0],[15.938,1.214]],"o":[[0,0],[-4.014,30.486],[11.763,2.023],[12.465,-44.416],[0,0],[-15.938,-1.214]],"v":[[31.528,-191.713],[26.712,-111.274],[26.62,-26.025],[68.371,-86.565],[80.57,-192.492],[54.565,-194.411]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[383.688,156.932],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[5.248,5.043],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-28.153,-27.053],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-105.7],[-37.483,-60.829],[-19.514,-41.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-121.668]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[-3.35,6.461],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[6.222,-12],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-105.7],[-37.483,-60.829],[-19.514,-41.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-121.668]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[5.248,5.043],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-28.153,-27.053],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-82.7],[-37.483,-37.829],[-19.514,-18.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-98.668]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-3.777,-28.206],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[3.629,3.227]],"o":[[0,0],[1.701,12.703],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-44.919,-102.7],[-48.733,-56.329],[-32.764,-25.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-9.411,-38.663],[-19.403,-73.321],[-23.871,-118.668]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-3.777,-28.206],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[3.629,3.227]],"o":[[0,0],[1.701,12.703],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-44.919,-102.7],[-48.733,-56.329],[-32.764,-25.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-9.411,-38.663],[-19.403,-73.321],[-23.871,-118.668]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[0.616,-26.235],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[6.089,28.042]],"o":[[0,0],[-0.278,11.816],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-27.905,-165.666],[-38.801,-124.211],[-32.764,-35.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-10.411,-39.163],[-26.403,-78.821],[-37.371,-141.668]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[488.097,390.932],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[6.302,-6.889],[-29.665,-28.551],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-6.375,6.857],[11.504,11.072],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-139.722],[126.697,-168.851],[151.051,-10.805],[95.247,101.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-12.216,140.685],[-27.419,131.872],[-41.285,66.758],[-50.075,31.677]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[11.186,-18.519],[-14.448,-29.556],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[144,-137.333],[33.467,47.822],[-9.516,55.807],[-7.814,14.481],[7.012,14.344],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-180.567,-180.722],[128.697,-197.851],[150.051,-23.805],[111.247,73.464],[104.881,158.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-12.216,140.685],[-27.419,131.872],[-41.285,66.757],[-50.075,31.677]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[6.302,-6.889],[-29.665,-28.551],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-6.375,6.857],[11.504,11.072],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-116.722],[126.697,-166.851],[151.051,-10.805],[95.247,101.464],[96.881,157.501],[58.472,241.288],[-11.85,221.852],[-13.947,167.419],[-12.216,140.684],[-27.419,131.872],[-41.285,89.757],[-50.075,54.677]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[126.697,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[137.796,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[137.796,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[135.903,-106.136],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-143.97,-179.919],[127.697,-187.852],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,119.992],[-51.443,76.668],[-51.443,63.011]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":251,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[138.677,-103.935],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-151.37,-194.244],[127.447,-187.602],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,118.4],[-51.184,74.983],[-50.837,61.512]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[141.452,-101.734],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-158.769,-207.32],[127.197,-187.351],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,116.807],[-50.924,73.298],[-50.23,60.013]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":253,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[143.069,-71.057],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-149.724,-244.921],[126.947,-187.101],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.288],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,115.214],[-50.664,71.613],[-49.624,58.514]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[144.685,-40.379],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-147.929,-270.523],[126.697,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,113.622],[-50.405,69.928],[-49.017,57.015]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[504.382,246.861],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.404,-3.582]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-46.322,-77.864],[-14.184,-38.594],[16.366,26.636],[36.072,57.528],[44.925,9.318],[28.053,-69.13],[19.369,-103.58],[-17.668,-83.319]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-14.422,-31.689],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.404,-3.582]],"o":[[0,0],[10.569,23.221],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-44.822,-124.864],[10.816,-72.594],[28.366,-25.864],[45.572,5.028],[56.925,-43.182],[47.553,-92.13],[14.869,-152.08],[-13.668,-135.319]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.404,-3.582]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-46.322,-59.364],[-14.184,-15.594],[16.366,49.636],[36.072,80.528],[44.925,32.318],[28.053,-46.13],[19.369,-80.58],[-17.668,-60.819]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[10.688,-3.536]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-10.688,3.536]],"v":[[-46.322,-71.364],[-14.184,-25.594],[16.366,39.636],[36.072,70.528],[44.925,22.318],[28.053,-56.13],[11.119,-94.58],[-18.543,-79.194]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[18.562,-8.214]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.563,4.286]],"v":[[-46.322,-71.364],[-14.184,-25.594],[16.366,39.636],[36.072,70.528],[44.925,22.318],[28.053,-56.13],[11.119,-94.705],[-21.793,-97.069]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.264,-4.878]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-38.593,-115.847],[-6.455,-75.827],[24.095,-10.597],[39.937,20.295],[52.653,-27.915],[35.782,-106.363],[20.167,-135.415],[-14.87,-136.904]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":251,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.334,-4.23]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-52.667,-153.242],[-3.529,-94.847],[27.021,-29.617],[41.4,1.275],[55.579,-46.935],[38.708,-125.383],[17.808,-161.634],[-22.729,-160.498]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.404,-3.582]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-43.241,-175.137],[-0.603,-113.867],[29.947,-48.637],[42.863,-17.745],[58.505,-65.955],[41.634,-144.403],[17.95,-187.353],[-21.087,-192.092]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-9.112,-23.75],[-3.437,-19.062],[-7.919,-1.014],[-1.963,25.112],[4.6,16.709],[0,0],[17.726,-1.227]],"o":[[0,0],[9.139,23.82],[1.842,10.215],[8,1.093],[2.039,-26.08],[-4.6,-16.709],[0,0],[-15.47,1.032]],"v":[[-7.021,-234.391],[18.719,-184.74],[40.287,-116.016],[45.782,-84.105],[70.902,-129.366],[64.654,-209.364],[53.481,-244.149],[22.305,-237.459]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[308.921,217.089],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[18.249,-7.53],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[59.774,35.283],[-45.316,18.03],[-59.369,3.747],[28.306,-68.658]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[1.04,-16.674],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[19.024,-66.967],[-57.316,9.03],[-59.369,3.747],[28.306,-68.658]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[18.249,-7.53],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[58.024,28.033],[-45.316,41.03],[-59.369,26.747],[28.306,-45.658]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[21.902,-11.737]],"v":[[28.274,3.283],[-45.316,41.03],[-59.369,26.747],[17.556,-45.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[21.902,-11.737]],"v":[[28.274,3.283],[-45.316,41.03],[-59.369,26.747],[17.556,-45.158]],"c":true}]},{"t":254,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.573,1.367]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[23.4,-6.994]],"v":[[26.274,-36.217],[-45.316,-28.97],[-59.369,-73.253],[32.44,-109.334]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[426.002,347.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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[49.584,41.444],[-72.339,95.819],[0,0],[0,0],[30.261,41.47],[-8.752,61.494]],"o":[[6.16,3.792],[95.485,55.774],[0,0],[-114.347,42.187],[24.261,-32.53],[-2.752,-8.506]],"v":[[-46.248,-121.777],[106.675,-171.152],[224.96,106.702],[123.507,102.465],[-38.925,102.697],[29.588,-26.327]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[49.584,41.444],[-76.839,70.819],[0,0],[0,0],[30.261,41.47],[-8.752,61.494]],"o":[[6.16,3.792],[95.485,55.774],[0,0],[-114.347,42.187],[24.261,-32.53],[-2.752,-8.506]],"v":[[-48.748,-160.777],[90.675,-202.152],[202.96,18.203],[123.507,102.465],[-38.925,102.697],[29.588,-26.327]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[27.475,22.964],[-81.101,93.862],[0,0],[0,0],[16.768,22.979],[-9.66,62.069]],"o":[[3.413,2.101],[95.485,55.774],[0,0],[-114.347,42.187],[13.443,-18.025],[-4.998,-25.544]],"v":[[-69.263,-132.192],[104.943,-186.768],[212.77,57.664],[123.507,112.72],[-37.588,108.048],[33.394,-13.524]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-86.396,122.496],[0,0],[0,0],[0,0],[-10.789,62.783]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[-7.789,-46.717]],"v":[[-20.748,-102.277],[122.675,-167.652],[224.961,106.702],[123.507,125.465],[-35.925,114.697],[38.124,2.385]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.636]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[38.294,25.304]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.636]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[38.294,25.304]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.637]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[32.794,11.804]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-116.634,96.626],[0,0],[0,0],[0,0],[-13.515,121.561]],"o":[[0,0],[89.002,64.116],[0,0],[-114.347,42.187],[0,0],[2.503,-22.518]],"v":[[-82.538,-161.717],[134.97,-203.459],[224.96,83.073],[123.507,89.171],[-63.263,106.027],[16.85,-71.393]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-160.024,28.447],[0,0],[0,0],[0,0],[20.041,71.363]],"o":[[0,0],[77.621,78.759],[0,0],[-114.347,42.187],[0,0],[-6.126,-21.813]],"v":[[5.829,-270.994],[164.86,-280.279],[224.96,76.703],[123.507,25.465],[57.858,-83.746],[41.294,-217.196]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[257.48,248.638],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":76,"op":254,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"head ","sr":1,"ks":{"o":{"a":0,"k":100,"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.716],"y":[0.728]},"o":{"x":[0.333],"y":[0]},"t":38,"s":[-7.566]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.232],"y":[0.254]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.675],"y":[0]},"t":60,"s":[7.941]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76,"s":[-12.05]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":92,"s":[4.393]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":106,"s":[2.918]},{"i":{"x":[0.893],"y":[0.727]},"o":{"x":[0.297],"y":[0]},"t":236,"s":[2.918]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.271],"y":[0.096]},"t":246,"s":[-2.082]},{"i":{"x":[0.832],"y":[0.831]},"o":{"x":[0.333],"y":[0]},"t":254,"s":[-30.863]},{"i":{"x":[0.846],"y":[0.925]},"o":{"x":[0.469],"y":[0.204]},"t":260,"s":[-26.456]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.204],"y":[0.338]},"t":272,"s":[-6]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":288,"s":[2]},{"t":302,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[326.829,549.509,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[326.829,566.509,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[326.829,549.509,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.881,"y":0.516},"o":{"x":0.652,"y":0},"t":58,"s":[369.829,484.509,0],"to":[0,0,0],"ti":[-0.158,-53.772,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.426,"y":0.432},"t":73.072,"s":[337.329,597.041,0],"to":[0.158,53.772,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[352.776,687.138,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[356.743,769.672,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":92,"s":[365.829,802.009,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.1,"y":0.1},"o":{"x":0.333,"y":0.333},"t":236,"s":[365.829,802.009,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.504,"y":0},"t":246,"s":[365.829,802.009,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.471,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[373.355,578.246,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[381.829,538.009,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[326.829,566.509,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":288,"s":[326.829,549.509,0],"to":[0,0,0],"ti":[0,0,0]},{"t":302,"s":[326.829,549.509,0]}],"ix":2,"l":2},"a":{"a":0,"k":[320.547,305.245,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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0.246,0.236],[0.286,-6.993],[-0.238,-0.477],[-0.291,7.115]],"o":[[-0.246,-0.236],[-0.386,9.435],[0.238,0.477],[0.291,-7.115]],"v":[[85.302,150.103],[81.687,168.761],[81.721,182.649],[82.303,169.805]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[8.277,1.885],[2.715,-10.447],[-8.166,-2.109],[-2.775,10.627]],"o":[[-8.277,-1.885],[-3.663,14.094],[8.166,2.109],[2.775,-10.627]],"v":[[98.696,147.087],[81.86,171.38],[86.277,201.223],[103.225,177.265]],"c":true}]},{"t":272,"s":[{"i":[[0.213,0.266],[1.19,-6.897],[-0.174,-0.504],[-1.211,7.017]],"o":[[-0.213,-0.266],[-1.606,9.305],[0.174,0.504],[1.211,-7.017]],"v":[[87.411,150.484],[81.408,168.517],[79.642,182.292],[81.884,169.632]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.2,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","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":1,"k":[{"t":0,"s":[0],"h":1},{"t":252,"s":[100],"h":1},{"t":268,"s":[0],"h":1}],"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-0.534,-8.486],[0.289,2.883],[-0.737,-11.386],[-0.133,0.252],[0.816,11.823]],"o":[[0.534,8.486],[-0.289,-2.883],[0.737,11.386],[0.133,-0.252],[-0.816,-11.823]],"v":[[12.58,259.283],[14.182,284.742],[13.908,284.116],[28.574,305.124],[13.87,275.308]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[3.114,-8.503],[5.819,2.896],[2.885,-11.409],[-9.615,0.242],[0.246,11.851]],"o":[[-3.114,8.503],[-5.819,-2.896],[-2.885,11.409],[9.615,-0.242],[-0.246,-11.851]],"v":[[62.37,270.028],[53.027,295.537],[38.268,294.894],[55.096,325.049],[74.476,286.105]],"c":true}]},{"t":272,"s":[{"i":[[3.114,-8.503],[5.819,2.896],[2.885,-11.409],[-9.615,0.242],[0.246,11.851]],"o":[[-3.114,8.503],[-5.819,-2.896],[-2.885,11.409],[9.615,-0.242],[-0.246,-11.851]],"v":[[52.425,268.983],[43.082,294.492],[28.323,293.849],[55.096,325.049],[64.53,285.06]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.2,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","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":1,"k":[{"t":0,"s":[0],"h":1},{"t":252,"s":[100],"h":1},{"t":268,"s":[0],"h":1}],"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-8.992,-66.411],[-11.815,22.943],[-20.605,68.427],[26.491,23.346]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[15.905,-7.203],[8.871,-22.661],[-9.82,-4.694],[-4.435,19.515]],"o":[[-12.363,5.601],[-4.435,11.29],[9.869,4.694],[4.436,-19.516]],"v":[[6.041,-66.498],[6.841,23.211],[-0.824,69.474],[39.649,20.247]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-28.882,-68.501],[-31.705,20.853],[-40.495,66.336],[6.601,21.256]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[15.564,-7.984],[3.633,-24.063],[-10.322,-5.968],[-0.978,37.133]],"o":[[-12.097,6.209],[-4.03,26.696],[10.403,5.968],[0.527,-20.007]],"v":[[-19.671,-86.183],[-9.524,4.056],[-20.605,68.427],[22.479,-5.995]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-12.362,-68.855],[-10.665,18.798],[-20.932,68.619],[24.243,18.28]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-12.362,-68.855],[-10.665,18.798],[-20.932,68.619],[24.243,18.28]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[16.431,-5.999],[8.871,-22.661],[-9.047,-2.73],[-4.435,19.515]],"o":[[-12.773,4.663],[-4.435,11.29],[9.047,2.73],[4.436,-19.516]],"v":[[34.396,-62.866],[33.814,30.012],[30.158,70.79],[63.386,23.276]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-28.882,-68.501],[-31.705,20.853],[-40.495,66.336],[6.601,21.256]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-8.992,-66.411],[-11.815,22.943],[-20.605,68.427],[26.491,23.346]],"c":true}]},{"t":302,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-8.992,-66.411],[-11.815,22.943],[-20.605,68.427],[26.491,23.346]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[343.27,261.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 1","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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[39.112,-29.516],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-14.355,10.806],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[68.023,49.163],[27.782,73.113]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[39.112,-29.516],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-14.355,10.806],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-72.594,100.54],[-31.653,69.808],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[68.023,49.163],[27.782,73.113]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[39.112,-29.516],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-14.355,10.806],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[68.023,49.163],[27.782,73.113]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[76.58,28.014],[0,0],[-12.555,-1.078],[0,0],[-14.919,12.258],[-0.807,45.484],[5.37,10.13],[-13.97,8.827],[-31.894,-28.792],[0,0],[28.109,-36.354],[11.229,-7.495]],"o":[[-6.965,-4.512],[0,0],[12.458,1.029],[0,0],[22.338,-18.307],[0.806,-45.483],[-6.796,-13.041],[13.976,-8.908],[23.494,23.415],[0,0],[-12.947,17.088],[-20.207,13.337]],"v":[[-98.738,121.905],[-121.384,101.963],[-93.515,97.14],[-55.967,105.314],[-8.235,73.547],[40.169,-22.923],[22.001,-107.011],[18.303,-152.572],[77.596,-124.896],[135.127,-33.759],[95.021,44.233],[42.028,88.373]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[40.528,-46.522],[9.473,-9.743]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-11.802,13.548],[-22.592,23.236]],"v":[[-94.98,123.575],[-125.441,97.307],[-113.252,95.287],[-87.363,104.514],[-31.706,60.752],[6.682,-25.589],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[58.705,42.15],[4.911,89.814]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-36.491,-23.853],[0,0],[44.332,-44.267],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[30.076,19.66],[0,0],[-23.551,23.517],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[59.382,-134.601],[127.12,-41.31],[67.139,62.132],[34.198,96.605]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-36.037,-24.534],[0,0],[28.885,-33.374],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[21.383,14.557],[0,0],[-11.759,13.586],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[19.378,-27.137],[1.815,-113.658],[-0.606,-154.303],[58.786,-134.487],[123.315,-33.863],[79.033,48.644],[37.752,85.386]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-36.037,-24.534],[0,0],[28.885,-33.374],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[21.383,14.557],[0,0],[-11.759,13.586],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[19.378,-27.137],[1.815,-113.658],[-0.606,-154.303],[58.786,-134.487],[123.315,-33.863],[79.034,48.644],[37.752,85.386]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[63.848,4.855],[0,0],[-11.025,0.988],[0,0],[-14.919,12.258],[-0.807,45.484],[7.432,14.679],[-14.621,7.766],[-25.511,-35.352],[0,0],[26.914,-40.946],[12.254,-5.873]],"o":[[-10.242,-0.779],[0,0],[11.025,-0.988],[0,0],[22.338,-18.307],[0.806,-45.483],[-11.178,-22.077],[14.633,-7.846],[26.746,37.064],[0,0],[-14.779,22.484],[-23.26,11.148]],"v":[[-94.125,123.523],[-115.133,109.138],[-76.008,104.836],[-28.32,97.396],[27.845,79.309],[72.202,-16.43],[53.103,-96.768],[47.436,-149.905],[106.577,-110.118],[153.327,-33.599],[119.654,37.437],[48.616,92.975]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[40.528,-46.522],[9.473,-9.743]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-11.802,13.548],[-22.592,23.236]],"v":[[-94.98,123.575],[-125.441,97.307],[-113.252,95.287],[-87.363,104.514],[-31.706,60.752],[6.682,-25.589],[1.814,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[58.705,42.15],[4.911,89.814]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[39.112,-29.516],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-14.355,10.806],[-18.226,14.758]],"v":[[-97.7,121.714],[-125.441,97.307],[-97.707,96.898],[-70.825,112.846],[-31.548,72.806],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[68.023,49.163],[27.782,73.113]],"c":true}]},{"t":302,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[39.112,-29.516],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-14.355,10.806],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[68.023,49.163],[27.782,73.113]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[292.141,278.341],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[18.065,13.911],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[46.047,26.894],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[0.842,-2.77],[15.916,-11.739],[-5.154,-8.072],[-14.628,7.256],[-4.547,12.636],[5.609,19.729],[7.5,-7.339],[-1.061,-20.625]],"o":[[-1.137,3.669],[-16.522,12.066],[6.366,10.109],[11.747,-5.87],[3.714,-10.516],[-5.609,-19.728],[-4.274,4.193],[1.061,21.766]],"v":[[40.74,17.036],[10.546,49.998],[-17.345,75.679],[30.631,68.83],[66.402,29.586],[64.055,-33.155],[40.837,-67.681],[42.902,-26.019]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[-7.793,11.193],[-40.696,41.434],[-70.373,66.838],[-15.347,60.481],[24.168,24.594],[20.217,-40.405],[-6.503,-74.935],[-5.616,-35.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[18.065,13.911],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[46.047,26.894],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[16.862,9.967],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[43.796,22.002],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[16.862,9.967],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[43.796,22.002],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0.773,-2.812],[14.346,-11.934],[-4.646,-8.206],[-13.185,7.377],[-4.098,12.846],[5.056,20.056],[7.5,-7.339],[-0.956,-20.968]],"o":[[-1.025,3.73],[-14.892,12.266],[5.738,10.277],[10.588,-5.968],[3.348,-10.691],[-5.056,-20.055],[-4.274,4.193],[0.956,22.127]],"v":[[77.529,27.927],[49.656,59.005],[24.516,85.113],[67.76,78.15],[101.234,41.269],[97.887,-25.53],[73.937,-60.693],[77.816,-15.724]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[-7.793,11.193],[-40.696,41.434],[-70.373,66.838],[-15.347,60.481],[24.168,24.594],[20.217,-40.405],[-6.503,-74.935],[-5.616,-35.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[18.065,13.911],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[46.047,26.894],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]},{"t":302,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[18.065,13.911],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[46.047,26.894],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[243.634,253.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 3","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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[16.29,-62.298],[7.984,-40.444],[4.355,0.524],[-18.064,29.798],[-30.403,50.523],[29.838,4.637]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[15.005,1.241],[0.905,-11.413],[1.359,-2.367],[6.745,-7.99],[-3.259,-5.707],[-4.161,27.474]],"o":[[-6.745,-0.57],[-1.516,19.321],[-2.273,3.994],[-3.411,3.994],[7.125,12.473],[3.79,-25.11]],"v":[[40.532,-57.578],[32.726,-35.486],[30.283,5.75],[9.213,35.343],[-2.384,56.294],[54.232,9.908]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[-9.568,-65.016],[-17.874,-43.162],[-21.503,-2.194],[-43.922,27.08],[-56.261,47.805],[3.98,1.919]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[16.29,-62.298],[7.984,-40.444],[4.355,0.524],[-18.064,29.798],[-30.403,50.523],[29.838,4.637]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[16.29,-62.298],[7.984,-40.444],[4.355,0.524],[-18.064,29.798],[-30.403,50.523],[29.838,4.637]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[13.522,1.289],[0.807,-11.604],[1.217,-2.411],[6.08,-8.123],[-2.938,-5.801],[-3.738,27.932]],"o":[[-6.08,-0.58],[-1.366,19.642],[-2.049,4.06],[-3.074,4.06],[6.422,12.681],[3.416,-25.527]],"v":[[77.882,-50.307],[70.846,-27.848],[70.231,13.803],[51.239,43.888],[40.787,65.187],[91.818,18.03]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[-9.568,-65.016],[-17.874,-43.162],[-21.503,-2.194],[-43.922,27.08],[-56.261,47.805],[3.98,1.919]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[16.29,-62.298],[7.984,-40.444],[4.355,0.524],[-18.064,29.798],[-30.403,50.523],[29.838,4.637]],"c":true}]},{"t":302,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[16.29,-62.298],[7.984,-40.444],[4.355,0.524],[-18.064,29.798],[-30.403,50.523],[29.838,4.637]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[215.408,240.206],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-11.935,1.613],[2.42,11.21],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.887,2.581],[-9.194,10.403],[-17.419,-0.241],[2.741,2.097],[27.58,-20.16],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-6.371,-15.162]],"o":[[15.564,-2.097],[-2.419,-11.209],[0,0],[2.661,1.129],[14.355,16.371],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.581,-7.661],[9.193,-10.403],[12.177,0.162],[-8.306,-6.452],[-23.226,17.016],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[3.79,9.274]],"v":[[-49.798,63.103],[-39.637,33.587],[-46.007,14.878],[-26.169,15.443],[-18.508,22.055],[4.314,68.829],[17.783,35.201],[16.975,11.25],[30.12,7.62],[47.701,-30.686],[88.992,-51.25],[112.297,-49.476],[35.685,-50.283],[8.589,-10.041],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.523],[-94.394,17.136],[-68.346,34.475]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[-10.559,4.36],[4.926,9.698],[0,0],[-6.834,-1.618],[-2.952,-2.289],[-10.852,1.169],[2.999,10.022],[-1.393,3.022],[-1.838,3.709],[-9.673,9.924],[-17.355,-1.086],[2.631,2.224],[28.472,-18.768],[0,0],[28.276,-1.096],[18.766,-8.826],[0,0],[-5,1.452],[-7.976,-14.102]],"o":[[13.77,-5.681],[-4.925,-9.697],[0,0],[2.749,0.647],[16.381,12.547],[10.416,-0.777],[-3.391,-10.303],[1.394,-3.022],[3.215,-7.366],[9.672,-9.923],[12.132,0.755],[-7.966,-6.837],[-23.985,15.833],[0,0],[-20.907,0.8],[-19.992,9.523],[0,0],[27.212,-6.008],[6.41,10.531]],"v":[[-12.205,64.824],[-11.202,33.936],[-21.562,18.313],[-6.378,17.549],[3.816,22.386],[37.174,60.257],[44.037,34.742],[39.229,16.531],[49.68,8.713],[68.788,-24.443],[110.955,-42.933],[134.104,-40.028],[57.763,-44.566],[28.787,-5.766],[-18.569,-6.371],[-80.933,6.975],[-111.159,29.212],[-90.514,20.825],[-36.091,40.755]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[-12.027,-0.634],[0.297,11.464],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.885,2.582],[-9.248,10.355],[-17.418,-0.323],[2.73,2.111],[27.664,-20.045],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-3.447,-16.081]],"o":[[15.683,0.827],[-0.297,-11.463],[0,0],[2.661,1.129],[3.75,14.156],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.621,-7.647],[9.248,-10.355],[12.176,0.226],[-8.272,-6.495],[-23.315,16.894],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[2.004,9.816]],"v":[[-73.438,59.955],[-48.399,35.709],[-46.007,14.878],[-26.169,15.443],[-20.497,21.846],[-15.576,66.739],[7.837,34.155],[16.975,11.25],[25.049,6.846],[42.831,-31.367],[84.228,-51.715],[107.524,-49.818],[30.918,-51.027],[3.61,-10.928],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.524],[-94.394,17.136],[-76.774,31.255]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-11.935,1.613],[2.42,11.21],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.887,2.581],[-9.194,10.403],[-17.419,-0.241],[2.741,2.097],[27.58,-20.16],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-6.371,-15.162]],"o":[[15.564,-2.097],[-2.419,-11.209],[0,0],[2.661,1.129],[14.355,16.371],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.581,-7.661],[9.193,-10.403],[12.177,0.162],[-8.306,-6.452],[-23.226,17.016],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[3.79,9.274]],"v":[[-49.798,63.103],[-39.637,33.587],[-46.007,14.878],[-26.169,15.443],[-18.508,22.055],[4.314,68.829],[17.783,35.201],[16.975,11.25],[30.12,7.62],[47.701,-30.686],[88.992,-51.25],[112.297,-49.476],[35.685,-50.283],[8.589,-10.041],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.523],[-94.394,17.136],[-68.346,34.475]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-11.935,1.613],[2.42,11.21],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.887,2.581],[-9.194,10.403],[-17.419,-0.241],[2.741,2.097],[27.58,-20.16],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-6.371,-15.162]],"o":[[15.564,-2.097],[-2.419,-11.209],[0,0],[2.661,1.129],[14.355,16.371],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.581,-7.661],[9.193,-10.403],[12.177,0.162],[-8.306,-6.452],[-23.226,17.016],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[3.79,9.274]],"v":[[-49.798,63.103],[-39.637,33.587],[-46.007,14.878],[-26.169,15.443],[-18.508,22.055],[4.314,68.829],[17.783,35.201],[16.975,11.25],[30.12,7.62],[47.701,-30.686],[88.992,-51.25],[112.297,-49.476],[35.685,-50.283],[8.589,-10.041],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.523],[-94.394,17.136],[-68.346,34.475]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-8.439,8.592],[8.788,7.369],[0,0],[-7.175,0.237],[-3.522,-1.217],[-6.078,5.455],[6.379,4.588],[-0.434,2.086],[-3.304,5.447],[-10.411,9.185],[-17.256,-2.387],[2.46,2.42],[29.846,-16.622],[0,0],[28.477,0.447],[32.149,-14.846],[0,0],[-5,1.452],[-10.448,-12.468]],"o":[[11.005,-11.204],[-8.787,-7.368],[0,0],[2.885,-0.095],[19.503,6.656],[4.969,-4.46],[-7.372,-5.302],[0.434,-2.086],[4.192,-6.912],[10.41,-9.185],[12.063,1.668],[-7.443,-7.431],[-25.154,14.009],[0,0],[-20.94,-0.329],[-20.105,9.285],[0,0],[50.253,-9.673],[10.448,12.468]],"v":[[45.715,67.475],[32.607,34.472],[16.1,23.605],[24.115,20.795],[38.211,22.896],[87.802,47.049],[84.487,34.035],[73.515,24.667],[79.816,10.395],[101.276,-14.824],[144.794,-30.119],[167.701,-25.472],[91.779,-35.758],[59.908,0.819],[8.423,-2.083],[-73.738,11.572],[-105.182,34.896],[-84.537,26.509],[13.606,50.431]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-12.027,-0.634],[0.297,11.464],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.885,2.582],[-9.248,10.355],[-17.418,-0.323],[2.73,2.111],[27.664,-20.045],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-3.447,-16.081]],"o":[[15.683,0.827],[-0.297,-11.463],[0,0],[2.661,1.129],[3.75,14.156],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.621,-7.647],[9.248,-10.355],[12.176,0.226],[-8.272,-6.495],[-23.315,16.894],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[2.004,9.816]],"v":[[-73.438,59.955],[-48.399,35.709],[-46.007,14.878],[-26.169,15.443],[-20.497,21.846],[-15.576,66.739],[7.837,34.155],[16.975,11.25],[25.049,6.846],[42.831,-31.367],[84.228,-51.715],[107.524,-49.818],[30.918,-51.027],[3.61,-10.928],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.524],[-94.394,17.136],[-76.774,31.255]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[-11.935,1.613],[2.42,11.21],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.887,2.581],[-9.194,10.403],[-17.419,-0.241],[2.741,2.097],[27.58,-20.16],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-6.371,-15.162]],"o":[[15.564,-2.097],[-2.419,-11.209],[0,0],[2.661,1.129],[14.355,16.371],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.581,-7.661],[9.193,-10.403],[12.177,0.162],[-8.306,-6.452],[-23.226,17.016],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[3.79,9.274]],"v":[[-49.798,63.103],[-39.637,33.587],[-46.007,14.878],[-26.169,15.443],[-18.508,22.055],[4.314,68.829],[17.783,35.201],[16.975,11.25],[30.12,7.62],[47.701,-30.686],[88.992,-51.25],[112.297,-49.476],[35.685,-50.283],[8.589,-10.041],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.523],[-94.394,17.136],[-68.346,34.475]],"c":true}]},{"t":302,"s":[{"i":[[-11.935,1.613],[2.42,11.21],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.887,2.581],[-9.194,10.403],[-17.419,-0.241],[2.741,2.097],[27.58,-20.16],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-6.371,-15.162]],"o":[[15.564,-2.097],[-2.419,-11.209],[0,0],[2.661,1.129],[14.355,16.371],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.581,-7.661],[9.193,-10.403],[12.177,0.162],[-8.306,-6.452],[-23.226,17.016],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[3.79,9.274]],"v":[[-49.798,63.103],[-39.637,33.587],[-46.007,14.878],[-26.169,15.443],[-18.508,22.055],[4.314,68.829],[17.783,35.201],[16.975,11.25],[30.12,7.62],[47.701,-30.686],[88.992,-51.25],[112.297,-49.476],[35.685,-50.283],[8.589,-10.041],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.523],[-94.394,17.136],[-68.346,34.475]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[228.351,73.273],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[22.984,-4.194],[6.451,27.419],[-21.29,4.193],[-3.307,-27.5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[0.762,-17.632],[12.221,-0.77],[0.53,20.054],[-12.221,0.769]],"o":[[-0.657,15.079],[-12.231,0.848],[-0.513,-18.927],[12.221,-0.769]],"v":[[43.628,7.849],[23.325,36.586],[-0.75,10.247],[20.982,-18.378]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[3.093,-6.285],[-13.439,25.328],[-41.18,2.102],[-23.197,-29.591]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[22.984,-4.194],[6.451,27.419],[-21.29,4.193],[-3.307,-27.5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[22.984,-4.194],[6.451,27.419],[-21.29,4.193],[-3.307,-27.5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[4.421,-17.34],[12.288,1.772],[-3.621,20.013],[-12.288,-1.772]],"o":[[-3.781,14.829],[-12.315,-1.696],[3.418,-18.89],[12.288,1.772]],"v":[[75.436,26.404],[49.324,50.711],[30.896,19.575],[58.404,-4.324]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[3.093,-6.285],[-13.439,25.328],[-41.18,2.102],[-23.197,-29.591]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[22.984,-4.194],[6.451,27.419],[-21.29,4.193],[-3.307,-27.5]],"c":true}]},{"t":302,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[22.984,-4.194],[6.451,27.419],[-21.29,4.193],[-3.307,-27.5]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.19199999641,0.19199999641,0.187999994615,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[153.393,195.328],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[36.249,-24.556],[-13.428,-6.572],[-10.443,22.137],[11.089,31.734],[34.395,36.492],[15.283,60.443],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-3.942,-3.767],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[3.648,3.728],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[58.801,-13.334],[9.479,6.146],[12.55,34.458],[33.993,43.352],[57.96,47.888],[38.496,72.544],[-10.845,33.755],[-4.216,-39.679]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[19.788,-25.783],[-18.793,-8.141],[-15.809,20.568],[1.143,30.689],[24.45,35.447],[5.337,59.398],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[36.249,-24.556],[-13.428,-6.572],[-10.443,22.137],[11.089,31.734],[34.395,36.492],[15.283,60.443],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[36.249,-24.556],[-13.428,-6.572],[-10.443,22.137],[11.089,31.734],[34.395,36.492],[15.283,60.443],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-2.682,-3.11],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[5.169,5.993],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[93.547,3.957],[44.772,25.74],[47.978,53.443],[69.283,61.251],[94.266,65.447],[74.262,91.188],[24.445,51.654],[28.366,-19.74]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[19.788,-25.783],[-18.793,-8.141],[-15.809,20.568],[1.143,30.689],[24.45,35.447],[5.337,59.398],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[36.249,-24.556],[-13.428,-6.572],[-10.443,22.137],[11.089,31.734],[34.395,36.492],[15.283,60.443],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"t":302,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[36.249,-24.556],[-13.428,-6.572],[-10.443,22.137],[11.089,31.734],[34.395,36.492],[15.283,60.443],[-33.749,22.137],[-25.363,-52.62]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.2,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[39.403,253.673],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-65.483,-73.264],[-78.064,-39.152],[-4.193,75.443],[79.596,80.201],[44.919,31.169],[17.419,-1.734],[1.855,-60.039]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-12.245,-87.016],[-58.602,-64.565],[-71.712,-31.156],[4.222,80.84],[106.096,85.255],[68.868,36.491],[40.665,4.559],[24.135,-52.689]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[21.91,18.795],[4.194,7.742],[3.798,17.602]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-14.812,-12.706],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-75.428,-74.31],[-87.529,-39.982],[-12.14,74.518],[79.596,80.201],[21.915,34.784],[-4.958,-4.085],[-16.255,-59.932]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-65.483,-73.264],[-78.064,-39.152],[-4.193,75.443],[79.596,80.201],[44.919,31.169],[17.419,-1.734],[1.855,-60.039]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-65.483,-73.264],[-78.064,-39.152],[-4.193,75.443],[79.596,80.201],[44.919,31.169],[17.419,-1.734],[1.855,-60.039]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-6.26,-77.265],[-48,-51.161],[-61.926,-18.835],[17.188,89.155],[146.926,93.041],[105.766,44.693],[76.482,14.254],[58.463,-41.364]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[21.91,18.795],[4.194,7.742],[3.798,17.602]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-14.812,-12.706],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-75.428,-74.31],[-87.529,-39.982],[-12.14,74.518],[79.596,80.201],[21.915,34.784],[-4.958,-4.085],[-16.255,-59.932]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-65.483,-73.264],[-78.064,-39.152],[-4.193,75.443],[79.596,80.201],[44.919,31.169],[17.419,-1.734],[1.855,-60.039]],"c":true}]},{"t":302,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-65.483,-73.264],[-78.064,-39.152],[-4.193,75.443],[79.596,80.201],[44.919,31.169],[17.419,-1.734],[1.855,-60.039]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,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":[98.958,275.205],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[28.71,15.565],[0,0],[-12.58,-7.742]],"o":[[0,0],[-28.709,-15.564],[0,0],[12.5,7.822]],"v":[[17.339,38.306],[8.386,-22.742],[-37.096,4.758],[-11.935,20.887]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[0,0],[27.865,16.917],[0,0],[-12.165,-8.332]],"o":[[0,0],[-27.864,-16.916],[0,0],[12.081,8.407]],"v":[[38.481,48.603],[32.531,-12.696],[-14.155,12.504],[10.144,29.81]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[0,0],[28.628,15.715],[0,0],[-12.539,-7.808]],"o":[[0,0],[-28.627,-15.715],[0,0],[12.459,7.888]],"v":[[12.068,37.991],[3.437,-23.103],[-42.19,4.158],[-17.114,20.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[28.71,15.565],[0,0],[-12.58,-7.742]],"o":[[0,0],[-28.709,-15.564],[0,0],[12.5,7.822]],"v":[[17.339,38.306],[8.386,-22.742],[-37.096,4.758],[-11.935,20.887]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[28.71,15.565],[0,0],[-12.58,-7.742]],"o":[[0,0],[-28.709,-15.564],[0,0],[12.5,7.822]],"v":[[17.339,38.306],[8.386,-22.742],[-37.096,4.758],[-11.935,20.887]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[26.562,19],[0,0],[-11.525,-9.24]],"o":[[0,0],[-26.561,-18.999],[0,0],[11.435,9.309]],"v":[[71.055,64.468],[69.73,2.781],[21.193,24.438],[44.163,43.558]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[28.628,15.715],[0,0],[-12.539,-7.808]],"o":[[0,0],[-28.627,-15.715],[0,0],[12.459,7.888]],"v":[[12.068,37.991],[3.437,-23.103],[-42.19,4.158],[-17.114,20.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[0,0],[28.71,15.565],[0,0],[-12.58,-7.742]],"o":[[0,0],[-28.709,-15.564],[0,0],[12.5,7.822]],"v":[[17.339,38.306],[8.386,-22.742],[-37.096,4.758],[-11.935,20.887]],"c":true}]},{"t":302,"s":[{"i":[[0,0],[28.71,15.565],[0,0],[-12.58,-7.742]],"o":[[0,0],[-28.709,-15.564],[0,0],[12.5,7.822]],"v":[[17.339,38.306],[8.386,-22.742],[-37.096,4.758],[-11.935,20.887]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[328.713,80.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 9","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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-26.829,23.01],[0,0]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[35.04,-30.052],[0,0]],"v":[[181.302,-39.232],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[216.031,-5.523]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[20.78,29.176],[0.267,2.833],[-3.19,15.802],[36.49,20.159],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-32.438,-18.592],[0,0],[-31.526,8.972],[-10.026,49.136]],"o":[[-9.837,-13.811],[-0.532,-5.587],[3.19,-15.801],[-36.489,-20.159],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.753,20.897],[0,0],[44.539,-12.602],[5.449,-26.707]],"v":[[188.219,-28.693],[165.98,-61.369],[174.807,-95.19],[141.584,-175.656],[72.972,-175.061],[47.073,-134.902],[27.939,-134.226],[-74.896,-126.509],[-121.347,-88.042],[-142.743,-35.175],[-172.994,-18.317],[-201.459,0.513],[-203.787,71.965],[-140.005,152.626],[-33.34,169.414],[54.695,181.044],[236.954,60.326]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[15.556,23.301],[0.298,2.831],[-3.031,15.837],[36.702,19.793],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-32.752,-19.069],[0,0],[-30.434,12.236],[3.592,36.082]],"o":[[-11.257,-17.356],[-0.596,-5.582],[3.03,-15.836],[-36.702,-19.792],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.608,21.157],[0,0],[42.331,-16.659],[-3.29,-22.133]],"v":[[192.949,-23.858],[162.117,-63.648],[169.352,-97.606],[135.419,-177.952],[66.799,-176.66],[41.302,-136.23],[22.172,-135.359],[-75.798,-127.367],[-122.249,-88.9],[-142.87,-37.487],[-174.45,-20.217],[-203.366,-1.509],[-205.509,70.392],[-142.269,151.218],[-38.335,168.359],[45.758,180.935],[232.123,43.013]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":64,"s":[{"i":[[11.601,18.851],[0.322,2.829],[-2.91,15.864],[36.863,19.515],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-32.99,-19.43],[0,0],[-29.607,14.708],[13.904,26.197]],"o":[[-12.333,-20.041],[-0.644,-5.578],[2.909,-15.863],[-36.862,-19.515],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.498,21.354],[0,0],[40.658,-19.732],[-9.909,-18.669]],"v":[[192.695,-22.338],[159.192,-65.373],[165.221,-99.436],[130.751,-179.69],[62.124,-177.871],[36.932,-137.236],[17.804,-136.218],[-76.481,-128.016],[-122.932,-89.549],[-142.967,-39.238],[-175.553,-21.657],[-204.81,-3.04],[-206.813,69.201],[-143.984,150.152],[-42.118,167.56],[38.991,180.852],[223.994,29.619]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":69,"s":[{"i":[[14.971,24.16],[0.4,2.822],[-2.517,15.952],[37.385,18.615],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.763,-20.604],[0,0],[-26.921,22.734],[-0.197,0.967]],"o":[[-14.756,-23.858],[-0.801,-5.565],[2.516,-15.951],[-37.384,-18.615],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.141,21.994],[0,0],[35.227,-29.709],[0.107,-0.525]],"v":[[172.851,-29.647],[149.694,-70.974],[151.807,-105.376],[115.592,-185.335],[46.945,-181.803],[22.743,-140.501],[3.621,-139.005],[-78.699,-130.125],[-125.15,-91.658],[-143.279,-44.923],[-179.135,-26.329],[-209.499,-8.013],[-211.047,65.335],[-149.55,146.691],[-54.4,164.967],[17.017,180.584],[201.022,16.834]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[14.855,24.059],[0.403,2.822],[-2.503,15.955],[37.403,18.584],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-26.829,23.01],[0,0]],"o":[[-14.855,-24.059],[-0.806,-5.565],[2.503,-15.954],[-37.402,-18.584],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[35.04,-30.052],[0,0]],"v":[[173.229,-29.748],[149.367,-71.167],[151.345,-105.581],[115.071,-185.53],[46.423,-181.938],[22.254,-140.613],[3.133,-139.101],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[200.617,13.97]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-35.16,-3.615],[25.338,62.886]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[54.927,5.647],[-25.338,-62.886]],"v":[[181.302,-39.232],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[223.194,40.115]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-34.504,7.665],[-16.533,81.027]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[49.405,-10.976],[8.986,-44.042]],"v":[[175.647,-51.961],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[194.658,35.779]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-34.504,7.665],[-16.533,81.027]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[49.405,-10.976],[8.986,-44.042]],"v":[[175.647,-51.961],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[194.658,35.779]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[14.435,31.084],[0.267,2.833],[-3.19,15.802],[36.49,20.159],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-32.438,-18.592],[0,0],[-31.526,8.972],[-10.026,49.136]],"o":[[-7.142,-15.379],[-0.532,-5.587],[3.19,-15.801],[-36.489,-20.159],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.753,20.897],[0,0],[44.539,-12.602],[5.449,-26.707]],"v":[[188.219,-28.693],[165.98,-61.369],[174.807,-95.19],[141.584,-175.656],[72.972,-175.061],[47.073,-134.902],[27.939,-134.226],[-74.896,-126.509],[-121.347,-88.042],[-142.743,-35.175],[-172.994,-18.317],[-201.459,0.513],[-203.787,71.965],[-140.005,152.626],[-33.34,169.414],[93.491,203.657],[213.132,59.439]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[9.121,20.8],[0.056,2.85],[-4.378,15.546],[34.935,22.889],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-30.354,-15.43],[0,0],[-26.939,10.986],[0,0]],"o":[[-7.604,-19.102],[-0.111,-5.622],[4.377,-15.545],[-34.934,-22.888],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[37.715,19.172],[0,0],[37.042,-15.107],[0,0]],"v":[[207.719,-9.886],[191.577,-46.274],[202.944,-79.395],[175.07,-160.955],[106.48,-165.531],[77.581,-127.364],[58.416,-128.13],[-68.918,-120.825],[-115.369,-82.358],[-141.9,-19.854],[-163.342,-5.725],[-188.822,13.913],[-192.377,82.384],[-125.004,161.954],[-0.241,176.402],[83.532,162.111],[229.599,29.896]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.503,15.955],[37.403,18.584],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-26.829,23.01],[0,0]],"o":[[-15,-15.161],[-0.806,-5.565],[2.503,-15.954],[-37.402,-18.584],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[35.04,-30.052],[0,0]],"v":[[181.302,-39.232],[149.367,-71.167],[151.345,-105.581],[115.071,-185.53],[46.423,-181.938],[22.254,-140.613],[3.133,-139.101],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[216.031,-5.523]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-26.829,23.01],[0,0]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[35.04,-30.052],[0,0]],"v":[[181.302,-39.232],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[14.262,180.645],[216.031,-5.523]],"c":true}]},{"t":302,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-26.829,23.01],[0,0]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[35.04,-30.052],[0,0]],"v":[[181.302,-39.232],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[216.031,-5.523]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[222.813,210.366],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-52.176,36.37],[-9.92,-33.065],[53.87,9.193],[26.773,43.467]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[0,0],[-44.356,6.125],[0,0],[0,0]],"o":[[0,0],[48.259,-6.64],[0,0],[0,0]],"v":[[-50.697,37.525],[-2.803,-30.242],[56.988,18.676],[9.498,47.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-30.278,38.49],[11.979,-30.945],[77.785,11.531],[48.672,45.587]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-52.176,36.37],[-9.92,-33.065],[53.87,9.193],[26.773,43.467]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-52.176,36.37],[-9.92,-33.065],[53.87,9.193],[26.773,43.467]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-44.98,0.776],[0,0],[0,0]],"o":[[0,0],[48.933,-0.845],[0,0],[0,0]],"v":[[-48.419,39.304],[8.161,-25.891],[61.79,33.286],[-17.119,53.969]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-30.278,38.49],[11.979,-30.945],[77.785,11.531],[48.672,45.587]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-52.176,36.37],[-9.92,-33.065],[53.87,9.193],[26.773,43.467]],"c":true}]},{"t":302,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-52.176,36.37],[-9.92,-33.065],[53.87,9.193],[26.773,43.467]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[217.747,43.717],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":13,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"leg_FF","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[5.858]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.297],"y":[0]},"t":64,"s":[50.765]},{"i":{"x":[0.815],"y":[0.962]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[46.844]},{"t":76,"s":[62.06]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[394.362,698.106,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[394.362,698.106,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[394.362,698.106,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.33,"y":0},"t":62,"s":[397.441,677.681,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[403.362,702.106,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[423.364,730.776,0],"to":[0,0,0],"ti":[0,0,0]},{"t":76,"s":[463.362,818.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[237.022,331.632,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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-24.354,-0.404],[0.806,8.388],[15.645,0.888],[0,0]],"o":[[0,0],[24.355,0.403],[-0.807,-8.387],[-9.597,-0.565],[0,0]],"v":[[-39.394,19.113],[-8.588,12.259],[41.572,7.742],[-11.088,-18.548],[-41.128,-16.128]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-24.354,-0.404],[0.806,8.388],[15.645,0.888],[0,0]],"o":[[0,0],[24.355,0.403],[-0.807,-8.387],[-9.597,-0.565],[0,0]],"v":[[-39.394,29.113],[-8.588,22.259],[41.572,17.742],[-11.088,-8.548],[-42.378,-6.128]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-24.354,-0.404],[0.806,8.388],[15.645,0.888],[0,0]],"o":[[0,0],[24.355,0.403],[-0.807,-8.387],[-9.597,-0.565],[0,0]],"v":[[-39.394,19.113],[-8.588,12.259],[41.572,7.742],[-11.088,-18.548],[-41.128,-16.128]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[0,0],[-24.078,-2.158],[0.193,8.361],[15.416,2.041],[0,0]],"o":[[0,0],[24.079,2.158],[-0.193,-8.36],[-9.459,-1.252],[0,0]],"v":[[-47.16,-9.789],[-17.685,-14.408],[29.81,-14.965],[-17.935,-45.083],[-47.485,-44.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[0,0],[-24.357,-0.113],[0.907,8.378],[15.653,0.735],[0,0]],"o":[[0,0],[24.358,0.113],[-0.907,-8.377],[-9.603,-0.451],[0,0]],"v":[[-41.844,18.918],[-11.122,11.699],[38.982,6.586],[-13.988,-19.076],[-45.247,-16.285]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[0,0],[-24.138,3.263],[2.059,8.171],[24.813,-3.835],[0,0]],"o":[[0,0],[24.139,-3.264],[-2.059,-8.17],[-9.501,1.468],[0,0]],"v":[[-39.132,25.076],[-3.004,13.392],[45.907,1.385],[-10.108,-16.688],[-40.678,-9.591]],"c":true}]},{"t":76,"s":[{"i":[[0,0],[-24.138,3.263],[2.059,8.171],[24.813,-3.835],[0,0]],"o":[[0,0],[24.139,-3.264],[-2.059,-8.17],[-9.501,1.468],[0,0]],"v":[[-39.132,25.076],[-3.004,13.392],[45.907,1.385],[-10.108,-16.688],[-40.678,-9.591]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[207.453,391.661],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-42.499,17.298],[-9.033,12.217],[36.451,13.428],[-8.307,-14.878],[-44.274,-14.395]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-42.499,17.298],[-9.033,12.217],[36.451,13.428],[-8.307,-14.878],[-44.274,-14.395]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-42.499,17.298],[-9.033,12.217],[36.451,13.428],[-8.307,-14.878],[-44.274,-14.395]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[0,0],[-12.67,0.088],[-4.958,2.066],[24.252,4.178],[0,0]],"o":[[0,0],[15.388,-0.107],[8.028,-3.346],[-24.252,-4.178],[0,0]],"v":[[-50.139,-12.108],[-22.948,-14.776],[19.504,-10.002],[-20.272,-41.545],[-52.813,-43.02]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[0,0],[-12.716,-0.339],[-4.867,2.313],[24.511,3],[0,0]],"o":[[0,0],[13.874,0.331],[7.882,-3.747],[-24.512,-3],[0,0]],"v":[[-46.72,4.65],[-15.961,0.368],[24.035,10.29],[-14.59,-26.592],[-49.094,-26.697]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[0,0],[-12.75,-0.655],[-4.8,2.497],[24.704,2.126],[0,0]],"o":[[0,0],[12.751,0.655],[7.775,-4.044],[-24.704,-2.126],[0,0]],"v":[[-44.185,17.074],[-10.781,11.596],[34.714,12.265],[-10.377,-15.507],[-46.336,-14.595]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[0,0],[-12.765,-0.167],[-4.701,2.678],[24.767,1.179],[0,0]],"o":[[0,0],[12.766,0.167],[7.614,-4.338],[-24.767,-1.179],[0,0]],"v":[[-41.734,19.406],[-6.209,12.78],[39.278,11.708],[-6.843,-14.318],[-42.74,-12.031]],"c":true}]},{"t":76,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-42.69,18.631],[-9.223,13.55],[36.451,13.428],[-8.497,-13.546],[-44.464,-13.062]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[212.655,457.749],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[0,0],[6.459,-7.43],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[1.345,-0.768],[0,0],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-90.443,-35.281],[-77.701,-84.314],[-75.054,-103.242],[-97.298,-93.426],[-112.459,13.831],[-128.023,84.394]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[1.974,3.277],[7.748,-8.913],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[1.05,-0.6],[-3.331,-5.531],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-90.443,-35.281],[-77.701,-74.314],[-79.36,-81.57],[-97.298,-83.426],[-112.459,13.831],[-128.023,84.394]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[0,0],[6.459,-7.43],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[1.345,-0.768],[0,0],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-90.443,-35.281],[-77.701,-84.314],[-75.054,-103.242],[-97.298,-93.426],[-112.459,13.831],[-128.023,84.394]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[-0.59,-8.526],[-9.801,30.701],[0.502,25.404],[-2.748,1.468],[1.26,3.576],[7.952,-8.587],[-3.625,-30.61],[10.4,-21.766]],"o":[[0.443,6.401],[9.801,-30.701],[-0.731,-37.021],[1.057,-0.565],[-1.204,-3.417],[-4.041,4.363],[3.385,28.587],[-8.702,18.477]],"v":[[-131.237,94.73],[-102.598,58.481],[-103.462,-27.14],[-86.316,-98.549],[-81.738,-115.7],[-105.302,-108.897],[-122.364,-15.733],[-118.251,57.622]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[-1.511,-2.395],[-5.97,24.157],[-6.825,31.118],[-12.257,14.1],[2.88,0.036],[7.08,-9.343],[-0.779,-19.617],[-4.721,-16.823]],"o":[[2.744,4.35],[1.164,-31.425],[6.825,-31.118],[2.119,-2.268],[-3.644,0.531],[-16.318,24.331],[0.181,23.023],[6.775,13.363]],"v":[[-122.219,79.557],[-112.847,47.262],[-103.98,-31.891],[-78.298,-113.432],[-74.614,-127.47],[-98.557,-112.006],[-131.389,9.317],[-130.333,52.356]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[0,0],[0.829,14.431],[-6.878,27.733],[-13.701,8.434],[3.853,-2.088],[6.556,-9.797],[0.93,-13.02],[-14.307,-9.617]],"o":[[0,0],[-0.829,-14.431],[7.77,-31.332],[2.756,-3.291],[-5.108,2.9],[-23.686,36.313],[-1.742,19.684],[14.307,9.617]],"v":[[-110.258,58.481],[-111.4,31.252],[-100.553,-46.765],[-71.538,-118.393],[-69.167,-141.174],[-94.698,-121.575],[-130.879,13.77],[-131.658,38.616]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[0,0],[-0.962,12.584],[-7.44,27.952],[-19.308,23.465],[4.081,-2.588],[6.433,-9.904],[1.332,-11.467],[-7.675,-5.904]],"o":[[0,0],[2.107,-27.557],[6.615,-24.855],[2.906,-3.532],[-5.453,3.457],[-25.421,39.134],[-2.195,18.897],[7.675,5.904]],"v":[[-107.513,51.454],[-110.451,21.766],[-97.597,-49.212],[-63.876,-133.093],[-71.317,-150.095],[-89.584,-126.223],[-130.759,14.819],[-123.13,38.24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[-7.039,3.624],[-3.802,32.172],[-6.074,24.903],[-11.068,22.236],[3.597,-0.95],[7.643,-16.958],[0.857,-11.488],[0.64,-13.415]],"o":[[4.55,-2.343],[3.591,-28.743],[7.204,-29.537],[1.59,-3.195],[-5.06,0.963],[-21.734,50.119],[-1.413,18.933],[-0.64,13.415]],"v":[[-120.058,110.551],[-113.63,53.985],[-89.626,-50.724],[-59.25,-144.528],[-68.693,-163.808],[-83.585,-137.886],[-125.535,19.566],[-129.248,87.142]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-3.141,-2.484],[-5.95,31.834],[-4.87,25.139],[-7.213,14.487],[3.02,0.996],[7.336,-20.053],[2.323,-11.281],[2.821,-27.483]],"o":[[1.99,2.053],[5.844,-30.119],[5.484,-27.799],[1.065,-2.139],[-4.592,-2.002],[-11.461,32.291],[-4.048,19.659],[-6.146,17.373]],"v":[[-124.769,107.24],[-111.745,65.294],[-86.073,-53.024],[-56.629,-148.093],[-65.688,-170.273],[-83.655,-132.213],[-116.298,11.002],[-128.421,85.687]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[0.758,-8.593],[-8.098,31.495],[-3.665,25.375],[-3.359,6.737],[2.444,2.943],[7.073,-22.198],[-0.27,-11.54],[9.217,-22.528]],"o":[[-0.569,6.449],[8.098,-31.495],[3.764,-26.061],[0.539,-1.082],[-4.125,-4.967],[-1.822,5.717],[0.446,19.019],[-7.697,19.117]],"v":[[-143.945,120.838],[-109.86,76.603],[-82.521,-55.324],[-64.437,-120.875],[-72.596,-123.807],[-84.749,-106.951],[-107.061,2.437],[-125.679,76.643]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[{"i":[[1.072,-8.541],[-9.259,31.101],[-4.6,26.924],[-3.145,16.264],[2.326,3.026],[4.211,-24.3],[0.16,-11.518],[10.038,-22.118]],"o":[[-0.81,6.409],[9.258,-31.101],[4.291,-25.806],[1.282,-3.075],[-3.927,-5.108],[-0.689,9.027],[-0.27,18.982],[-8.394,18.773]],"v":[[-148.311,120.014],[-110.489,79.136],[-82.712,-52.168],[-73.484,-111.433],[-69.58,-143.733],[-85.33,-109.469],[-108.41,5.286],[-126.265,78.581]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[1.387,-8.49],[-10.42,30.707],[-5.535,28.473],[-2.247,4.833],[2.209,3.11],[1.349,-26.403],[0.591,-11.496],[10.859,-21.707]],"o":[[-1.05,6.369],[10.419,-30.707],[4.818,-25.551],[2.024,-5.069],[-3.728,-5.249],[0.444,12.336],[-0.987,18.945],[-9.091,18.429]],"v":[[-152.677,119.189],[-111.119,81.668],[-82.903,-49.011],[-72.763,-103.739],[-69.921,-131.658],[-85.91,-111.987],[-109.76,8.134],[-126.851,80.519]],"c":true}]},{"t":76,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-7.404,31.571],[-1.135,2.929],[1.974,3.277],[-4.375,-30.609],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[5.872,-25.041],[3.509,-9.055],[-3.331,-5.531],[2.709,18.955],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-83.285,-42.699],[-68.613,-94.082],[-65.367,-112.36],[-87.072,-117.022],[-112.459,13.831],[-128.023,84.394]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[380.919,482.587],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[12.714,2.869],[-6.705,-21.601],[-7.037,4.506],[3.614,5.216]],"o":[[-6.325,-1.427],[5.472,17.464],[3.902,-2.499],[-6.047,-8.728]],"v":[[18.215,-21.18],[9.955,6.106],[36.928,24.194],[26.173,3.043]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[8.896,-5.482],[-15.948,-8.625],[-1.508,6.526],[4.999,0.978]],"o":[[-4.425,2.726],[12.923,6.945],[0.836,-3.619],[-8.357,-1.614]],"v":[[45.423,14.225],[55.978,34.495],[81.576,29.748],[63.558,23.651]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[6.066,-11.672],[-22.801,0.995],[2.59,8.023],[6.026,-2.163]],"o":[[-3.017,5.805],[18.447,-0.855],[-1.436,-4.449],[-10.069,3.66]],"v":[[72.915,27.404],[97.42,42.472],[121.997,20.797],[98.595,25.86]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[7.94,-8.267],[-16.407,-8.404],[-0.686,8.446],[4.941,0.447]],"o":[[-3.949,4.112],[13.289,6.754],[0.38,-4.683],[-8.255,-0.747]],"v":[[60.159,30.532],[72.734,54.421],[96.876,44.511],[78.77,39.607]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[11.442,3.42],[-4.927,-20.698],[-6.666,3.839],[3.009,5.111]],"o":[[-5.691,-1.701],[4.03,16.737],[3.696,-2.129],[-5.036,-8.552]],"v":[[34.799,-2.263],[25.763,22.932],[49.371,41.476],[40.725,20.972]],"c":true}]},{"t":76,"s":[{"i":[[12.221,4.867],[-3.272,-22.587],[-7.724,3.38],[2.755,5.779]],"o":[[-6.078,-2.421],[2.697,18.269],[4.283,-1.874],[-4.649,-9.653]],"v":[[3.53,-16.813],[-9.009,9.077],[15.017,31.362],[7.638,8.584]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[151.526,574.884],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[13.764,-2.87],[-5.332,-19.437],[-7.475,1.287],[1.775,6.9]],"o":[[-8.897,1.824],[4.719,17.202],[11.881,-1.935],[-2.849,-11.59]],"v":[[15.726,-35.295],[8.946,-7.307],[29.433,13.852],[28.236,-9.419]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[6.281,-9.358],[-13.949,-8.154],[-3.563,4.926],[4.884,2.961]],"o":[[-4.078,6.031],[12.344,7.216],[5.726,-7.767],[-8.128,-5.047]],"v":[[22.211,-18.284],[34.009,1.559],[57.609,2.208],[43.883,-10.461]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[0.734,-14.168],[-20.337,0.211],[-0.663,7.624],[7.189,0.04]],"o":[[-0.505,9.15],[17.998,-0.187],[1.163,-12.09],[-12.041,-0.196]],"v":[[34.339,-18.742],[59.91,-4.938],[85.818,-19.495],[62.803,-24.304]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[4.988,-12.714],[-14.422,-8.118],[-2.858,6.748],[5.062,2.975]],"o":[[-3.224,8.218],[12.763,7.185],[4.61,-10.656],[-8.438,-5.103]],"v":[[33.259,-11.445],[46.982,11.716],[69.833,8.904],[55.094,-4.93]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[12.719,-1.874],[-3.794,-18.585],[-6.889,0.787],[1.24,6.591]],"o":[[-8.216,1.211],[3.358,16.447],[10.944,-1.146],[-1.961,-11.063]],"v":[[29.337,-13.738],[21.612,12.202],[39.135,33.266],[39.324,11.311]],"c":true}]},{"t":76,"s":[{"i":[[14.171,-0.688],[-2.246,-20.214],[-7.653,0.103],[0.68,7.157]],"o":[[-9.155,0.413],[1.987,17.888],[12.146,-0.053],[-1.01,-12.001]],"v":[[2.108,-24.81],[-9.067,2.013],[8.01,26.335],[10.491,2.954]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[192.615,581.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 17","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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.376,-76.281],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-2.031,7.098]],"o":[[-0.076,4.221],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[18.958,-66.264]],"v":[[-171.738,71.676],[-169.318,132.401],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,87.159]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[2.589,-58.386],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-13.411,64.055]],"o":[[-0.187,4.217],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[13.411,-64.055]],"v":[[-171.738,81.676],[-169.318,132.4],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,97.159]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[1.376,-76.281],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-2.031,7.098]],"o":[[-0.076,4.221],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[18.958,-66.264]],"v":[[-171.738,71.676],[-169.318,132.401],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,87.159]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[4.283,-63.028],[-0.055,-29.105],[0,0],[6.415,-18.06],[-30.924,2.715],[-10.381,9.058],[1.808,33.816],[-16.618,78.077]],"o":[[-0.284,4.174],[0.075,39.738],[0,0],[-10.092,28.119],[33.86,-2.973],[10.437,-9.107],[-2.076,-38.824],[16.618,-78.077]],"v":[[-178.216,51.51],[-177.521,111.735],[-159.826,215.862],[-175.307,242.593],[-140.021,293.932],[-71.961,262.533],[-67.208,185.957],[-52.425,70.419]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[3.059,-64.619],[-0.732,-29.241],[-1.235,-11.693],[-23.06,-18.201],[-16.205,18.885],[-0.874,11.011],[-1.236,36.883],[-16.13,78.788]],"o":[[-0.2,4.2],[1,39.925],[1.235,11.693],[9.972,21.774],[17.744,-20.678],[0.879,-11.069],[1.118,-38.969],[10.844,-52.196]],"v":[[-176.131,62.992],[-174.031,123.485],[-176.617,206.904],[-148.171,284.275],[-99.175,293.93],[-76.378,240.115],[-75.891,210.26],[-46.812,62.244]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[2.151,-65.799],[-1.234,-29.342],[-2.151,-20.363],[-44.913,-18.306],[-5.292,30.873],[6.174,12.458],[-0.57,14.541],[-20.131,57.407]],"o":[[-0.138,4.219],[1.685,40.063],[2.151,20.363],[24.847,17.069],[5.795,-33.805],[-6.206,-12.524],[0.57,-14.541],[11.137,-31.759]],"v":[[-174.586,71.504],[-171.444,132.196],[-174.882,226.306],[-120.733,302.107],[-61.573,280.858],[-72.332,210.425],[-76.188,172.957],[-42.65,56.184]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[1.684,-66.022],[-1.363,-29.335],[-1.254,-18.066],[-22.942,-22.739],[-13.411,26.261],[0.433,10.242],[-1.999,24.004],[-17.833,60.477]],"o":[[-0.108,4.219],[1.86,40.052],[1.247,18.659],[22.942,22.739],[14.685,-28.755],[-0.435,-10.295],[2.026,-24.163],[11.547,-37.536]],"v":[[-174.037,72.248],[-171.056,132.489],[-175.038,221.781],[-146.07,307.465],[-84.674,306.497],[-69.622,250.573],[-74.825,190.394],[-42.241,58.738]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0.94,-66.378],[-1.567,-29.322],[0.173,-14.412],[-0.117,-15.429],[-28.357,0.799],[-8.702,6.714],[-4.272,39.061],[-14.176,65.362]],"o":[[-0.061,4.219],[2.139,40.035],[-0.192,15.949],[1.175,26.744],[31.05,-0.875],[8.747,-6.75],[4.341,-39.474],[12.201,-46.727]],"v":[[-173.164,73.431],[-170.44,132.954],[-175.287,214.58],[-178.368,265.643],[-128.443,311.727],[-78.615,289.922],[-72.656,218.14],[-41.591,62.803]],"c":true}]},{"t":76,"s":[{"i":[[-1.442,-26.099],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-8.345,24.366]],"o":[[0.233,4.215],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[8.345,-24.366]],"v":[[-171.738,71.676],[-169.509,133.733],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-35.232,77.391]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":6,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":78,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"body mask","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[0]},{"t":246,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[495.362,672.106,0],"to":[0,0,0],"ti":[0,0,0]},{"t":246,"s":[495.362,672.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[338.022,305.632,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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-72.43],[66.256,-52.803],[38.756,2.6],[60.127,78.243],[65.529,120.984],[31.66,97.841],[14.886,80.259],[8.515,94.615],[-29.792,52.357],[-63.259,-5.063]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-17.639,7.855],[12.453,-5.439],[7.425,-18.947],[-3.351,-16.984],[1.523,-0.667],[2.738,4.937],[0,0],[5.364,1.478],[4.31,23.522],[8.021,21.944]],"o":[[49.657,-21.878],[-21.49,9.387],[-22.25,56.773],[2.331,12.186],[-8.052,3.722],[-2.76,-4.86],[0,0],[-7.308,-2.013],[-4.31,-23.522],[-8.021,-21.943]],"v":[[25.631,-147.999],[111.192,-136.752],[52.964,-62.644],[53.474,15.959],[47.33,58.6],[20.824,27.291],[9.323,5.886],[-0.633,18.033],[-26.338,-32.882],[-43.351,-97.128]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-6.479,-16.053],[1.371,-0.941],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[4.577,11.532],[-7.21,5.167],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[62.815,61.551],[64.784,104.587],[31.659,87.841],[14.886,70.259],[8.515,84.615],[-29.791,42.357],[-45.259,-31.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[0.205,-18.379],[4.918,-11.18],[4.49,-4.989],[0,0],[0,0],[8.351,-5.201],[9.391,3.136],[13.809,12.541]],"o":[[42.062,-34.282],[-18.225,14.758],[-0.205,18.379],[-4.918,11.18],[-8.33,9.255],[0,0],[0,0],[-5.032,3.134],[-16.466,-5.498],[-17.295,-15.707]],"v":[[-10.268,-2.43],[66.256,17.197],[98.756,88.1],[92.968,136.798],[66.38,158.224],[45.618,172.945],[39.654,152.277],[37.199,162.68],[-3.484,151.477],[-50.759,123.938]],"c":true}]},{"t":246,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-4.695,-16.663],[1.653,0.18],[0.977,5.56],[0,0],[5.465,1.046],[6.172,23.103],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[3.295,11.961],[-8.836,-0.783],[-1.024,-5.494],[0,0],[-7.445,-1.424],[-6.172,-23.103],[-13.561,-19.024]],"v":[[-10.268,-2.43],[66.256,17.197],[38.756,72.6],[70.968,153.298],[65.88,149.724],[39.618,107.445],[26.154,146.777],[17.199,159.68],[-12.484,110.977],[-63.259,64.938]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.609,292.047],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-74.314],[-1.412,-87.458],[73.104,-94.636],[95.039,-50.765],[135.683,-12.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-22.862],[110.119,-63.507],[94.152,-110.604],[-3.589,-107.377],[-97.298,-83.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-2.905,1.126],[-44.951,-1.36],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[14.636,20.256],[4.12,0.562],[31.926,0.945],[14.132,-12.152]],"o":[[2.998,-1.177],[39.567,1.172],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-18.02,-24.495],[-14.56,3.387],[-22.513,-0.703],[-4.521,3.863]],"v":[[-89.443,-93.117],[-12.75,-95.085],[73.104,-93.453],[90.997,-42.845],[131.641,-4.942],[128.544,26.671],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[145.721,26.268],[148.287,-15.211],[111.736,-60.572],[87.011,-116.023],[-12.033,-114.93],[-107.357,-104.858]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-3.044,0.778],[-44.841,-6.938],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[18.879,27.305],[4.542,-1.717],[31.85,4.927],[15.666,-10.406]],"o":[[3.149,-0.805],[39.473,6.107],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-18.879,-27.305],[-23.912,9.042],[-22.455,-3.511],[-5.009,3.304]],"v":[[-99.489,-100.647],[-22.449,-93.055],[73.103,-83.886],[87.539,-27.515],[128.183,10.388],[122.78,32.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[139.957,32.492],[146.788,-0.112],[113.119,-49.507],[80.902,-112.104],[-19.257,-112.836],[-115.962,-114.637]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-2.844,1.335],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[13.434,-13.161]],"o":[[2.942,-1.381],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-4.299,4.186]],"v":[[-78.498,-79.897],[-1.411,-97.458],[73.103,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.304,-90.547]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[{"i":[[-17.012,3.481],[-42.714,12.029],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[35.172,-15.447],[20.244,-8.35]],"o":[[20.738,-11.769],[37.924,-10.769],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-27.876,9.948],[-5.144,2.278]],"v":[[-91.247,-16.792],[-1.412,-57.458],[73.103,-99.636],[95.039,-49.515],[135.683,-11.612],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-21.612],[110.119,-62.257],[94.152,-115.604],[-2.839,-80.127],[-98.558,-27.285]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-3.125,0.324],[-40.348,18.896],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[38.329,-27.185],[27.053,-3.538]],"o":[[27.738,-2.874],[36.172,-16.941],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-33.171,17.315],[-5.989,0.37]],"v":[[-83.997,61.813],[-1.412,-17.458],[73.103,-94.636],[95.039,-38.265],[135.683,-0.362],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-10.362],[110.119,-51.007],[94.152,-110.604],[-2.089,-42.877],[-91.313,41.477]],"c":true}]},{"t":246,"s":[{"i":[[-3.125,0.324],[-40.348,18.896],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[38.329,-27.185],[27.053,-3.538]],"o":[[27.738,-2.874],[36.172,-16.941],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-33.171,17.315],[-5.989,0.37]],"v":[[-113.997,51.813],[-1.412,-17.458],[73.103,-94.636],[95.039,-38.265],[135.683,-0.362],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-10.362],[110.119,-51.007],[94.152,-110.604],[-2.089,-42.877],[-121.313,31.477]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[380.919,482.587],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[21.786,14.495]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-73.158,-48.675]],"v":[[-276.354,-44.741],[-171.738,81.676],[-44.32,97.159],[35.437,79.577],[127.129,75.626],[135.919,110.706],[183.742,156.996],[186.967,192.48],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[119.307,-217.998],[-53.594,-215.579],[-85.148,-237.1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-49.815,-80.129],[-3.417,-9.3],[-5.474,4.855],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.675,0.519],[0.092,15.357],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[90.582,11.813],[5.559,4.527],[11.877,16.865]],"o":[[25.329,40.74],[1.446,3.926],[5.474,-4.854],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[48.52,-0.864],[-0.1,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-89.621,-11.684],[-5.479,-4.515],[-50.142,-71.199]],"v":[[-262.321,-95.271],[-177.828,43.675],[-55.094,77.1],[25.636,71.277],[126.321,76.001],[134.033,114.854],[181.182,165.186],[180.23,199.756],[163.258,218.367],[165.355,272.801],[235.676,292.238],[280.349,218.07],[277.647,154.58],[328.308,11.462],[304.002,-144.854],[136.474,-216.258],[-19.417,-230.911],[-33.847,-249.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-39.89,-86.445],[-2.269,-9.735],[-6.087,4.178],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.675,0.55],[0.172,14.834],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[90.046,16.055],[5.001,5.226],[9.79,18.368]],"o":[[20.282,43.952],[0.958,4.111],[6.087,-4.178],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[45.461,-0.843],[-0.185,-15.967],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-89.09,-15.884],[-4.924,-5.204],[-41.33,-77.545]],"v":[[-250.316,-129.942],[-183.038,19.723],[-64.31,68.495],[17.252,72.731],[125.629,84.877],[132.419,126.956],[178.992,180.747],[174.467,205.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[278.966,227.061],[271.192,183.626],[328.352,21.144],[304.089,-135.402],[151.159,-206.214],[9.82,-235.472],[-2.366,-255.448]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-61.418,-72.745],[-4.056,-9.136],[-5.194,5.246],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[1.713,3.858],[5.194,-5.247],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-170.421,65.212],[-44.648,90.832],[35.437,69.577],[127.129,65.627],[135.919,100.707],[183.742,146.996],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[{"i":[[-61.418,-72.745],[-0.588,-9.354],[-6.285,2.475],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[2.451,16.057],[-7.14,13.279],[-9.516,55.805],[33.468,47.822],[90.002,-7.546],[17.489,-5.382],[36.301,-0.699]],"o":[[31.228,36.986],[0.248,3.95],[11.866,-2.25],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-5.414,-25.817],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-93.455,8.559],[-17.449,5.382],[-72.495,-19.919]],"v":[[-276.354,-14.742],[-155.24,88.216],[-52.774,157.74],[35.437,109.577],[127.129,70.627],[135.919,111.956],[183.742,158.247],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,125.626],[328.256,5.144],[303.901,-150.902],[119.807,-215.498],[-54.094,-174.829],[-110.148,-167.1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[28.768,-14.474],[58.286,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.67,23.893],[-28.768,14.474],[-84.547,23.942]],"v":[[-276.354,25.258],[-140.06,111.22],[-43.901,228.148],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-54.594,-124.079],[-149.648,-92.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[131.819,-10.026],[58.286,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.67,23.893],[-32.111,2.442],[-84.547,23.942]],"v":[[-276.354,25.258],[-140.134,111.252],[-44.077,228.09],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-75.182,-81.079],[-173.648,-94.6]],"c":true}]},{"t":246,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[28.768,-14.474],[58.285,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.669,23.893],[-28.768,14.474],[-84.547,23.942]],"v":[[-276.354,25.258],[-152.56,116.72],[-73.901,218.148],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-54.594,-124.079],[-149.648,-92.6]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":14,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":78,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"body ","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[0]},{"t":246,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[495.362,672.106,0],"to":[0,0,0],"ti":[0,0,0]},{"t":246,"s":[495.362,672.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[338.022,305.632,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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,-3.428],[7.178,-1.896],[65.806,-33.266],[25.161,25.362],[-40.644,32.54],[-59.757,15.766]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,6.572],[7.178,8.104],[65.806,-23.266],[25.161,35.362],[-40.644,42.54],[-59.757,25.766]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,-3.428],[7.178,-1.896],[65.806,-33.266],[25.161,25.362],[-40.644,32.54],[-59.757,15.766]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-35.92,8.312],[-7.292,-5.308],[40.686,-13.82],[0,0],[6.21,7.5]],"o":[[0,0],[35.92,-8.312],[7.292,5.308],[-37.068,12.591],[0,0],[-9.677,-11.451]],"v":[[-80.192,29.572],[-4.322,31.604],[56.806,0.484],[12.661,59.112],[-48.144,65.79],[-67.257,49.016]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,-3.428],[7.178,-1.896],[65.806,-33.266],[25.161,25.362],[-40.644,32.54],[-59.757,15.766]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[-29.21,10.623],[-8.387,-4.839],[36.431,-17.512],[0,0],[6.21,7.5]],"o":[[0,0],[26.011,-9.46],[8.387,4.758],[-35.283,16.96],[0,0],[-9.677,-11.451]],"v":[[-74.192,19.072],[0.31,17.228],[63.306,-13.266],[21.342,42.21],[-40.644,55.04],[-59.757,38.266]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[-29.21,10.623],[-8.387,-4.839],[36.431,-17.512],[0,0],[6.21,7.5]],"o":[[0,0],[26.011,-9.46],[8.387,4.758],[-35.283,16.96],[0,0],[-9.677,-11.451]],"v":[[-74.192,19.072],[0.31,17.228],[63.306,-13.266],[21.342,42.21],[-40.644,55.04],[-59.757,38.266]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[537.812,408.234],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,42.903],[13.387,34.354],[53.467,-48.789],[-7.58,1.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,52.903],[13.387,44.354],[53.467,-38.789],[-7.58,11.049]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,42.903],[13.387,34.354],[53.467,-48.789],[-7.58,1.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.563,73.403],[13.194,64.854],[53.274,-18.289],[-7.773,31.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,42.903],[13.387,34.354],[53.467,-48.789],[-7.58,1.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-75.37,58.903],[5.387,63.354],[45.467,-19.789],[-15.58,30.049]],"c":true}]},{"t":246,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-75.37,58.903],[5.387,63.354],[45.467,-19.789],[-15.58,30.049]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[554.908,310.372],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,61.693],[-2.137,-11.613],[24.476,-61.289],[32.459,-11.452],[14.879,57.177],[-7.863,59.274]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,71.693],[-2.137,-1.613],[24.476,-51.289],[32.459,-1.452],[14.879,67.177],[-7.863,69.274]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,61.693],[-2.137,-11.613],[24.476,-61.289],[32.459,-11.452],[14.879,57.177],[-7.863,59.274]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-7.633,14.692],[-11.789,-3.666],[6.677,-23.463],[0,0],[11.667,1.993]],"o":[[0,0],[7.633,-14.692],[11.788,3.666],[-6.677,23.463],[0,0],[-9.587,-1.637]],"v":[[-48.814,74.443],[-6.537,17.024],[26.315,-40.548],[29.023,24.369],[14.879,77.927],[-29.387,77.594]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,61.693],[-2.137,-11.613],[24.476,-61.289],[32.459,-11.452],[14.879,57.177],[-7.863,59.274]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[-5.233,26.555],[-12.339,-0.404],[3.549,-18.709],[0,0],[-5.541,-14.942]],"o":[[0,0],[5.233,-26.555],[12.338,0.403],[-3.628,18.71],[0,0],[-12.041,8.058]],"v":[[-33.814,126.193],[-20.137,65.387],[11.476,3.211],[15.959,49.048],[14.879,67.177],[22.637,99.774]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[-5.233,26.555],[-12.339,-0.404],[3.549,-18.709],[0,0],[-5.541,-14.942]],"o":[[0,0],[5.233,-26.555],[12.338,0.403],[-3.628,18.71],[0,0],[-12.041,8.058]],"v":[[-33.814,130.193],[-20.137,65.387],[11.476,3.211],[15.959,49.048],[14.879,67.177],[22.637,99.774]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[439.063,320.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 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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.823,-1.935]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.29,3.951]],"v":[[-48.628,71.733],[-3.225,-3.508],[34.677,-68.104],[35.886,-6.25],[12.742,59.959],[-15.081,64.314]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.823,-1.935]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.29,3.951]],"v":[[-48.628,81.733],[-4.725,4.992],[34.677,-58.104],[35.886,3.75],[12.742,69.959],[-15.081,74.314]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.823,-1.935]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.29,3.951]],"v":[[-48.628,71.733],[-3.225,-3.508],[34.677,-68.104],[35.886,-6.25],[12.742,59.959],[-15.081,64.314]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-14.578,19.918],[-13.983,-0.255],[16.023,-25.364],[0,0],[12.875,1.548]],"o":[[0,0],[14.622,-19.979],[14.414,0.207],[-15.39,24.284],[0,0],[-26.395,-3.174]],"v":[[-70.473,55.327],[-6.715,-5.151],[46.985,-57.359],[31.72,2.595],[-8.18,60.277],[-36.159,57.086]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.697,-2.639]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.115,5.429]],"v":[[-49.444,76.13],[-3.225,-3.508],[34.677,-68.104],[35.886,-6.25],[12.742,59.959],[-15.831,66.064]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[9.239,-9.1]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-12.365,12.179]],"v":[[-12.54,174.249],[10.275,96.992],[34.677,11.896],[40.886,86.75],[29.742,139.459],[9.169,151.814]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[10.74,-7.268]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-18.365,12.429]],"v":[[-14.79,164.999],[4.275,94.492],[34.677,11.896],[40.886,86.75],[29.742,139.459],[8.419,150.314]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[351.605,326.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 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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-72.62],[-6.008,-0.524],[-34.153,63.185],[26.572,13.266],[40.443,-39.314],[22.379,-59.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-62.62],[-6.008,9.476],[-34.153,73.185],[26.572,23.266],[40.443,-29.314],[22.379,-49.152]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[4.443,-85.12],[-6.008,-0.524],[-34.153,63.185],[26.572,13.266],[43.943,-53.564],[25.379,-70.652]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[3.13,-55.37],[-5.821,19.976],[-33.966,83.685],[26.759,33.766],[40.63,-18.814],[22.316,-40.652]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-72.62],[-6.008,-0.524],[-34.153,63.185],[26.572,13.266],[40.443,-39.314],[22.379,-59.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[3.068,-72.12],[-6.008,9.476],[-34.153,73.185],[26.572,23.266],[40.443,-29.314],[27.129,-55.027]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-62.62],[-6.008,9.476],[-34.153,73.185],[26.572,23.266],[40.443,-29.314],[22.379,-49.152]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[600.029,186.059],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,77.458],[18.267,2.701],[30.121,-67.862],[4.235,-74.475],[-24.475,-79.555],[-22.459,-7.299]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,87.458],[18.267,12.701],[30.121,-57.862],[4.235,-64.475],[-24.475,-69.555],[-22.459,2.701]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,77.458],[18.267,2.701],[31.871,-80.112],[6.485,-84.225],[-24.975,-89.805],[-22.459,-7.299]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.222,97.458],[18.326,22.701],[30.43,-48.612],[5.044,-65.225],[-24.416,-60.305],[-22.4,12.701]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,77.458],[18.267,2.701],[30.621,-71.362],[6.485,-86.725],[-24.475,-82.805],[-22.459,-7.299]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,87.458],[18.267,12.701],[30.871,-62.237],[6.36,-77.475],[-30.975,-68.055],[-22.459,2.701]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.415,1.398],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.357,-1.627],[0,0],[-0.403,23.951]],"v":[[-30.281,79.708],[8.267,4.951],[19.746,-72.049],[-4.953,-79.975],[-40.475,-74.055],[-32.459,-5.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.686,-0.187],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.552,0.213],[0,0],[-0.403,23.951]],"v":[[-30.281,87.458],[8.267,12.701],[18.621,-66.362],[-6.265,-66.975],[-39.975,-64.555],[-32.459,2.701]],"c":true}]},{"t":246,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,87.458],[18.267,12.701],[30.121,-57.862],[4.235,-64.475],[-29.975,-64.555],[-22.459,2.701]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[528.739,162.188],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-28.548,-81.652],[-18.065,-1.814],[-3.71,82.216],[23.79,-4.234],[27.419,-79.636],[0.161,-81.733]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-28.548,-71.652],[-18.065,8.186],[-3.71,92.216],[23.79,5.766],[27.419,-69.636],[0.161,-71.733]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-29.548,-87.152],[-18.065,-1.814],[-3.71,82.216],[23.79,-4.234],[26.919,-87.136],[-0.339,-90.733]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[2.992,-46.873],[-8.941,-2.463],[-9.384,45.169],[0,0],[12.627,1.773]],"o":[[0,0],[-1.91,30.689],[11.506,3.17],[9.384,-45.168],[0,0],[-15.676,-2.082]],"v":[[4.089,-67.654],[3.677,15.085],[4.347,99.093],[45.562,16.919],[59.313,-57.727],[32.658,-72.075]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-28.548,-81.652],[-18.065,-1.814],[-3.71,82.216],[23.79,-4.234],[27.419,-79.636],[0.911,-92.233]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[-10.375,-45.808],[-9.163,1.43],[3.762,45.979],[0,0],[12.049,-4.173]],"o":[[0,0],[6.84,29.978],[11.691,-1.824],[-3.762,-45.978],[0,0],[-14.904,5.286]],"v":[[-40.55,-32.757],[-23.054,43.039],[6.849,124.065],[17.642,32.963],[12.334,-51.189],[-16.577,-51.626]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-9.641,-40.553],[-9.163,1.43],[3.762,45.979],[0,0],[11.458,-8.341]],"o":[[0,0],[6.84,29.978],[11.691,-1.824],[-3.762,-45.978],[0,0],[-12.734,8.723]],"v":[[-56.55,-16.757],[-30.054,54.539],[2.099,130.065],[10.392,38.713],[-2.416,-47.939],[-32.202,-45.188]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[-8.906,-35.299],[-9.163,1.43],[3.762,45.979],[0,0],[10.867,-12.508]],"o":[[0,0],[6.84,29.978],[11.691,-1.824],[-3.762,-45.978],[0,0],[-10.563,12.159]],"v":[[-62.55,14.743],[-37.054,66.039],[-2.651,136.065],[3.142,44.463],[-14.666,-36.689],[-35.827,-16.751]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[-10.375,-45.808],[-9.163,1.43],[3.762,45.979],[0,0],[12.049,-4.173]],"o":[[0,0],[6.84,29.978],[11.691,-1.824],[-3.762,-45.978],[0,0],[-14.904,5.286]],"v":[[-40.55,-32.757],[-23.054,43.039],[6.849,124.065],[17.642,32.963],[12.334,-51.189],[-13.827,-43.251]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[431.12,156.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-39.475,-74.072],[-14.314,-25.039],[6.251,43.992],[21.17,77.459],[37.055,31.089],[31.975,-48.992],[22.379,-78.426],[-9.96,-77.7]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-39.475,-64.072],[-14.314,-15.039],[6.251,53.992],[21.17,87.459],[37.055,41.089],[31.975,-38.992],[22.379,-68.426],[-9.96,-67.7]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-44.225,-81.572],[-14.314,-25.039],[6.251,43.992],[21.17,77.459],[37.055,31.089],[31.975,-48.992],[19.879,-85.926],[-12.71,-85.95]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-2.106,-25.351],[2.031,-19.262],[-7.32,-3.189],[-8.909,23.562],[-0.257,17.328],[0,0],[17.362,3.779]],"o":[[0,0],[2.112,25.425],[-1.088,10.324],[7.375,3.286],[9.252,-24.469],[0.257,-17.328],[0,0],[-15.142,-3.336]],"v":[[23.636,-82.369],[34.869,-28.415],[36.358,43.599],[41.852,79.827],[69.484,39.342],[85.858,-39.211],[84.674,-69.388],[55.055,-81.028]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-39.475,-74.072],[-14.314,-25.039],[6.251,43.992],[21.17,77.459],[37.055,31.089],[31.975,-48.992],[22.379,-78.426],[-9.71,-86.45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[-16.833,-19.072],[-5.964,-18.428],[-7.984,0.057],[1.424,25.149],[10.145,14.05],[0,0],[16.181,-7.34]],"o":[[0,0],[16.882,19.128],[3.197,9.877],[8.074,0.009],[-1.479,-26.118],[-10.145,-14.05],[0,0],[-14.136,6.37]],"v":[[-45.725,25.303],[-0.695,56.703],[27.23,113.407],[44.755,154.04],[61.072,101.823],[33.748,17.586],[11.499,-9.485],[-25.247,1.052]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[-16.833,-19.072],[-5.964,-18.428],[-7.984,0.057],[1.424,25.149],[10.145,14.05],[0,0],[15.542,-5.472]],"o":[[0,0],[16.882,19.128],[3.197,9.877],[8.074,0.009],[-1.479,-26.118],[-10.145,-14.05],[0,0],[-11.839,4.168]],"v":[[-63.563,68.928],[-28.282,102.703],[-0.357,159.407],[27.167,200.04],[33.484,147.823],[6.16,63.586],[-2.464,51.64],[-30.834,63.552]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[-16.833,-19.072],[-5.964,-18.428],[-7.984,0.057],[1.424,25.149],[10.145,14.05],[0,0],[16.181,-7.34]],"o":[[0,0],[16.882,19.128],[3.197,9.877],[8.074,0.009],[-1.479,-26.118],[-10.145,-14.05],[0,0],[-14.136,6.37]],"v":[[-42.975,26.428],[-0.695,56.703],[27.23,113.407],[44.755,154.04],[61.072,101.823],[33.748,17.586],[14.124,-6.36],[-15.747,11.052]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[329.952,154.446],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-66.209],[-21.573,-35.483],[5.766,2.822],[10.362,64.596],[34.718,39.032],[39.072,-4.839],[3.104,-53.387]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-56.209],[-21.573,-25.483],[5.766,12.822],[10.362,74.596],[34.718,49.032],[39.072,5.161],[3.104,-43.387]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-66.209],[-21.573,-35.483],[5.766,2.822],[10.362,64.596],[34.718,39.032],[39.072,-4.839],[3.104,-53.387]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[4.58,-3.251],[-5.011,-15.918],[0,0],[-5.548,-6.882],[-8.887,12.524],[-1.791,11.05],[21.038,25.957]],"o":[[-9.254,6.568],[4.728,15.021],[0,0],[6.501,7.98],[8.887,-12.524],[1.791,-11.05],[-16.138,-19.754]],"v":[[5.424,-88.061],[8.381,-55.376],[24.563,-11.185],[12.585,49.591],[42.855,31.414],[58.706,-9.724],[36.927,-66.082]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-66.209],[-21.573,-35.483],[5.766,2.822],[10.362,64.596],[34.718,39.032],[39.072,-4.839],[3.104,-53.387]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[2.888,-3.238],[-7.365,-10.432],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[15.719,8.214]],"o":[[-5.836,6.544],[6.951,9.845],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-16.919,-10.986]],"v":[[-17.763,35.523],[-8.385,58.397],[5.766,82.822],[10.362,144.596],[34.718,119.032],[39.072,75.161],[10.682,40.569]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[2.892,-3.245],[-7.375,-10.453],[0,0],[-7.177,-5.161],[-3.523,14.948],[1.21,11.129],[15.787,8.28]],"o":[[-5.844,6.557],[6.961,9.865],[0,0],[8.387,5.967],[4.183,-17.75],[-1.209,-11.129],[-16.942,-11.009]],"v":[[-34.853,47.396],[-25.463,70.315],[-15.234,87.822],[-24.638,123.596],[2.718,93.032],[11.072,74.161],[-6.363,52.486]],"c":true}]},{"t":246,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,13.791],[-21.573,44.517],[5.766,82.822],[10.362,144.596],[34.718,119.032],[39.072,75.161],[3.104,26.613]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[285.759,244.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 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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-10.847],[1.895,4.717],[46.25,31.411],[44.636,3.104],[12.299,-31.976],[-35.524,-27.217]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-0.847],[1.895,14.717],[46.25,41.411],[44.636,13.104],[12.299,-21.976],[-35.524,-17.217]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-10.847],[1.895,4.717],[46.25,31.411],[44.636,3.104],[12.299,-31.976],[-35.524,-27.217]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[1.521,-5.52],[0,0],[-9.119,3.342],[4.139,13.521],[11.272,8.878],[12.688,0.402]],"o":[[-4.67,16.949],[0,0],[11.051,-3.983],[-6.515,-21.285],[-10.158,-8.068],[-15.934,-0.458]],"v":[[-46.646,-57.606],[4.886,-27.263],[40.557,10.253],[46.52,-17.465],[24.663,-59.875],[-22.706,-67.991]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-10.847],[1.895,4.717],[46.25,31.411],[44.636,3.104],[12.299,-31.976],[-35.524,-27.217]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,-5.726],[0,0],[-8.824,4.058],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[10.698,-4.851],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,69.153],[-17.105,73.217],[29.641,97.839],[27.636,61.104],[-1.701,36.524],[-35.524,52.783]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,-5.726],[0,0],[-8.824,4.058],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[10.698,-4.851],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,69.153],[-16.993,73.285],[-2.188,95.078],[13.736,50.234],[-1.619,36.592],[-35.524,52.783]],"c":true}]},{"t":246,"s":[{"i":[[0,-5.726],[0,0],[-8.824,4.058],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[10.698,-4.851],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,69.153],[1.895,84.717],[58.641,138.339],[44.636,83.104],[12.299,48.024],[-35.524,52.783]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[231.082,309.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-72.43],[66.256,-52.803],[38.756,2.6],[60.127,78.243],[65.529,120.984],[31.66,97.841],[14.886,80.259],[8.515,94.615],[-29.792,52.357],[-63.259,-5.063]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-17.639,7.855],[12.453,-5.439],[7.425,-18.947],[-3.351,-16.984],[1.523,-0.667],[2.738,4.937],[0,0],[5.364,1.478],[4.31,23.522],[8.021,21.944]],"o":[[49.657,-21.878],[-21.49,9.387],[-22.25,56.773],[2.331,12.186],[-8.052,3.722],[-2.76,-4.86],[0,0],[-7.308,-2.013],[-4.31,-23.522],[-8.021,-21.943]],"v":[[25.631,-147.999],[111.192,-136.752],[52.964,-62.644],[53.474,15.959],[47.33,58.6],[20.824,27.291],[9.323,5.886],[-0.633,18.033],[-26.338,-32.882],[-43.351,-97.128]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-6.479,-16.053],[1.371,-0.941],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[4.577,11.532],[-7.21,5.167],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[62.815,61.551],[64.784,104.587],[31.659,87.841],[14.886,70.259],[8.515,84.615],[-29.791,42.357],[-45.259,-31.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[0.205,-18.379],[4.918,-11.18],[4.49,-4.989],[0,0],[0,0],[8.351,-5.201],[9.391,3.136],[13.809,12.541]],"o":[[42.062,-34.282],[-18.225,14.758],[-0.205,18.379],[-4.918,11.18],[-8.33,9.255],[0,0],[0,0],[-5.032,3.134],[-16.466,-5.498],[-17.295,-15.707]],"v":[[-10.268,-2.43],[66.256,17.197],[98.756,88.1],[92.968,136.798],[66.38,158.224],[45.618,172.945],[39.654,152.277],[37.199,162.68],[-3.484,151.477],[-50.759,123.938]],"c":true}]},{"t":246,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-4.695,-16.663],[1.653,0.18],[0.977,5.56],[0,0],[5.465,1.046],[6.172,23.103],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[3.295,11.961],[-8.836,-0.783],[-1.024,-5.494],[0,0],[-7.445,-1.424],[-6.172,-23.103],[-13.561,-19.024]],"v":[[-10.268,-2.43],[66.256,17.197],[38.756,72.6],[70.968,153.298],[65.88,149.724],[39.618,107.445],[26.154,146.777],[17.199,159.68],[-12.484,110.977],[-63.259,64.938]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.609,292.047],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"t":246,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.513,573.715],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-74.314],[-1.412,-87.458],[73.104,-94.636],[95.039,-50.765],[135.683,-12.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-22.862],[110.119,-63.507],[94.152,-110.604],[-3.589,-107.377],[-97.298,-83.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-2.905,1.126],[-44.951,-1.36],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[14.636,20.256],[4.12,0.562],[31.926,0.945],[14.132,-12.152]],"o":[[2.998,-1.177],[39.567,1.172],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-18.02,-24.495],[-14.56,3.387],[-22.513,-0.703],[-4.521,3.863]],"v":[[-89.443,-93.117],[-12.75,-95.085],[73.104,-93.453],[90.997,-42.845],[131.641,-4.942],[128.544,26.671],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[145.721,26.268],[148.287,-15.211],[111.736,-60.572],[87.011,-116.023],[-12.033,-114.93],[-107.357,-104.858]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-3.044,0.778],[-44.841,-6.938],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[18.879,27.305],[4.542,-1.717],[31.85,4.927],[15.666,-10.406]],"o":[[3.149,-0.805],[39.473,6.107],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-18.879,-27.305],[-23.912,9.042],[-22.455,-3.511],[-5.009,3.304]],"v":[[-99.489,-100.647],[-22.449,-93.055],[73.103,-83.886],[87.539,-27.515],[128.183,10.388],[122.78,32.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[139.957,32.492],[146.788,-0.112],[113.119,-49.507],[80.902,-112.104],[-19.257,-112.836],[-115.962,-114.637]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-2.844,1.335],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[13.434,-13.161]],"o":[[2.942,-1.381],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-4.299,4.186]],"v":[[-78.498,-79.897],[-1.411,-97.458],[73.103,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.304,-90.547]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[{"i":[[-17.012,3.481],[-42.714,12.029],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[35.172,-15.447],[20.244,-8.35]],"o":[[20.738,-11.769],[37.924,-10.769],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-27.876,9.948],[-5.144,2.278]],"v":[[-91.247,-16.792],[-1.412,-57.458],[73.103,-99.636],[95.039,-49.515],[135.683,-11.612],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-21.612],[110.119,-62.257],[94.152,-115.604],[-2.839,-80.127],[-98.558,-27.285]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-3.125,0.324],[-40.348,18.896],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[38.329,-27.185],[27.053,-3.538]],"o":[[27.738,-2.874],[36.172,-16.941],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-33.171,17.315],[-5.989,0.37]],"v":[[-83.997,61.813],[-1.412,-17.458],[73.103,-94.636],[95.039,-38.265],[135.683,-0.362],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-10.362],[110.119,-51.007],[94.152,-110.604],[-2.089,-42.877],[-91.313,41.477]],"c":true}]},{"t":246,"s":[{"i":[[-3.125,0.324],[-40.348,18.896],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[38.329,-27.185],[27.053,-3.538]],"o":[[27.738,-2.874],[36.172,-16.941],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-33.171,17.315],[-5.989,0.37]],"v":[[-113.997,51.813],[-1.412,-17.458],[73.103,-94.636],[95.039,-38.265],[135.683,-0.362],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-10.362],[110.119,-51.007],[94.152,-110.604],[-2.089,-42.877],[-121.313,31.477]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[380.919,482.587],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[21.786,14.495]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-73.158,-48.675]],"v":[[-276.354,-44.741],[-171.738,81.676],[-44.32,97.159],[35.437,79.577],[127.129,75.626],[135.919,110.706],[183.742,156.996],[186.967,192.48],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[119.307,-217.998],[-53.594,-215.579],[-85.148,-237.1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-49.815,-80.129],[-3.417,-9.3],[-5.474,4.855],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.675,0.519],[0.092,15.357],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[90.582,11.813],[5.559,4.527],[11.877,16.865]],"o":[[25.329,40.74],[1.446,3.926],[5.474,-4.854],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[48.52,-0.864],[-0.1,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-89.621,-11.684],[-5.479,-4.515],[-50.142,-71.199]],"v":[[-262.321,-95.271],[-177.828,43.675],[-55.094,77.1],[25.636,71.277],[126.321,76.001],[134.033,114.854],[181.182,165.186],[180.23,199.756],[163.258,218.367],[165.355,272.801],[235.676,292.238],[280.349,218.07],[277.647,154.58],[328.308,11.462],[304.002,-144.854],[136.474,-216.258],[-19.417,-230.911],[-33.847,-249.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-39.89,-86.445],[-2.269,-9.735],[-6.087,4.178],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.675,0.55],[0.172,14.834],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[90.046,16.055],[5.001,5.226],[9.79,18.368]],"o":[[20.282,43.952],[0.958,4.111],[6.087,-4.178],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[45.461,-0.843],[-0.185,-15.967],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-89.09,-15.884],[-4.924,-5.204],[-41.33,-77.545]],"v":[[-250.316,-129.942],[-183.038,19.723],[-64.31,68.495],[17.252,72.731],[125.629,84.877],[132.419,126.956],[178.992,180.747],[174.467,205.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[278.966,227.061],[271.192,183.626],[328.352,21.144],[304.089,-135.402],[151.159,-206.214],[9.82,-235.472],[-2.366,-255.448]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-61.418,-72.745],[-4.056,-9.136],[-5.194,5.246],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[1.713,3.858],[5.194,-5.247],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-170.421,65.212],[-44.648,90.832],[35.437,69.577],[127.129,65.627],[135.919,100.707],[183.742,146.996],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[{"i":[[-61.418,-72.745],[-0.588,-9.354],[-6.285,2.475],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[2.451,16.057],[-7.14,13.279],[-9.516,55.805],[33.468,47.822],[90.002,-7.546],[17.489,-5.382],[36.301,-0.699]],"o":[[31.228,36.986],[0.248,3.95],[11.866,-2.25],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-5.414,-25.817],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-93.455,8.559],[-17.449,5.382],[-72.495,-19.919]],"v":[[-276.354,-14.742],[-155.24,88.216],[-52.774,157.74],[35.437,109.577],[127.129,70.627],[135.919,111.956],[183.742,158.247],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,125.626],[328.256,5.144],[303.901,-150.902],[119.807,-215.498],[-54.094,-174.829],[-110.148,-167.1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[28.768,-14.474],[58.286,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.67,23.893],[-28.768,14.474],[-84.547,23.942]],"v":[[-276.354,25.258],[-140.06,111.22],[-43.901,228.148],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-54.594,-124.079],[-149.648,-92.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[131.819,-10.026],[58.286,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.67,23.893],[-32.111,2.442],[-84.547,23.942]],"v":[[-276.354,25.258],[-140.134,111.252],[-44.077,228.09],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-75.182,-81.079],[-173.648,-94.6]],"c":true}]},{"t":246,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[28.768,-14.474],[58.285,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.669,23.893],[-28.768,14.474],[-84.547,23.942]],"v":[[-276.354,25.258],[-152.56,116.72],[-73.901,218.148],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-54.594,-124.079],[-149.648,-92.6]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":14,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":78,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"body transi","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":250,"s":[-22.538]},{"t":254,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[468.362,738.106,0],"to":[0,0,0],"ti":[0,0,0]},{"t":254,"s":[495.362,672.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[338.022,305.632,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.93,-4.792],[-10.875,-12.658],[0,0],[-7.81,-4.14],[-3.236,15.012],[3.128,12.181],[29.561,15.572]],"o":[[-5.919,9.682],[10.262,11.944],[0,0],[9.119,4.775],[3.236,-15.012],[-2.784,-10.843],[-22.615,-11.801]],"v":[[-9.608,-37.92],[5.983,-9.041],[38.262,25.204],[51.19,85.785],[71.855,57.155],[67.542,11.949],[28.005,-30.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[285.759,244.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 9","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":[[-1.118,-5.616],[0,0],[-6.649,7.079],[9.766,10.225],[14.057,2.875],[11.519,-5.335]],"o":[[3.434,17.242],[0,0],[8.088,-8.519],[-15.375,-16.097],[-12.698,-2.651],[-14.445,6.742]],"v":[[-14.916,30.898],[44.752,34.886],[93.467,52.403],[86.355,24.956],[47.79,-3.133],[1.817,10.874]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[231.082,309.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-14.659,12.568],[10.38,-8.771],[1.702,-20.279],[1.376,-17.257],[1.619,-0.378],[1.789,5.354],[0,0],[16.726,-1.227],[16.226,38.261],[5.242,18.916]],"o":[[41.335,-35.155],[-17.912,15.136],[-5.1,60.764],[5.462,23.009],[-8.597,2.187],[-1.825,-5.283],[0,0],[-16.726,1.227],[-9.337,-22.015],[-6.239,-22.514]],"v":[[18.612,-66.272],[95.529,-48.252],[69.194,7.715],[123.341,76.654],[115.071,126.833],[93.977,104.88],[84.131,76.507],[73.776,111.251],[27.093,58.774],[-32.958,2.189]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.609,292.047],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[-62.928,-71.443],[-0.451,-9.986],[-6.748,2.995],[19.769,79.83],[58.71,12.014]],"o":[[31.995,36.325],[0.191,4.217],[6.748,-2.995],[-17.231,-70.17],[-86.087,-17.616]],"v":[[-238.007,6.799],[-110.757,89.304],[-20.323,98.967],[31.869,-65.936],[-94.073,-153.12]],"c":true}]},{"t":254,"s":[{"i":[[-62.928,-71.443],[-0.451,-9.986],[-6.748,2.995],[6.286,3.579],[26.71,20.014]],"o":[[31.995,36.325],[0.191,4.217],[6.748,-2.995],[-9.754,0.542],[-70.321,-52.691]],"v":[[-238.007,6.799],[-110.757,89.304],[-3.467,160.097],[-27.131,-210.936],[-92.073,-229.12]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"mn":"ADBE Vector Group","hd":false}],"ip":250,"op":254,"st":254,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"body 3","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":272,"s":[0]},{"t":288,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":272,"s":[495.362,672.106,0],"to":[0,0,0],"ti":[0,0,0]},{"t":288,"s":[495.362,672.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[338.022,305.632,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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-14.659,12.568],[10.38,-8.771],[1.702,-20.279],[1.376,-17.257],[1.619,-0.378],[1.789,5.354],[0,0],[16.726,-1.227],[16.226,38.261],[5.242,18.916]],"o":[[41.335,-35.155],[-17.912,15.136],[-5.1,60.764],[5.462,23.009],[-8.597,2.187],[-1.825,-5.283],[0,0],[-16.726,1.227],[-9.337,-22.015],[-6.239,-22.514]],"v":[[18.612,-66.272],[95.529,-48.252],[69.194,7.715],[123.341,76.654],[115.071,126.833],[93.977,104.88],[84.131,76.507],[73.776,111.251],[27.093,58.774],[-32.958,2.189]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-16.217,10.481],[11.465,-7.295],[4.414,-19.866],[-5.93,-16.264],[1.315,-1.017],[3.855,4.124],[0,0],[5.436,-1.187],[10.932,40.096],[2.65,19.45]],"o":[[45.689,-29.275],[-19.786,12.589],[-13.227,59.526],[14.543,18.649],[-6.907,5.566],[-3.858,-4.044],[0,0],[-15.817,3.453],[-6.29,-23.071],[-3.154,-23.149]],"v":[[27.71,-135.373],[101.504,-107.169],[67.88,-55.254],[94.008,46.83],[98.247,87.977],[69.93,76.794],[53.331,64.186],[54.367,86.526],[-9.882,3.882],[-32.6,-74.471]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-72.43],[66.256,-52.803],[38.756,2.6],[60.127,74.243],[65.529,116.984],[31.66,97.841],[14.886,80.259],[8.515,94.615],[-29.792,52.357],[-63.259,-5.063]],"c":true}]},{"t":288,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.609,292.047],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-12.717,0.008],[5.104,24.927],[5.911,1.379],[7.12,-24.911]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"t":288,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.513,573.715],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[6.012,-6.179],[-25.896,19.464],[-18.654,17.59],[-3.135,0.208],[-47.776,23.452],[0,0],[-13.184,-25.219],[-0.649,-3.146],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[8.493,15.282],[5.785,14.303],[3.239,3.617],[31.93,-4.379],[17.304,-7.366],[8.536,-7.771],[21.009,-11.872]],"o":[[-4.512,4.638],[25.896,-19.464],[18.713,-17.645],[3.243,-0.215],[22.469,9.375],[0,0],[13.184,25.218],[10.128,16.365],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.492,-2.685],[-10.148,-25.227],[-3.239,-3.617],[-22.522,3.052],[-5.528,2.333],[-14.068,12.807],[-17.737,10.149]],"v":[[-230.303,99.902],[-174.444,96.949],[-93.724,37.333],[-40.813,-12.443],[39.652,-99.934],[70.085,-94.029],[80.679,-39.472],[108.613,3.573],[123.28,27.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[140.457,27.492],[125.248,3.156],[98.802,-47.303],[90.814,-122.499],[38.393,-128.562],[-53.842,-24.531],[-131.618,43.581],[-185.948,87.509]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0.778,-8.586],[-7.856,31.428],[-3.412,25.411],[-2.764,1.494],[-50.496,16.812],[0,0],[-13.184,-25.219],[-0.649,-3.146],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[8.493,15.282],[5.785,14.303],[3.239,3.617],[32.229,-0.044],[12.669,-13.899],[1.736,-11.412],[8.842,-22.453]],"o":[[-0.584,6.444],[7.856,-31.428],[3.422,-25.492],[2.859,-1.545],[21.004,12.312],[0,0],[13.184,25.218],[10.128,16.365],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.492,-2.685],[-10.148,-25.227],[-3.238,-3.617],[-22.728,-0.005],[-4.056,4.422],[-2.861,18.808],[-7.386,19.054]],"v":[[-123.145,100.303],[-81.616,62.83],[-58.798,-54.178],[-47.408,-106.899],[22.237,-110.374],[70.085,-94.029],[80.679,-39.471],[108.613,3.573],[123.28,27.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[140.457,27.492],[125.248,3.156],[98.802,-47.303],[90.813,-122.499],[24.84,-138.911],[-64.286,-112.468],[-81.961,-5.597],[-96.497,62.742]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[5.108,-6.925],[-23.038,22.71],[-3.256,25.43],[-2.758,1.504],[-49.065,13.734],[0,0],[-14.964,-23.925],[-0.883,-3.06],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[6.568,11.99],[6.813,13.698],[3.342,3.514],[32.173,-1.013],[12.582,-13.977],[1.661,-11.423],[19.26,-14.525]],"o":[[-3.833,5.197],[23.038,-22.71],[3.264,-25.511],[2.849,-1.563],[25.938,7.844],[0,0],[14.964,23.925],[7.878,12.787],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.417,-2.721],[-11.963,-24.166],[-3.342,-3.513],[-22.689,0.678],[-4.028,4.447],[-2.744,18.824],[-16.242,12.388]],"v":[[-169.092,103.181],[-113.725,93.028],[-68.745,-49.185],[-55.412,-98.289],[15.988,-104.319],[70.882,-96.832],[84.474,-44.041],[115.766,-2.355],[126.451,25.649],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[143.628,25.246],[131.798,-5.304],[101.792,-53.17],[91.696,-119.356],[17.328,-130.579],[-73.009,-104.794],[-91.076,-0.463],[-126.587,85.122]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-96.443,-35.281],[-77.701,-74.314],[-1.412,-87.458],[73.104,-104.636],[95.039,-56.765],[135.683,-18.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-28.862],[110.119,-69.507],[94.152,-110.604],[-3.589,-107.377],[-97.298,-83.426],[-116.459,13.831],[-128.023,84.394]],"c":true}]},{"t":288,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-90.443,-35.281],[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426],[-112.459,13.831],[-128.023,84.394]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[380.919,482.587],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[7.411,10.052],[8.853,-21.01],[-7.971,-0.797],[-0.689,6.299]],"o":[[-3.686,-5],[-7.12,17.017],[4.42,0.442],[1.153,-10.538]],"v":[[-30.339,-63.512],[-53.669,-47.246],[-45.573,-16.538],[-39.947,-39.683]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[12.087,3.141],[-6.355,-21.895],[-6.693,4.401],[3.432,5.327]],"o":[[-6.012,-1.562],[5.187,17.703],[3.711,-2.441],[-5.741,-8.912]],"v":[[38.6,-28.701],[30.723,-1.374],[56.35,17.38],[46.144,-4.14]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[8.433,9.323],[6.676,-21.612],[-8.039,-0.093],[-0.04,6.306]],"o":[[-4.193,-4.636],[-5.357,17.501],[4.457,0.051],[0.067,-10.553]],"v":[[21.035,-56.653],[-0.58,-38.48],[10.66,-8.732],[13.895,-32.179]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]},{"t":288,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[151.526,574.884],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[11.817,6.207],[8.475,-18.474],[-6.245,-3.583],[-3.094,6.486]],"o":[[-7.618,-4.037],[-7.5,16.349],[9.855,5.782],[5.293,-10.813]],"v":[[-38.586,-52.273],[-61.286,-34.549],[-59.852,-5.423],[-45.939,-24.356]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[13.088,-2.62],[-5.052,-19.688],[-7.107,1.15],[1.682,6.987]],"o":[[-8.46,1.662],[4.471,17.423],[11.297,-1.716],[-2.698,-11.733]],"v":[[34.214,-42.113],[27.744,-14.05],[47.201,7.671],[46.084,-15.797]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[12.434,5.123],[6.56,-19.065],[-6.602,-3.007],[-2.421,6.704]],"o":[[-8.02,-3.337],[-5.805,16.872],[10.432,4.872],[4.172,-11.187]],"v":[[14.558,-48.434],[-6.279,-28.869],[-1.851,-0.107],[10.089,-20.102]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]},{"t":288,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[192.615,581.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 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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-62.928,-71.443],[-0.451,-9.986],[18.343,-22.935],[0,0],[16.129,-10.184],[-24.177,-16.865],[-13.243,-1.347],[-28.355,27.229],[-6.748,2.995],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.328,16.334],[-0.557,26.271],[-5.718,56.321],[35.159,46.593],[74.208,20.21],[6.286,3.579],[26.71,20.014]],"o":[[31.995,36.325],[0.191,4.217],[-25.045,31.315],[0,0],[-25.188,15.793],[26.473,18.467],[13.313,1.354],[28.297,-27.173],[6.748,-2.995],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.321,-15.965],[0.557,-26.272],[8.068,-79.47],[-32.152,-42.607],[-87.315,-23.779],[-9.754,0.542],[-70.321,-52.691]],"v":[[-238.007,6.799],[-110.757,89.304],[-136.792,127.362],[-189.586,182.135],[-218.456,197.141],[-225.446,258.956],[-170.359,282.45],[-96.67,236.854],[-3.467,160.097],[77.628,58.471],[124.299,54.043],[126.127,122.079],[158.505,180.23],[174.967,200.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[279.466,224.561],[270.08,176.166],[331.57,11.864],[304.289,-129.498],[151.93,-226.816],[-27.131,-210.936],[-92.073,-229.12]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-52.745,-79.259],[-4.566,-8.892],[-0.196,-29.368],[0,0],[6.114,-18.068],[-29.401,2.126],[-11.135,7.295],[-4.876,39.009],[-4.889,5.532],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.328,16.334],[-0.557,26.271],[-5.718,56.321],[35.159,46.593],[74.208,20.21],[5.748,4.392],[27.383,13.582]],"o":[[26.818,40.298],[1.928,3.755],[0.268,40.098],[0,0],[-9.619,28.131],[32.193,-2.328],[11.194,-7.333],[4.866,-38.928],[4.889,-5.532],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.321,-15.965],[0.557,-26.272],[8.068,-79.47],[-32.152,-42.608],[-87.315,-23.779],[-9.738,-0.775],[-78.72,-39.046]],"v":[[-240.372,-65.942],[-138.416,48.632],[-137.422,109.397],[-141.598,205.054],[-154.572,234.893],[-121.07,287.31],[-63.484,270.866],[-34.962,189.04],[-11.396,68.352],[62.753,47.538],[124.299,54.043],[126.127,122.079],[158.505,180.23],[174.967,200.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[279.466,224.561],[270.08,176.166],[331.57,11.864],[304.289,-134.498],[151.93,-236.816],[-2.124,-253.331],[-60.745,-261.688]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[-55.037,-77.537],[-4.617,-8.865],[-0.379,-29.364],[0,0],[15.053,-11.512],[-25.868,-14.611],[-13.426,0.371],[-9.274,38.201],[-4.855,5.562],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.242,16.237],[-4.256,25.478],[-6.721,56.185],[34.712,46.918],[78.7,16.681],[5.87,4.212],[23.93,13.985]],"o":[[27.983,39.423],[1.952,3.743],[0.516,40.093],[0,0],[-23.519,17.867],[28.325,15.999],[13.495,-0.372],[9.844,-40.551],[4.855,-5.561],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.236,-15.966],[3.699,-24.015],[8.45,-73.217],[-32.521,-44.007],[-88.088,-19.286],[-8.785,-1.55],[-73.89,-45.582]],"v":[[-249.88,-60.34],[-147.221,56.306],[-147.435,115.475],[-145.959,187.741],[-167.964,204.212],[-168.582,266.131],[-108.354,283.499],[-47.207,217.445],[-20.096,75.964],[55.535,56.004],[125.047,57.104],[128.714,117.489],[165.173,172.505],[178.138,198.735],[163.258,218.367],[165.355,272.802],[235.676,292.238],[280.127,220.069],[274.073,162.547],[330.694,11.41],[304.187,-137.512],[143.31,-231.844],[-15.724,-243.356],[-47.911,-256.681]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-14.555,23.269],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[12.445,-17.731],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-44.741],[-171.738,77.676],[-175.318,132.4],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,97.159],[35.437,79.578],[127.129,65.627],[135.919,104.706],[183.742,150.996],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,124.626],[328.256,10.144],[303.901,-145.902],[119.307,-217.998],[-53.594,-215.579],[-84.648,-232.6]],"c":true}]},{"t":288,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-169.318,132.401],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":254,"op":306,"st":254,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"body 2","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":272,"s":[0]},{"t":288,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":272,"s":[495.362,672.106,0],"to":[0,0,0],"ti":[0,0,0]},{"t":288,"s":[495.362,672.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[338.022,305.632,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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-30.917,-3.201],[-6.327,-7.33],[40.421,0.157],[0,0],[3.773,8.976]],"o":[[0,0],[27.531,2.85],[6.353,7.254],[-39.147,-0.153],[0,0],[-5.948,-13.762]],"v":[[-83.099,10.023],[-8.885,34.211],[56.802,14.387],[-1.875,67.869],[-61.398,59.162],[-74.837,37.573]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-31.078,0.478],[-7.149,-6.53],[40.156,-4.624],[0,0],[3.773,8.976]],"o":[[0,0],[27.675,-0.426],[7.167,6.451],[-38.891,4.478],[0,0],[-5.948,-13.762]],"v":[[-83.099,10.023],[-6.579,22.679],[57.426,4.66],[5.119,53.168],[-61.398,59.162],[-74.837,37.573]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,0.572],[7.178,2.104],[65.806,-29.266],[25.161,29.362],[-40.644,36.54],[-59.757,19.766]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,-3.428],[7.178,-1.896],[65.806,-33.266],[25.161,25.362],[-40.644,32.54],[-59.757,15.766]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[537.812,408.234],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":253,"s":[{"i":[[-4.21,-13.17],[-17.844,12.263],[11.92,-1.007],[12.693,-8.581]],"o":[[2.128,6.658],[34.046,-23.398],[-11.92,1.007],[-12.6,8.519]],"v":[[-71.282,76.613],[2.321,87.808],[44.497,8.003],[-17.203,54.36]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-4.21,-13.17],[-17.844,12.263],[11.92,-1.007],[12.693,-8.581]],"o":[[2.128,6.658],[34.046,-23.398],[-11.92,1.007],[-12.6,8.519]],"v":[[-67.782,75.613],[6.821,65.808],[45.497,-17.997],[-14.703,32.86]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,47.903],[13.387,44.354],[53.467,-38.789],[-7.58,11.049]],"c":true}]},{"t":288,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,42.903],[13.387,34.354],[53.467,-48.789],[-7.58,1.049]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[554.908,310.372],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-9.389,18.518],[-11.625,-4.157],[9.101,-16.727],[0,0],[15.108,3.055]],"o":[[0,0],[9.389,-18.518],[11.624,4.157],[-13.5,30.248],[0,0],[-9.532,-1.928]],"v":[[-15.992,62.49],[2.207,9.85],[32.737,-35.807],[33.596,36.584],[11.87,67.776],[3.641,69.301]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-8.389,20.018],[-11.625,-4.157],[8,-21.748],[0,0],[14.559,5.06]],"o":[[0,0],[8.389,-20.018],[11.624,4.157],[-8,21.748],[0,0],[-9.186,-3.192]],"v":[[-33.501,52.382],[8.207,-0.15],[35.737,-49.807],[39.596,11.084],[11.87,67.776],[-14.963,61.772]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,71.693],[-2.137,-1.613],[24.476,-51.289],[32.459,-1.452],[14.879,57.177],[-7.863,69.274]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,61.693],[-2.137,-11.613],[24.476,-61.289],[32.459,-11.452],[14.879,57.177],[-7.863,59.274]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[439.063,320.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 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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-1.088,28.602],[-13.473,3.751],[5.366,-39.838],[0,0],[8.651,-9.661]],"o":[[0,0],[0.941,-24.74],[13.872,-3.92],[-3.496,25.952],[0,0],[-10.557,11.79]],"v":[[4.633,123.733],[19.643,43.641],[49.019,-54.108],[58.689,23.081],[46.689,71.527],[27.612,91.453]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-11.331,21.928],[-13.856,1.904],[11.919,-27.532],[0,0],[12.96,-0.456]],"o":[[0,0],[11.366,-21.995],[14.273,-2.018],[-11.461,26.367],[0,0],[-26.569,0.935]],"v":[[-5.842,53.143],[28.161,-22.563],[65.166,-87.928],[67.331,-20.838],[45.805,44.808],[17.168,54.47]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.823,-1.935]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.29,3.951]],"v":[[-48.628,81.733],[-3.225,6.492],[34.677,-58.104],[35.886,3.75],[12.742,69.959],[-15.081,74.314]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.823,-1.935]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.29,3.951]],"v":[[-48.628,71.733],[-3.225,-3.508],[34.677,-68.104],[35.886,-6.25],[12.742,59.959],[-15.081,64.314]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[351.605,326.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 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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[4.758,-11.924],[-4.643,-8.337],[-14.491,24.972],[0,0],[12.281,12.353]],"o":[[0,0],[-4.839,11.917],[6.09,10.935],[14.491,-24.972],[0,0],[-9.573,-9.629]],"v":[[8.135,-46.911],[-9.444,25.937],[-33.829,87.161],[21.602,42.9],[42.136,-10.039],[50.385,-46.826]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[4.758,-11.924],[-4.643,-8.337],[-14.491,24.972],[0,0],[12.281,12.353]],"o":[[0,0],[-4.839,11.917],[6.09,10.935],[14.491,-24.972],[0,0],[-9.573,-9.629]],"v":[[8.135,-51.911],[-9.444,20.937],[-33.829,82.161],[21.602,37.9],[42.136,-15.039],[39.635,-52.076]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-62.62],[-6.008,9.476],[-34.153,73.185],[26.572,23.266],[40.443,-29.314],[36.879,-66.652]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-72.62],[-6.008,-0.524],[-34.153,63.185],[26.572,13.266],[40.443,-39.314],[27.379,-74.652]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[600.029,186.059],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-9.375,-3.223],[-13.141,27.386],[0,0],[12.232,5.664],[0,0],[9.912,-43.65]],"o":[[15.343,5.395],[13.141,-27.387],[0,0],[-14.114,-6.535],[0,0],[-5.36,23.347]],"v":[[-26.219,83.238],[26.991,18.098],[53.218,-42.473],[35.516,-79.561],[2.233,-71.233],[-10.777,-0.128]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-9.375,-3.223],[-13.141,27.386],[0,0],[12.232,5.664],[0,0],[9.912,-43.65]],"o":[[15.343,5.395],[13.141,-27.387],[0,0],[-14.114,-6.535],[0,0],[-5.36,23.347]],"v":[[-26.219,78.238],[26.991,13.098],[53.218,-53.473],[36.766,-87.811],[3.233,-85.733],[-10.777,-5.128]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,87.458],[18.267,12.702],[30.121,-57.862],[7.735,-83.975],[-24.475,-69.555],[-22.459,2.701]],"c":true}]},{"t":288,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,77.458],[18.267,2.701],[30.121,-67.862],[1.735,-95.475],[-24.475,-79.555],[-22.459,-7.299]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[528.739,162.188],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[2.182,-42.904],[-9.272,0.194],[-9.947,45.048],[0,0],[12.604,1.93]],"o":[[0,0],[1.853,30.693],[11.932,-0.25],[9.947,-45.047],[0,0],[-15.648,-2.278]],"v":[[-9.219,-84.297],[-8.643,-7.356],[-4.771,77.524],[47.156,-13.063],[60.089,-78.312],[30.996,-98.997]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[3.577,-46.832],[-9.214,-1.055],[-9.947,45.048],[0,0],[12.604,1.93]],"o":[[0,0],[-2.293,30.663],[11.858,1.358],[9.947,-45.047],[0,0],[-15.648,-2.278]],"v":[[4.714,-97.182],[5.297,-15.42],[8.75,69.698],[47.156,-13.063],[60.089,-88.312],[31.746,-118.497]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-28.548,-71.652],[-18.065,8.186],[-3.71,92.216],[23.79,5.766],[27.419,-69.636],[0.161,-106.733]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-28.548,-81.652],[-18.065,-1.814],[-3.71,82.216],[23.79,-4.234],[27.419,-79.636],[0.161,-97.233]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[431.12,156.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-9.262,-23.692],[-3.558,-19.04],[-7.926,-0.964],[-1.805,25.125],[4.705,16.679],[0,0],[17.282,-5.12]],"o":[[0,0],[9.289,23.762],[1.907,10.204],[8.007,1.042],[1.875,-26.093],[-4.705,-16.679],[0,0],[-15.464,1.13]],"v":[[-13.008,-59.554],[13.174,-11.06],[36.417,57.358],[52.033,90.506],[66.946,43.813],[58.953,-35.975],[44.742,-78.203],[15.426,-68.8]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-5.991,-24.723],[-0.965,-19.345],[-7.724,-2.022],[-5.168,24.654],[2.419,17.161],[0,0],[17.737,1.057]],"o":[[0,0],[6.008,24.795],[0.517,10.368],[7.794,2.109],[5.367,-25.604],[-2.419,-17.161],[0,0],[-15.475,-0.961]],"v":[[11.918,-101.137],[31.338,-49.561],[45.167,21.361],[56.182,56.309],[77.24,12.046],[80.052,-68.092],[73.866,-98.427],[40.655,-121.385]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-39.475,-64.072],[-14.314,-15.039],[6.251,53.992],[21.17,87.459],[37.055,41.089],[31.975,-38.992],[22.379,-68.426],[-10.96,-77.7]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-39.475,-74.072],[-14.314,-25.039],[6.251,43.992],[21.17,77.459],[37.055,31.089],[31.975,-48.992],[22.379,-78.426],[-13.96,-89.7]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[329.952,154.446],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[2.93,-4.792],[-10.875,-12.658],[0,0],[-7.81,-4.14],[-3.236,15.012],[3.128,12.181],[29.561,15.572]],"o":[[-5.919,9.682],[10.262,11.944],[0,0],[9.119,4.775],[3.236,-15.012],[-2.784,-10.843],[-22.615,-11.801]],"v":[[-9.608,-37.92],[5.983,-9.041],[38.262,25.204],[51.19,85.785],[71.855,57.155],[67.542,11.949],[28.005,-30.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[3.548,-4.354],[-9.074,-14.006],[0,0],[-7.182,-5.153],[-5.226,14.441],[1.461,12.491],[27.197,19.407]],"o":[[-7.168,8.798],[8.562,13.216],[0,0],[8.393,5.958],[5.226,-14.441],[-1.3,-11.119],[-20.822,-14.736]],"v":[[0.699,-86.003],[12.264,-55.289],[39.643,-17.013],[44.304,44.756],[68.632,19.167],[70.44,-26.209],[36.922,-73.219]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-56.209],[-21.573,-25.483],[5.766,12.822],[10.362,74.596],[34.718,49.032],[39.072,5.161],[3.104,-43.387]],"c":true}]},{"t":288,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-66.209],[-21.573,-35.483],[5.766,2.822],[10.362,64.596],[34.718,39.032],[39.072,-4.839],[3.104,-53.387]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[285.759,244.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 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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-1.118,-5.616],[0,0],[-6.649,7.079],[9.766,10.225],[14.057,2.875],[11.519,-5.335]],"o":[[3.434,17.242],[0,0],[8.088,-8.519],[-15.375,-16.097],[-12.698,-2.651],[-14.445,6.742]],"v":[[-14.916,30.898],[44.752,34.886],[93.467,52.403],[86.355,24.956],[47.79,-3.133],[1.817,10.874]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-0.353,-5.715],[0,0],[-7.541,6.12],[8.302,11.446],[13.543,4.74],[12.132,-3.737]],"o":[[1.083,17.548],[0,0],[9.16,-7.353],[-13.07,-18.019],[-12.226,-4.335],[-15.22,4.737]],"v":[[-22.135,-26.475],[36.455,-14.497],[82.37,9.414],[79.015,-18.74],[44.579,-51.761],[-2.86,-44.066]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-0.847],[1.895,14.717],[46.25,41.411],[44.636,13.104],[12.299,-21.976],[-35.524,-17.217]],"c":true}]},{"t":288,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-10.847],[1.895,4.717],[46.25,31.411],[44.636,3.104],[12.299,-31.976],[-35.524,-27.217]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[231.082,309.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-14.659,12.568],[10.38,-8.771],[1.702,-20.279],[1.376,-17.257],[1.619,-0.378],[1.789,5.354],[0,0],[16.726,-1.227],[16.226,38.261],[5.242,18.916]],"o":[[41.335,-35.155],[-17.912,15.136],[-5.1,60.764],[5.462,23.009],[-8.597,2.187],[-1.825,-5.283],[0,0],[-16.726,1.227],[-9.337,-22.015],[-6.239,-22.514]],"v":[[18.612,-66.272],[95.529,-48.252],[69.194,7.715],[123.341,76.654],[115.071,126.833],[93.977,104.88],[84.131,76.507],[73.776,111.251],[27.093,58.774],[-32.958,2.189]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-16.217,10.481],[11.465,-7.295],[4.414,-19.866],[-5.93,-16.264],[1.315,-1.017],[3.855,4.124],[0,0],[5.436,-1.187],[10.932,40.096],[2.65,19.45]],"o":[[45.689,-29.275],[-19.786,12.589],[-13.227,59.526],[14.543,18.649],[-6.907,5.566],[-3.858,-4.044],[0,0],[-15.817,3.453],[-6.29,-23.071],[-3.154,-23.149]],"v":[[27.71,-135.373],[101.504,-107.169],[67.88,-55.254],[94.008,46.83],[98.247,87.977],[69.93,76.794],[53.331,64.186],[54.367,86.526],[-9.882,3.882],[-32.6,-74.471]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-72.43],[66.256,-52.803],[38.756,2.6],[60.127,74.243],[65.529,116.984],[31.66,97.841],[14.886,80.259],[8.515,94.615],[-29.792,52.357],[-63.259,-5.063]],"c":true}]},{"t":288,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.609,292.047],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-21.724,-11.015],[-4.874,6.874],[13.664,7.671],[0,0]],"o":[[0,0],[21.725,11.015],[5.653,-7.971],[-8.383,-4.706],[0,0]],"v":[[3.769,31.146],[37.47,41.458],[82.553,63.836],[48.697,12.66],[19.5,1.15]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-24.338,-0.975],[0.61,8.405],[15.617,1.288],[0,0]],"o":[[0,0],[24.339,0.975],[-0.61,-8.404],[-9.581,-0.79],[0,0]],"v":[[-6.859,-3.898],[24.1,-10.027],[74.353,-13.365],[22.324,-40.884],[-9.014,-39.2]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-24.354,-0.404],[0.806,8.388],[15.645,0.888],[0,0]],"o":[[0,0],[24.355,0.403],[-0.807,-8.387],[-9.597,-0.565],[0,0]],"v":[[-43.394,23.113],[-8.588,19.259],[40.572,20.742],[-11.088,-12.548],[-42.378,-10.128]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-24.354,-0.404],[0.806,8.388],[15.645,0.888],[0,0]],"o":[[0,0],[24.355,0.403],[-0.807,-8.387],[-9.597,-0.565],[0,0]],"v":[[-39.394,19.113],[-8.588,12.259],[41.572,7.742],[-11.088,-18.548],[-42.378,-16.128]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[207.453,391.661],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-9.183,-8.869],[-5.259,-1.271],[17.23,17.831],[0,0]],"o":[[0,0],[9.184,8.87],[8.518,2.058],[-17.23,-17.831],[0,0]],"v":[[-34.3,4.382],[-5.515,22.193],[28.349,52.582],[12.593,2.023],[-15.119,-20.91]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-12.718,-1.106],[-4.885,2.325],[24.613,2.999],[0,0]],"o":[[0,0],[12.72,1.106],[7.913,-3.766],[-24.613,-2.999],[0,0]],"v":[[-11.473,-5.681],[22.104,-9.975],[67.547,-7.698],[23.466,-37.047],[-12.503,-37.407]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-48.499,17.298],[-15.033,12.217],[30.451,13.428],[-14.307,-14.878],[-50.274,-14.395]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-42.499,17.298],[-9.033,12.217],[36.451,13.428],[-8.307,-14.878],[-44.274,-14.395]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[212.655,457.749],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-12.717,0.008],[5.104,24.927],[5.911,1.379],[7.12,-24.911]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"t":288,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.513,573.715],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[6.012,-6.179],[-25.896,19.464],[-18.654,17.59],[-3.135,0.208],[-47.776,23.452],[0,0],[-13.184,-25.219],[-0.649,-3.146],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[8.493,15.282],[5.785,14.303],[3.239,3.617],[31.93,-4.379],[17.304,-7.366],[8.536,-7.771],[21.009,-11.872]],"o":[[-4.512,4.638],[25.896,-19.464],[18.713,-17.645],[3.243,-0.215],[22.469,9.375],[0,0],[13.184,25.218],[10.128,16.365],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.492,-2.685],[-10.148,-25.227],[-3.239,-3.617],[-22.522,3.052],[-5.528,2.333],[-14.068,12.807],[-17.737,10.149]],"v":[[-230.303,99.902],[-174.444,96.949],[-93.724,37.333],[-40.813,-12.443],[39.652,-99.934],[70.085,-94.029],[80.679,-39.472],[108.613,3.573],[123.28,27.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[140.457,27.492],[125.248,3.156],[98.802,-47.303],[90.814,-122.499],[38.393,-128.562],[-53.842,-24.531],[-131.618,43.581],[-185.948,87.509]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0.778,-8.586],[-7.856,31.428],[-3.412,25.411],[-2.764,1.494],[-50.496,16.812],[0,0],[-13.184,-25.219],[-0.649,-3.146],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[8.493,15.282],[5.785,14.303],[3.239,3.617],[32.229,-0.044],[12.669,-13.899],[1.736,-11.412],[8.842,-22.453]],"o":[[-0.584,6.444],[7.856,-31.428],[3.422,-25.492],[2.859,-1.545],[21.004,12.312],[0,0],[13.184,25.218],[10.128,16.365],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.492,-2.685],[-10.148,-25.227],[-3.238,-3.617],[-22.728,-0.005],[-4.056,4.422],[-2.861,18.808],[-7.386,19.054]],"v":[[-123.145,100.303],[-81.616,62.83],[-58.798,-54.178],[-47.408,-106.899],[22.237,-110.374],[70.085,-94.029],[80.679,-39.471],[108.613,3.573],[123.28,27.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[140.457,27.492],[125.248,3.156],[98.802,-47.303],[90.813,-122.499],[24.84,-138.911],[-64.286,-112.468],[-81.961,-5.597],[-96.497,62.742]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[5.108,-6.925],[-23.038,22.71],[-3.256,25.43],[-2.758,1.504],[-49.065,13.734],[0,0],[-14.964,-23.925],[-0.883,-3.06],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[6.568,11.99],[6.813,13.698],[3.342,3.514],[32.173,-1.013],[12.582,-13.977],[1.661,-11.423],[19.26,-14.525]],"o":[[-3.833,5.197],[23.038,-22.71],[3.264,-25.511],[2.849,-1.563],[25.938,7.844],[0,0],[14.964,23.925],[7.878,12.787],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.417,-2.721],[-11.963,-24.166],[-3.342,-3.513],[-22.689,0.678],[-4.028,4.447],[-2.744,18.824],[-16.242,12.388]],"v":[[-169.092,103.181],[-113.725,93.028],[-68.745,-49.185],[-55.412,-98.289],[15.988,-104.319],[70.882,-96.832],[84.474,-44.041],[115.766,-2.355],[126.451,25.649],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[143.628,25.246],[131.798,-5.304],[101.792,-53.17],[91.696,-119.356],[17.328,-130.579],[-73.009,-104.794],[-91.076,-0.463],[-126.587,85.122]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-96.443,-35.281],[-77.701,-74.314],[-1.412,-87.458],[73.104,-104.636],[95.039,-56.765],[135.683,-18.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-28.862],[110.119,-69.507],[94.152,-110.604],[-3.589,-107.377],[-97.298,-83.426],[-116.459,13.831],[-128.023,84.394]],"c":true}]},{"t":288,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-90.443,-35.281],[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426],[-112.459,13.831],[-128.023,84.394]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[380.919,482.587],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[7.411,10.052],[8.853,-21.01],[-7.971,-0.797],[-0.689,6.299]],"o":[[-3.686,-5],[-7.12,17.017],[4.42,0.442],[1.153,-10.538]],"v":[[-30.339,-63.512],[-53.669,-47.246],[-45.573,-16.538],[-39.947,-39.683]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[12.087,3.141],[-6.355,-21.895],[-6.693,4.401],[3.432,5.327]],"o":[[-6.012,-1.562],[5.187,17.703],[3.711,-2.441],[-5.741,-8.912]],"v":[[38.6,-28.701],[30.723,-1.374],[56.35,17.38],[46.144,-4.14]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[8.433,9.323],[6.676,-21.612],[-8.039,-0.093],[-0.04,6.306]],"o":[[-4.193,-4.636],[-5.357,17.501],[4.457,0.051],[0.067,-10.553]],"v":[[21.035,-56.653],[-0.58,-38.48],[10.66,-8.732],[13.895,-32.179]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]},{"t":288,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[151.526,574.884],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[11.817,6.207],[8.475,-18.474],[-6.245,-3.583],[-3.094,6.486]],"o":[[-7.618,-4.037],[-7.5,16.349],[9.855,5.782],[5.293,-10.813]],"v":[[-38.586,-52.273],[-61.286,-34.549],[-59.852,-5.423],[-45.939,-24.356]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[13.088,-2.62],[-5.052,-19.688],[-7.107,1.15],[1.682,6.987]],"o":[[-8.46,1.662],[4.471,17.423],[11.297,-1.716],[-2.698,-11.733]],"v":[[34.214,-42.113],[27.744,-14.05],[47.201,7.671],[46.084,-15.797]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[12.434,5.123],[6.56,-19.065],[-6.602,-3.007],[-2.421,6.704]],"o":[[-8.02,-3.337],[-5.805,16.872],[10.432,4.872],[4.172,-11.187]],"v":[[14.558,-48.434],[-6.279,-28.869],[-1.851,-0.107],[10.089,-20.102]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]},{"t":288,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[192.615,581.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 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":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-62.928,-71.443],[-0.451,-9.986],[18.343,-22.935],[0,0],[16.129,-10.184],[-24.177,-16.865],[-13.243,-1.347],[-28.355,27.229],[-6.748,2.995],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.328,16.334],[-0.557,26.271],[-5.718,56.321],[35.159,46.593],[74.208,20.21],[6.286,3.579],[26.71,20.014]],"o":[[31.995,36.325],[0.191,4.217],[-25.045,31.315],[0,0],[-25.188,15.793],[26.473,18.467],[13.313,1.354],[28.297,-27.173],[6.748,-2.995],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.321,-15.965],[0.557,-26.272],[8.068,-79.47],[-32.152,-42.607],[-87.315,-23.779],[-9.754,0.542],[-70.321,-52.691]],"v":[[-238.007,6.799],[-110.757,89.304],[-136.792,127.362],[-189.586,182.135],[-218.456,197.141],[-225.446,258.956],[-170.359,282.45],[-96.67,236.854],[-3.467,160.097],[77.628,58.471],[124.299,54.043],[126.127,122.079],[158.505,180.23],[174.967,200.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[279.466,224.561],[270.08,176.166],[331.57,11.864],[304.289,-129.498],[151.93,-226.816],[-27.131,-210.936],[-92.073,-229.12]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-52.745,-79.259],[-4.566,-8.892],[-0.196,-29.368],[0,0],[6.114,-18.068],[-29.401,2.126],[-11.135,7.295],[-4.876,39.009],[-4.889,5.532],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.328,16.334],[-0.557,26.271],[-5.718,56.321],[35.159,46.593],[74.208,20.21],[5.748,4.392],[27.383,13.582]],"o":[[26.818,40.298],[1.928,3.755],[0.268,40.098],[0,0],[-9.619,28.131],[32.193,-2.328],[11.194,-7.333],[4.866,-38.928],[4.889,-5.532],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.321,-15.965],[0.557,-26.272],[8.068,-79.47],[-32.152,-42.608],[-87.315,-23.779],[-9.738,-0.775],[-78.72,-39.046]],"v":[[-240.372,-65.942],[-138.416,48.632],[-137.422,109.397],[-141.598,205.054],[-154.572,234.893],[-121.07,287.31],[-63.484,270.866],[-34.962,189.04],[-11.396,68.352],[62.753,47.538],[124.299,54.043],[126.127,122.079],[158.505,180.23],[174.967,200.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[279.466,224.561],[270.08,176.166],[331.57,11.864],[304.289,-134.498],[151.93,-236.816],[-2.124,-253.331],[-60.745,-261.688]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[-55.037,-77.537],[-4.617,-8.865],[-0.379,-29.364],[0,0],[15.053,-11.512],[-25.868,-14.611],[-13.426,0.371],[-9.274,38.201],[-4.855,5.562],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.242,16.237],[-4.256,25.478],[-6.721,56.185],[34.712,46.918],[78.7,16.681],[5.87,4.212],[23.93,13.985]],"o":[[27.983,39.423],[1.952,3.743],[0.516,40.093],[0,0],[-23.519,17.867],[28.325,15.999],[13.495,-0.372],[9.844,-40.551],[4.855,-5.561],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.236,-15.966],[3.699,-24.015],[8.45,-73.217],[-32.521,-44.007],[-88.088,-19.286],[-8.785,-1.55],[-73.89,-45.582]],"v":[[-249.88,-60.34],[-147.221,56.306],[-147.435,115.475],[-145.959,187.741],[-167.964,204.212],[-168.582,266.131],[-108.354,283.499],[-47.207,217.445],[-20.096,75.964],[55.535,56.004],[125.047,57.104],[128.714,117.489],[165.173,172.505],[178.138,198.735],[163.258,218.367],[165.355,272.802],[235.676,292.238],[280.127,220.069],[274.073,162.547],[330.694,11.41],[304.187,-137.512],[143.31,-231.844],[-15.724,-243.356],[-47.911,-256.681]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-14.555,23.269],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[12.445,-17.731],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-44.741],[-171.738,77.676],[-175.318,132.4],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,97.159],[35.437,79.578],[127.129,65.627],[135.919,104.706],[183.742,150.996],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,124.626],[328.256,10.144],[303.901,-145.902],[119.307,-217.998],[-53.594,-215.579],[-84.648,-232.6]],"c":true}]},{"t":288,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-169.318,132.401],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":254,"op":306,"st":254,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"leg_FB ","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[-33.515]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":38,"s":[-33.515]},{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.7],"y":[0]},"t":58,"s":[16.387]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[32.502]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":246,"s":[32.502]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":254,"s":[-7.304]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.7],"y":[0]},"t":260,"s":[-15.97]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":268,"s":[-33.515]},{"t":278,"s":[-33.515]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":30,"s":[287.877,680.514,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0.333},"t":38,"s":[287.877,680.514,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[287.877,680.514,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[302.377,570.014,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":78,"s":[326.377,786.014,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[326.377,786.014,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[293.377,665.691,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[328.377,638.014,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":268,"s":[287.877,680.514,0],"to":[0,0,0],"ti":[0,0,0]},{"t":278,"s":[287.877,680.514,0]}],"ix":2,"l":2},"a":{"a":0,"k":[166.999,4.885,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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.689,1.803],[0,0],[0,0]],"o":[[-4.851,-1.537],[0,0],[0,0]],"v":[[7.724,-23.534],[1.544,-25.393],[13.044,-21.533]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[5.689,1.803],[0,0],[0,0]],"o":[[-4.851,-1.537],[0,0],[0,0]],"v":[[23.773,-12.905],[17.594,-14.764],[29.094,-10.904]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[5.824,0.93],[-1.756,-5.113],[-1.912,6.439]],"o":[[-6.289,-0.793],[1.288,3.746],[1.444,-4.917]],"v":[[28.67,-18.106],[18.105,-11.26],[38.089,-8.527]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[5.968,0],[-3.629,-10.565],[-3.951,13.306]],"o":[[-7.822,0],[2.661,7.741],[2.984,-10.161]],"v":[[1.049,-15.484],[-14.193,0.645],[14.839,2.178]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[4.576,3.719],[3.799,-10.364],[-11.322,7.741]],"o":[[-5.998,-4.875],[-2.784,7.594],[8.62,-5.932]],"v":[[-30.472,-54.081],[-52.211,-51.212],[-30.904,-31.944]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[3.715,4.562],[5.815,-9.353],[-12.632,5.263]],"o":[[-4.87,-5.98],[-4.261,6.853],[9.626,-4.044]],"v":[[-32.6,-76.119],[-54.419,-77.73],[-37.517,-54.582]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[5.585,1.698],[-0.392,-10.92],[-7.484,11.328]],"o":[[-7.32,-2.226],[0.287,8.002],[5.684,-8.66]],"v":[[10.737,-34.86],[-8.117,-24.104],[18.616,-14.408]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[{"i":[[5.51,2.292],[0.704,-11.149],[-8.758,10.768]],"o":[[-7.222,-3.004],[-0.516,8.169],[6.658,-8.236]],"v":[[-8.181,-39.155],[-28.449,-30.117],[-2.232,-17.552]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[5.51,2.292],[0.704,-11.149],[-8.758,10.768]],"o":[[-7.222,-3.004],[-0.516,8.169],[6.658,-8.236]],"v":[[-8.181,-39.155],[-28.449,-30.117],[-2.232,-17.552]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[5.51,2.292],[0.704,-11.149],[-8.758,10.768]],"o":[[-7.222,-3.004],[-0.516,8.169],[6.658,-8.236]],"v":[[-8.181,-39.155],[-28.449,-30.117],[-2.232,-17.552]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[4.002,4.427],[5.402,-9.778],[-12.521,5.991]],"o":[[-5.245,-5.803],[-3.959,7.165],[9.539,-4.6]],"v":[[-39.075,-54.986],[-61.261,-55.478],[-42.931,-32.913]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":268,"s":[{"i":[[5.689,1.803],[0,0],[0,0]],"o":[[-4.851,-1.537],[0,0],[0,0]],"v":[[7.724,-23.534],[1.544,-25.393],[13.044,-21.533]],"c":true}]},{"t":278,"s":[{"i":[[5.689,1.803],[0,0],[0,0]],"o":[[-4.851,-1.537],[0,0],[0,0]],"v":[[7.724,-23.534],[1.544,-25.393],[13.044,-21.533]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[30.894,232.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 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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[18.887,-1.187],[0,0],[-16.034,4.725],[0.556,1.923]],"o":[[-13.308,0.836],[0,0],[6.258,-1.844],[-0.322,-0.222]],"v":[[-6.473,-10.101],[-24.947,-9.635],[13.967,-12.71],[28.584,-20.96]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[18.887,-1.187],[0,0],[-16.034,4.725],[0.556,1.923]],"o":[[-13.308,0.836],[0,0],[6.258,-1.844],[-0.322,-0.222]],"v":[[9.577,0.528],[-8.897,0.994],[30.017,-2.081],[44.634,-10.331]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[16.733,-4.398],[-2.303,-5.659],[-17.251,10.088],[3.018,3.881]],"o":[[-13.229,3.905],[2.107,5.19],[7.796,-4.854],[-2.898,-3.003]],"v":[[15.47,-13.516],[-1.01,2.374],[40.224,0.944],[50.812,-19.08]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[14.436,-7.822],[-4.759,-11.693],[-18.548,15.807],[5.645,5.968]],"o":[[-13.145,7.178],[4.354,10.725],[9.436,-8.064],[-5.645,-5.968]],"v":[[-11.089,-20.323],[-25.443,12.016],[18.266,12.338],[24.557,-20.242]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[15.944,2.998],[3.648,-11.928],[-24.074,0.595],[0.609,8.094]],"o":[[-14.553,-2.688],[-3.345,10.937],[12.261,-0.303],[-0.609,-8.094]],"v":[[-39.471,-35.458],[-70.631,-19.606],[-37.316,7.879],[-12.189,-13.183]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[14.967,6.166],[5.986,-10.912],[-23.638,-4.307],[-1.048,8.031]],"o":[[-13.671,-5.58],[-5.488,10.005],[12.039,2.193],[1.048,-8.031]],"v":[[-43.755,-50.645],[-77.413,-41.486],[-50.449,-7.871],[-21.626,-23.345]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[15.736,-3.212],[-1.115,-12.298],[-21.843,9.544],[3.584,7.192]],"o":[[-14.344,2.977],[1.023,11.276],[11.125,-4.861],[-3.584,-7.192]],"v":[[1.36,-29.696],[-21.276,-3.517],[19.536,9.223],[34.695,-19.476]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[{"i":[[16.333,-1.678],[0.108,-12.624],[-23.186,7.503],[2.92,7.678]],"o":[[-14.894,1.579],[-0.099,11.575],[11.809,-3.821],[-2.92,-7.678]],"v":[[-16.282,-30.659],[-41.955,-6.314],[-1.723,10.771],[16.598,-16.894]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[16.333,-1.678],[0.108,-12.624],[-23.186,7.503],[2.92,7.678]],"o":[[-14.894,1.579],[-0.099,11.575],[11.809,-3.821],[-2.92,-7.678]],"v":[[-16.282,-30.659],[-41.955,-6.314],[-1.723,10.771],[16.598,-16.894]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[16.333,-1.678],[0.108,-12.624],[-23.186,7.503],[2.92,7.678]],"o":[[-14.894,1.579],[-0.099,11.575],[11.809,-3.821],[-2.92,-7.678]],"v":[[-16.282,-30.659],[-41.955,-6.314],[-1.723,10.771],[16.598,-16.894]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[15.483,5.465],[5.494,-11.366],[-24.168,-3.128],[-0.642,8.19]],"o":[[-14.139,-4.939],[-5.037,10.422],[12.31,1.593],[0.642,-8.19]],"v":[[-49.103,-31.026],[-82.72,-19.99],[-53.65,12.652],[-25.262,-4.527]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":268,"s":[{"i":[[18.887,-1.187],[0,0],[-16.034,4.725],[0.556,1.923]],"o":[[-13.308,0.836],[0,0],[6.258,-1.844],[-0.322,-0.222]],"v":[[-6.473,-10.101],[-24.947,-9.635],[13.967,-12.71],[28.584,-20.96]],"c":true}]},{"t":278,"s":[{"i":[[18.887,-1.187],[0,0],[-16.034,4.725],[0.556,1.923]],"o":[[-13.308,0.836],[0,0],[6.258,-1.844],[-0.322,-0.222]],"v":[[-6.473,-10.101],[-24.947,-9.635],[13.967,-12.71],[28.584,-20.96]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[74.401,220.328],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-0.977,-39.741],[16.604,-28.643],[37.814,-22.676],[30.314,-51.707],[11.055,-69.605]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[2.566,-37.394],[20.148,-26.296],[40.732,-20.743],[30.314,-51.707],[11.055,-69.605]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-22.661,1.371],[-6.533,13.307],[14.677,19.273],[7.177,-9.758],[-7.984,-25.242]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-22.661,1.371],[-6.533,13.307],[14.677,19.273],[7.177,-9.758],[-7.984,-25.242]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-22.661,1.371],[-6.533,13.307],[14.677,19.273],[7.177,-9.758],[-7.984,-25.242]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-22.661,1.371],[-6.533,13.307],[14.677,19.273],[7.177,-9.758],[-7.984,-25.242]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-3.466,-2.407],[-4.179,6.818],[7.362,6.294],[0,0]],"o":[[0,0],[3.466,2.407],[6.298,-10.067],[-6.318,-5.498],[0,0]],"v":[[-21.853,6.469],[-3.863,15.353],[18.069,17.463],[5.538,-9.777],[-12.13,-22.326]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":268,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-8.188,-39.719],[9.393,-28.62],[30.603,-22.654],[28.939,-47.819],[9.68,-65.718]],"c":true}]},{"t":278,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-0.977,-39.741],[16.604,-28.643],[37.814,-22.676],[30.314,-51.707],[11.055,-69.605]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[97.345,67.345],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-5.914,7.966],[7.662,6.774],[0,0],[0,0],[-8.907,-5.667]],"o":[[10.371,-13.969],[-10.161,-8.952],[0,0],[0,0],[17.625,11.213]],"v":[[51.238,-15.681],[35.445,-51.437],[12.753,-66.849],[-3.178,-39.274],[17.595,-31.352]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-5.317,8.376],[12.125,11.291],[0,0],[0,0],[-8.907,-5.667]],"o":[[8.776,-13.825],[-9.91,-9.229],[0,0],[0,0],[17.625,11.213]],"v":[[56.449,-12.23],[37.321,-50.195],[16.922,-64.089],[2.033,-35.823],[22.806,-27.901]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-7.823,10.807],[7.662,6.774],[0,0],[0,0],[-7.742,-7.177]],"o":[[8.951,-12.419],[-10.161,-8.952],[0,0],[0,0],[6.532,6.049]],"v":[[18.71,16.451],[8.548,-14.677],[-10.322,-27.258],[-27.661,-6.612],[-9.435,7.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-7.823,10.807],[7.662,6.774],[0,0],[0,0],[-7.742,-7.177]],"o":[[8.951,-12.419],[-10.161,-8.952],[0,0],[0,0],[6.532,6.049]],"v":[[18.71,16.451],[8.548,-14.677],[-10.322,-27.258],[-27.661,-6.612],[-9.435,7.419]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-7.823,10.807],[7.662,6.774],[0,0],[0,0],[-7.742,-7.177]],"o":[[8.951,-12.419],[-10.161,-8.952],[0,0],[0,0],[6.532,6.049]],"v":[[18.71,16.451],[8.548,-14.677],[-10.322,-27.258],[-27.661,-6.612],[-9.435,7.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-7.823,10.807],[7.662,6.774],[0,0],[0,0],[-7.742,-7.177]],"o":[[8.951,-12.419],[-10.161,-8.952],[0,0],[0,0],[6.532,6.049]],"v":[[18.71,16.451],[8.548,-14.677],[-10.322,-27.258],[-27.661,-6.612],[-9.435,7.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-7.823,10.807],[7.662,6.774],[0,0],[0,0],[-7.742,-7.177]],"o":[[8.951,-12.419],[-10.161,-8.952],[0,0],[0,0],[6.532,6.049]],"v":[[26.471,16.592],[13.355,-13.301],[-5.653,-25.402],[-20.693,0.843],[-3.908,10.821]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":268,"s":[{"i":[[-5.914,7.966],[7.662,6.774],[0,0],[0,0],[-8.907,-5.667]],"o":[[10.371,-13.969],[-10.161,-8.952],[0,0],[0,0],[17.625,11.213]],"v":[[44.027,-15.659],[28.234,-51.415],[5.542,-66.827],[-10.389,-39.252],[10.384,-31.33]],"c":true}]},{"t":278,"s":[{"i":[[-5.914,7.966],[7.662,6.774],[0,0],[0,0],[-8.907,-5.667]],"o":[[10.371,-13.969],[-10.161,-8.952],[0,0],[0,0],[17.625,11.213]],"v":[[51.238,-15.681],[35.445,-51.437],[12.753,-66.849],[-3.178,-39.274],[17.595,-31.352]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[72.184,113.877],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[18.982,-31.233],[4.691,-7.013],[-0.261,-22.696],[-10.233,-0.636],[-11.21,8.203],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-23.103,38.015],[-28.728,-6.356],[0.265,23.02],[21.048,1.309],[11.129,-8.204],[0,0],[15.161,-15.967],[0,0]],"v":[[0.178,-133.306],[-23.865,-77.622],[-65.66,-8.283],[-128.854,31.515],[-65.846,86.532],[-9.315,77.875],[1.814,46.411],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[18.982,-31.233],[4.691,-7.013],[-0.261,-22.696],[-10.233,-0.636],[-11.21,8.203],[0,0],[-20.047,25.493],[0,0]],"o":[[0,0],[-23.103,38.015],[-26.159,-5.254],[0.265,23.02],[21.048,1.309],[11.129,-8.204],[0,0],[13.61,-17.308],[0,0]],"v":[[0.178,-133.306],[-19.696,-74.861],[-53.779,-0.415],[-112.805,42.144],[-49.797,97.161],[6.735,88.504],[17.864,57.039],[65.395,-11.16],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0,0],[20.84,-29.934],[6.541,-11.711],[-3.737,-15.391],[-10.1,-1.285],[-11.21,16.955],[0,0],[-17.683,20.884],[0,0]],"o":[[0,0],[-22.928,33.355],[-6.541,11.711],[3.599,15.414],[21.048,2.705],[11.129,-16.956],[0,0],[14.361,-16.659],[0,0]],"v":[[-0.279,-129.11],[-32.546,-57.542],[-75.44,12.162],[-86.987,69.556],[-41.67,104.474],[14.862,86.582],[10.097,51.896],[65.379,-16.394],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[22.822,-28.548],[-2.983,-49.032],[-7.444,-7.6],[-9.959,-1.976],[-11.21,26.289],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[0.946,15.298],[7.154,7.304],[21.048,4.194],[11.129,-26.29],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-105.766,73.104],[-92.298,106.959],[-65.846,120.441],[-9.314,92.701],[1.814,46.411],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[0,0],[22.822,-28.548],[28.231,-39.487],[-0.972,-10.467],[-6.398,-7.726],[-24.979,13.172],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-8.808,12.32],[0.934,10.058],[13.526,16.333],[24.917,-13.224],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-118.881,20.997],[-129.652,55.35],[-117.771,82.173],[-57.135,96.131],[3.429,46.285],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[22.822,-28.548],[35.595,-32.841],[1.176,-10.422],[-4.682,-8.847],[-27.076,7.796],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-11.106,10.247],[-1.13,10.016],[9.897,18.702],[27.026,-7.859],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-114.213,-2.387],[-131.711,28.985],[-125.551,57.6],[-69.15,83.547],[7.717,45.953],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[0,0],[22.822,-28.548],[11.115,-46.746],[-4.803,-9.231],[-8.754,-4.69],[-17.972,21.412],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-3.468,14.585],[4.616,8.871],[18.504,9.915],[17.896,-21.436],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-88.888,46.762],[-85.919,82.278],[-65.002,102.423],[-4.203,92.55],[9.775,45.794],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[{"i":[[0,0],[22.822,-28.548],[16.032,-46.433],[-3.954,-9.876],[-8.432,-5.656],[-20.447,19.967],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-5.002,14.488],[3.8,9.491],[17.823,11.956],[20.373,-19.999],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-105.577,39.847],[-106.145,76.278],[-86.9,98.886],[-24.05,94.985],[10.289,45.754],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[22.822,-28.548],[16.032,-46.433],[-3.954,-9.876],[-8.432,-5.656],[-20.447,19.967],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-5.002,14.488],[3.8,9.491],[17.823,11.956],[20.373,-19.999],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-105.577,39.847],[-106.145,76.278],[-86.9,98.886],[-24.05,94.985],[10.289,45.754],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[22.822,-28.548],[16.032,-46.433],[-3.954,-9.876],[-8.432,-5.656],[-20.447,19.967],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-5.002,14.488],[3.8,9.491],[17.823,11.956],[20.373,-19.999],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-105.577,39.847],[-106.145,76.278],[-86.9,98.886],[-24.05,94.985],[10.289,45.754],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[19.328,-38.156],[20.395,-7.499],[0.829,-22.83],[-5.205,-8.717],[-27.02,9.311],[-23.214,27.121],[-15.161,15.968],[0,0]],"o":[[0,0],[-16.436,32.447],[-40.594,-5.19],[-0.371,10.217],[11.002,18.427],[26.966,-9.372],[23.214,-27.121],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-41.442,-37.697],[-82.447,11.23],[-138.577,51.185],[-130.842,79.85],[-72.355,103.188],[4.765,52.456],[65.361,-21.977],[108.748,-62.863]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":268,"s":[{"i":[[0,0],[18.982,-31.233],[4.691,-7.013],[-0.261,-22.696],[-10.233,-0.636],[-11.21,8.203],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-23.103,38.015],[-28.728,-6.356],[0.265,23.02],[21.048,1.309],[11.129,-8.204],[0,0],[15.161,-15.967],[0,0]],"v":[[-1.197,-129.418],[-31.076,-77.6],[-65.66,-8.283],[-128.854,31.515],[-65.846,86.532],[-9.315,77.875],[1.814,46.411],[58.15,-21.954],[101.537,-62.84]],"c":true}]},{"t":278,"s":[{"i":[[0,0],[18.982,-31.233],[4.691,-7.013],[-0.261,-22.696],[-10.233,-0.636],[-11.21,8.203],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-23.103,38.015],[-28.728,-6.356],[0.265,23.02],[21.048,1.309],[11.129,-8.204],[0,0],[15.161,-15.967],[0,0]],"v":[[0.178,-133.306],[-23.865,-77.622],[-65.66,-8.283],[-128.854,31.515],[-65.846,86.532],[-9.315,77.875],[1.814,46.411],[65.361,-21.977],[108.748,-62.862]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[108.999,124.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 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"leg_RB ","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[640.605,654.764,0],"ix":2,"l":2},"a":{"a":0,"k":[81.185,-29.09,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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.354,13.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-2.201,-22.042],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[2.201,22.042],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.287,23.645],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.354,13.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[21.799,-45.042],[-20.251,-25.909],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[-21.799,45.042],[4.249,36.591],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-67.305,-56.306],[-57.354,32.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.354,13.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.354,13.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":254,"s":[{"i":[[21.799,-45.042],[-20.251,-25.909],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[-21.799,45.042],[4.249,36.591],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-67.305,-56.306],[-57.354,32.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-55.806],[-44.353,17.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.45,-90.079]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.354,13.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[77.184,117.91],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Tail_Mask","parent":13,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[125.964,115.619,0],"ix":2,"l":2},"a":{"a":0,"k":[125.964,115.619,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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-133.515,-111.564],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":48,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[119.771,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-121.59,-115.301],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[22.306,48.865],[13.881,9.224],[-33.399,-37.633],[-58.835,13.06],[-3.316,19.208]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-21.979,-43.172],[0,0],[33.399,37.633],[58.271,-12.993],[3.891,-22.539]],"v":[[118.639,-36.105],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-68.017,-45.378],[-120.896,-111.914],[-84.891,55.011],[38.567,102.377],[116.879,21.887]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[19.843,61.355],[13.127,5.782],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-18.943,-45.669],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-77.349,-62.212],[-119.678,-105.97],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[-5.29,55.927],[6.864,-22.812],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[6.282,-66.417],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-50.271,-63.532],[-109.559,-56.594],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-15.099,17.16],[10.231,14.139],[19.836,-15.537],[8.643,-6.11],[20.499,-0.257],[-19.959,52.511],[6.864,-22.812],[-33.399,-37.633],[-60.221,-2.345],[-16.893,9.725]],"o":[[10.769,-12.295],[-13.103,-18.107],[-6.555,5.134],[-8.643,6.11],[-35.087,0.441],[17.058,-44.879],[0,0],[33.399,37.633],[59.657,2.323],[16.893,-9.725]],"v":[[175.722,63.64],[183.295,16.869],[124.699,15.057],[94.155,39.8],[34.023,47.48],[-37.184,-44.513],[-104.041,-36.731],[-84.891,55.011],[29.767,115.261],[129.057,98.334]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-22.165,5.58],[0.416,17.447],[25.148,-1.558],[10.584,-0.135],[19.446,6.491],[-12.223,42.818],[6.864,-22.812],[-29.856,-40.5],[-37.96,-16.682],[-19.429,-1.562]],"o":[[15.841,-4.026],[-0.533,-22.345],[-8.31,0.515],[-10.584,0.135],[-33.284,-11.11],[13.179,-46.167],[0,0],[29.856,40.5],[37.96,16.682],[19.429,1.562]],"v":[[165.38,145.493],[198.128,111.252],[150.879,76.549],[111.691,79.622],[43.754,62.912],[-37.184,-44.513],[-104.041,-36.731],[-83.089,50.815],[14.036,126.642],[107.271,147.628]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[-15.932,-16.389],[-14.892,9.099],[13.945,20.985],[16.828,26.37],[45.324,52.008],[46.774,44.344],[-15.67,-20.116],[-33.983,-31.099],[-21.082,-24.092],[-16.842,-22.765]],"o":[[11.419,11.693],[19.073,-11.654],[-4.608,-6.935],[-16.091,-25.214],[-33.574,-38.525],[-34.842,-33.032],[15.67,20.115],[18.35,16.792],[39.316,44.93],[14.238,19.246]],"v":[[103.798,236.136],[149.837,247.328],[156.206,189.051],[125.703,144.082],[52.409,53.952],[-58.227,-55.503],[-149.152,-49.392],[-85.908,19.052],[1.757,103.938],[66.697,184.708]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-3.42,27.359],[28.174,62.971],[45.363,45.786],[-21.573,-18.204],[-32.993,-32.147],[-13.134,-29.196],[-0.475,-19.486]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[3.711,-29.68],[-20.87,-46.646],[-33.791,-34.106],[19.488,16.444],[17.815,17.359],[24.493,54.447],[0.584,23.933]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.882,209.2],[36.915,73.92],[-57.892,-58.536],[-153.6,-45.366],[-87.893,15.116],[-24.386,105.951],[-6.036,196.147]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":106,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[9.913,25.728],[33.898,60.084],[17.733,22.135],[-9.17,-27.638],[-23.936,-32.233],[-33.238,-57.057],[-7.025,-20.64]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-10.754,-27.911],[-25.11,-44.508],[-39.566,-49.389],[4.074,12.28],[14.829,19.97],[25.968,44.577],[7.713,22.664]],"v":[[34.271,263.336],[70.071,294.372],[102.425,245.484],[87.466,185.924],[36.623,72.718],[-58.893,-56.445],[-142.64,-66.009],[-101.36,-1.141],[-20.918,110.094],[15.787,194.772]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[-22.748,-2.229],[-5.498,16.564],[24.198,7.022],[25.955,9.302],[19.481,18.579],[15.397,61.201],[-5.233,-24.956],[-16.045,-28.356],[-42.815,-43.104],[-35.117,-14.152]],"o":[[16.27,1.557],[7.041,-21.213],[-7.996,-2.321],[-24.97,-8.949],[-28.921,-27.581],[-11.713,-46.56],[9.905,47.235],[12.25,21.648],[35.991,36.234],[22.205,8.948]],"v":[[140.919,200.993],[183.303,179.816],[150.541,131.2],[87.078,119.734],[15.593,70.742],[-61.945,-54.596],[-141.599,-76.712],[-100.759,30.304],[-28.518,124.48],[70.983,189.46]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":134,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[25.014,11.597],[18.068,19.956],[15.761,59.555],[-7.323,-24.425],[-22.344,-29.719],[-33.943,-32.447],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.462,-11.805],[-32.034,-35.382],[-12.283,-46.414],[7.564,25.229],[14.948,19.882],[36.917,35.29],[21.94,9.579]],"v":[[137.768,204.436],[178.476,177.839],[140.274,134.027],[77.254,115.139],[16.939,74.565],[-61.941,-54.547],[-137.805,-52.014],[-92.696,51.567],[-24.658,133.556],[59.978,190.283]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[-22.748,-2.229],[-5.498,16.564],[24.198,7.022],[25.955,9.302],[17.919,20.09],[25.684,61.599],[-13.426,-26.654],[-16.045,-28.356],[-35.655,-37.398],[-35.117,-14.152]],"o":[[16.27,1.557],[7.041,-21.213],[-7.996,-2.321],[-24.97,-8.949],[-31.769,-35.62],[-18.477,-44.314],[18.153,36.041],[12.25,21.648],[35.241,36.963],[22.205,8.948]],"v":[[140.034,210.011],[182.418,188.834],[149.656,140.219],[89.142,128.205],[21.619,77.329],[-58.996,-55.143],[-136.512,-43.325],[-96.243,31.791],[-21.676,133.452],[70.979,198.005]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[6.649,26.758],[33.898,60.084],[42.234,48.688],[-10.674,-19.43],[-25.095,-31.339],[-17.807,-30.356],[-3.49,-15.983]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-5.992,-24.112],[-25.11,-44.508],[-33.055,-38.105],[12.277,22.349],[26.792,33.457],[30.208,51.496],[5.107,23.389]],"v":[[29.268,257.093],[65.068,288.129],[97.422,239.241],[86.058,182.568],[39.744,70.217],[-59.518,-57.226],[-143.427,-48.398],[-79.715,27.819],[-20.733,109.579],[18.999,198.625]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-2.132,27.489],[23.759,51.897],[45.363,45.786],[-19.131,-19.517],[-22.449,-29.756],[-11.618,-29.831],[-0.475,-19.486]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[2.887,-37.226],[-21.272,-46.464],[-33.791,-34.106],[17.85,18.209],[14.981,19.857],[22.357,57.406],[0.584,23.933]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.079,207.113],[35.234,73.714],[-56.812,-60.283],[-146.936,-47.37],[-74.194,26.243],[-26.003,107.158],[-6.036,196.147]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":184,"s":[{"i":[[6.765,-21.833],[-15.117,-8.721],[-11.751,22.288],[-4.325,37.608],[17.348,44.594],[45.363,45.786],[-25.998,-22.754],[-32.993,-32.147],[-11.392,-29.918],[3.826,-28.099]],"o":[[-4.802,15.623],[19.36,11.169],[3.883,-7.365],[3.417,-29.715],[-18.528,-47.625],[-33.791,-34.106],[19.188,16.794],[17.815,17.359],[16.506,43.349],[-4.09,30.035]],"v":[[-30.617,243.925],[-18.409,289.706],[35.808,267.406],[56.403,189.419],[37.415,68.425],[-56.075,-62.265],[-145.334,-42.803],[-81.47,13.574],[-28.889,89.456],[-11.33,189.49]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-3.42,27.359],[28.174,62.971],[45.363,45.786],[-21.573,-18.204],[-32.993,-32.147],[-13.134,-29.196],[2.511,-22.068]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[3.711,-29.68],[-20.87,-46.646],[-33.791,-34.106],[19.488,16.444],[17.815,17.359],[24.493,54.447],[-2.707,23.787]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.882,209.2],[38.302,72.479],[-56.505,-59.977],[-150.826,-48.248],[-85.813,12.954],[-22.999,104.51],[-3.902,196.814]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[9.913,25.728],[33.898,60.084],[24.491,44.034],[-11.664,-18.853],[-23.936,-32.233],[-15.787,-27.851],[-9.627,-16.949]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-10.754,-27.911],[-25.11,-44.508],[-30.759,-55.304],[17.109,27.654],[14.829,19.97],[29.441,51.939],[11.824,20.817]],"v":[[37.627,261.158],[73.427,292.194],[105.78,243.306],[90.821,183.746],[39.978,70.54],[-55.538,-58.623],[-140.978,-53.169],[-91.063,17.582],[-19.718,109.278],[25.484,203.55]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":226,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[25.014,11.597],[18.068,19.956],[15.76,59.555],[-9.449,-28.571],[-21.38,-33.404],[-33.943,-32.447],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.462,-11.805],[-32.034,-35.382],[-12.283,-46.414],[8.27,25.006],[13.409,20.95],[36.917,35.29],[21.94,9.579]],"v":[[141.48,202.946],[182.188,176.349],[143.986,132.537],[80.966,113.649],[20.651,73.075],[-58.229,-56.037],[-137.25,-53.314],[-88.984,50.077],[-20.946,132.066],[63.69,188.793]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":242,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[24.629,12.394],[17.418,20.526],[15.761,59.555],[-7.546,-24.357],[-21.378,-30.421],[-32.884,-33.52],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.07,-12.616],[-30.881,-36.392],[-12.283,-46.414],[16.69,53.877],[14.302,20.351],[35.765,36.456],[21.94,9.579]],"v":[[137.768,204.436],[178.476,177.839],[140.274,134.027],[76.28,117.797],[19.492,71.677],[-61.941,-54.547],[-137.805,-52.014],[-91.542,48.802],[-23.977,129.302],[59.978,190.283]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[-15.099,17.16],[10.231,14.139],[19.836,-15.537],[8.643,-6.11],[20.499,-0.257],[-19.959,52.511],[6.864,-22.812],[-33.399,-37.633],[-60.221,-2.345],[-16.893,9.725]],"o":[[10.769,-12.295],[-13.103,-18.107],[-6.555,5.134],[-8.643,6.11],[-35.087,0.441],[17.058,-44.879],[0,0],[33.399,37.633],[59.657,2.323],[16.893,-9.725]],"v":[[175.722,63.64],[183.295,16.869],[124.699,15.057],[94.155,39.8],[34.023,47.48],[-37.184,-44.513],[-116.565,-62.885],[-84.891,55.011],[29.767,115.261],[129.057,98.334]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[-25.818,73.595],[12.244,-72.578],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[15.894,-45.304],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-42.17,-65.519],[-113.913,-54.41],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":256,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[13.63,-11.582],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-133.656,-41.307],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":262,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[3.089,45.088],[0,0],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-3.282,-47.899],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-48.641,-49.225],[-111.022,-57.404],[-80.153,60.974],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":268,"s":[{"i":[[-2.472,22.723],[16.504,5.674],[7.28,-24.122],[2.549,-10.273],[20.287,-2.952],[16.672,53.332],[14.311,11.185],[-33.399,-37.633],[-60.006,5.599],[-6.674,18.313]],"o":[[1.731,-16.253],[-21.137,-7.267],[-2.406,7.971],[-2.549,10.273],[-34.724,5.053],[-14.325,-45.825],[0,0],[33.399,37.633],[59.444,-5.546],[7.403,-20.314]],"v":[[134.73,-13.449],[109.807,-56.873],[63.337,-24.446],[58.519,17.153],[29.434,40.629],[-57.266,-41.397],[-100.746,-103.882],[-84.891,55.011],[34.133,108.381],[123.726,42.821]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":272,"s":[{"i":[[1.389,22.238],[18.025,1.063],[2.998,-24.379],[1.563,-10.388],[19.997,-4.197],[19.265,49.064],[14.311,11.185],[-33.399,-37.633],[-59.342,9.296],[-4.796,18.724]],"o":[[-1.03,-15.9],[-21.166,-1.997],[-0.991,8.056],[-1.563,10.388],[-34.227,7.183],[-17.783,-44.323],[0,0],[33.399,37.633],[58.786,-9.209],[5.257,-19.987]],"v":[[123.685,-26.343],[93.785,-64.012],[54.731,-25.097],[54.043,14.004],[27.344,38.284],[-59.268,-39.33],[-111.778,-108.518],[-84.891,55.011],[36.226,105.387],[120.28,31.863]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":282,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-130.687,-116.463],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"t":304,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[122.138,115.62],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Tail ","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[15]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[15]},{"i":{"x":[0.717],"y":[0.268]},"o":{"x":[0.333],"y":[0]},"t":38,"s":[15]},{"i":{"x":[0.624],"y":[0.724]},"o":{"x":[0.402],"y":[0.258]},"t":48,"s":[0]},{"i":{"x":[0.708],"y":[0.705]},"o":{"x":[0.336],"y":[0.613]},"t":58,"s":[-60.438]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.178],"y":[0.314]},"t":78,"s":[-109.069]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122,"s":[-170.422]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":184,"s":[-126.712]},{"i":{"x":[0.865],"y":[0.879]},"o":{"x":[0.563],"y":[0]},"t":242,"s":[-165.32]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.215],"y":[0.607]},"t":262,"s":[-28.329]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":282,"s":[15]},{"t":304,"s":[15]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0.333},"t":0,"s":[808.937,598.165,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[808.937,598.165,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[808.937,608.165,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.333,"y":0},"t":48,"s":[800.937,585.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.382,"y":0},"t":58,"s":[765.937,591.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.306,"y":0},"t":70,"s":[767.463,573.632,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.645,"y":1},"o":{"x":0.333,"y":0},"t":78,"s":[769.955,603.894,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[786.117,577.486,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":116,"s":[777.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[777.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":180,"s":[799.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[799.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":236,"s":[781.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":242,"s":[781.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":262,"s":[769.699,590.666,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":276,"s":[808.937,603.165,0],"to":[0,0,0],"ti":[0,0,0]},{"t":290,"s":[808.937,598.165,0]}],"ix":2,"l":2},"a":{"a":0,"k":[20.964,68.619,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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-15.78,-0.867],[0,0],[17.737,29.557],[4.937,-52.85]],"o":[[0,0],[15.78,0.867],[0,0],[-23.253,-38.75],[-2.343,25.087]],"v":[[-46.657,37.295],[-7.082,35.582],[36.849,41.609],[26.912,-38.249],[-57.203,-19.161]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.333,"y":0},"t":48,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[-8.24,-13.486],[0,0],[-17.694,29.583],[48.928,-20.58]],"o":[[0,0],[8.24,13.486],[0,0],[23.197,-38.784],[-23.225,9.769]],"v":[[2.281,62.138],[26.147,93.753],[46.111,133.348],[106.967,88.1],[50.454,22.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[0.855,-15.781],[0,0],[-31.344,14.344],[51.974,10.775]],"o":[[0,0],[-0.855,15.781],[0,0],[41.093,-18.806],[-24.671,-5.115]],"v":[[23.202,99.615],[24.946,139.189],[18.954,183.126],[94.737,180.337],[85.108,94.623]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[0,0],[12.58,-9.566],[0,0],[-28.115,-19.944],[16.708,50.382]],"o":[[0,0],[-14.066,10.696],[0,0],[36.86,26.147],[-7.931,-23.915]],"v":[[50.829,172.853],[19.592,200.549],[-23.554,225.044],[18.161,280.516],[87.524,229.249]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0,0],[15.397,3.564],[0,0],[0.486,-34.467],[-32.027,42.329]],"o":[[0,0],[-17.216,-3.985],[0,0],[-0.637,45.188],[15.202,-20.093]],"v":[[-13.378,248.201],[-57.321,244.338],[-105.14,229.233],[-120.186,289.611],[-38.626,317.677]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":106,"s":[{"i":[[0,0],[15.254,-4.135],[0,0],[-15.858,-30.606],[-8.224,52.439]],"o":[[0,0],[-17.055,4.623],[0,0],[20.791,40.126],[3.904,-24.892]],"v":[[14.975,219.132],[-25.578,236.492],[-72.409,244.044],[-59.589,306.096],[25.553,292.292]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[0,0],[2.025,-15.674],[0,0],[-34.347,2.922],[45.287,27.687]],"o":[[0,0],[-2.264,17.525],[0,0],[45.029,-3.831],[-21.497,-13.143]],"v":[[16.264,139.549],[12.359,183.139],[1.756,231.523],[66.571,240.676],[86.441,156.742]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":134,"s":[{"i":[[0,0],[4.498,-18.656],[0,0],[-33.874,6.385],[47.857,22.959]],"o":[[0,0],[-4.141,17.178],[0,0],[44.41,-8.371],[-22.717,-10.898]],"v":[[11.916,148.33],[8.713,187.916],[-3.778,235.732],[64.682,242.83],[75.95,157.316]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[0,0],[2.025,-15.674],[0,0],[-34.347,2.922],[45.287,27.687]],"o":[[0,0],[-2.264,17.525],[0,0],[45.029,-3.831],[-21.497,-13.143]],"v":[[15.378,148.567],[14.423,191.611],[0.87,240.541],[65.686,249.694],[85.555,165.76]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[15.254,-4.135],[0,0],[-15.858,-30.606],[-8.224,52.439]],"o":[[0,0],[-17.055,4.623],[0,0],[20.791,40.126],[3.904,-24.892]],"v":[[9.972,212.889],[-30.581,230.249],[-77.412,237.802],[-64.592,299.854],[20.55,286.05]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[15.397,3.564],[0,0],[0.486,-34.467],[-32.027,42.329]],"o":[[0,0],[-17.216,-3.985],[0,0],[-0.637,45.188],[15.202,-20.093]],"v":[[-13.378,248.201],[-57.321,244.338],[-105.14,229.233],[-120.186,289.611],[-38.626,317.677]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":184,"s":[{"i":[[0,0],[14.945,5.14],[0,0],[4.055,-34.231],[-36.24,38.783]],"o":[[0,0],[-16.71,-5.747],[0,0],[-5.316,44.878],[17.202,-18.409]],"v":[[-21.733,249.6],[-65.04,241.204],[-111.036,221.226],[-132.257,279.719],[-54.044,316.085]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[0,0],[15.397,3.564],[0,0],[0.486,-34.467],[-32.027,42.329]],"o":[[0,0],[-17.216,-3.985],[0,0],[-0.637,45.188],[15.202,-20.093]],"v":[[-13.378,248.201],[-57.321,244.338],[-105.14,229.233],[-120.186,289.611],[-38.626,317.677]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[{"i":[[0,0],[15.254,-4.135],[0,0],[-15.858,-30.606],[-8.224,52.439]],"o":[[0,0],[-17.055,4.623],[0,0],[20.791,40.126],[3.904,-24.892]],"v":[[18.33,216.954],[-22.223,234.314],[-69.054,241.866],[-56.234,303.919],[28.908,290.114]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":226,"s":[{"i":[[0,0],[4.498,-18.656],[0,0],[-33.874,6.385],[47.857,22.959]],"o":[[0,0],[-4.141,17.178],[0,0],[44.41,-8.371],[-22.717,-10.898]],"v":[[15.628,146.839],[12.425,186.426],[-0.066,234.241],[68.394,241.34],[79.662,155.825]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":242,"s":[{"i":[[0,0],[4.498,-18.656],[0,0],[-33.874,6.385],[47.857,22.959]],"o":[[0,0],[-4.141,17.178],[0,0],[44.41,-8.371],[-22.717,-10.898]],"v":[[11.916,148.33],[8.713,187.916],[-3.778,235.732],[64.682,242.83],[75.95,157.316]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[0,0],[-8.24,-13.486],[0,0],[-17.694,29.583],[48.928,-20.58]],"o":[[0,0],[8.24,13.486],[0,0],[23.197,-38.784],[-23.225,9.769]],"v":[[2.281,62.138],[26.147,93.753],[46.111,133.348],[106.967,88.1],[50.454,22.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":256,"s":[{"i":[[0,0],[-15.78,-0.867],[0,0],[17.737,29.557],[4.937,-52.85]],"o":[[0,0],[15.78,0.867],[0,0],[-23.253,-38.75],[-2.343,25.087]],"v":[[-46.657,37.295],[-7.082,35.582],[36.849,41.609],[26.912,-38.249],[-57.203,-19.161]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":262,"s":[{"i":[[0,0],[-15.78,-0.867],[0,0],[17.737,29.557],[4.937,-52.85]],"o":[[0,0],[15.78,0.867],[0,0],[-23.253,-38.75],[-2.343,25.087]],"v":[[-46.657,37.295],[-7.082,35.582],[36.849,41.609],[26.912,-38.249],[-57.203,-19.161]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":268,"s":[{"i":[[0,0],[-14.5,-6.287],[0,0],[2.555,34.376],[28.17,-44.988]],"o":[[0,0],[14.5,6.287],[0,0],[-3.349,-45.068],[-13.372,21.355]],"v":[[-31.841,41.301],[5.871,53.421],[44.985,74.312],[68.713,2.285],[-15.004,-18.48]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":282,"s":[{"i":[[0,0],[-15.78,-0.867],[0,0],[17.737,29.557],[4.937,-52.85]],"o":[[0,0],[15.78,0.867],[0,0],[-23.253,-38.75],[-2.343,25.087]],"v":[[-46.657,37.295],[-7.082,35.582],[36.849,41.609],[26.912,-38.249],[-57.203,-19.161]],"c":true}]},{"t":304,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.19199999641,0.187999994615,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[208.546,89.007],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[4.812,6.851],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-4.792,-6.773],[0,0]],"v":[[-39.442,-34.067],[-31.439,6.973],[-38.264,44.845],[39.942,17.707],[15.384,-14.11],[-3.92,-40.42]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[4.812,6.851],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-4.792,-6.773],[0,0]],"v":[[-39.442,-34.067],[-31.439,6.973],[-38.264,44.845],[39.942,17.707],[15.384,-14.11],[-3.92,-40.42]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-0.519,-11.293],[1.941,-4.799],[0,0],[5.125,6.62],[0,0]],"o":[[0,0],[1.016,19.984],[48.427,0.629],[0,0],[-5.079,-6.561],[0,0]],"v":[[-41.184,-34.781],[-31.423,5.877],[-36.613,44.007],[40.354,13.532],[14.45,-17.2],[-5.967,-42.656]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.333,"y":0},"t":48,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[4.812,6.851],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-4.792,-6.773],[0,0]],"v":[[-39.442,-34.067],[-31.439,6.973],[-38.264,44.845],[39.942,17.707],[15.384,-14.11],[-3.92,-40.42]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[11.35,13.922],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-10.414,-12.774],[0,0]],"v":[[-36.716,-33.314],[-29.887,6.668],[-38.264,44.845],[39.942,17.707],[17.311,-15.778],[-3.92,-40.42]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[2.856,-10.938],[3.277,-4.007],[0,0],[4.25,17.452],[0,0]],"o":[[0,0],[-4.96,19.385],[46.058,14.973],[0,0],[-3.9,-16.013],[0,0]],"v":[[-26.839,-25.404],[-30.45,14.996],[-48.301,49.767],[28.267,48.859],[22.256,8.893],[13.702,-22.488]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[2.856,-10.938],[3.277,-4.007],[0,0],[-1.719,17.88],[0,0]],"o":[[0,0],[-4.96,19.385],[46.058,14.973],[0,0],[1.577,-16.405],[0,0]],"v":[[-23.952,-24.589],[-33.315,21.461],[-59.929,65.187],[4.876,86.132],[21.364,36.492],[23.175,1.846]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[0,0],[19.046,-13.744],[11.737,-5.634],[0,0],[-17.784,12.649],[0,0]],"o":[[0,0],[-21.972,15.856],[36.389,31.959],[0,0],[23.602,-16.786],[0,0]],"v":[[27.309,-6.97],[-3.182,23.662],[-48.985,49.161],[-8.934,87.115],[29.448,67.311],[71.891,31.363]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0,0],[22.967,-4.914],[13.012,-0.432],[0,0],[-21.371,4.419],[0,0]],"o":[[0,0],[-26.496,5.669],[20.444,43.904],[0,0],[28.363,-5.865],[0,0]],"v":[[9.46,24.865],[-30.782,40.631],[-81.136,44.748],[-62.718,98.298],[-18.486,93.723],[31.873,80.588]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":106,"s":[{"i":[[0,0],[21.427,-9.618],[12.632,-3.15],[0,0],[-19.97,8.8],[0,0]],"o":[[0,0],[-24.72,11.096],[29.192,38.644],[0,0],[26.504,-11.679],[0,0]],"v":[[11.427,19.798],[-24.617,43.648],[-74.623,59.381],[-43.054,104.635],[-1.466,92.983],[47.358,66.339]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[0,0],[15.148,-17.949],[10.022,-8.31],[0,0],[-12.689,20.791],[0,0]],"o":[[0,0],[-17.476,20.707],[17.363,20.303],[0,0],[17.17,-28.134],[0,0]],"v":[[-17.933,-8.475],[-41.196,37.283],[-74.747,69.213],[-37.188,111.334],[-0.071,74.525],[27.433,18.668]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":134,"s":[{"i":[[0,0],[14.564,-18.426],[9.75,-8.627],[0,0],[-12.015,21.188],[0,0]],"o":[[0,0],[-16.802,21.258],[18.006,19.735],[0,0],[16.258,-28.671],[0,0]],"v":[[-28.706,-3.547],[-46.978,44.062],[-78.136,76.356],[-34.508,116.11],[-2.262,74.055],[23.435,17.344]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[0,0],[14.701,-18.317],[9.814,-8.555],[0,0],[-12.172,21.098],[0,0]],"o":[[0,0],[-16.96,21.132],[17.858,19.869],[0,0],[16.471,-28.549],[0,0]],"v":[[-13.276,0.416],[-35.404,46.734],[-68.158,79.482],[-29.572,120.664],[6.627,82.951],[32.745,26.432]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[21.427,-9.618],[12.632,-3.15],[0,0],[-19.97,8.8],[0,0]],"o":[[0,0],[-24.72,11.096],[29.192,38.644],[0,0],[26.504,-11.679],[0,0]],"v":[[12.497,19.185],[-26.669,45.535],[-76.675,61.268],[-45.106,106.523],[-3.518,94.871],[45.926,62.604]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[22.967,-4.914],[13.012,-0.432],[0,0],[-21.371,4.419],[0,0]],"o":[[0,0],[-26.496,5.669],[20.444,43.904],[0,0],[28.363,-5.865],[0,0]],"v":[[6.494,27.55],[-33.748,43.315],[-82.079,45.216],[-62.718,98.298],[-21.451,96.407],[31.873,80.587]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":184,"s":[{"i":[[0,0],[23.162,-3.892],[13.018,0.144],[0,0],[-21.546,3.469],[0,0]],"o":[[0,0],[-26.721,4.491],[18.481,44.766],[0,0],[28.594,-4.604],[0,0]],"v":[[6.647,23.308],[-38.049,41.923],[-88.536,43.808],[-69.425,95.57],[-25.791,97.406],[28.18,83.961]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[0,0],[22.967,-4.914],[13.012,-0.432],[0,0],[-21.371,4.419],[0,0]],"o":[[0,0],[-26.496,5.669],[20.444,43.904],[0,0],[28.363,-5.865],[0,0]],"v":[[10.847,23.424],[-29.395,39.19],[-79.749,43.307],[-61.331,96.857],[-17.099,92.282],[31.873,80.588]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[{"i":[[0,0],[21.427,-9.618],[12.632,-3.15],[0,0],[-19.97,8.8],[0,0]],"o":[[0,0],[-24.72,11.096],[29.192,38.644],[0,0],[26.504,-11.679],[0,0]],"v":[[13.35,13.885],[-22.694,37.735],[-72.7,53.468],[-41.131,98.722],[0.457,87.071],[49.281,60.426]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":226,"s":[{"i":[[0,0],[14.564,-18.426],[9.75,-8.627],[0,0],[-12.015,21.188],[0,0]],"o":[[0,0],[-16.802,21.258],[18.006,19.735],[0,0],[16.258,-28.671],[0,0]],"v":[[-24.994,-5.037],[-43.266,42.572],[-74.424,74.866],[-30.796,114.62],[1.45,72.565],[27.147,15.854]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":242,"s":[{"i":[[0,0],[15.148,-17.949],[10.022,-8.31],[0,0],[-12.689,20.791],[0,0]],"o":[[0,0],[-17.476,20.707],[17.363,20.303],[0,0],[17.17,-28.134],[0,0]],"v":[[-25.773,-6.392],[-45.564,40.606],[-77.742,71.882],[-37.608,116.647],[-4.027,75.65],[23.477,19.792]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[0,0],[2.856,-10.938],[3.277,-4.007],[0,0],[4.25,17.452],[0,0]],"o":[[0,0],[-4.96,19.385],[46.058,14.973],[0,0],[-3.9,-16.013],[0,0]],"v":[[-26.839,-25.404],[-30.45,14.996],[-48.301,49.767],[28.267,48.859],[22.256,8.893],[13.702,-22.488]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[11.35,13.922],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-10.414,-12.774],[0,0]],"v":[[-36.716,-33.314],[-29.887,6.668],[-38.264,44.845],[39.942,17.707],[17.311,-15.778],[-3.92,-40.42]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":256,"s":[{"i":[[0,0],[-0.519,-11.293],[1.941,-4.799],[0,0],[5.125,6.62],[0,0]],"o":[[0,0],[1.016,19.984],[48.427,0.629],[0,0],[-5.079,-6.561],[0,0]],"v":[[-41.184,-34.781],[-31.423,5.877],[-36.613,44.007],[40.354,13.532],[14.45,-17.2],[-5.967,-42.656]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":262,"s":[{"i":[[0,0],[-0.519,-11.293],[1.941,-4.799],[0,0],[5.125,6.62],[0,0]],"o":[[0,0],[1.016,19.984],[48.427,0.629],[0,0],[-5.079,-6.561],[0,0]],"v":[[-41.184,-34.781],[-31.423,5.877],[-36.613,44.007],[40.354,13.532],[14.45,-17.2],[-5.967,-42.656]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":268,"s":[{"i":[[0,0],[1.392,-11.219],[2.722,-4.403],[0,0],[3.936,7.389],[0,0]],"o":[[0,0],[-2.367,19.869],[47.628,8.783],[0,0],[-3.9,-7.323],[0,0]],"v":[[-30.335,-30.602],[-32.016,10.284],[-43.559,46.994],[37.443,29.928],[17.089,-4.731],[-0.015,-36.367]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":282,"s":[{"i":[[0,0],[-0.519,-11.293],[1.941,-4.799],[0,0],[5.125,6.62],[0,0]],"o":[[0,0],[1.016,19.984],[48.427,0.629],[0,0],[-5.079,-6.561],[0,0]],"v":[[-41.184,-34.781],[-31.423,5.877],[-36.613,44.007],[40.354,13.532],[14.45,-17.2],[-5.967,-42.656]],"c":true}]},{"t":304,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[4.812,6.851],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-4.792,-6.773],[0,0]],"v":[[-39.442,-34.067],[-31.439,6.973],[-38.264,44.845],[39.942,17.707],[15.384,-14.11],[-3.92,-40.42]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.19199999641,0.187999994615,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[168.935,181.898],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[48.624,-22.106],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[48.624,-22.106],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[46.259,-22.421],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.333,"y":0},"t":48,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[48.624,-22.106],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[36.376,-10.33]],"o":[[0,0],[10.068,-15.443],[0,0],[8.682,-0.305],[11.738,24.809]],"v":[[-7.19,53.858],[28.785,22.065],[48.624,-22.106],[13.025,-54.209],[-49.124,14.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[36.376,-10.33]],"o":[[0,0],[10.068,-15.443],[0,0],[8.682,-0.305],[11.738,24.809]],"v":[[-7.19,53.858],[28.785,22.065],[48.624,-22.106],[13.025,-54.209],[-49.124,14.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-13.403,16.975],[0,0],[0,0],[37.161,-6.996]],"o":[[0,0],[11.424,-14.469],[0,0],[8.674,0.482],[9.445,25.769]],"v":[[-8.983,51.99],[29.722,23.582],[53.476,-18.612],[20.929,-53.805],[-47.173,8.897]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[0,0],[-24.306,21.866],[0,0],[0,0],[23.225,-15.877]],"o":[[0,0],[17.404,-15.658],[0,0],[-19.602,17.341],[13.158,24.086]],"v":[[14.441,47.991],[61.775,23.419],[90.349,-8.279],[49.76,-47.661],[-19.361,8.691]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0,0],[-29.629,13.822],[0,0],[0,0],[26.199,-10.252]],"o":[[0,0],[21.216,-9.897],[0,0],[-22.997,12.493],[7.41,26.426]],"v":[[-0.971,41.435],[49.74,28.573],[85.64,3.66],[54.938,-43.835],[-25.077,-4.455]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":106,"s":[{"i":[[0,0],[-28.218,16.512],[0,0],[0,0],[25.134,-12.64]],"o":[[0,0],[20.206,-11.824],[0,0],[-21.738,14.574],[9.831,25.624]],"v":[[-4.304,51.267],[44.994,33.753],[82.868,3.318],[50.554,-42.501],[-34.342,8.732]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[0,0],[-24.402,24.264],[0,0],[0,0],[27.087,-19.088]],"o":[[0,0],[16.601,-16.507],[0,0],[-15.661,15.218],[7.41,26.426]],"v":[[-10.142,57.177],[29.473,32.129],[63.161,-6.879],[29.963,-50.271],[-43.816,12.045]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":134,"s":[{"i":[[0,0],[-22.92,21.699],[0,0],[0,0],[26.461,-19.948]],"o":[[0,0],[17.001,-16.095],[0,0],[-15.165,15.713],[8.254,26.175]],"v":[[-15.682,59.089],[23.108,32.782],[55.527,-7.287],[20.954,-49.591],[-49.836,14.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[0,0],[-24.402,24.264],[0,0],[0,0],[27.087,-19.088]],"o":[[0,0],[16.601,-16.507],[0,0],[-15.661,15.218],[7.41,26.426]],"v":[[-8.211,61.178],[31.404,36.13],[65.092,-2.878],[31.894,-46.27],[-41.885,16.046]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[-28.218,16.512],[0,0],[0,0],[25.134,-12.64]],"o":[[0,0],[20.206,-11.824],[0,0],[-21.738,14.574],[9.831,25.624]],"v":[[-4.304,51.267],[44.994,33.753],[82.868,3.318],[50.554,-42.501],[-34.342,8.732]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[-29.629,13.822],[0,0],[0,0],[26.199,-10.252]],"o":[[0,0],[21.216,-9.897],[0,0],[-22.997,12.493],[7.41,26.426]],"v":[[-1.914,41.904],[48.797,29.042],[82.675,6.345],[53.995,-43.366],[-26.02,-3.986]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":184,"s":[{"i":[[0,0],[-30.211,12.497],[0,0],[0,0],[26.199,-10.252]],"o":[[0,0],[21.633,-8.948],[0,0],[-22.997,12.493],[7.41,26.426]],"v":[[-3.95,39.12],[46.733,26.076],[85.066,3.138],[54.364,-44.357],[-25.652,-4.977]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[0,0],[-29.629,13.822],[0,0],[0,0],[26.199,-10.252]],"o":[[0,0],[21.216,-9.897],[0,0],[-22.997,12.493],[7.41,26.426]],"v":[[-0.971,41.435],[51.127,27.132],[87.027,2.219],[54.938,-43.835],[-25.077,-4.455]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[{"i":[[0,0],[-28.218,16.512],[0,0],[0,0],[25.134,-12.64]],"o":[[0,0],[20.206,-11.824],[0,0],[-21.738,14.574],[9.831,25.624]],"v":[[-0.948,49.089],[48.349,31.576],[86.223,1.14],[53.909,-44.679],[-30.987,6.554]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":226,"s":[{"i":[[0,0],[-22.92,21.699],[0,0],[0,0],[26.461,-19.948]],"o":[[0,0],[17.001,-16.095],[0,0],[-15.165,15.713],[8.254,26.175]],"v":[[-11.97,57.598],[26.82,31.292],[59.239,-8.778],[24.666,-51.082],[-46.124,13.259]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":242,"s":[{"i":[[0,0],[-23.605,20.952],[0,0],[0,0],[27.087,-19.088]],"o":[[0,0],[17.509,-15.541],[0,0],[-15.661,15.218],[7.41,26.426]],"v":[[-16.055,57.159],[23.56,32.111],[57.248,-6.897],[24.05,-50.289],[-48.769,11.747]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[36.376,-10.33]],"o":[[0,0],[10.068,-15.443],[0,0],[8.682,-0.305],[11.738,24.809]],"v":[[-7.19,53.858],[28.785,22.065],[48.624,-22.106],[13.025,-54.209],[-49.124,14.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[36.376,-10.33]],"o":[[0,0],[10.068,-15.443],[0,0],[8.682,-0.305],[11.738,24.809]],"v":[[-7.19,53.858],[28.785,22.065],[48.624,-22.106],[13.025,-54.209],[-49.124,14.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":256,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[35.327,-24.204]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[46.259,-22.421],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":262,"s":[{"i":[[0,0],[-10.406,19.1],[0,0],[0,0],[28.985,-7.921]],"o":[[0,0],[8.819,-16.189],[0,0],[0,0],[11.738,24.809]],"v":[[0.36,55.657],[29.837,24.613],[45.306,-13.278],[22.361,-41.473],[-51.764,12.975]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":268,"s":[{"i":[[0,0],[-18.197,21.991],[0,0],[0,0],[46.432,-11.527]],"o":[[0,0],[11.752,-14.203],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[35.382,30.007],[58.57,-14.339],[18.564,-45.092],[-49.124,14.398]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":282,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[46.259,-22.421],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"t":304,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[48.624,-22.106],[8.618,-52.858],[-49.124,14.398]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.19199999641,0.187999994615,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[71.912,155.247],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-133.515,-111.564],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":48,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-121.59,-115.301],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[19.843,61.355],[13.127,5.782],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-18.943,-45.669],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-77.349,-62.212],[-119.678,-105.97],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[-5.29,55.927],[6.864,-22.812],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[6.282,-66.417],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-50.271,-63.532],[-109.559,-56.594],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-15.099,17.16],[10.231,14.139],[19.836,-15.537],[8.643,-6.11],[20.499,-0.257],[-19.959,52.511],[6.864,-22.812],[-33.399,-37.633],[-60.221,-2.345],[-16.893,9.725]],"o":[[10.769,-12.295],[-13.103,-18.107],[-6.555,5.134],[-8.643,6.11],[-35.087,0.441],[17.058,-44.879],[0,0],[33.399,37.633],[59.657,2.323],[16.893,-9.725]],"v":[[175.722,63.64],[183.295,16.869],[124.699,15.057],[94.155,39.8],[34.023,47.48],[-37.184,-44.513],[-104.041,-36.731],[-84.891,55.011],[29.767,115.261],[129.057,98.334]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-22.165,5.58],[0.416,17.447],[25.148,-1.558],[10.584,-0.135],[19.446,6.491],[-12.223,42.818],[6.864,-22.812],[-29.856,-40.5],[-37.96,-16.682],[-19.429,-1.562]],"o":[[15.841,-4.026],[-0.533,-22.345],[-8.31,0.515],[-10.584,0.135],[-33.284,-11.11],[13.179,-46.167],[0,0],[29.856,40.5],[37.96,16.682],[19.429,1.562]],"v":[[165.38,145.493],[198.128,111.252],[150.879,76.549],[111.691,79.622],[43.754,62.912],[-37.184,-44.513],[-104.041,-36.731],[-83.089,50.815],[14.036,126.642],[107.271,147.628]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[-15.932,-16.389],[-14.892,9.099],[13.945,20.985],[16.828,26.37],[45.324,52.008],[46.774,44.344],[-15.67,-20.116],[-33.983,-31.099],[-21.082,-24.092],[-16.842,-22.765]],"o":[[11.419,11.693],[19.073,-11.654],[-4.608,-6.935],[-16.091,-25.214],[-33.574,-38.525],[-34.842,-33.032],[15.67,20.115],[18.35,16.792],[39.316,44.93],[14.238,19.246]],"v":[[103.798,236.136],[149.837,247.328],[156.206,189.051],[125.703,144.082],[52.409,53.952],[-58.227,-55.503],[-149.152,-49.392],[-85.908,19.052],[1.757,103.938],[66.697,184.708]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-3.42,27.359],[28.174,62.971],[45.363,45.786],[-21.573,-18.204],[-32.993,-32.147],[-13.134,-29.196],[-0.475,-19.486]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[3.711,-29.68],[-20.87,-46.646],[-33.791,-34.106],[19.488,16.444],[17.815,17.359],[24.493,54.447],[0.584,23.933]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.882,209.2],[36.915,73.92],[-57.892,-58.536],[-153.6,-45.366],[-87.893,15.116],[-24.386,105.951],[-6.036,196.147]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":106,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[9.913,25.728],[33.898,60.084],[17.733,22.135],[-9.17,-27.638],[-23.936,-32.233],[-33.238,-57.057],[-7.025,-20.64]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-10.754,-27.911],[-25.11,-44.508],[-39.566,-49.389],[4.074,12.28],[14.829,19.97],[25.968,44.577],[7.713,22.664]],"v":[[34.271,263.336],[70.071,294.372],[102.425,245.484],[87.466,185.924],[36.623,72.718],[-58.893,-56.445],[-142.64,-66.009],[-101.36,-1.141],[-20.918,110.094],[15.787,194.772]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[-22.748,-2.229],[-5.498,16.564],[24.198,7.022],[25.955,9.302],[19.481,18.579],[15.397,61.201],[-5.233,-24.956],[-16.045,-28.356],[-42.815,-43.104],[-35.117,-14.152]],"o":[[16.27,1.557],[7.041,-21.213],[-7.996,-2.321],[-24.97,-8.949],[-28.921,-27.581],[-11.713,-46.56],[9.905,47.235],[12.25,21.648],[35.991,36.234],[22.205,8.948]],"v":[[140.919,200.993],[183.303,179.816],[150.541,131.2],[87.078,119.734],[15.593,70.742],[-61.945,-54.596],[-141.599,-76.712],[-100.759,30.304],[-28.518,124.48],[70.983,189.46]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":134,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[25.014,11.597],[18.068,19.956],[15.761,59.555],[-7.323,-24.425],[-22.344,-29.719],[-33.943,-32.447],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.462,-11.805],[-32.034,-35.382],[-12.283,-46.414],[7.564,25.229],[14.948,19.882],[36.917,35.29],[21.94,9.579]],"v":[[137.768,204.436],[178.476,177.839],[140.274,134.027],[77.254,115.139],[16.939,74.565],[-61.941,-54.547],[-137.805,-52.014],[-92.696,51.567],[-24.658,133.556],[59.978,190.283]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[-22.748,-2.229],[-5.498,16.564],[24.198,7.022],[25.955,9.302],[17.919,20.09],[25.684,61.599],[-13.426,-26.654],[-16.045,-28.356],[-35.655,-37.398],[-35.117,-14.152]],"o":[[16.27,1.557],[7.041,-21.213],[-7.996,-2.321],[-24.97,-8.949],[-31.769,-35.62],[-18.477,-44.314],[18.153,36.041],[12.25,21.648],[35.241,36.963],[22.205,8.948]],"v":[[140.034,210.011],[182.418,188.834],[149.656,140.219],[89.142,128.205],[21.619,77.329],[-58.996,-55.143],[-136.512,-43.325],[-96.243,31.791],[-21.676,133.452],[70.979,198.005]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[6.649,26.758],[33.898,60.084],[42.234,48.688],[-10.674,-19.43],[-25.095,-31.339],[-17.807,-30.356],[-3.49,-15.983]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-5.992,-24.112],[-25.11,-44.508],[-33.055,-38.105],[12.277,22.349],[26.792,33.457],[30.208,51.496],[5.107,23.389]],"v":[[29.268,257.093],[65.068,288.129],[97.422,239.241],[86.058,182.568],[39.744,70.217],[-59.518,-57.226],[-143.427,-48.398],[-79.715,27.819],[-20.733,109.579],[18.999,198.625]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-2.132,27.489],[23.759,51.897],[45.363,45.786],[-19.131,-19.517],[-22.449,-29.756],[-11.618,-29.831],[-0.475,-19.486]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[2.887,-37.226],[-21.272,-46.464],[-33.791,-34.106],[17.85,18.209],[14.981,19.857],[22.357,57.406],[0.584,23.933]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.079,207.113],[35.234,73.714],[-56.812,-60.283],[-146.936,-47.37],[-74.194,26.243],[-26.003,107.158],[-6.036,196.147]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":184,"s":[{"i":[[6.765,-21.833],[-15.117,-8.721],[-11.751,22.288],[-4.325,37.608],[17.348,44.594],[45.363,45.786],[-25.998,-22.754],[-32.993,-32.147],[-11.392,-29.918],[3.826,-28.099]],"o":[[-4.802,15.623],[19.36,11.169],[3.883,-7.365],[3.417,-29.715],[-18.528,-47.625],[-33.791,-34.106],[19.188,16.794],[17.815,17.359],[16.506,43.349],[-4.09,30.035]],"v":[[-30.617,243.925],[-18.409,289.706],[35.808,267.406],[56.403,189.419],[37.415,68.425],[-56.075,-62.265],[-145.334,-42.803],[-81.47,13.574],[-28.889,89.456],[-11.33,189.49]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-3.42,27.359],[28.174,62.971],[45.363,45.786],[-21.573,-18.204],[-32.993,-32.147],[-13.134,-29.196],[2.511,-22.068]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[3.711,-29.68],[-20.87,-46.646],[-33.791,-34.106],[19.488,16.444],[17.815,17.359],[24.493,54.447],[-2.707,23.787]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.882,209.2],[38.302,72.479],[-56.505,-59.977],[-150.826,-48.248],[-85.813,12.954],[-22.999,104.51],[-3.902,196.814]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[9.913,25.728],[33.898,60.084],[24.491,44.034],[-11.664,-18.853],[-23.936,-32.233],[-15.787,-27.851],[-9.627,-16.949]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-10.754,-27.911],[-25.11,-44.508],[-30.759,-55.304],[17.109,27.654],[14.829,19.97],[29.441,51.939],[11.824,20.817]],"v":[[37.627,261.158],[73.427,292.194],[105.78,243.306],[90.821,183.746],[39.978,70.54],[-55.538,-58.623],[-140.978,-53.169],[-91.063,17.582],[-19.718,109.278],[25.484,203.55]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":226,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[25.014,11.597],[18.068,19.956],[15.76,59.555],[-9.449,-28.571],[-21.38,-33.404],[-33.943,-32.447],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.462,-11.805],[-32.034,-35.382],[-12.283,-46.414],[8.27,25.006],[13.409,20.95],[36.917,35.29],[21.94,9.579]],"v":[[141.48,202.946],[182.188,176.349],[143.986,132.537],[80.966,113.649],[20.651,73.075],[-58.229,-56.037],[-137.25,-53.314],[-88.984,50.077],[-20.946,132.066],[63.69,188.793]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":242,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[24.629,12.394],[17.418,20.526],[15.761,59.555],[-7.546,-24.357],[-21.378,-30.421],[-32.884,-33.52],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.07,-12.616],[-30.881,-36.392],[-12.283,-46.414],[16.69,53.877],[14.302,20.351],[35.765,36.456],[21.94,9.579]],"v":[[137.768,204.436],[178.476,177.839],[140.274,134.027],[76.28,117.797],[19.492,71.677],[-61.941,-54.547],[-137.805,-52.014],[-91.542,48.802],[-23.977,129.302],[59.978,190.283]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[-15.099,17.16],[10.231,14.139],[19.836,-15.537],[8.643,-6.11],[20.499,-0.257],[-19.959,52.511],[6.864,-22.812],[-33.399,-37.633],[-60.221,-2.345],[-16.893,9.725]],"o":[[10.769,-12.295],[-13.103,-18.107],[-6.555,5.134],[-8.643,6.11],[-35.087,0.441],[17.058,-44.879],[0,0],[33.399,37.633],[59.657,2.323],[16.893,-9.725]],"v":[[175.722,63.64],[183.295,16.869],[124.699,15.057],[94.155,39.8],[34.023,47.48],[-37.184,-44.513],[-116.565,-62.885],[-84.891,55.011],[29.767,115.261],[129.057,98.334]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[-25.818,73.595],[12.244,-72.578],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[15.894,-45.304],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-42.17,-65.519],[-113.913,-54.41],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":256,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[13.63,-11.582],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-133.656,-41.307],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":262,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[3.089,45.088],[0,0],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-3.282,-47.899],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-48.641,-49.225],[-111.022,-57.404],[-80.153,60.974],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":268,"s":[{"i":[[-2.472,22.723],[16.504,5.674],[7.28,-24.122],[2.549,-10.273],[20.287,-2.952],[16.672,53.332],[14.311,11.185],[-33.399,-37.633],[-60.006,5.599],[-8.218,17.674]],"o":[[1.731,-16.253],[-21.137,-7.267],[-2.406,7.971],[-2.549,10.273],[-34.724,5.053],[-14.325,-45.825],[0,0],[33.399,37.633],[59.444,-5.546],[8.218,-17.674]],"v":[[141.923,-12.407],[121.199,-55.015],[72.237,-22.774],[58.519,17.153],[29.434,40.629],[-57.266,-41.397],[-100.746,-103.882],[-84.891,55.011],[34.133,108.381],[123.726,42.821]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":282,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-130.687,-116.463],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"t":304,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[122.138,115.62],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":306,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"body shape","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[512,512,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":[{"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":[[14,210],[-96,210],[-174,240],[-182,338],[-86,354],[32,270]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588235294118,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":[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":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":77,"op":100,"st":0,"bm":0}],"markers":[{"tm":48,"cm":"rest","dr":0}]} \ No newline at end of file diff --git a/examples/lottie/src/main.rs b/examples/lottie/src/main.rs new file mode 100644 index 0000000..19a334a --- /dev/null +++ b/examples/lottie/src/main.rs @@ -0,0 +1,25 @@ +use bevy::asset::{embedded_asset, AssetMetaCheck}; +use bevy::prelude::*; +use bevy_vello::{prelude::*, VelloPlugin}; + +fn main() { + let mut app = App::new(); + app.insert_resource(AssetMetaCheck::Never) + .add_plugins(DefaultPlugins) + .add_plugins(VelloPlugin) + .add_systems(Startup, load_lottie); + embedded_asset!(app, "assets/Tiger.json"); + app.run(); +} + +fn load_lottie(mut commands: Commands, asset_server: ResMut) { + commands.spawn(Camera2dBundle::default()); + + // Yes, it's this simple. + commands.spawn(VelloAssetBundle { + vector: asset_server.load("embedded://lottie/assets/Tiger.json"), + debug_visualizations: DebugVisualizations::Visible, + transform: Transform::from_scale(Vec3::splat(0.5)), + ..default() + }); +} diff --git a/examples/svg/Cargo.toml b/examples/svg/Cargo.toml new file mode 100644 index 0000000..985e25e --- /dev/null +++ b/examples/svg/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "svg" +version.workspace = true +license.workspace = true +edition.workspace = true +repository.workspace = true +publish = false + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[dependencies] +bevy_vello = { path = "../../", features = ["svg"] } +bevy = { workspace = true } diff --git a/examples/svg/src/assets/LICENSE b/examples/svg/src/assets/LICENSE new file mode 100644 index 0000000..da6ab6c --- /dev/null +++ b/examples/svg/src/assets/LICENSE @@ -0,0 +1,396 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + diff --git a/examples/svg/src/assets/README.md b/examples/svg/src/assets/README.md new file mode 100644 index 0000000..1c5c9c9 --- /dev/null +++ b/examples/svg/src/assets/README.md @@ -0,0 +1,3 @@ +Assets in this folder originate from Loopy Studios. + +See: https://www.loopystudios.com diff --git a/examples/svg/src/assets/fountain.svg b/examples/svg/src/assets/fountain.svg new file mode 100644 index 0000000..f74e326 --- /dev/null +++ b/examples/svg/src/assets/fountain.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/svg/src/main.rs b/examples/svg/src/main.rs new file mode 100644 index 0000000..0d691f9 --- /dev/null +++ b/examples/svg/src/main.rs @@ -0,0 +1,25 @@ +use bevy::asset::{embedded_asset, AssetMetaCheck}; +use bevy::prelude::*; +use bevy_vello::{prelude::*, VelloPlugin}; + +fn main() { + let mut app = App::new(); + app.insert_resource(AssetMetaCheck::Never) + .add_plugins(DefaultPlugins) + .add_plugins(VelloPlugin) + .add_systems(Startup, load_svg); + embedded_asset!(app, "assets/fountain.svg"); + app.run(); +} + +fn load_svg(mut commands: Commands, asset_server: ResMut) { + commands.spawn(Camera2dBundle::default()); + + // Yes, it's this simple. + commands.spawn(VelloAssetBundle { + vector: asset_server.load("embedded://svg/assets/fountain.svg"), + debug_visualizations: DebugVisualizations::Visible, + transform: Transform::from_scale(Vec3::splat(5.0)), + ..default() + }); +} diff --git a/examples/text/src/main.rs b/examples/text/src/main.rs index 9be32f1..bba6ccb 100644 --- a/examples/text/src/main.rs +++ b/examples/text/src/main.rs @@ -15,7 +15,7 @@ fn main() { (setup_camera, setup_screenspace_text, setup_worldspace_text), ); embedded_asset!(app, "assets/Rubik-Medium.ttf"); - embedded_asset!(app, "assets/Rubik-Medium.vttf"); + embedded_asset!(app, "assets/Rubik-Medium.ttf"); app.run(); } @@ -25,7 +25,7 @@ fn setup_camera(mut commands: Commands) { fn setup_worldspace_text(mut commands: Commands, asset_server: ResMut) { commands.spawn(VelloTextBundle { - font: asset_server.load("embedded://text/assets/Rubik-Medium.vttf"), + font: asset_server.load("embedded://text/assets/Rubik-Medium.ttf"), text: VelloText { content: "This text is centered\non x and y axes".to_string(), size: 50.0, @@ -38,7 +38,7 @@ fn setup_worldspace_text(mut commands: Commands, asset_server: ResMut) { // Vello text commands.spawn(VelloTextBundle { - font: asset_server.load("embedded://text/assets/Rubik-Medium.vttf"), + font: asset_server.load("embedded://text/assets/Rubik-Medium.ttf"), text: VelloText { content: "Text rendered by Vello!".to_string(), size: 15.0, diff --git a/examples/z_ordering/src/assets/Rubik-Medium.vttf b/examples/z_ordering/src/assets/Rubik-Medium.vttf deleted file mode 100644 index 0895d3e..0000000 Binary files a/examples/z_ordering/src/assets/Rubik-Medium.vttf and /dev/null differ diff --git a/examples/z_ordering/src/assets/fonts/LICENSE b/examples/z_ordering/src/assets/fonts/LICENSE new file mode 100644 index 0000000..77b1731 --- /dev/null +++ b/examples/z_ordering/src/assets/fonts/LICENSE @@ -0,0 +1,91 @@ +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/examples/text/src/assets/Rubik-Medium.vttf b/examples/z_ordering/src/assets/fonts/Rubik-Medium.ttf similarity index 100% rename from examples/text/src/assets/Rubik-Medium.vttf rename to examples/z_ordering/src/assets/fonts/Rubik-Medium.ttf diff --git a/examples/z_ordering/src/assets/google_fonts/LICENSE b/examples/z_ordering/src/assets/google_fonts/LICENSE new file mode 100644 index 0000000..da6ab6c --- /dev/null +++ b/examples/z_ordering/src/assets/google_fonts/LICENSE @@ -0,0 +1,396 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + diff --git a/examples/z_ordering/src/assets/google_fonts/README.md b/examples/z_ordering/src/assets/google_fonts/README.md new file mode 100644 index 0000000..68a2e31 --- /dev/null +++ b/examples/z_ordering/src/assets/google_fonts/README.md @@ -0,0 +1,4 @@ +Assets in this folder originate from Google Fonts. +The assets are part of a collection of Animated Emoji for Google Noto. + +See: https://googlefonts.github.io/noto-emoji-animation/ diff --git a/examples/z_ordering/src/assets/squid.json b/examples/z_ordering/src/assets/google_fonts/squid.json similarity index 100% rename from examples/z_ordering/src/assets/squid.json rename to examples/z_ordering/src/assets/google_fonts/squid.json diff --git a/examples/z_ordering/src/main.rs b/examples/z_ordering/src/main.rs index cb70fd3..52ac38f 100644 --- a/examples/z_ordering/src/main.rs +++ b/examples/z_ordering/src/main.rs @@ -17,8 +17,8 @@ fn main() { setup_worldspace_vectors, ), ); - embedded_asset!(app, "assets/squid.json"); - embedded_asset!(app, "assets/Rubik-Medium.vttf"); + embedded_asset!(app, "assets/google_fonts/squid.json"); + embedded_asset!(app, "assets/fonts/Rubik-Medium.ttf"); app.run(); } @@ -36,7 +36,7 @@ fn setup_worldspace_vectors(mut commands: Commands, asset_server: ResMut) { commands.spawn(VelloAssetBundle { - vector: asset_server.load("embedded://z_ordering/assets/squid.json"), + vector: asset_server.load("embedded://z_ordering/assets/google_fonts/squid.json"), transform: Transform::from_scale(Vec3::splat(0.03)).with_translation(Vec3::splat(20.0)), coordinate_space: CoordinateSpace::ScreenSpace, ..default() diff --git a/src/assets/asset_loader.rs b/src/assets/asset_loader.rs deleted file mode 100644 index 4b41a32..0000000 --- a/src/assets/asset_loader.rs +++ /dev/null @@ -1,78 +0,0 @@ -use crate::assets::parser::{load_lottie_from_bytes, load_svg_from_bytes}; -use crate::VelloAsset; -use bevy::asset::io::Reader; -use bevy::asset::{AssetLoader, AsyncReadExt, LoadContext}; -use bevy::prelude::*; -use bevy::utils::thiserror::{self, Error}; -use bevy::utils::BoxedFuture; -#[derive(Default)] -pub struct VelloAssetLoader; - -#[derive(Debug, Error)] -pub enum VectorLoaderError { - #[error("Could not load file: {0}")] - Io(#[from] std::io::Error), - #[error("Could not parse file: {0}")] - Parse(String), - #[error("Could not parse utf-8: {0}")] - FromStrUtf8(#[from] std::str::Utf8Error), - #[error("Could not parse svg: {0}")] - Usvg(#[from] vello_svg::usvg::Error), -} - -impl AssetLoader for VelloAssetLoader { - type Asset = VelloAsset; - - type Settings = (); - - type Error = VectorLoaderError; - - fn load<'a>( - &'a self, - reader: &'a mut Reader, - _settings: &'a Self::Settings, - load_context: &'a mut LoadContext, - ) -> BoxedFuture<'a, Result> { - Box::pin(async move { - let mut bytes = Vec::new(); - reader.read_to_end(&mut bytes).await?; - let path = load_context.path().to_owned(); - let ext = path - .extension() - .and_then(std::ffi::OsStr::to_str) - .ok_or(VectorLoaderError::Parse( - "Invalid file extension".to_string(), - ))? - .to_owned(); - - debug!("parsing {}...", load_context.path().display()); - match ext.as_str() { - "svg" => { - let vello_vector = load_svg_from_bytes(&bytes)?; - info!( - path = format!("{}", load_context.path().display()), - size = format!("{:?}", (vello_vector.width, vello_vector.height)), - "finished parsing svg asset" - ); - Ok(vello_vector) - } - "json" => { - let vello_vector = load_lottie_from_bytes(&bytes)?; - info!( - path = format!("{}", load_context.path().display()), - size = format!("{:?}", (vello_vector.width, vello_vector.height)), - "finished parsing lottie json asset" - ); - Ok(vello_vector) - } - ext => Err(VectorLoaderError::Parse(format!( - "Unknown file extension: {ext}" - ))), - } - }) - } - - fn extensions(&self) -> &[&str] { - &["svg", "json"] - } -} diff --git a/src/assets/metadata.rs b/src/assets/metadata.rs deleted file mode 100644 index 28e9938..0000000 --- a/src/assets/metadata.rs +++ /dev/null @@ -1,21 +0,0 @@ -use bevy::utils::hashbrown::HashSet; -use std::sync::Arc; -use velato::Composition; - -/// Metadata used for introspection and color swapping. -pub struct Metadata { - pub(crate) composition: Arc, -} - -impl Metadata { - pub fn get_layers(&self) -> impl Iterator { - self.composition - .layers - .iter() - .fold(HashSet::new(), move |mut acc, l| { - acc.insert(l.name.as_str()); - acc - }) - .into_iter() - } -} diff --git a/src/assets/mod.rs b/src/assets/mod.rs deleted file mode 100644 index 6940fb9..0000000 --- a/src/assets/mod.rs +++ /dev/null @@ -1,15 +0,0 @@ -//! Parsing, loading, and asset type definitions. - -mod asset; -pub use asset::{VectorFile, VelloAsset, VelloAssetAlignment}; - -mod parser; -pub use parser::{ - load_lottie_from_bytes, load_lottie_from_str, load_svg_from_bytes, load_svg_from_str, -}; - -mod asset_loader; -pub(crate) use asset_loader::{VectorLoaderError, VelloAssetLoader}; - -mod metadata; -pub use metadata::Metadata; diff --git a/src/assets/parser.rs b/src/assets/parser.rs deleted file mode 100644 index ef0b455..0000000 --- a/src/assets/parser.rs +++ /dev/null @@ -1,76 +0,0 @@ -use super::asset_loader::VectorLoaderError; -use crate::assets::asset::VectorFile; -use crate::VelloAsset; -use bevy::prelude::*; -use once_cell::sync::Lazy; -use std::sync::Arc; -use vello::Scene; -use vello_svg::usvg::{self, fontdb::Database}; - -pub static FONT_DB: Lazy = Lazy::new(usvg::fontdb::Database::default); - -/// Deserialize an SVG file from bytes. -pub fn load_svg_from_bytes(bytes: &[u8]) -> Result { - let svg_str = std::str::from_utf8(bytes)?; - - let usvg = usvg::Tree::from_str(svg_str, &usvg::Options::default(), &FONT_DB)?; - - // Process the loaded SVG into Vello-compatible data - let mut scene = Scene::new(); - vello_svg::render_tree(&mut scene, &usvg); - - let width = usvg.size().width(); - let height = usvg.size().height(); - - let vello_vector = VelloAsset { - data: VectorFile::Svg(Arc::new(scene)), - local_transform_center: { - let mut transform = Transform::default(); - transform.translation.x = width / 2.0; - transform.translation.y = -height / 2.0; - transform - }, - width, - height, - }; - - Ok(vello_vector) -} - -/// Deserialize an SVG file from a string slice. -pub fn load_svg_from_str(svg_str: &str) -> Result { - let bytes = svg_str.as_bytes(); - - load_svg_from_bytes(bytes) -} - -/// Deserialize a Lottie file from bytes. -pub fn load_lottie_from_bytes(bytes: &[u8]) -> Result { - // Load Lottie JSON bytes with the Velato (bodymovin) parser - let composition = velato::Composition::from_slice(bytes) - .map_err(|err| VectorLoaderError::Parse(format!("Unable to parse lottie JSON: {err:?}")))?; - - let width = composition.width as f32; - let height = composition.height as f32; - - let vello_vector = VelloAsset { - data: VectorFile::Lottie(Arc::new(composition)), - local_transform_center: { - let mut transform = Transform::default(); - transform.translation.x = width / 2.0; - transform.translation.y = -height / 2.0; - transform - }, - width, - height, - }; - - Ok(vello_vector) -} - -/// Deserialize a Lottie file from a string slice. -pub fn load_lottie_from_str(json_str: &str) -> Result { - let bytes = json_str.as_bytes(); - - load_lottie_from_bytes(bytes) -} diff --git a/src/assets/asset.rs b/src/integrations/asset.rs similarity index 86% rename from src/assets/asset.rs rename to src/integrations/asset.rs index 77ace08..79ed988 100644 --- a/src/assets/asset.rs +++ b/src/integrations/asset.rs @@ -1,20 +1,14 @@ -use super::Metadata; +use crate::VectorFile; use bevy::prelude::*; use bevy::reflect::TypePath; -use std::sync::Arc; - -#[derive(Clone)] -pub enum VectorFile { - Svg(Arc), - Lottie(Arc), -} #[derive(Asset, TypePath, Clone)] pub struct VelloAsset { - pub data: VectorFile, + pub file: VectorFile, pub local_transform_center: Transform, pub width: f32, pub height: f32, + pub alpha: f32, } impl VelloAsset { @@ -46,18 +40,6 @@ impl VelloAsset { .zip(camera.viewport_to_world_2d(camera_transform, max)) .map(|(min, max)| Rect { min, max }) } - - /// Gets the lottie metadata (if vector is a lottie), an object used for - /// inspecting this vector's layers and shapes - pub fn metadata(&self) -> Option { - if let VectorFile::Lottie(composition) = &self.data { - Some(Metadata { - composition: composition.clone(), - }) - } else { - None - } - } } /// Describes how to position the asset from the origin diff --git a/src/player/lottie_player.rs b/src/integrations/dot_lottie/lottie_player.rs similarity index 91% rename from src/player/lottie_player.rs rename to src/integrations/dot_lottie/lottie_player.rs index cf888b4..5ac9ed3 100644 --- a/src/player/lottie_player.rs +++ b/src/integrations/dot_lottie/lottie_player.rs @@ -5,9 +5,11 @@ use bevy::utils::hashbrown::HashMap; /// A lottie player that closely mirrors the behavior and functionality for /// dotLottie Interactivity. /// +/// Controls lottie playback and transitions with state machine support. +/// /// See: -#[derive(Component, Clone, Default, Debug)] -pub struct LottiePlayer { +#[derive(Component, Clone, Debug)] +pub struct DotLottiePlayer { pub(crate) current_state: Option<&'static str>, pub(crate) next_state: Option<&'static str>, pub(crate) states: HashMap<&'static str, PlayerState>, @@ -20,7 +22,7 @@ pub struct LottiePlayer { pub(crate) stopped: bool, } -impl LottiePlayer { +impl DotLottiePlayer { /// Retrieve an immutable reference to the current state. pub fn state(&self) -> &PlayerState { self.states @@ -92,9 +94,9 @@ impl LottiePlayer { } } -impl LottiePlayer { - pub fn new(initial_state: &'static str) -> LottiePlayer { - LottiePlayer { +impl DotLottiePlayer { + pub fn new(initial_state: &'static str) -> DotLottiePlayer { + DotLottiePlayer { current_state: None, next_state: Some(initial_state), states: HashMap::new(), diff --git a/src/integrations/dot_lottie/mod.rs b/src/integrations/dot_lottie/mod.rs new file mode 100644 index 0000000..950dca3 --- /dev/null +++ b/src/integrations/dot_lottie/mod.rs @@ -0,0 +1,13 @@ +mod lottie_player; +pub use lottie_player::DotLottiePlayer; + +mod player_state; +pub use player_state::PlayerState; + +mod player_transition; +pub use player_transition::PlayerTransition; + +mod plugin; +pub use plugin::DotLottieIntegrationPlugin; + +mod systems; diff --git a/src/player/player_state.rs b/src/integrations/dot_lottie/player_state.rs similarity index 100% rename from src/player/player_state.rs rename to src/integrations/dot_lottie/player_state.rs diff --git a/src/player/player_transition.rs b/src/integrations/dot_lottie/player_transition.rs similarity index 100% rename from src/player/player_transition.rs rename to src/integrations/dot_lottie/player_transition.rs diff --git a/src/integrations/dot_lottie/plugin.rs b/src/integrations/dot_lottie/plugin.rs new file mode 100644 index 0000000..624ffab --- /dev/null +++ b/src/integrations/dot_lottie/plugin.rs @@ -0,0 +1,17 @@ +use super::systems; +use bevy::prelude::*; + +pub struct DotLottieIntegrationPlugin; + +impl Plugin for DotLottieIntegrationPlugin { + fn build(&self, app: &mut bevy::prelude::App) { + // TODO: Add .lottie loader + app.add_systems(PostUpdate, systems::advance_dot_lottie_playheads) + .add_systems( + Last, + (systems::run_transitions, systems::transition_state) + .chain() + .after(crate::integrations::lottie::spawn_playheads), + ); + } +} diff --git a/src/player/systems.rs b/src/integrations/dot_lottie/systems.rs similarity index 81% rename from src/player/systems.rs rename to src/integrations/dot_lottie/systems.rs index e3580fc..22621d6 100644 --- a/src/player/systems.rs +++ b/src/integrations/dot_lottie/systems.rs @@ -1,5 +1,5 @@ -use crate::playback::PlaybackPlayMode; -use crate::player::LottiePlayer; +use super::DotLottiePlayer; +use crate::integrations::lottie::PlaybackPlayMode; use crate::{ PlaybackDirection, PlaybackLoopBehavior, PlaybackOptions, PlayerTransition, Playhead, VectorFile, VelloAsset, @@ -9,81 +9,49 @@ use bevy::utils::Instant; use std::time::Duration; use vello_svg::usvg::strict_num::Ulps; -/// Spawn playheads for Lotties. Every Lottie gets exactly 1 playhead. -/// Only -pub fn spawn_playheads( - mut commands: Commands, - query: Query<(Entity, &Handle, Option<&PlaybackOptions>), Without>, - assets: Res>, -) { - for (entity, handle, options) in query.iter() { - if let Some(asset) = assets.get(handle) { - let VectorFile::Lottie(composition) = &asset.data else { - commands.entity(entity).insert(Playhead::new(0.0)); - return; - }; - let frame = match options { - Some(options) => match options.direction { - PlaybackDirection::Normal => { - options.segments.start.max(composition.frames.start) - } - PlaybackDirection::Reverse => { - options.segments.end.min(composition.frames.end).prev() - } - }, - None => composition.frames.start, - }; - commands.entity(entity).insert(Playhead::new(frame)); - } - } -} - -/// Advance all the playheads in the scene -pub fn advance_playheads( +/// Advance all the dotLottie playheads in the scene +pub fn advance_dot_lottie_playheads( mut query: Query<( &Handle, &mut Playhead, - Option<&mut LottiePlayer>, - Option<&PlaybackOptions>, + &mut DotLottiePlayer, + &PlaybackOptions, )>, mut assets: ResMut>, time: Res