lottie-ios 3.2.3 → 3.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (434) hide show
  1. package/.github/actions/setup/action.yml +32 -0
  2. package/.github/issue_template.md +6 -23
  3. package/.github/workflows/main.yml +98 -0
  4. package/.github/workflows/stale_issues.yml +17 -0
  5. package/.spi.yml +6 -0
  6. package/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +7 -0
  7. package/.swiftpm/xcode/package.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  8. package/.swiftpm/xcode/package.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  9. package/.swiftpm/xcode/xcuserdata/{brandonwithrow.xcuserdatad → cal.xcuserdatad}/xcschemes/xcschememanagement.plist +25 -15
  10. package/.swiftpm/xcode/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  11. package/Gemfile +4 -0
  12. package/Gemfile.lock +102 -0
  13. package/Lottie.xcodeproj/project.pbxproj +2011 -1972
  14. package/Lottie.xcodeproj/project.xcworkspace/contents.xcworkspacedata +1 -1
  15. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  16. package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_iOS.xcscheme → Lottie (iOS).xcscheme } +15 -18
  17. package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_tvOS.xcscheme → Lottie (macOS).xcscheme } +5 -18
  18. package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_macOS.xcscheme → Lottie (tvOS).xcscheme } +5 -18
  19. package/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +37 -0
  20. package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +24 -0
  21. package/Lottie.xcworkspace/contents.xcworkspacedata +10 -0
  22. package/Lottie.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  23. package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +34 -0
  24. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  25. package/{Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad → Lottie.xcworkspace/xcuserdata/cal.xcuserdatad}/xcdebugger/Breakpoints_v2.xcbkptlist +2 -2
  26. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Expressions.xcexplist +153 -0
  27. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  28. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +22 -0
  29. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +138 -0
  30. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +30 -0
  31. package/Package.swift +5 -15
  32. package/README.md +40 -60
  33. package/Rakefile +160 -0
  34. package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +81 -0
  35. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +447 -0
  36. package/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift +81 -0
  37. package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +41 -0
  38. package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +55 -0
  39. package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +210 -0
  40. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +229 -0
  41. package/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift +52 -0
  42. package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +58 -0
  43. package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +257 -0
  44. package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +124 -0
  45. package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +73 -0
  46. package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +205 -0
  47. package/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift +37 -0
  48. package/Sources/Private/CoreAnimation/CompatibilityTracker.swift +130 -0
  49. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +497 -0
  50. package/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift +35 -0
  51. package/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift +37 -0
  52. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +154 -0
  53. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +83 -0
  54. package/Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift +33 -0
  55. package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +88 -0
  56. package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +167 -0
  57. package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +94 -0
  58. package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +79 -0
  59. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +64 -0
  60. package/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift +138 -0
  61. package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +140 -0
  62. package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +85 -0
  63. package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +315 -0
  64. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +390 -0
  65. package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +47 -0
  66. package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +91 -0
  67. package/Sources/Private/CoreAnimation/Layers/TransformLayer.swift +11 -0
  68. package/Sources/Private/CoreAnimation/ValueProviderStore.swift +139 -0
  69. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/CompositionLayer.swift +94 -86
  70. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ImageCompositionLayer.swift +24 -21
  71. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/MaskContainerLayer.swift +75 -54
  72. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/NullCompositionLayer.swift +5 -5
  73. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/PreCompositionLayer.swift +59 -43
  74. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ShapeCompositionLayer.swift +22 -20
  75. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/SolidCompositionLayer.swift +26 -17
  76. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/TextCompositionLayer.swift +42 -36
  77. package/{lottie-swift/src/Private/LayerContainers/AnimationContainer.swift → Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift} +200 -140
  78. package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +47 -0
  79. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/CompositionLayersInitializer.swift +33 -24
  80. package/{lottie-swift/src/Private/LayerContainers/Utility/TextLayer.swift → Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift} +149 -106
  81. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/InvertedMatteLayer.swift +26 -24
  82. package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +41 -0
  83. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerImageProvider.swift +20 -16
  84. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +40 -0
  85. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerTransformNode.swift +82 -67
  86. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Extensions/ItemsExtension.swift +9 -4
  87. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/NodeProperty.swift +29 -21
  88. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift +16 -10
  89. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift +6 -6
  90. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift +5 -5
  91. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +10 -8
  92. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueContainer.swift +25 -21
  93. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift +23 -17
  94. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift +22 -17
  95. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +110 -79
  96. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift +22 -16
  97. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift +19 -15
  98. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift +22 -20
  99. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift +22 -23
  100. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +247 -0
  101. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +30 -24
  102. package/{lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift → Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift} +93 -66
  103. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +23 -19
  104. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +139 -0
  105. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +170 -0
  106. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +95 -58
  107. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift +42 -29
  108. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +108 -69
  109. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +155 -0
  110. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift +51 -37
  111. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +57 -42
  112. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +66 -58
  113. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +169 -0
  114. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +138 -119
  115. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/AnimatorNode.swift +80 -79
  116. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/PathNode.swift +5 -3
  117. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/RenderNode.swift +22 -17
  118. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +27 -24
  119. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +34 -25
  120. package/Sources/Private/Model/Animation.swift +160 -0
  121. package/Sources/Private/Model/Assets/Asset.swift +43 -0
  122. package/{lottie-swift/src → Sources}/Private/Model/Assets/AssetLibrary.swift +40 -13
  123. package/Sources/Private/Model/Assets/ImageAsset.swift +112 -0
  124. package/{lottie-swift/src → Sources}/Private/Model/Assets/PrecompAsset.swift +20 -10
  125. package/Sources/Private/Model/DictionaryInitializable.swift +67 -0
  126. package/Sources/Private/Model/Extensions/Bundle.swift +34 -0
  127. package/{lottie-swift/src → Sources}/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +8 -4
  128. package/Sources/Private/Model/Keyframes/KeyframeData.swift +113 -0
  129. package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +222 -0
  130. package/{lottie-swift/src → Sources}/Private/Model/Layers/ImageLayerModel.swift +21 -11
  131. package/Sources/Private/Model/Layers/LayerModel.swift +228 -0
  132. package/{lottie-swift/src → Sources}/Private/Model/Layers/PreCompLayerModel.swift +39 -22
  133. package/{lottie-swift/src → Sources}/Private/Model/Layers/ShapeLayerModel.swift +23 -12
  134. package/{lottie-swift/src → Sources}/Private/Model/Layers/SolidLayerModel.swift +31 -19
  135. package/{lottie-swift/src → Sources}/Private/Model/Layers/TextLayerModel.swift +33 -19
  136. package/Sources/Private/Model/Objects/DashPattern.swift +44 -0
  137. package/Sources/Private/Model/Objects/Marker.swift +33 -0
  138. package/Sources/Private/Model/Objects/Mask.swift +80 -0
  139. package/Sources/Private/Model/Objects/Transform.swift +179 -0
  140. package/Sources/Private/Model/ShapeItems/Ellipse.swift +74 -0
  141. package/Sources/Private/Model/ShapeItems/Fill.swift +74 -0
  142. package/Sources/Private/Model/ShapeItems/GradientFill.swift +137 -0
  143. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +185 -0
  144. package/Sources/Private/Model/ShapeItems/Group.swift +48 -0
  145. package/{lottie-swift/src → Sources}/Private/Model/ShapeItems/Merge.swift +29 -12
  146. package/Sources/Private/Model/ShapeItems/Rectangle.swift +72 -0
  147. package/Sources/Private/Model/ShapeItems/Repeater.swift +135 -0
  148. package/Sources/Private/Model/ShapeItems/Shape.swift +56 -0
  149. package/Sources/Private/Model/ShapeItems/ShapeItem.swift +163 -0
  150. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +135 -0
  151. package/Sources/Private/Model/ShapeItems/Star.swift +131 -0
  152. package/Sources/Private/Model/ShapeItems/Stroke.swift +101 -0
  153. package/Sources/Private/Model/ShapeItems/Trim.swift +77 -0
  154. package/Sources/Private/Model/Text/Font.swift +61 -0
  155. package/{lottie-swift/src → Sources}/Private/Model/Text/Glyph.swift +63 -39
  156. package/Sources/Private/Model/Text/TextAnimator.swift +164 -0
  157. package/Sources/Private/Model/Text/TextDocument.swift +123 -0
  158. package/Sources/Private/RootAnimationLayer.swift +51 -0
  159. package/{lottie-swift/src → Sources}/Private/Utility/Debugging/AnimatorNodeDebugging.swift +7 -7
  160. package/{lottie-swift/src → Sources}/Private/Utility/Debugging/LayerDebugging.swift +72 -48
  161. package/Sources/Private/Utility/Debugging/TestHelpers.swift +10 -0
  162. package/{lottie-swift/src → Sources}/Private/Utility/Extensions/AnimationKeypathExtension.swift +69 -59
  163. package/Sources/Private/Utility/Extensions/BlendMode+Filter.swift +31 -0
  164. package/Sources/Private/Utility/Extensions/CGColor+RGB.swift +22 -0
  165. package/{lottie-swift/src → Sources}/Private/Utility/Extensions/CGFloatExtensions.swift +70 -67
  166. package/Sources/Private/Utility/Extensions/DataExtension.swift +27 -0
  167. package/Sources/Private/Utility/Extensions/MathKit.swift +450 -0
  168. package/Sources/Private/Utility/Extensions/StringExtensions.swift +38 -0
  169. package/{lottie-swift/src → Sources}/Private/Utility/Helpers/AnimationContext.swift +42 -16
  170. package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +134 -0
  171. package/{lottie-swift/src → Sources}/Private/Utility/Interpolatable/KeyframeExtensions.swift +13 -10
  172. package/Sources/Private/Utility/Interpolatable/KeyframeGroup+Extensions.swift +59 -0
  173. package/{lottie-swift/src/Private/NodeRenderSystem/NodeProperties/ValueProviders → Sources/Private/Utility/Interpolatable}/KeyframeInterpolator.swift +125 -108
  174. package/{lottie-swift/src → Sources}/Private/Utility/Primitives/BezierPath.swift +229 -143
  175. package/Sources/Private/Utility/Primitives/CGPointExtension.swift +35 -0
  176. package/{lottie-swift/src → Sources}/Private/Utility/Primitives/ColorExtension.swift +46 -14
  177. package/{lottie-swift/src → Sources}/Private/Utility/Primitives/CompoundBezierPath.swift +58 -49
  178. package/Sources/Private/Utility/Primitives/CurveVertex.swift +184 -0
  179. package/Sources/Private/Utility/Primitives/PathElement.swift +75 -0
  180. package/Sources/Private/Utility/Primitives/UnitBezier.swift +115 -0
  181. package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +341 -0
  182. package/Sources/Public/Animation/AnimationPublic.swift +266 -0
  183. package/Sources/Public/Animation/AnimationView.swift +1335 -0
  184. package/Sources/Public/Animation/AnimationViewInitializers.swift +109 -0
  185. package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +22 -0
  186. package/{lottie-swift/src → Sources}/Public/AnimationCache/LRUAnimationCache.swift +22 -18
  187. package/Sources/Public/DynamicProperties/AnimationKeypath.swift +49 -0
  188. package/Sources/Public/DynamicProperties/AnyValueProvider.swift +132 -0
  189. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +54 -36
  190. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +40 -36
  191. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +123 -0
  192. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +40 -35
  193. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +40 -35
  194. package/{lottie-swift/src → Sources}/Public/FontProvider/AnimationFontProvider.swift +15 -8
  195. package/Sources/Public/ImageProvider/AnimationImageProvider.swift +21 -0
  196. package/Sources/Public/Keyframes/Interpolatable.swift +253 -0
  197. package/Sources/Public/Keyframes/Keyframe.swift +92 -0
  198. package/Sources/Public/Logging/LottieLogger.swift +137 -0
  199. package/Sources/Public/LottieConfiguration.swift +143 -0
  200. package/{lottie-swift/src → Sources}/Public/Primitives/AnimationTime.swift +1 -1
  201. package/{lottie-swift/src → Sources}/Public/Primitives/Color.swift +10 -6
  202. package/{lottie-swift/src → Sources}/Public/Primitives/Vectors.swift +13 -12
  203. package/Sources/Public/TextProvider/AnimationTextProvider.swift +53 -0
  204. package/{lottie-swift/src → Sources}/Public/iOS/AnimatedButton.swift +42 -26
  205. package/{lottie-swift/src → Sources}/Public/iOS/AnimatedControl.swift +100 -91
  206. package/{lottie-swift/src → Sources}/Public/iOS/AnimatedSwitch.swift +128 -94
  207. package/{lottie-swift/src → Sources}/Public/iOS/AnimationSubview.swift +3 -3
  208. package/Sources/Public/iOS/AnimationViewBase.swift +78 -0
  209. package/{lottie-swift/src → Sources}/Public/iOS/BundleImageProvider.swift +36 -34
  210. package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift +4 -0
  211. package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationView.swift +38 -29
  212. package/{lottie-swift/src → Sources}/Public/iOS/FilepathImageProvider.swift +24 -21
  213. package/{lottie-swift/src → Sources}/Public/iOS/UIColorExtension.swift +4 -4
  214. package/{lottie-swift/src/Public/MacOS/AnimationSubview.swift → Sources/Public/macOS/AnimationSubview.macOS.swift} +4 -5
  215. package/{lottie-swift/src/Public/MacOS/LottieView.swift → Sources/Public/macOS/AnimationViewBase.macOS.swift} +58 -50
  216. package/{lottie-swift/src/Public/MacOS/BundleImageProvider.swift → Sources/Public/macOS/BundleImageProvider.macOS.swift} +31 -32
  217. package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +67 -0
  218. package/Tests/AnimationKeypathTests.swift +103 -0
  219. package/Tests/AutomaticEngineTests.swift +57 -0
  220. package/Tests/BundleTests.swift +25 -0
  221. package/Tests/DataURLTests.swift +64 -0
  222. package/Tests/ParsingTests.swift +43 -0
  223. package/Tests/PerformanceTests.swift +214 -0
  224. package/Tests/Samples/9squares_AlBoardman.json +1 -0
  225. package/Tests/Samples/Boat_Loader.json +1 -0
  226. package/Tests/Samples/HamburgerArrow.json +1 -0
  227. package/Tests/Samples/IconTransitions.json +1 -0
  228. package/Tests/Samples/Images/dog.png +0 -0
  229. package/Tests/Samples/Issues/issue_1125.json +1 -0
  230. package/Tests/Samples/Issues/issue_1260.json +1 -0
  231. package/Tests/Samples/Issues/issue_1403.json +1 -0
  232. package/Tests/Samples/Issues/issue_1407.json +1 -0
  233. package/Tests/Samples/Issues/issue_1460.json +1 -0
  234. package/Tests/Samples/Issues/issue_1488.json +1 -0
  235. package/Tests/Samples/Issues/issue_1505.json +1 -0
  236. package/Tests/Samples/Issues/issue_1541.json +1 -0
  237. package/Tests/Samples/Issues/issue_1557.json +1 -0
  238. package/Tests/Samples/Issues/issue_1603.json +1 -0
  239. package/Tests/Samples/Issues/issue_1628.json +1 -0
  240. package/Tests/Samples/Issues/issue_1636.json +1 -0
  241. package/Tests/Samples/Issues/issue_1643.json +1 -0
  242. package/Tests/Samples/Issues/issue_1655.json +1 -0
  243. package/Tests/Samples/Issues/issue_1664.json +1 -0
  244. package/Tests/Samples/Issues/issue_1683.json +1 -0
  245. package/Tests/Samples/Issues/issue_1687.json +1 -0
  246. package/Tests/Samples/Issues/issue_1711.json +1 -0
  247. package/Tests/Samples/Issues/issue_1717.json +1 -0
  248. package/Tests/Samples/Issues/issue_769.json +1 -0
  249. package/Tests/Samples/Issues/issue_885.json +1 -0
  250. package/Tests/Samples/Issues/issue_965.json +1 -0
  251. package/Tests/Samples/Issues/pr_1536.json +1 -0
  252. package/Tests/Samples/Issues/pr_1563.json +8439 -0
  253. package/Tests/Samples/Issues/pr_1592.json +5527 -0
  254. package/Tests/Samples/Issues/pr_1599.json +738 -0
  255. package/Tests/Samples/Issues/pr_1604_1.json +1 -0
  256. package/Tests/Samples/Issues/pr_1604_2.json +1 -0
  257. package/Tests/Samples/Issues/pr_1632_1.json +1 -0
  258. package/Tests/Samples/Issues/pr_1632_2.json +1 -0
  259. package/Tests/Samples/Issues/pr_1686.json +513 -0
  260. package/Tests/Samples/Issues/pr_1698.json +1 -0
  261. package/Tests/Samples/Issues/pr_1699.json +1 -0
  262. package/Tests/Samples/LottieFiles/LICENSE.md +14 -0
  263. package/Tests/Samples/LottieFiles/bounce_strokes.json +1 -0
  264. package/Tests/Samples/LottieFiles/cactus.json +1 -0
  265. package/Tests/Samples/LottieFiles/dog_car_ride.json +1 -0
  266. package/Tests/Samples/LottieFiles/draft_icon.json +1 -0
  267. package/Tests/Samples/LottieFiles/fireworks.json +1 -0
  268. package/Tests/Samples/LottieFiles/gradient_1.json +1 -0
  269. package/Tests/Samples/LottieFiles/gradient_2.json +1 -0
  270. package/Tests/Samples/LottieFiles/gradient_pill.json +1 -0
  271. package/Tests/Samples/LottieFiles/gradient_shapes.json +1 -0
  272. package/Tests/Samples/LottieFiles/gradient_square.json +1 -0
  273. package/Tests/Samples/LottieFiles/growth.json +1 -0
  274. package/Tests/Samples/LottieFiles/infinity_loader.json +1 -0
  275. package/Tests/Samples/LottieFiles/loading_dots_1.json +1 -0
  276. package/Tests/Samples/LottieFiles/loading_dots_2.json +1 -0
  277. package/Tests/Samples/LottieFiles/loading_dots_3.json +1 -0
  278. package/Tests/Samples/LottieFiles/loading_gradient_strokes.json +1 -0
  279. package/Tests/Samples/LottieFiles/settings_slider.json +1 -0
  280. package/Tests/Samples/LottieFiles/shop.json +1 -0
  281. package/Tests/Samples/LottieFiles/step_loader.json +1 -0
  282. package/Tests/Samples/LottieLogo1.json +1 -0
  283. package/Tests/Samples/LottieLogo1_masked.json +1 -0
  284. package/Tests/Samples/LottieLogo2.json +1 -0
  285. package/Tests/Samples/MotionCorpse_Jrcanest.json +1 -0
  286. package/Tests/Samples/Nonanimating/BasicLayers.json +1 -0
  287. package/Tests/Samples/Nonanimating/DisableNodesTest.json +1 -0
  288. package/Tests/Samples/Nonanimating/FirstText.json +1 -0
  289. package/Tests/Samples/Nonanimating/GeometryTransformTest.json +1 -0
  290. package/Tests/Samples/Nonanimating/Text_AnimatedProperties.json +1 -0
  291. package/Tests/Samples/Nonanimating/Text_Glyph.json +1 -0
  292. package/Tests/Samples/Nonanimating/Text_NoAnimation.json +1 -0
  293. package/Tests/Samples/Nonanimating/Text_NoGlyph.json +1 -0
  294. package/Tests/Samples/Nonanimating/Zoom.json +1 -0
  295. package/Tests/Samples/Nonanimating/_dog.json +1 -0
  296. package/Tests/Samples/Nonanimating/base64Test.json +1 -0
  297. package/Tests/Samples/Nonanimating/blend_mode_test.json +1 -0
  298. package/Tests/Samples/Nonanimating/keypathTest.json +1 -0
  299. package/Tests/Samples/Nonanimating/verifyLineHeight.json +1 -0
  300. package/Tests/Samples/PinJump.json +1 -0
  301. package/Tests/Samples/Switch.json +1 -0
  302. package/Tests/Samples/Switch_States.json +1 -0
  303. package/Tests/Samples/TwitterHeart.json +1 -0
  304. package/Tests/Samples/TwitterHeartButton.json +1 -0
  305. package/Tests/Samples/TypeFace/A.json +1 -0
  306. package/Tests/Samples/TypeFace/Apostrophe.json +1 -0
  307. package/Tests/Samples/TypeFace/B.json +1 -0
  308. package/Tests/Samples/TypeFace/BlinkingCursor.json +1 -0
  309. package/Tests/Samples/TypeFace/C.json +1 -0
  310. package/Tests/Samples/TypeFace/Colon.json +1 -0
  311. package/Tests/Samples/TypeFace/Comma.json +1 -0
  312. package/Tests/Samples/TypeFace/D.json +1 -0
  313. package/Tests/Samples/TypeFace/E.json +1 -0
  314. package/Tests/Samples/TypeFace/F.json +1 -0
  315. package/Tests/Samples/TypeFace/G.json +1 -0
  316. package/Tests/Samples/TypeFace/H.json +1 -0
  317. package/Tests/Samples/TypeFace/I.json +1 -0
  318. package/Tests/Samples/TypeFace/J.json +1 -0
  319. package/Tests/Samples/TypeFace/K.json +1 -0
  320. package/Tests/Samples/TypeFace/L.json +1 -0
  321. package/Tests/Samples/TypeFace/M.json +1 -0
  322. package/Tests/Samples/TypeFace/N.json +1 -0
  323. package/Tests/Samples/TypeFace/O.json +1 -0
  324. package/Tests/Samples/TypeFace/P.json +1 -0
  325. package/Tests/Samples/TypeFace/Q.json +1 -0
  326. package/Tests/Samples/TypeFace/R.json +1 -0
  327. package/Tests/Samples/TypeFace/S.json +1 -0
  328. package/Tests/Samples/TypeFace/T.json +1 -0
  329. package/Tests/Samples/TypeFace/U.json +1 -0
  330. package/Tests/Samples/TypeFace/V.json +1 -0
  331. package/Tests/Samples/TypeFace/W.json +1 -0
  332. package/Tests/Samples/TypeFace/X.json +1 -0
  333. package/Tests/Samples/TypeFace/Y.json +1 -0
  334. package/Tests/Samples/TypeFace/Z.json +1 -0
  335. package/Tests/Samples/Watermelon.json +1 -0
  336. package/Tests/Samples/setValueTest.json +1 -0
  337. package/Tests/Samples/timeremap.json +1 -0
  338. package/Tests/Samples/vcTransition1.json +1 -0
  339. package/Tests/Samples/vcTransition2.json +1 -0
  340. package/Tests/SnapshotConfiguration.swift +158 -0
  341. package/Tests/SnapshotTests.swift +265 -0
  342. package/Tests/Utils/Bundle+Module.swift +30 -0
  343. package/Tests/Utils/HardcodedFontProvider.swift +19 -0
  344. package/Tests/Utils/HardcodedImageProvider.swift +23 -0
  345. package/Tests/Utils/Snapshotting+presentationLayer.swift +47 -0
  346. package/Tests/ValueProvidersTests.swift +27 -0
  347. package/lottie-ios.podspec +12 -12
  348. package/package.json +1 -1
  349. package/script/test-carthage/Cartfile +1 -0
  350. package/script/test-carthage/Cartfile.resolved +1 -0
  351. package/script/test-carthage/CarthageTest/AppDelegate.swift +26 -0
  352. package/script/test-carthage/CarthageTest/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  353. package/script/test-carthage/CarthageTest/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
  354. package/script/test-carthage/CarthageTest/Assets.xcassets/Contents.json +6 -0
  355. package/script/test-carthage/CarthageTest/Base.lproj/LaunchScreen.storyboard +25 -0
  356. package/script/test-carthage/CarthageTest/Base.lproj/Main.storyboard +24 -0
  357. package/script/test-carthage/CarthageTest/Info.plist +66 -0
  358. package/script/test-carthage/CarthageTest/SceneDelegate.swift +10 -0
  359. package/script/test-carthage/CarthageTest/ViewController.swift +15 -0
  360. package/script/test-carthage/CarthageTest-macOS/AppDelegate.swift +7 -0
  361. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  362. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  363. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/Contents.json +6 -0
  364. package/script/test-carthage/CarthageTest-macOS/Base.lproj/Main.storyboard +717 -0
  365. package/script/test-carthage/CarthageTest-macOS/CarthageTest_macOS.entitlements +10 -0
  366. package/script/test-carthage/CarthageTest-macOS/ViewController.swift +15 -0
  367. package/script/test-carthage/CarthageTest.xcodeproj/project.pbxproj +532 -0
  368. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  369. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  370. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  371. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  372. package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  373. package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +19 -0
  374. package/script/test-carthage/Mintfile +1 -0
  375. package/script/test-spm/LottieSPM.xcworkspace/contents.xcworkspacedata +7 -0
  376. package/script/test-spm/LottieSPM.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  377. package/script/test-spm/Mintfile +1 -0
  378. package/.swiftpm/xcode/package.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  379. package/Lottie/Info.plist +0 -22
  380. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  381. package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/LottieLibraryMacOS.xcscheme +0 -80
  382. package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/xcschememanagement.plist +0 -57
  383. package/lottie-swift/Assets/.gitkeep +0 -0
  384. package/lottie-swift/src/Private/LayerContainers/Utility/LayerFontProvider.swift +0 -37
  385. package/lottie-swift/src/Private/LayerContainers/Utility/LayerTextProvider.swift +0 -36
  386. package/lottie-swift/src/Private/Model/Animation.swift +0 -107
  387. package/lottie-swift/src/Private/Model/Assets/Asset.swift +0 -27
  388. package/lottie-swift/src/Private/Model/Assets/ImageAsset.swift +0 -48
  389. package/lottie-swift/src/Private/Model/Keyframes/Keyframe.swift +0 -128
  390. package/lottie-swift/src/Private/Model/Keyframes/KeyframeGroup.swift +0 -108
  391. package/lottie-swift/src/Private/Model/Layers/LayerModel.swift +0 -150
  392. package/lottie-swift/src/Private/Model/Objects/DashPattern.swift +0 -24
  393. package/lottie-swift/src/Private/Model/Objects/Marker.swift +0 -23
  394. package/lottie-swift/src/Private/Model/Objects/Mask.swift +0 -48
  395. package/lottie-swift/src/Private/Model/Objects/Transform.swift +0 -105
  396. package/lottie-swift/src/Private/Model/ShapeItems/Ellipse.swift +0 -50
  397. package/lottie-swift/src/Private/Model/ShapeItems/FillI.swift +0 -49
  398. package/lottie-swift/src/Private/Model/ShapeItems/GradientFill.swift +0 -86
  399. package/lottie-swift/src/Private/Model/ShapeItems/GradientStroke.swift +0 -125
  400. package/lottie-swift/src/Private/Model/ShapeItems/Group.swift +0 -32
  401. package/lottie-swift/src/Private/Model/ShapeItems/Rectangle.swift +0 -50
  402. package/lottie-swift/src/Private/Model/ShapeItems/Repeater.swift +0 -80
  403. package/lottie-swift/src/Private/Model/ShapeItems/Shape.swift +0 -37
  404. package/lottie-swift/src/Private/Model/ShapeItems/ShapeItem.swift +0 -95
  405. package/lottie-swift/src/Private/Model/ShapeItems/ShapeTransform.swift +0 -68
  406. package/lottie-swift/src/Private/Model/ShapeItems/Star.swift +0 -86
  407. package/lottie-swift/src/Private/Model/ShapeItems/Stroke.swift +0 -67
  408. package/lottie-swift/src/Private/Model/ShapeItems/Trim.swift +0 -53
  409. package/lottie-swift/src/Private/Model/Text/Font.swift +0 -35
  410. package/lottie-swift/src/Private/Model/Text/TextAnimator.swift +0 -99
  411. package/lottie-swift/src/Private/Model/Text/TextDocument.swift +0 -70
  412. package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +0 -109
  413. package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +0 -132
  414. package/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +0 -141
  415. package/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +0 -127
  416. package/lottie-swift/src/Private/Utility/Extensions/MathKit.swift +0 -539
  417. package/lottie-swift/src/Private/Utility/Extensions/StringExtensions.swift +0 -32
  418. package/lottie-swift/src/Private/Utility/Interpolatable/Interpolatable.swift +0 -18
  419. package/lottie-swift/src/Private/Utility/Interpolatable/InterpolatableExtensions.swift +0 -170
  420. package/lottie-swift/src/Private/Utility/Primitives/CurveVertex.swift +0 -177
  421. package/lottie-swift/src/Private/Utility/Primitives/PathElement.swift +0 -68
  422. package/lottie-swift/src/Private/Utility/Primitives/VectorsExtensions.swift +0 -218
  423. package/lottie-swift/src/Public/Animation/AnimationPublic.swift +0 -196
  424. package/lottie-swift/src/Public/Animation/AnimationView.swift +0 -1006
  425. package/lottie-swift/src/Public/Animation/AnimationViewInitializers.swift +0 -83
  426. package/lottie-swift/src/Public/AnimationCache/AnimationCacheProvider.swift +0 -24
  427. package/lottie-swift/src/Public/DynamicProperties/AnimationKeypath.swift +0 -46
  428. package/lottie-swift/src/Public/DynamicProperties/AnyValueProvider.swift +0 -29
  429. package/lottie-swift/src/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +0 -114
  430. package/lottie-swift/src/Public/ImageProvider/AnimationImageProvider.swift +0 -23
  431. package/lottie-swift/src/Public/MacOS/FilepathImageProvider.swift +0 -67
  432. package/lottie-swift/src/Public/TextProvider/AnimationTextProvider.swift +0 -39
  433. package/lottie-swift/src/Public/iOS/LottieView.swift +0 -62
  434. package/lottie-swift-testing.podspec +0 -32
@@ -0,0 +1 @@
1
+ {"assets":[],"layers":[{"ddd":0,"ind":0,"ty":3,"nm":"NULL CONTROL 2","parent":20,"ks":{"o":{"k":0},"r":{"k":[{"i":{"x":[0.38],"y":[1]},"o":{"x":[0.194],"y":[0]},"n":["0p38_1_0p194_0"],"t":127.2,"s":[0],"e":[180]},{"t":158.4001953125}]},"p":{"k":[{"i":{"x":0,"y":1},"o":{"x":0.013,"y":0},"n":"0_1_0p013_0","t":24,"s":[417.9,540,0],"e":[340.2,540,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.2,"y":0.2},"o":{"x":0.1,"y":0.1},"n":"0p2_0p2_0p1_0p1","t":60,"s":[340.2,540,0],"e":[340.2,540,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.05,"y":0},"n":"0_1_0p05_0","t":127.2,"s":[340.2,540,0],"e":[538.514,540,0],"to":[0,0,0],"ti":[0,0,0]},{"t":158.4001953125}]},"a":{"k":[60,60,0]},"s":{"k":[74,74,100]}},"ao":0,"ip":0,"op":178,"st":-22.8,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"Group 10","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"n":"0p833_1_0p167_0","t":3,"s":[223.64,60,0],"e":[224.992,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.611,"y":0.611},"o":{"x":0.167,"y":0.167},"n":"0p611_0p611_0p167_0p167","t":22.8,"s":[224.992,60,0],"e":[224.992,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.061,"y":1},"o":{"x":0.167,"y":0},"n":"0p061_1_0p167_0","t":127.2,"s":[224.992,60,0],"e":[58.1,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.200390625}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-34,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-16.6,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":1,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":18.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":36,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":53.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":71,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":88.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":106,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":123.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":141,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":158.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":176,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":193.4,"s":[100,100,100],"e":[90,90,100]},{"t":211.0001953125}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-246.859],[246.859,0],[0,246.859],[-246.859,0]],"o":[[0,246.859],[-246.859,0],[0,-246.859],[246.859,0]],"v":[[446.978,0],[0,446.978],[-446.977,0],[0,-446.978]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.97,0.49,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10"}],"ip":0,"op":178,"st":-13.2,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Group 11","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":21.6,"s":[224.991,60,0],"e":[181.494,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":68.4,"s":[181.494,60,0],"e":[181.494,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[181.494,60,0],"e":[58.1,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.199609375}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":0,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":17.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":35,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":52.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":70,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":87.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":105,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":122.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":140,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":157.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":175,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":192.4,"s":[100,100,100],"e":[90,90,100]},{"t":210.000390625}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-222.836],[222.836,0],[0,222.836],[-222.836,0]],"o":[[0,222.836],[-222.836,0],[0,-222.836],[222.836,0]],"v":[[403.48,0],[0,403.48],[-403.48,0],[0,-403.48]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.97,0.49,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11"}],"ip":0,"op":178,"st":-14.4,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"Group 12","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":20.4,"s":[224.992,60,0],"e":[139.496,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":67.2,"s":[139.496,60,0],"e":[139.496,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[139.496,60,0],"e":[58.1,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.1998046875}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-1,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":16.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":34,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":51.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":69,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":86.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":104,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":121.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":139,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":156.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":174,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":191.399,"s":[100,100,100],"e":[90,90,100]},{"t":208.999609375}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-199.641],[199.641,0],[0,199.641],[-199.641,0]],"o":[[0,199.641],[-199.641,0],[0,-199.641],[199.641,0]],"v":[[361.482,0],[0,361.482],[-361.482,0],[0,-361.482]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.97,0.49,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12"}],"ip":0,"op":178,"st":-15.6,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"Group 13","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":19.2,"s":[224.992,60,0],"e":[97.498,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":66,"s":[97.498,60,0],"e":[97.498,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[97.498,60,0],"e":[58.1,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.2}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":-2,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":15.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":33,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":50.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":68,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":85.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":103,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":120.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":138,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":155.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":173,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":190.399,"s":[100,100,100],"e":[90,90,100]},{"t":207.9998046875}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-176.446],[176.446,0],[0,176.446],[-176.446,0]],"o":[[0,176.446],[-176.446,0],[0,-176.446],[176.446,0]],"v":[[319.484,0],[0,319.484],[-319.484,0],[0,-319.484]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.97,0.49,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13"}],"ip":0,"op":178,"st":-16.8,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":4,"nm":"Group 14","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":18,"s":[224.992,60,0],"e":[55.5,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":64.8,"s":[55.5,60,0],"e":[55.5,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[55.5,60,0],"e":[58.1,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.2001953125}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-3,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":14.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":32,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":49.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":67,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":84.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":102,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":119.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":137,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":154.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":172,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":189.399,"s":[100,100,100],"e":[90,90,100]},{"t":207}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-153.251],[153.251,0],[0,153.251],[-153.251,0]],"o":[[0,153.251],[-153.251,0],[0,-153.251],[153.251,0]],"v":[[277.486,0],[0,277.486],[-277.486,0],[0,-277.486]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.97,0.49,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14"}],"ip":0,"op":178,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":6,"ty":4,"nm":"Group 15","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":16.8,"s":[224.992,60,0],"e":[16.502,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":63.6,"s":[16.502,60,0],"e":[16.502,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[16.502,60,0],"e":[58.1,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.200390625}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-4,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":13.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":31,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":48.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":66,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":83.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":101,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":118.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":136,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":153.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":171,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":188.4,"s":[100,100,100],"e":[90,90,100]},{"t":206.0001953125}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-131.713],[131.713,0],[0,131.713],[-131.713,0]],"o":[[0,131.713],[-131.713,0],[0,-131.713],[131.713,0]],"v":[[238.488,0],[0,238.488],[-238.488,0],[0,-238.488]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.97,0.49,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15"}],"ip":0,"op":178,"st":-19.2,"bm":0,"sr":1},{"ddd":0,"ind":7,"ty":4,"nm":"Group 16","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":15.6,"s":[224.992,60,0],"e":[-22.496,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":62.4,"s":[-22.496,60,0],"e":[-22.496,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[-22.496,60,0],"e":[58.1,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.199609375}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-5,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":12.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":30,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":47.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":65,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":82.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":100,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":117.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":135,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":152.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":170,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":187.4,"s":[100,100,100],"e":[90,90,100]},{"t":205.000390625}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-110.175],[110.175,0],[0,110.175],[-110.175,0]],"o":[[0,110.175],[-110.175,0],[0,-110.175],[110.175,0]],"v":[[199.49,0],[0,199.49],[-199.49,0],[0,-199.49]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.97,0.49,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16"}],"ip":0,"op":178,"st":-20.4,"bm":0,"sr":1},{"ddd":0,"ind":8,"ty":4,"nm":"Group 17","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":14.4,"s":[224.992,60,0],"e":[-65.994,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":61.2,"s":[-65.994,60,0],"e":[-65.994,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[-65.994,60,0],"e":[58.1,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.1998046875}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-6,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":11.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":29,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":46.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":64,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":81.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":99,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":116.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":134,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":151.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":169,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":186.399,"s":[100,100,100],"e":[90,90,100]},{"t":203.999609375}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-86.152],[86.152,0],[0,86.152],[-86.152,0]],"o":[[0,86.152],[-86.152,0],[0,-86.152],[86.152,0]],"v":[[155.992,0],[0,155.992],[-155.992,0],[0,-155.992]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.97,0.49,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17"}],"ip":0,"op":178,"st":-21.6,"bm":0,"sr":1},{"ddd":0,"ind":9,"ty":4,"nm":"Group 18","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":13.2,"s":[224.992,60,0],"e":[-104.992,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":60,"s":[-104.992,60,0],"e":[-104.992,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[-104.992,60,0],"e":[58.1,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.2}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-7,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":10.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":28,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":45.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":63,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":80.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":98,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":115.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":133,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":150.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":168,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":185.399,"s":[100,100,100],"e":[90,90,100]},{"t":202.9998046875}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-64.614],[64.614,0],[0,64.614],[-64.614,0]],"o":[[0,64.614],[-64.614,0],[0,-64.614],[64.614,0]],"v":[[116.994,0],[0,116.994],[-116.994,0],[0,-116.994]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.97,0.49,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18"}],"ip":0,"op":178,"st":-22.8,"bm":0,"sr":1},{"ddd":0,"ind":10,"ty":3,"nm":"NULL CONTROL","parent":20,"ks":{"o":{"k":0},"r":{"k":[{"i":{"x":[0.38],"y":[1]},"o":{"x":[0.189],"y":[0]},"n":["0p38_1_0p189_0"],"t":127.2,"s":[180],"e":[0]},{"t":158.4001953125}]},"p":{"k":[{"i":{"x":0,"y":1},"o":{"x":0.013,"y":0},"n":"0_1_0p013_0","t":24,"s":[662.1,540,0],"e":[736.1,540,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.2,"y":0.2},"o":{"x":0.1,"y":0.1},"n":"0p2_0p2_0p1_0p1","t":60,"s":[736.1,540,0],"e":[736.1,540,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.05,"y":0},"n":"0_1_0p05_0","t":127.2,"s":[736.1,540,0],"e":[538.514,540,0],"to":[0,0,0],"ti":[0,0,0]},{"t":158.4001953125}]},"a":{"k":[60,60,0]},"s":{"k":[74,74,100]}},"ao":0,"ip":0,"op":178,"st":-22.8,"bm":0,"sr":1},{"ddd":0,"ind":11,"ty":4,"nm":"Group 27","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.609,"y":0.609},"o":{"x":0.167,"y":0.167},"n":"0p609_0p609_0p167_0p167","t":22.8,"s":[224.992,60,0],"e":[224.992,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.051,"y":1},"o":{"x":0.167,"y":0},"n":"0p051_1_0p167_0","t":127.2,"s":[224.992,60,0],"e":[62,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.200390625}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":-34,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-16.6,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":1,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":18.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":36,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":53.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":71,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":88.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":106,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":123.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":141,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":158.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":176,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":193.4,"s":[100,100,100],"e":[90,90,100]},{"t":211.0001953125}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-246.859],[246.859,0],[0,246.859],[-246.859,0]],"o":[[0,246.859],[-246.859,0],[0,-246.859],[246.859,0]],"v":[[446.978,0],[0,446.978],[-446.977,0],[0,-446.978]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.24,0.74,0.36,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10"}],"ip":0,"op":178,"st":-13.2,"bm":0,"sr":1},{"ddd":0,"ind":12,"ty":4,"nm":"Group 26","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":21.6,"s":[224.991,60,0],"e":[181.494,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":68.4,"s":[181.494,60,0],"e":[181.494,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[181.494,60,0],"e":[62,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.199609375}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":0,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":17.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":35,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":52.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":70,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":87.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":105,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":122.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":140,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":157.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":175,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":192.4,"s":[100,100,100],"e":[90,90,100]},{"t":210.000390625}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-222.836],[222.836,0],[0,222.836],[-222.836,0]],"o":[[0,222.836],[-222.836,0],[0,-222.836],[222.836,0]],"v":[[403.48,0],[0,403.48],[-403.48,0],[0,-403.48]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.24,0.74,0.36,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11"}],"ip":0,"op":178,"st":-14.4,"bm":0,"sr":1},{"ddd":0,"ind":13,"ty":4,"nm":"Group 25","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":20.4,"s":[224.992,60,0],"e":[139.496,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":67.2,"s":[139.496,60,0],"e":[139.496,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[139.496,60,0],"e":[62,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.1998046875}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-1,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":16.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":34,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":51.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":69,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":86.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":104,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":121.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":139,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":156.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":174,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":191.399,"s":[100,100,100],"e":[90,90,100]},{"t":208.999609375}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-199.641],[199.641,0],[0,199.641],[-199.641,0]],"o":[[0,199.641],[-199.641,0],[0,-199.641],[199.641,0]],"v":[[361.482,0],[0,361.482],[-361.482,0],[0,-361.482]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.24,0.74,0.36,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12"}],"ip":0,"op":178,"st":-15.6,"bm":0,"sr":1},{"ddd":0,"ind":14,"ty":4,"nm":"Group 24","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":19.2,"s":[224.992,60,0],"e":[97.498,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":66,"s":[97.498,60,0],"e":[97.498,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[97.498,60,0],"e":[62,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.2}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":-2,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":15.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":33,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":50.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":68,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":85.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":103,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":120.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":138,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":155.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":173,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":190.399,"s":[100,100,100],"e":[90,90,100]},{"t":207.9998046875}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-176.446],[176.446,0],[0,176.446],[-176.446,0]],"o":[[0,176.446],[-176.446,0],[0,-176.446],[176.446,0]],"v":[[319.484,0],[0,319.484],[-319.484,0],[0,-319.484]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.24,0.74,0.36,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13"}],"ip":0,"op":178,"st":-16.8,"bm":0,"sr":1},{"ddd":0,"ind":15,"ty":4,"nm":"Group 23","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":18,"s":[224.992,60,0],"e":[55.5,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":64.8,"s":[55.5,60,0],"e":[55.5,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[55.5,60,0],"e":[62,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.2001953125}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":-3,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":14.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":32,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":49.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":67,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":84.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":102,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":119.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":137,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":154.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":172,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":189.399,"s":[100,100,100],"e":[90,90,100]},{"t":207}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-153.251],[153.251,0],[0,153.251],[-153.251,0]],"o":[[0,153.251],[-153.251,0],[0,-153.251],[153.251,0]],"v":[[277.486,0],[0,277.486],[-277.486,0],[0,-277.486]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.24,0.74,0.36,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14"}],"ip":0,"op":178,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":16,"ty":4,"nm":"Group 22","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":16.8,"s":[224.992,60,0],"e":[16.502,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":63.6,"s":[16.502,60,0],"e":[16.502,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[16.502,60,0],"e":[62,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.200390625}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":-4,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":13.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":31,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":48.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":66,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":83.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":101,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":118.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":136,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":153.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":171,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":188.4,"s":[100,100,100],"e":[90,90,100]},{"t":206.0001953125}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-131.713],[131.713,0],[0,131.713],[-131.713,0]],"o":[[0,131.713],[-131.713,0],[0,-131.713],[131.713,0]],"v":[[238.488,0],[0,238.488],[-238.488,0],[0,-238.488]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.24,0.74,0.36,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15"}],"ip":0,"op":178,"st":-19.2,"bm":0,"sr":1},{"ddd":0,"ind":17,"ty":4,"nm":"Group 21","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":15.6,"s":[224.992,60,0],"e":[-22.496,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":62.4,"s":[-22.496,60,0],"e":[-22.496,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[-22.496,60,0],"e":[62,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.199609375}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":-5,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":12.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":30,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":47.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":65,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":82.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":100,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":117.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":135,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":152.4,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":170,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":187.4,"s":[100,100,100],"e":[90,90,100]},{"t":205.000390625}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-110.175],[110.175,0],[0,110.175],[-110.175,0]],"o":[[0,110.175],[-110.175,0],[0,-110.175],[110.175,0]],"v":[[199.49,0],[0,199.49],[-199.49,0],[0,-199.49]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.24,0.74,0.36,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16"}],"ip":0,"op":178,"st":-20.4,"bm":0,"sr":1},{"ddd":0,"ind":18,"ty":4,"nm":"Group 20","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":14.4,"s":[224.992,60,0],"e":[-65.994,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":61.2,"s":[-65.994,60,0],"e":[-65.994,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[-65.994,60,0],"e":[62,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.1998046875}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":-6,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":11.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":29,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":46.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":64,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":81.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":99,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":116.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":134,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":151.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":169,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":186.399,"s":[100,100,100],"e":[90,90,100]},{"t":203.999609375}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-86.152],[86.152,0],[0,86.152],[-86.152,0]],"o":[[0,86.152],[-86.152,0],[0,-86.152],[86.152,0]],"v":[[155.992,0],[0,155.992],[-155.992,0],[0,-155.992]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.24,0.74,0.36,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17"}],"ip":0,"op":178,"st":-21.6,"bm":0,"sr":1},{"ddd":0,"ind":19,"ty":4,"nm":"Group 19","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.036,"y":1},"o":{"x":0.333,"y":0},"n":"0p036_1_0p333_0","t":13.2,"s":[224.992,60,0],"e":[-104.992,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":0.036},"o":{"x":0.167,"y":0.167},"n":"0p036_0p036_0p167_0p167","t":60,"s":[-104.992,60,0],"e":[-104.992,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.036,"y":1},"o":{"x":0.167,"y":0},"n":"0p036_1_0p167_0","t":127.2,"s":[-104.992,60,0],"e":[62,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":157.2}]},"a":{"k":[960,540,0]},"s":{"k":[{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":-7,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":10.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":28,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":45.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":63,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":80.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":98,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":115.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0.167]},"n":["0p2_1_0p167_0","0p2_1_0p167_0","0p2_0p2_0p167_0p167"],"t":133,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":150.399,"s":[100,100,100],"e":[90,90,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":168,"s":[90,90,100],"e":[100,100,100]},{"i":{"x":[0.2,0.2,0.2],"y":[1,1,0.2]},"o":{"x":[0.1,0.1,0.1],"y":[0,0,0.1]},"n":["0p2_1_0p1_0","0p2_1_0p1_0","0p2_0p2_0p1_0p1"],"t":185.399,"s":[100,100,100],"e":[90,90,100]},{"t":202.9998046875}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-64.614],[64.614,0],[0,64.614],[-64.614,0]],"o":[[0,64.614],[-64.614,0],[0,-64.614],[64.614,0]],"v":[[116.994,0],[0,116.994],[-116.994,0],[0,-116.994]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.24,0.74,0.36,1]},"o":{"k":100},"w":{"k":8},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[960,540],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18"}],"ip":0,"op":178,"st":-22.8,"bm":0,"sr":1},{"ddd":0,"ind":20,"ty":1,"nm":"Dark Gray Solid 1","ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[90,90,0]},"a":{"k":[540,540,0]},"s":{"k":[16.667,16.667,100]}},"ao":0,"sw":1080,"sh":1080,"sc":"#303030","ip":0,"op":178,"st":-22.8,"bm":0,"sr":1}],"v":"4.4.26","ddd":0,"ip":0,"op":176,"fr":30,"w":180,"h":180}