diff --git a/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift b/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift index 26c52e02a7..6699b2e9a7 100644 --- a/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +++ b/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift @@ -32,6 +32,12 @@ protocol TransformModel { /// The rotation of the transform on Z axis. var rotationZ: KeyframeGroup { get } + + /// The skew of the transform (only present on `ShapeTransform`s) + var _skew: KeyframeGroup? { get } + + /// The skew axis of the transform (only present on `ShapeTransform`s) + var _skewAxis: KeyframeGroup? { get } } // MARK: - Transform + TransformModel @@ -40,6 +46,8 @@ extension Transform: TransformModel { var _position: KeyframeGroup? { position } var _positionX: KeyframeGroup? { positionX } var _positionY: KeyframeGroup? { positionY } + var _skew: KeyframeGroup? { nil } + var _skewAxis: KeyframeGroup? { nil } } // MARK: - ShapeTransform + TransformModel @@ -49,6 +57,8 @@ extension ShapeTransform: TransformModel { var _position: KeyframeGroup? { position } var _positionX: KeyframeGroup? { nil } var _positionY: KeyframeGroup? { nil } + var _skew: KeyframeGroup? { skew } + var _skewAxis: KeyframeGroup? { skewAxis } } // MARK: - CALayer + TransformModel @@ -66,15 +76,18 @@ extension CALayer { context: LayerAnimationContext) throws { - // CALayers don't support animating skew with its own set of keyframes. - // If the transform includes a skew, we have to combine all of the transform - // components into a single set of keyframes. - // Only `ShapeTransform` supports skews. if - let shapeTransform = transformModel as? ShapeTransform, - shapeTransform.hasSkew + // CALayers don't support animating skew with its own set of keyframes. + // If the transform includes a skew, we have to combine all of the transform + // components into a single set of keyframes. + transformModel.hasSkew + // Negative `scale.x` values aren't applied correctly by Core Animation when animating + // `transform.scale.x` and `transform.scale.y` using separate `CAKeyframeAnimation`s + // (https://openradar.appspot.com/FB9862872). If the transform includes negative `scale.x` + // values, we have to combine all of the transform components into a single set of keyframes. + || transformModel.hasNegativeXScaleValues { - try addCombinedTransformAnimation(for: shapeTransform, context: context) + try addCombinedTransformAnimation(for: transformModel, context: context) } else { @@ -159,65 +172,10 @@ extension CALayer { // Lottie animation files express scale as a numerical percentage value // (e.g. 50%, 100%, 200%) so we divide by 100 to get the decimal values // expected by Core Animation (e.g. 0.5, 1.0, 2.0). - // - Negative `scale.x` values aren't applied correctly by Core Animation. - // This appears to be because we animate `transform.scale.x` and `transform.scale.y` - // as separate `CAKeyframeAnimation`s instead of using a single animation of `transform` itself. - // https://openradar.appspot.com/FB9862872 - // - To work around this, we set up a `rotationY` animation below - // to flip the view horizontally, which gives us the desired effect. - abs(CGFloat(scale.x) / 100) + CGFloat(scale.x) / 100 }, context: context) - /// iOS 14 and earlier doesn't properly support rendering transforms with - /// negative `scale.x` values: https://github.com/airbnb/lottie-ios/issues/1882 - let osSupportsNegativeScaleValues: Bool = { - #if os(iOS) || os(tvOS) - if #available(iOS 15.0, tvOS 15.0, *) { - return true - } else { - return false - } - #else - // We'll assume this works correctly on macOS until told otherwise - return true - #endif - }() - - lazy var hasNegativeXScaleValues = transformModel.scale.keyframes.contains(where: { $0.value.x < 0 }) - - // When `scale.x` is negative, we have to rotate the view - // half way around the y axis to flip it horizontally. - // - We don't do this in snapshot tests because it breaks the tests - // in surprising ways that don't happen at runtime. Definitely not ideal. - // - This isn't supported on iOS 14 and earlier either, so we have to - // log a compatibility error on devices running older OSs. - if TestHelpers.snapshotTestsAreRunning { - if hasNegativeXScaleValues { - context.logger.warn(""" - Negative `scale.x` values are not displayed correctly in snapshot tests - """) - } - } else { - if !osSupportsNegativeScaleValues, hasNegativeXScaleValues { - try context.logCompatibilityIssue(""" - iOS 14 and earlier does not support rendering negative `scale.x` values - """) - } - - try addAnimation( - for: .rotationY, - keyframes: transformModel.scale, - value: { scale in - if scale.x < 0 { - return .pi - } else { - return 0 - } - }, - context: context) - } - try addAnimation( for: .scaleY, keyframes: transformModel.scale, @@ -225,9 +183,6 @@ extension CALayer { // Lottie animation files express scale as a numerical percentage value // (e.g. 50%, 100%, 200%) so we divide by 100 to get the decimal values // expected by Core Animation (e.g. 0.5, 1.0, 2.0). - // - Negative `scaleY` values are correctly applied (they flip the view - // vertically), so we don't have to apply an additional rotation animation - // like we do for `scaleX`. CGFloat(scale.y) / 100 }, context: context) @@ -291,26 +246,38 @@ extension CALayer { /// Adds an animation for the entire `transform` key by combining all of the /// position / size / rotation / skew animations into a single set of keyframes. - /// This is necessary when there's a skew animation, since skew can only - /// be applied via a transform. + /// This is more expensive that animating each component separately, since + /// it may require manually interpolating the keyframes at each frame. private func addCombinedTransformAnimation( - for transformModel: ShapeTransform, + for transformModel: TransformModel, context: LayerAnimationContext) throws { let combinedTransformKeyframes = Keyframes.combined( - transformModel.anchor, - transformModel.position, + transformModel.anchorPoint, + transformModel._position ?? KeyframeGroup(LottieVector3D(x: 0.0, y: 0.0, z: 0.0)), + transformModel._positionX ?? KeyframeGroup(LottieVector1D(0)), + transformModel._positionY ?? KeyframeGroup(LottieVector1D(0)), transformModel.scale, transformModel.rotationX, transformModel.rotationY, transformModel.rotationZ, - transformModel.skew, - transformModel.skewAxis, - makeCombinedResult: { anchor, position, scale, rotationX, rotationY, rotationZ, skew, skewAxis in - CATransform3D.makeTransform( + transformModel._skew ?? KeyframeGroup(LottieVector1D(0)), + transformModel._skewAxis ?? KeyframeGroup(LottieVector1D(0)), + makeCombinedResult: { + anchor, position, positionX, positionY, scale, rotationX, rotationY, rotationZ, skew, skewAxis + -> CATransform3D in + + let transformPosition: CGPoint + if transformModel._positionX != nil, transformModel._positionY != nil { + transformPosition = CGPoint(x: positionX.cgFloatValue, y: positionY.cgFloatValue) + } else { + transformPosition = position.pointValue + } + + return CATransform3D.makeTransform( anchor: anchor.pointValue, - position: position.pointValue, + position: transformPosition, scale: scale.sizeValue, rotationX: rotationX.cgFloatValue, rotationY: rotationY.cgFloatValue, @@ -327,3 +294,24 @@ extension CALayer { } } + +extension TransformModel { + /// Whether or not this transform has a non-zero skew value + var hasSkew: Bool { + guard + let _skew = _skew, + let _skewAxis = _skewAxis, + !_skew.keyframes.isEmpty, + !_skewAxis.keyframes.isEmpty + else { + return false + } + + return _skew.keyframes.contains(where: { $0.value.cgFloatValue != 0 }) + } + + /// Whether or not this `TransformModel` has any negative X scale values + var hasNegativeXScaleValues: Bool { + scale.keyframes.contains(where: { $0.value.x < 0 }) + } +} diff --git a/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift b/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift index c57f7696c2..6d8fabb66f 100644 --- a/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift +++ b/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift @@ -133,6 +133,46 @@ enum Keyframes { }) } + /// Combines the given keyframe groups of `Keyframe`s into a single keyframe group of of `Keyframe<[T]>`s + /// - If all of the `KeyframeGroup`s have the exact same animation timing, the keyframes are merged + /// - Otherwise, the keyframes are manually interpolated at each frame in the animation + static func combined( + _ k1: KeyframeGroup, + _ k2: KeyframeGroup, + _ k3: KeyframeGroup, + _ k4: KeyframeGroup, + _ k5: KeyframeGroup, + _ k6: KeyframeGroup, + _ k7: KeyframeGroup, + _ k8: KeyframeGroup, + _ k9: KeyframeGroup, + _ k10: KeyframeGroup, + makeCombinedResult: (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) -> CombinedResult) + -> KeyframeGroup + where T1: AnyInterpolatable, T2: AnyInterpolatable, T3: AnyInterpolatable, T4: AnyInterpolatable, + T5: AnyInterpolatable, T6: AnyInterpolatable, T7: AnyInterpolatable, T8: AnyInterpolatable, + T9: AnyInterpolatable, T10: AnyInterpolatable + { + Keyframes.combined( + [k1, k2, k3, k4, k5, k6, k7, k8, k9, k10], + makeCombinedResult: { untypedValues in + guard + let t1 = untypedValues[0] as? T1, + let t2 = untypedValues[1] as? T2, + let t3 = untypedValues[2] as? T3, + let t4 = untypedValues[3] as? T4, + let t5 = untypedValues[4] as? T5, + let t6 = untypedValues[5] as? T6, + let t7 = untypedValues[6] as? T7, + let t8 = untypedValues[7] as? T8, + let t9 = untypedValues[8] as? T9, + let t10 = untypedValues[9] as? T10 + else { return nil } + + return makeCombinedResult(t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) + }) + } + // MARK: Private /// Combines the given `[KeyframeGroup]` of `Keyframe`s into a single `KeyframeGroup` of `Keyframe`s diff --git a/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift b/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift index 4bb9e86a49..e27e7e876b 100644 --- a/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +++ b/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift @@ -93,4 +93,6 @@ extension RepeaterTransform: TransformModel { var _position: KeyframeGroup? { position } var _positionX: KeyframeGroup? { nil } var _positionY: KeyframeGroup? { nil } + var _skew: KeyframeGroup? { nil } + var _skewAxis: KeyframeGroup? { nil } } diff --git a/Sources/Private/Model/ShapeItems/ShapeTransform.swift b/Sources/Private/Model/ShapeItems/ShapeTransform.swift index c6790d2065..797b761537 100644 --- a/Sources/Private/Model/ShapeItems/ShapeTransform.swift +++ b/Sources/Private/Model/ShapeItems/ShapeTransform.swift @@ -164,15 +164,6 @@ final class ShapeTransform: ShapeItem { /// Skew Axis let skewAxis: KeyframeGroup - /// Whether or not this transform has a non-zero skew value - var hasSkew: Bool { - guard !skew.keyframes.isEmpty, !skewAxis.keyframes.isEmpty else { - return false - } - - return skew.keyframes.contains(where: { $0.value.cgFloatValue != 0 }) - } - override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) diff --git a/Tests/Samples/Issues/issue_2066.json b/Tests/Samples/Issues/issue_2066.json new file mode 100644 index 0000000000..e063b6608f --- /dev/null +++ b/Tests/Samples/Issues/issue_2066.json @@ -0,0 +1 @@ +{"v":"5.9.6","fr":60,"ip":0,"op":153,"w":548,"h":583,"nm":"D12 for Lottie 2","ddd":0,"assets":[{"id":"comp_0","nm":"Eyes","fr":60,"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"All","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[375,667,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[370.4,370.4,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"R Eye Shine","parent":5,"sr":1,"ks":{"o":{"a":0,"k":60,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[2.706,-11.252,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.234,-5.68],[0,0],[3.312,1.771],[0.668,0.995],[-4.02,-0.329]],"o":[[0,0],[-6.204,-1.387],[-1.509,-0.807],[2.271,-2.928],[5.793,0.474]],"v":[[8.78,5.15],[8.589,6.031],[-5.814,1.114],[-9.018,-1.615],[0.525,-5.992]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Intersect","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":-4,"op":312,"st":12,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Left Eye Shine","parent":7,"sr":1,"ks":{"o":{"a":0,"k":60,"ix":11},"r":{"a":0,"k":-4,"ix":10},"p":{"a":0,"k":[-0.669,-10.767,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.024,0],[-0.605,-6.994],[9.702,-0.289],[2.205,0.032]],"o":[[7.405,0],[-5.831,0.95],[-2.33,0.069],[1.283,-7.859]],"v":[[1.422,-7.048],[15.067,5.244],[-8.263,6.979],[-15.067,7.031]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Intersect","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":-4,"op":312,"st":12,"ct":1,"bm":2},{"ddd":0,"ind":4,"ty":4,"nm":"R Pupil","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1.894,-1.52,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.14,-0.896],[2.601,0.407],[0.266,0.09],[0,0],[-3.428,-0.55],[-0.55,3.428],[0,0],[3.428,0.55],[0.479,-0.035]],"o":[[-0.387,2.476],[-0.287,-0.045],[0,0],[-0.55,3.428],[3.428,0.55],[0,0],[0.55,-3.428],[-0.495,-0.079],[0.366,0.775]],"v":[[0.545,-7.725],[-4.866,-3.98],[-5.696,-4.183],[-6.85,3.006],[-1.639,10.21],[5.565,4.999],[6.85,-3.006],[1.639,-10.21],[0.174,-10.273]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Subtract","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":-4,"op":312,"st":12,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"R Eye","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-21.151,-4.91,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.599,0.54],[2.243,-6.167],[0.654,-5.606],[-6.599,-0.54],[-1.405,6.471],[0,0]],"o":[[-6.599,-0.54],[-2.243,6.167],[-0.654,5.606],[6.599,0.54],[0,0],[1.405,-6.471]],"v":[[3.748,-19.068],[-9.875,-8.997],[-13.332,6.14],[-4.536,19.071],[9.958,8.332],[13.153,-6.375]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219607844949,0.933333337307,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 15320","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":-4,"op":312,"st":12,"ct":1,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"L Pupil","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-4,"ix":10},"p":{"a":0,"k":[-5.597,-0.004,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.013,-0.726],[2.985,0.052],[0.263,0.044],[0,0],[-4.318,-0.415],[-0.415,4.318],[0,0],[4.318,0.415],[0.849,-0.214]],"o":[[-0.052,2.985],[-0.275,-0.005],[0,0],[-0.415,4.318],[4.318,0.415],[0,0],[0.415,-4.318],[-0.922,-0.089],[0.249,0.637]],"v":[[-1.2,-9.216],[-6.7,-3.905],[-7.508,-3.979],[-8.17,2.903],[-1.104,11.474],[7.467,4.408],[8.17,-2.903],[1.104,-11.474],[-1.567,-11.274]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Subtract","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":-4,"op":312,"st":12,"ct":1,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"L Eye","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":4,"ix":10},"p":{"a":0,"k":[30.168,-3.621,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-9.559],[0,0],[9.559,0],[0.745,12.917],[0,0],[-9.559,0]],"o":[[0,0],[0,9.559],[-9.559,0],[0,0],[0,-9.559],[9.559,0]],"v":[[17.308,-3.979],[17.308,3.979],[-0.265,21.966],[-17.308,3.979],[-17.308,-3.979],[0,-21.287]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219607844949,0.933333337307,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":5.68,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 15320","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":-4,"op":312,"st":12,"ct":1,"bm":0}]},{"id":"comp_1","nm":"Bell","fr":60,"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 5","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[307,613,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":168,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"bell Green","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":0,"s":[14]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":4.561,"s":[-27]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":11.404,"s":[14]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":18.246,"s":[-25]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25.088,"s":[12]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":31.93,"s":[-26]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":38.771,"s":[14]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":45.613,"s":[-26]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":52.457,"s":[17]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":59.299,"s":[-26]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":66.141,"s":[15]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72.982,"s":[-25]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":79.824,"s":[14]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":86.666,"s":[-28]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":93.508,"s":[14]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":100.352,"s":[-28]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":107.193,"s":[14]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":115,"s":[-28]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":121.842,"s":[14]},{"i":{"x":[0],"y":[0.934]},"o":{"x":[0.025],"y":[0.545]},"t":129.047,"s":[-27]},{"i":{"x":[0.85],"y":[0.259]},"o":{"x":[0.882],"y":[0.102]},"t":146.373,"s":[167.229]},{"t":167,"s":[374]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.704,"y":1},"o":{"x":0.33,"y":0.491},"t":0,"s":[-72.626,-83.755,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":7,"s":[-68.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":11.404,"s":[-77.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":18.246,"s":[-68.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":25.088,"s":[-77.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":31.93,"s":[-68.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38.771,"s":[-77.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45.613,"s":[-68.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":52.457,"s":[-77.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":59.299,"s":[-68.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":66.141,"s":[-77.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":72.982,"s":[-68.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":79.824,"s":[-77.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86.666,"s":[-68.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":93.508,"s":[-77.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":100.352,"s":[-68.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":107.193,"s":[-77.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":115,"s":[-68.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":121.842,"s":[-77.931,-95.368,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.242,"y":0.905},"o":{"x":0.333,"y":0},"t":129.047,"s":[-68.931,-95.368,0],"to":[0,0,0],"ti":[-6.108,3.882,0]},{"i":{"x":0.915,"y":1},"o":{"x":1,"y":0},"t":146.373,"s":[-72.67,-106.618,0],"to":[13.108,-1.007,0],"ti":[0,0,0]},{"i":{"x":0.571,"y":0.28},"o":{"x":0.193,"y":0},"t":162.875,"s":[-75.931,-76.797,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.704,"y":1},"o":{"x":0.33,"y":0.595},"t":167,"s":[-72.626,-83.755,0],"to":[0,0,0],"ti":[0,0,0]},{"t":174,"s":[-68.931,-95.368,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-72.931,-109.868,0],"ix":1,"l":2},"s":{"a":0,"k":[200,200,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[5.375,0],[3.5,-2.625],[-0.828,-1.915],[-2.071,0.019],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[2.677,0.292],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":14.824,"s":[{"i":[[5.375,0],[3.5,-2.625],[0.132,-1.775],[-7.229,-3.108],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[14.341,-2.405],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.211,"s":[{"i":[[5.375,0],[3.5,-2.625],[-0.028,-1.798],[-7.434,1.975],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[11.702,4.016],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":55,"s":[{"i":[[5.375,0],[3.5,-2.625],[-0.828,-1.915],[-2.071,0.019],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[2.677,0.292],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":129,"s":[{"i":[[5.375,0],[3.5,-2.625],[-0.828,-1.915],[-2.071,0.019],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[2.677,0.292],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":139.414,"s":[{"i":[[5.375,0],[3.5,-2.625],[0.023,-1.607],[-13.61,-8.438],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[14.21,-7.601],[0.343,-1.34],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-51.674,-70.423],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":157.803,"s":[{"i":[[5.375,0],[3.5,-2.625],[0.023,-1.607],[-16.104,7.077],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[13.882,9.131],[0.343,-1.34],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-51.674,-70.423],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"t":167,"s":[{"i":[[5.375,0],[3.5,-2.625],[-0.828,-1.915],[-2.071,0.019],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[2.677,0.292],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.149,0.965,0.388,0.5,0.184,0.949,0.694,1,0.22,0.933,1],"ix":9}},"s":{"a":0,"k":[-116.795,-80.24],"ix":5},"e":{"a":0,"k":[-27.496,-69.453],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.108,0],[0,-10.108],[10.108,0],[0,10.108]],"o":[[10.108,0],[0,10.108],[-10.108,0],[0,-10.108]],"v":[[0,-18.303],[18.303,0],[-0.789,11.75],[-18.303,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.149,0.965,0.388,0.5,0.184,0.949,0.694,1,0.22,0.933,1],"ix":9}},"s":{"a":0,"k":[-36.924,8.89],"ix":5},"e":{"a":0,"k":[40.255,0.023],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-74.766,-91.246],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":168,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Top thing","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-72.931,-109.868,0],"ix":2,"l":2},"a":{"a":0,"k":[-72.931,-109.868,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[9.721,9.721],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.149,0.965,0.388,0.5,0.184,0.949,0.694,1,0.22,0.933,1],"ix":9}},"s":{"a":0,"k":[-24.104,1.379],"ix":5},"e":{"a":0,"k":[23.202,1.405],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":129,"s":[-72.931,-109.868],"to":[-0.091,0.428],"ti":[0.048,-0.078]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.333,"y":0},"t":137,"s":[-73.474,-107.302],"to":[-0.048,0.078],"ti":[-0.012,0.181]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.164},"t":149.529,"s":[-73.217,-109.398],"to":[0.012,-0.181],"ti":[-0.048,0.078]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":162,"s":[-73.404,-108.39],"to":[0.048,-0.078],"ti":[-0.079,0.246]},{"t":167,"s":[-72.931,-109.868]}],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 2","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":168,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"bell outline","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-72.931,-109.868,0],"ix":2,"l":2},"a":{"a":0,"k":[-72.931,-109.868,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[5.375,0],[3.5,-2.625],[-0.828,-1.915],[-2.071,0.019],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[2.677,0.292],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":14.824,"s":[{"i":[[5.375,0],[3.5,-2.625],[0.132,-1.775],[-7.229,-3.108],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[14.341,-2.405],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.211,"s":[{"i":[[5.375,0],[3.5,-2.625],[-0.028,-1.798],[-7.434,1.975],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[11.702,4.016],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":55,"s":[{"i":[[5.375,0],[3.5,-2.625],[-0.828,-1.915],[-2.071,0.019],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[2.677,0.292],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":129,"s":[{"i":[[5.375,0],[3.5,-2.625],[-0.828,-1.915],[-2.071,0.019],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[2.677,0.292],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":139.414,"s":[{"i":[[5.375,0],[3.5,-2.625],[0.023,-1.607],[-13.61,-8.438],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[14.21,-7.601],[0.343,-1.34],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-51.674,-70.423],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":157.803,"s":[{"i":[[5.375,0],[3.5,-2.625],[0.023,-1.607],[-16.104,7.077],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[13.882,9.131],[0.343,-1.34],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-51.674,-70.423],[-54.812,-77.938],[-57,-90.125]],"c":true}]},{"t":167,"s":[{"i":[[5.375,0],[3.5,-2.625],[-0.828,-1.915],[-2.071,0.019],[3.585,3.208],[-0.375,7.5]],"o":[[0.125,6.5],[-3.5,2.625],[2.677,0.292],[0.348,-1.975],[-2.375,-2.125],[-4.5,-0.5]],"v":[[-92.875,-91.875],[-96,-80.625],[-99.25,-74.375],[-52.375,-70.875],[-54.812,-77.938],[-57,-90.125]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.108,0],[0,-10.108],[10.108,0],[0,10.108]],"o":[[10.108,0],[0,10.108],[-10.108,0],[0,-10.108]],"v":[[0,-18.303],[18.303,0],[-0.789,11.75],[-18.303,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-74.766,-91.246],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":168,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Bell Ball","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-17]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":6.842,"s":[16]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":13.684,"s":[-18]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20.525,"s":[15]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":27.369,"s":[-20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":34.211,"s":[19]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":41.053,"s":[-20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":47.895,"s":[16]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":54.736,"s":[-20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":61.578,"s":[16]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":68.422,"s":[-21]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":75.264,"s":[17]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":82.105,"s":[-21]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":88.947,"s":[17]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":95.789,"s":[-22]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":102.631,"s":[17]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":109.475,"s":[-22]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":118,"s":[17]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":124.844,"s":[-22]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.503],"y":[0]},"t":129.666,"s":[19]},{"t":148.0234375,"s":[-20]}],"ix":10},"p":{"a":0,"k":[-72.931,-109.868,0],"ix":2,"l":2},"a":{"a":0,"k":[-72.931,-110.368,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.001,13.001],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.149,0.965,0.388,0.5,0.184,0.949,0.694,1,0.22,0.933,1],"ix":9}},"s":{"a":0,"k":[0,0],"ix":5},"e":{"a":0,"k":[100,0],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-76.565,-72.703],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[112.669,112.669],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":168,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Inside of bell","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":130,"s":[5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":139,"s":[3]},{"t":144,"s":[3]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[-76.002,-71.873,0],"to":[0.048,0.297,0],"ti":[-0.048,-0.297,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[-75.716,-70.093,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":144,"s":[-75.716,-70.093,0],"to":[0,-0.667,0],"ti":[0,0.667,0]},{"t":150,"s":[-75.716,-74.093,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-81.665,-80.745,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":130,"s":[109,108,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":139,"s":[110,121.57,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":144,"s":[110,121.57,100]},{"t":150,"s":[112,121.57,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[47.67,10.511],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-81.665,-80.745],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":154,"st":0,"ct":1,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Face Control","parent":26,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.375,"y":0.995},"o":{"x":0.076,"y":0},"t":0,"s":[17.295,-7.425,0],"to":[-0.123,-0.554,0],"ti":[0.131,0.588,0]},{"t":10,"s":[13.795,-28.425,0],"h":1},{"i":{"x":0.667,"y":0.806},"o":{"x":0.333,"y":0},"t":110,"s":[13.795,-28.425,0],"to":[0.086,0.389,0],"ti":[-0.176,-0.792,0]},{"t":118,"s":[13.708,-21.779,0],"h":1},{"i":{"x":0.667,"y":0.939},"o":{"x":0.167,"y":0.03},"t":125,"s":[13.708,-21.779,0],"to":[0.163,0.736,0],"ti":[0,0,0]},{"t":128,"s":[21.578,-22.175,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-27,27,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Top Beak Stroke","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-0.537,2.576,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":110,"s":[{"i":[[-2.688,0.938],[-1,-0.125],[-1.812,-1.094]],"o":[[2.688,-0.938],[1,0.125],[1.812,1.094]],"v":[[-6.807,-0.171],[-1.025,-1.452],[6.787,1.767]],"c":false}]},{"t":118,"s":[{"i":[[-2.688,0.938],[-1,-0.125],[-1.812,-1.094]],"o":[[2.688,-0.938],[1,0.125],[1.812,1.094]],"v":[[-6.807,-0.171],[1.225,-0.86],[6.787,1.767]],"c":false}],"h":1},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":125,"s":[{"i":[[-2.688,0.938],[-1,-0.125],[-1.812,-1.094]],"o":[[2.688,-0.938],[1,0.125],[1.812,1.094]],"v":[[-6.807,-0.171],[1.225,-0.86],[6.787,1.767]],"c":false}]},{"t":128,"s":[{"i":[[-2.688,0.938],[-1,-0.125],[-1.812,-1.094]],"o":[[2.688,-0.938],[1,0.125],[1.812,1.094]],"v":[[-6.807,-0.171],[-3.226,-0.988],[6.787,1.767]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.145098039216,0.843137254902,0.960784313725,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Top Beak","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.459},"t":3,"s":[-4.788,28.813,0],"to":[0,-0.891,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":6,"s":[-3.472,28.36,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.689,"y":0},"o":{"x":0.333,"y":0},"t":110,"s":[-3.472,28.36,0],"to":[0,0,0],"ti":[0,1.061,0]},{"t":118,"s":[-4.788,28.813,0],"h":1},{"t":127,"s":[-3.472,28.36,0],"h":1}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[370.37,370.37,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":110,"s":[{"i":[[0,0],[0,0],[-5.159,0.153],[-0.115,-2.382]],"o":[[0,0],[-0.205,-2.372],[6.413,-0.19],[0,0]],"v":[[-2.179,1.21],[-8.103,3.327],[-0.91,-4.001],[7.624,3.883]],"c":true}]},{"t":118,"s":[{"i":[[0,0],[0,0],[-5.153,-0.288],[-0.65,-1.881]],"o":[[0,0],[-0.205,-2.372],[6.27,0.351],[0,0]],"v":[[2.059,1.999],[-8.103,3.327],[0.539,-3.782],[8.116,4.006]],"c":true}],"h":1},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":125,"s":[{"i":[[0,0],[0,0],[-5.153,-0.288],[-0.65,-1.881]],"o":[[0,0],[-0.205,-2.372],[6.27,0.351],[0,0]],"v":[[2.059,1.999],[-8.103,3.327],[0.539,-3.782],[8.116,4.006]],"c":true}]},{"t":128,"s":[{"i":[[0,0],[0,0],[-5.159,0.153],[-0.65,-1.881]],"o":[[0,0],[-0.205,-2.372],[6.413,-0.19],[0,0]],"v":[[-2.179,1.21],[-8.103,3.327],[-1.504,-3.741],[8.116,4.006]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.952941179276,0.984313726425,0.992156863213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":5.409,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Vector 4626","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Bottom Beak","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":3,"s":[2.24,-12.965,0],"to":[0,-0.912,0],"ti":[0,0,0]},{"i":{"x":0.447,"y":0.447},"o":{"x":0.333,"y":0.333},"t":6,"s":[0.937,1.343,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":52,"s":[0.937,1.343,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":110,"s":[0.937,1.343,0],"to":[0,0,0],"ti":[0,0.692,0]},{"t":118,"s":[2.24,-12.965,0],"h":1}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-5.191,0],[0,0],[4.75,0]],"o":[[0,0],[5.188,0],[0,0],[-4.75,0]],"v":[[-9.25,18.375],[-2.938,23.938],[4,18.875],[-3,21]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.602,0,0,0,0.716,0.073,0.422,0.48,0.829,0.145,0.843,0.961],"ix":9}},"s":{"a":0,"k":[-2.718,11.471],"ix":5},"e":{"a":0,"k":[-3.133,26.685],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Tougne","parent":4,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":112,"s":[100]},{"t":114,"s":[52]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-2.165,13.651,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.905,-0.029],[0.587,-1.68],[-2.243,-0.114],[-0.262,2.169]],"o":[[-1.905,0.029],[-0.587,1.68],[2.243,0.114],[0.262,-2.169]],"v":[[0.38,-2.898],[-4.149,-0.733],[-0.889,2.887],[4.25,0.069]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.850980401039,0.850980401039,0.850980401039,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 15324","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":4,"op":115,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"lower lips","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[{"i":[[0,0],[0.125,-2.5],[-3.375,0],[-0.402,3.108],[0,0]],"o":[[0,0],[-0.125,2.5],[3.375,0],[0.065,-0.785],[0,0]],"v":[[-8.327,11.357],[-9.434,14.327],[-2.833,18.804],[3.8,15.081],[3.71,13.139]],"c":false}]},{"i":{"x":0.317,"y":1},"o":{"x":0.333,"y":0},"t":6,"s":[{"i":[[0,0],[0.125,-2.5],[-3.375,0],[-0.25,3.125],[0,0]],"o":[[0,0],[-0.125,2.5],[3.375,0],[0.25,-3.125],[0,0]],"v":[[-8.125,4.375],[-8.625,12],[-2.125,18.5],[4.625,12],[5,5.5]],"c":false}]},{"t":72,"s":[{"i":[[0,0],[0.125,-2.5],[-3.375,0],[-0.25,3.125],[0,0]],"o":[[0,0],[-0.125,2.5],[3.375,0],[0.25,-3.125],[0,0]],"v":[[-8.125,4.375],[-8.625,12],[-2.125,18.5],[4.625,12],[5,5.5]],"c":false}],"h":1},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[0,0],[0.125,-2.5],[-3.375,0],[-0.25,3.125],[0,0]],"o":[[0,0],[-0.125,2.5],[3.375,0],[0.25,-3.125],[0,0]],"v":[[-8.125,4.375],[-8.625,12],[-2.125,18.5],[4.625,12],[5,5.5]],"c":false}]},{"t":115,"s":[{"i":[[0,0],[0.125,-2.5],[-3.375,0],[-0.402,3.108],[0,0]],"o":[[0,0],[-0.125,2.5],[3.375,0],[0.065,-0.785],[0,0]],"v":[[-8.327,11.357],[-9.434,14.327],[-2.833,18.804],[3.8,15.081],[3.71,13.139]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.305,0,0,0,0.652,0.5,0.5,0.5,1,1,1,1],"ix":8}},"s":{"a":0,"k":[-2.134,5.437],"ix":4},"e":{"a":0,"k":[5.25,17.39],"ix":5},"t":2,"h":{"a":0,"k":0,"ix":6},"a":{"a":0,"k":0,"ix":7},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"bm":0,"nm":"Gradient Stroke 1","mn":"ADBE Vector Graphic - G-Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":4,"op":115,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"L Foot Top Reflection","parent":9,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-35.168,-48.236,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":0,"s":[{"i":[[-4.689,0.257],[-0.722,-3.673]],"o":[[2.393,-0.131],[1.014,5.157]],"v":[[38.702,42.001],[44.466,46.61]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[{"i":[[-5.238,3.519],[-0.905,-2.332]],"o":[[1.97,-1.976],[2.538,3.391]],"v":[[36.234,44.327],[43.856,45.499]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-5.452,4.79],[-2.986,-1.961]],"o":[[3.197,-3.065],[3.132,2.704]],"v":[[32.843,47.189],[43.619,45.066]],"c":false}]},{"i":{"x":0.235,"y":1},"o":{"x":0.167,"y":0},"t":8,"s":[{"i":[[-6.216,9.324],[-5.25,-0.25]],"o":[[4,-6],[5.25,0.25]],"v":[[27.5,50],[43.75,42.5]],"c":false}]},{"i":{"x":0.061,"y":1},"o":{"x":0.202,"y":0},"t":110,"s":[{"i":[[-6.216,9.324],[-5.25,-0.25]],"o":[[4,-6],[5.25,0.25]],"v":[[27.5,50],[43.75,42.5]],"c":false}]},{"i":{"x":0.061,"y":1},"o":{"x":0.167,"y":0},"t":119,"s":[{"i":[[-9.125,6.504],[-1.563,-1.545]],"o":[[3.408,-2.429],[3.738,3.695]],"v":[[35.323,43.815],[43.75,42.5]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":125,"s":[{"i":[[-9.125,6.504],[-1.563,-1.545]],"o":[[3.408,-2.429],[3.738,3.695]],"v":[[35.323,43.815],[43.75,42.5]],"c":false}]},{"t":128,"s":[{"i":[[-9.05,6.608],[-0.995,-1.534]],"o":[[2.527,-1.846],[2.861,4.409]],"v":[[36.503,42.608],[43.358,43.36]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":125,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":126,"s":[7]},{"t":128,"s":[5]}],"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.41,1,1,1,0.705,1,1,1,1,1,1,1,0.453,1,0.726,0.5,1,0],"ix":8}},"s":{"a":1,"k":[{"i":{"x":0.235,"y":1},"o":{"x":0.09,"y":0.481},"t":8,"s":[-8.651,55.473],"to":[4.085,-0.625],"ti":[0,0.833]},{"i":{"x":0.76,"y":0.984},"o":{"x":0.333,"y":0},"t":110,"s":[15.858,51.72],"to":[0,-0.833],"ti":[4.085,0.208]},{"t":119,"s":[-8.651,50.473]}],"ix":4},"e":{"a":1,"k":[{"i":{"x":0.235,"y":1},"o":{"x":0.09,"y":0.482},"t":8,"s":[45.949,49.069],"to":[-0.497,-1.501],"ti":[0.179,0.542]},{"i":{"x":0.76,"y":0.985},"o":{"x":0.333,"y":0},"t":110,"s":[44.794,45.58],"to":[-0.429,-1.297],"ti":[0,0]},{"t":119,"s":[47.371,53.361]}],"ix":5},"t":1,"lc":2,"lj":2,"bm":0,"nm":"Gradient Stroke 1","mn":"ADBE Vector Graphic - G-Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"R Foot Highlight 3","parent":9,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":112,"s":[0]},{"t":115,"s":[100]}],"ix":11},"r":{"a":0,"k":83.732,"ix":10},"p":{"a":0,"k":[-3.979,2.133,0],"ix":2,"l":2},"a":{"a":0,"k":[15.837,105.989,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.641,-3.247],[0,0],[-6,4.75]],"o":[[0,0],[-4.09,3.647],[0,0],[6,-4.75]],"v":[[19.09,99.312],[17.92,107.449],[9.666,108.651],[20.607,111.701]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.355,0,0,0,0.469,0.283,0.268,0.492,0.583,0.567,0.537,0.983],"ix":9}},"s":{"a":0,"k":[13.383,102.418],"ix":5},"e":{"a":0,"k":[25.404,118.914],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":112,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"L Foot","parent":26,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.601],"y":[0.74]},"o":{"x":[0.661],"y":[0]},"t":0,"s":[88.738]},{"i":{"x":[0.373],"y":[1]},"o":{"x":[0.126],"y":[0.198]},"t":6,"s":[38.331]},{"i":{"x":[0.235],"y":[1]},"o":{"x":[0.202],"y":[0]},"t":17,"s":[0]},{"i":{"x":[0.061],"y":[1]},"o":{"x":[0.202],"y":[0]},"t":110,"s":[0]},{"t":119,"s":[47.585],"h":1},{"i":{"x":[0.833],"y":[0.884]},"o":{"x":[0.167],"y":[0]},"t":125,"s":[47.585]},{"t":128,"s":[70.585]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.601,"y":0.74},"o":{"x":0.661,"y":0},"t":0,"s":[-17.562,69.574,0],"to":[-0.095,-0.804,0],"ti":[-0.477,9.846,0]},{"i":{"x":0.373,"y":1},"o":{"x":0.126,"y":0.198},"t":6,"s":[-16.687,48.12,0],"to":[0.412,-8.513,0],"ti":[0,0,0]},{"i":{"x":0.235,"y":0.235},"o":{"x":0.202,"y":0.202},"t":17,"s":[-15.873,31.811,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.061,"y":1},"o":{"x":0.202,"y":0},"t":110,"s":[-15.873,31.811,0],"to":[0,0,0],"ti":[-0.942,-1.883,0]},{"t":119,"s":[-25.665,56.728,0],"h":1},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0},"t":125,"s":[-25.665,56.728,0],"to":[0.221,0.442,0],"ti":[0,0,0]},{"t":128,"s":[-21.617,66.91,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-5.5,3,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.061,"y":1},"o":{"x":0.202,"y":0},"t":110,"s":[{"i":[[0,0],[2.202,-2.746],[-2.746,-2.202],[0,0],[-2.202,2.746],[2.746,2.202]],"o":[[-2.746,-2.202],[-2.202,2.746],[0,0],[2.746,2.202],[2.202,-2.746],[0,0]],"v":[[-0.212,-8.341],[-9.172,-7.357],[-8.188,1.603],[0.212,8.341],[9.172,7.357],[8.188,-1.603]],"c":true}]},{"t":119,"s":[{"i":[[4.837,2.539],[1.708,-3.078],[-2.642,-2.025],[0,0],[-2.202,2.746],[2.746,2.202]],"o":[[-4.837,-2.539],[-2.568,4.628],[2.642,2.025],[2.746,2.202],[2.202,-2.746],[0,0]],"v":[[0.898,-8.172],[-9.868,-6.516],[-5.709,2.737],[0.212,8.341],[9.172,7.357],[8.188,-1.603]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":-69.479,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Vector 4618 (Stroke)","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"L Foot bottom Blend 2","parent":11,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":126,"s":[100]},{"t":127,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.125,4.625],[0,0],[-5,2.875]],"o":[[-6.875,3.5],[0,0],[5,-2.875]],"v":[[45.5,45.125],[27.125,55.5],[39.625,57.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.156,0,0,0,0.575,0,0,0,0.994,0,0,0,0.527,1,0.654,0.5,0.78,0],"ix":9}},"s":{"a":0,"k":[35.205,48.255],"ix":5},"e":{"a":0,"k":[41.644,57.506],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":114,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"L Foot bottom reflection 2","parent":9,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":126,"s":[100]},{"t":127,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-35.168,-48.236,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.061,"y":1},"o":{"x":0.202,"y":0},"t":110,"s":[{"i":[[0.125,4.625],[0,0],[-5,2.875]],"o":[[-6.875,3.5],[0,0],[5,-2.875]],"v":[[45.5,45.125],[27.125,55.5],[39.625,57.5]],"c":true}]},{"t":119,"s":[{"i":[[0.125,4.625],[-4.669,-6.383],[-9.894,6.866]],"o":[[-2.15,-12.29],[1.429,1.954],[4.739,-3.288]],"v":[[45.841,45.937],[24.535,53.455],[37.734,52.972]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.156,0.875,0.314,1,0.506,0.51,0.578,0.98,0.856,0.145,0.843,0.961,0.647,1,0.765,0.5,0.883,0],"ix":9}},"s":{"a":0,"k":[55.748,46.447],"ix":5},"e":{"a":0,"k":[18.017,57.593],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":114,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"L Foot bottom Blend","parent":13,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":126,"s":[100]},{"t":127,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.125,4.625],[0,0],[-5,2.875]],"o":[[-6.875,3.5],[0,0],[5,-2.875]],"v":[[45.5,45.125],[27.125,55.5],[39.625,57.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.156,0,0,0,0.575,0,0,0,0.994,0,0,0,0.527,1,0.654,0.5,0.78,0],"ix":9}},"s":{"a":0,"k":[35.205,48.255],"ix":5},"e":{"a":0,"k":[41.644,57.506],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"L Foot bottom reflection","parent":9,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":126,"s":[100]},{"t":127,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-35.168,-48.236,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.061,"y":1},"o":{"x":0.202,"y":0},"t":110,"s":[{"i":[[0.125,4.625],[0,0],[-5,2.875]],"o":[[-6.875,3.5],[0,0],[5,-2.875]],"v":[[45.5,45.125],[27.125,55.5],[39.625,57.5]],"c":true}]},{"t":119,"s":[{"i":[[0.125,4.625],[-4.669,-6.383],[-9.894,6.866]],"o":[[-2.15,-12.29],[1.429,1.954],[4.739,-3.288]],"v":[[45.841,45.937],[24.535,53.455],[37.734,52.972]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.156,0.875,0.314,1,0.506,0.51,0.578,0.98,0.856,0.145,0.843,0.961,0.647,1,0.765,0.5,0.883,0],"ix":9}},"s":{"a":0,"k":[55.748,46.447],"ix":5},"e":{"a":0,"k":[18.017,57.593],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"R Foot Top Light","parent":16,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-12.225,-102.591,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.04,-1.716],[0,0],[-3.976,1.325],[-2,-1.25]],"o":[[-4.562,1.938],[0,0],[3.188,-1.062],[-1.375,-2.188]],"v":[[5.688,92.125],[1.375,98.688],[6.375,94],[13.5,95]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.647,0.145,0.843,0.961,0.765,0.145,0.843,0.961,0.883,0.145,0.843,0.961,0.647,0,0.765,0.5,0.883,1],"ix":9}},"s":{"a":0,"k":[7.86,98.577],"ix":5},"e":{"a":0,"k":[7.753,89.442],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"R Foot Highlight","parent":16,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-12.225,-102.591,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.875,-3.875],[0,0],[-3.923,-0.938],[-1.939,1.535],[0.594,2.119]],"o":[[0,0],[-3.875,3.875],[0,0],[2.01,0.48],[2.393,-1.895],[-0.895,-3.194]],"v":[[19.625,99.125],[18.25,107.5],[8.125,108.75],[15.191,113.008],[21.25,111.375],[23.556,104.129]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.355,0,0,0,0.47,0.073,0.422,0.48,0.585,0.145,0.843,0.961],"ix":9}},"s":{"a":0,"k":[13.383,102.418],"ix":5},"e":{"a":0,"k":[25.404,118.914],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"R Foot","parent":26,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.601],"y":[0.74]},"o":{"x":[0.661],"y":[0]},"t":0,"s":[-1.223]},{"i":{"x":[0.373],"y":[1]},"o":{"x":[0.126],"y":[0.198]},"t":6,"s":[-0.528]},{"i":{"x":[0.235],"y":[1]},"o":{"x":[0.202],"y":[0]},"t":17,"s":[0]},{"i":{"x":[0.061],"y":[1]},"o":{"x":[0.202],"y":[0]},"t":110,"s":[0]},{"i":{"x":[0.061],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":119,"s":[-9.146]},{"t":125,"s":[-9.146]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.601,"y":0.74},"o":{"x":0.661,"y":0},"t":0,"s":[7.255,67.271,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.373,"y":1},"o":{"x":0.126,"y":0.198},"t":6,"s":[6.582,74.026,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.235,"y":0.235},"o":{"x":0.202,"y":0.202},"t":17,"s":[6.07,79.166,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.061,"y":1},"o":{"x":0.202,"y":0},"t":110,"s":[6.07,79.166,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.061,"y":0.061},"o":{"x":0.167,"y":0.167},"t":119,"s":[4.582,66.972,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0},"t":125,"s":[4.582,66.972,0],"to":[0,0,0],"ti":[0,0,0]},{"t":128,"s":[6.432,69.933,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-4.5,-4,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.478,-3.089],[-3.089,-2.478],[0,0],[-2.478,3.089],[3.089,2.478]],"o":[[-3.089,-2.478],[-2.478,3.089],[0,0],[3.089,2.478],[2.478,-3.089],[0,0]],"v":[[0.286,-8.962],[-9.794,-7.855],[-8.687,2.224],[-0.286,8.962],[9.794,7.855],[8.687,-2.224]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Vector 4618 (Stroke)","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"Mask Highlight","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,33.333,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[370.37,370.37,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.25,-5],[-5.72,-0.77],[-12.5,4.75]],"o":[[4.25,5],[13,1.75],[4.703,-1.787]],"v":[[-10.75,-33.5],[2.25,-22.75],[35.25,-34]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":5,"k":{"a":0,"k":[0,1,1,1,0.236,1,1,1,0.472,1,1,1,0.736,1,1,1,1,1,1,1,0,0,0.235,0.5,0.47,1,0.735,0.5,1,0],"ix":8}},"s":{"a":0,"k":[-12.651,-34.678],"ix":4},"e":{"a":0,"k":[34.634,-33.547],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"bm":0,"nm":"Gradient Stroke 1","mn":"ADBE Vector Graphic - G-Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"Mask Shadows","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":2.471,"ix":10},"p":{"a":0,"k":[57.985,-39.482,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[370.37,370.37,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.214,0.385],[0.989,0.284],[0.826,-0.477],[1.049,-2.579],[0.184,0.302],[0.078,0.124],[0.242,0.251],[0.46,0.049],[0.047,-0.438],[-0.432,-0.052],[-0.048,-0.049],[-0.204,-0.326],[-0.079,-0.129],[-0.732,-0.932],[-0.289,0.05],[-0.093,0.277],[-1.75,1.011],[-0.527,-0.152],[-0.468,-0.844],[-0.385,0.214]],"o":[[-0.639,-1.151],[-0.981,-0.282],[-1.909,1.103],[-0.24,-0.363],[-0.083,-0.137],[-0.202,-0.324],[-0.256,-0.265],[-0.438,-0.047],[-0.046,0.434],[0.013,0.008],[0.113,0.117],[0.068,0.109],[0.371,0.609],[0.181,0.23],[0.289,-0.05],[1.069,-3.174],[0.487,-0.281],[0.52,0.15],[0.214,0.385],[0.385,-0.214]],"v":[[-28.121,-14.619],[-30.635,-16.773],[-33.444,-16.408],[-37.754,-10.847],[-38.381,-11.845],[-38.621,-12.237],[-39.28,-13.138],[-40.337,-13.693],[-41.214,-12.985],[-40.517,-12.11],[-40.427,-12.032],[-39.973,-11.394],[-39.753,-11.035],[-38.153,-8.676],[-37.391,-8.383],[-36.771,-8.913],[-32.647,-15.028],[-31.075,-15.242],[-29.515,-13.846],[-28.431,-13.536]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.004,-0.001],[0,0]],"o":[[-0.004,-0.002],[0,0]],"v":[[-40.519,-12.111],[-40.525,-12.113]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.038,0.483],[0.439,-0.035],[-0.035,-0.439],[0.06,-0.651],[0.19,-0.374],[-0.392,-0.199],[-0.199,0.392],[-0.067,0.727]],"o":[[-0.035,-0.439],[-0.439,0.035],[0.031,0.395],[-0.062,0.67],[-0.199,0.392],[0.392,0.199],[0.328,-0.647],[0.069,-0.745]],"v":[[25.4,-13.733],[24.542,-14.464],[23.811,-13.607],[23.791,-11.926],[23.412,-10.287],[23.762,-9.216],[24.833,-9.567],[25.378,-11.779]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0.687,1.906],[0.414,-0.149],[-0.149,-0.414],[0.435,-1.756],[-0.341,-0.163],[-0.402,-6.462],[0,0],[-0.439,0.028],[0.028,0.439],[0,0],[4.052,2.206]],"o":[[-0.149,-0.414],[-0.414,0.149],[0.611,1.696],[-0.091,0.367],[3.726,1.785],[0,0],[0.028,0.439],[0.439,-0.028],[0,0],[-0.409,-6.569],[0.363,-1.626]],"v":[[33.452,-10.392],[32.432,-10.872],[31.953,-9.852],[31.935,-5.055],[32.365,-4.144],[39.102,7.951],[39.627,16.164],[40.473,16.908],[41.217,16.062],[40.692,7.852],[33.628,-5.288]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Vector (Stroke)","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"L Eye Socket","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[112.015,-24.745,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[370.37,370.37,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.401,0],[1.025,-10.301],[-0.438,-0.044],[-0.044,0.438],[-9.534,0],[0.936,-9.414],[-0.438,-0.044],[-0.044,0.438]],"o":[[-10.439,0],[-0.044,0.438],[0.438,0.044],[0.952,-9.574],[9.571,0],[-0.044,0.438],[0.438,0.044],[1.04,-10.46]],"v":[[0.896,-9.793],[-18.915,8.918],[-18.201,9.789],[-17.33,9.075],[0.896,-8.2],[17.557,8.918],[18.271,9.789],[19.143,9.075]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 15321 (Stroke)","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"R Eye Socket","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-67.42,-29.733,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[370.37,370.37,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.13,-0.998],[-0.086,-0.272],[-0.031,-0.077],[-0.01,-0.023],[-0.004,-0.008],[0,0],[0,0],[0,0],[0,0],[-0.716,0.35],[0,0],[-0.273,-0.029],[-0.169,0.216],[-4.555,-0.545],[-1.634,-2.387],[1.042,-4.424],[-0.428,-0.101],[-0.101,0.428],[1.945,2.843],[3.703,0.443],[2.832,-2.978]],"o":[[0.065,0.498],[0.043,0.136],[0.016,0.039],[0.005,0.012],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.121,0.246],[0.273,0.029],[2.625,-3.344],[3.344,0.4],[1.632,2.385],[-0.101,0.428],[0.428,0.101],[1.117,-4.745],[-1.944,-2.84],[-4.613,-0.551],[-0.075,-0.791]],"v":[[-11.793,-3.823],[-11.544,-2.664],[-11.431,-2.344],[-11.391,-2.251],[-11.378,-2.222],[-11.373,-2.211],[-11.371,-2.207],[-11.37,-2.205],[-11.37,-2.204],[-10.654,-2.554],[-11.369,-2.204],[-10.737,-1.761],[-10.027,-2.062],[0.847,-6.849],[8.535,-2.582],[9.764,7.639],[10.357,8.597],[11.315,8.004],[9.85,-3.482],[1.036,-8.431],[-10.238,-4.253]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 15321 (Stroke)","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"Eyelids","parent":1,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,33.333,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[370.37,370.37,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":6,"s":[{"i":[[18.972,1.43],[0,0],[-8.329,-1.962],[0,0],[0,0],[-14.213,1.429],[0,0],[19,1.5]],"o":[[-21.625,-1.63],[0,0],[9,2.12],[0,0],[0,0],[10,-1.005],[0,0],[-19,-1.5]],"v":[[-18.5,-26.75],[-37,1],[-24.75,0.25],[-11,8.5],[11.75,9.875],[30.75,4.375],[49.875,4.125],[32.25,-26.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[{"i":[[19.01,0.798],[0,0],[-13.25,-0.531],[0,0],[0,0],[-14.285,0.028],[0,0],[14.375,-0.406]],"o":[[-15.625,-0.656],[0,0],[11.997,0.481],[0,0],[0,0],[15.625,-0.031],[0,0],[-19.052,0.538]],"v":[[-18.5,-26.75],[-32.375,-16.25],[-16.5,-25.25],[-6,-15.75],[13.25,-15.625],[30.5,-25.375],[48.625,-14.625],[32.25,-26.5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":1,"y":0},"t":110,"s":[{"i":[[19.01,0.798],[0,0],[-13.25,-0.531],[0,0],[0,0],[-14.285,0.028],[0,0],[14.375,-0.406]],"o":[[-15.625,-0.656],[0,0],[11.997,0.481],[0,0],[0,0],[15.625,-0.031],[0,0],[-19.052,0.538]],"v":[[-18.5,-26.75],[-32.375,-16.25],[-16.5,-25.25],[-6,-15.75],[13.25,-15.625],[30.5,-25.375],[48.625,-14.625],[32.25,-26.5]],"c":true}]},{"t":118,"s":[{"i":[[18.972,1.43],[0,0],[-8.329,-1.962],[0,0],[0,0],[-14.213,1.429],[0,0],[19,1.5]],"o":[[-21.625,-1.63],[0,0],[9,2.12],[0,0],[0,0],[10,-1.005],[0,0],[-19,-1.5]],"v":[[-18.5,-26.75],[-37,1],[-24.75,0.25],[-11,8.5],[11.75,9.875],[30.75,4.375],[49.875,4.125],[32.25,-26.5]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":6,"s":[{"i":[[0,0],[-10,-1.25],[-18.25,-0.75],[0,0],[10.5,-1.5],[0,0],[0,0],[10.25,2.5]],"o":[[0,0],[10,1.25],[18.25,0.75],[0,0],[-9.16,1.309],[0,0],[0,0],[-7.399,-1.805]],"v":[[-35.5,-2.25],[-25.75,19.5],[27,23.25],[49,1.75],[29,2.5],[11.5,7.25],[-11,5.5],[-24.5,-1.75]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[{"i":[[0,0],[-10,-1.25],[-18.25,-0.75],[0,0],[10.5,-1.5],[0,0],[0,0],[10.25,2.5]],"o":[[0,0],[10,1.25],[18.25,0.75],[0,0],[-9.16,1.309],[0,0],[0,0],[-7.399,-1.805]],"v":[[-37.25,16.5],[-25.75,19.5],[27,23.25],[48.75,19.25],[28.75,20],[11.25,24.75],[-12.75,24.25],[-26.25,17]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":1,"y":0},"t":110,"s":[{"i":[[0,0],[-10,-1.25],[-18.25,-0.75],[0,0],[10.5,-1.5],[0,0],[0,0],[10.25,2.5]],"o":[[0,0],[10,1.25],[18.25,0.75],[0,0],[-9.16,1.309],[0,0],[0,0],[-7.399,-1.805]],"v":[[-38.825,16.725],[-27.325,28.725],[25.425,32.475],[47.175,19.475],[27.175,20.225],[9.675,24.975],[-14.325,24.475],[-27.825,17.225]],"c":true}]},{"t":118,"s":[{"i":[[0,0],[-10,-1.25],[-18.25,-0.75],[0,0],[10.5,-1.5],[0,0],[0,0],[10.25,2.5]],"o":[[0,0],[10,1.25],[18.25,0.75],[0,0],[-9.16,1.309],[0,0],[0,0],[-7.399,-1.805]],"v":[[-35.5,-2.25],[-25.75,19.5],[27,23.25],[49,1.75],[29,2.5],[11.5,7.25],[-11,5.5],[-24.5,-1.75]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":22,"ty":0,"nm":"Eyes","parent":1,"tt":2,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,33.333,0],"ix":2,"l":2},"a":{"a":0,"k":[375,667,0],"ix":1,"l":2},"s":{"a":0,"k":[100.008,100.008,100],"ix":6,"l":2}},"ao":0,"w":750,"h":1334,"ip":8,"op":117,"st":-4,"ct":1,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"Top Body Reflection","parent":26,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[13.295,-19.425,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.076,"y":0},"t":0,"s":[{"i":[[5.374,-0.322],[3.545,-6.993],[0,-2.5],[-5.218,-2.31],[-15.75,1.75],[-1,1.25],[1.762,4.659],[7.141,1.459],[7.885,-0.979],[5.245,1.244]],"o":[[-7.748,0.464],[-2.98,5.879],[0,2.5],[15.25,6.75],[15.75,-1.75],[1,-1.25],[-2.13,-5.631],[-6.755,-1.381],[-7.005,0.869],[-4.385,-1.04]],"v":[[-12.026,-39.724],[-28.5,-29.75],[-33.25,-15.75],[-27.5,-8.75],[39,-2.25],[61.25,-8.5],[60.375,-27.5],[44.375,-38.625],[22.507,-35.322],[4.757,-36.072]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":10,"s":[{"i":[[6.5,-0.25],[3,-5.5],[0,-2.5],[-5.218,-2.31],[-15.75,1.75],[-1,1.25],[1.5,4.75],[7.25,0.75],[7.75,-1.75],[3.75,2.5]],"o":[[-6.5,0.25],[-3,5.5],[0,2.5],[15.25,6.75],[15.75,-1.75],[1,-1.25],[-1.5,-4.75],[-7.25,-0.75],[-7.75,1.75],[-3.75,-2.5]],"v":[[-11.75,-40.5],[-25.25,-31.75],[-27.25,-21.5],[-21.5,-14.5],[37.5,-8.25],[58.25,-13.75],[57.5,-24.25],[44.25,-36.5],[21,-34.5],[2.75,-34.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":110,"s":[{"i":[[6.5,-0.25],[3,-5.5],[0,-2.5],[-5.218,-2.31],[-15.75,1.75],[-1,1.25],[1.5,4.75],[7.25,0.75],[7.75,-1.75],[3.75,2.5]],"o":[[-6.5,0.25],[-3,5.5],[0,2.5],[15.25,6.75],[15.75,-1.75],[1,-1.25],[-1.5,-4.75],[-7.25,-0.75],[-7.75,1.75],[-3.75,-2.5]],"v":[[-11.75,-40.5],[-25.25,-31.75],[-27.25,-21.5],[-21.5,-14.5],[37.5,-8.25],[58.25,-13.75],[57.5,-24.25],[44.25,-36.5],[21,-34.5],[2.75,-34.5]],"c":true}]},{"t":118,"s":[{"i":[[5.79,-0.9],[3,-5.5],[0,-2.5],[-5.218,-2.31],[-15.75,1.75],[-1,1.25],[1.5,4.75],[7.098,1.655],[7.75,-1.75],[3.606,1.389]],"o":[[-6.428,0.999],[-3,5.5],[0,2.5],[15.25,6.75],[15.75,-1.75],[1,-1.25],[-1.5,-4.75],[-7.815,-1.821],[-7.75,1.75],[-4.206,-1.62]],"v":[[-11.75,-40.5],[-25.25,-31.75],[-27.25,-21.5],[-21.5,-14.5],[37.5,-8.25],[58.25,-13.75],[57.5,-24.25],[44.25,-36.5],[21.947,-35.684],[5.118,-36.632]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":2,"k":{"a":0,"k":[0,1,1,1,1,0,0,0],"ix":9}},"s":{"a":1,"k":[{"i":{"x":0.261,"y":1},"o":{"x":0.108,"y":0.044},"t":0,"s":[14.246,-62.682],"to":[-0.026,1.53],"ti":[0.743,-4.253]},{"i":{"x":0.358,"y":1},"o":{"x":0.108,"y":0.445},"t":6,"s":[14.093,-53.502],"to":[-0.743,4.253],"ti":[0.717,-2.723]},{"t":118,"s":[9.791,-37.162]}],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.261,"y":0.261},"o":{"x":0.108,"y":0.108},"t":0,"s":[8.084,-2.264],"to":[0,0],"ti":[0,0]},{"i":{"x":0.358,"y":1},"o":{"x":0.108,"y":0.432},"t":6,"s":[8.084,-2.264],"to":[-0.253,0.863],"ti":[0.253,-0.863]},{"t":118,"s":[6.568,2.912]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"Body Light Blend","parent":25,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[9.75,13.5],[-33.25,-3],[-5,8],[31.326,3.356]],"o":[[0.576,11.962],[38.998,3.519],[-9.244,2.625],[-28,-3]],"v":[[-40.322,40.115],[5.75,82],[60.5,55.75],[7.875,63.412]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0,0,0,0.5,0,0,0,1,0,0,0,0.771,1,0.834,0.5,0.896,0],"ix":9}},"s":{"a":0,"k":[12.459,16.664],"ix":5},"e":{"a":0,"k":[8.897,90.142],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"Raindow Bottom Body Light","parent":26,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[12.999,-22.607,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.756,11.837],[-33.25,-3],[-2.361,6.8],[31.326,3.356]],"o":[[0.801,11.962],[38.998,3.519],[-5.756,4.875],[-28,-3]],"v":[[-40.2,40.575],[5.75,82],[59.938,55.638],[6.75,72.75]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.208,0.965,0.647,0.294,0.176,0.904,0.804,0.588,0.145,0.843,0.961,0.794,0.51,0.578,0.98,1,0.875,0.314,1],"ix":9}},"s":{"a":0,"k":[-43.379,34.205],"ix":5},"e":{"a":0,"k":[57.738,44.597],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"Duo Body","parent":36,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.891]},"o":{"x":[1],"y":[0]},"t":126,"s":[0]},{"t":129,"s":[-16]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.668,"y":0.743},"o":{"x":0.702,"y":0},"t":0,"s":[23.17,16.925,0],"to":[-0.021,0.009,0],"ti":[2.25,4.42,0]},{"i":{"x":0.343,"y":1},"o":{"x":0.114,"y":0.272},"t":6,"s":[17.542,5.781,0],"to":[-2.217,-2.982,0],"ti":[0,0.168,0]},{"t":21,"s":[13.795,-3.575,0],"h":1},{"t":110,"s":[13.795,-3.575,0],"h":1},{"i":{"x":0.833,"y":0.884},"o":{"x":1,"y":0},"t":126,"s":[13.795,-3.575,0],"to":[0,0,0],"ti":[0,0,0]},{"t":129,"s":[-7.205,-9.575,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.784]},"o":{"x":[0.036,0.036,0.333],"y":[0,0,0]},"t":0,"s":[-76,76,100]},{"t":7,"s":[-100,100,100],"h":1},{"i":{"x":[0.7,0.7,0.7],"y":[1,1,1]},"o":{"x":[0.364,0.364,0.364],"y":[0,0,0]},"t":110,"s":[-100,100,100]},{"t":118,"s":[-95,95,100],"h":1},{"i":{"x":[0.833,0.833,0.833],"y":[0.687,1.313,-1.5]},"o":{"x":[1,1,1],"y":[0,0,0]},"t":126,"s":[-95,95,100]},{"t":129,"s":[-87,87,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.076,"y":0},"t":0,"s":[{"i":[[8.914,-3.591],[2.293,0.249],[13.029,1.272],[-1.974,-22.417],[-6.335,-18.498],[-15.667,-3.744],[-13.289,10.183],[-0.188,28.006],[6.855,8.415]],"o":[[-8.914,3.591],[-2.293,-0.249],[-13.029,-1.272],[1.974,22.417],[4.466,13.039],[15.667,3.744],[13.289,-10.183],[0.188,-28.006],[-6.855,-8.415]],"v":[[18.217,-61.804],[-2.039,-56.95],[-27.707,-61.236],[-54.851,-31.462],[-46.446,33.079],[-15.208,57.692],[33.616,49.241],[54.717,1.443],[45.949,-54.614]],"c":true}]},{"t":9,"s":[{"i":[[8.914,-3.591],[2.78,0.085],[13.029,1.272],[-1.974,-22.417],[-6.927,-18.281],[-15.667,-3.744],[-13.289,10.183],[-0.188,28.006],[6.855,8.415]],"o":[[-8.914,3.591],[-2.842,-0.085],[-13.029,-1.272],[1.974,22.417],[3.97,10.562],[15.667,3.744],[13.289,-10.183],[0.188,-28.006],[-6.855,-8.415]],"v":[[13.987,-61.804],[-2.222,-57.497],[-27.707,-61.236],[-54.851,-31.462],[-46.462,34.165],[-15.473,57.87],[33.308,49.809],[54.933,1.66],[41.72,-54.614]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Vector 2970","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":27,"ty":4,"nm":"R Wing Top Reflection","parent":30,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-52,"ix":10},"p":{"a":0,"k":[5.661,-22.262,0],"ix":2,"l":2},"a":{"a":0,"k":[-38.302,-19.658,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[30.396,6.684],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":305,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":2,"k":{"a":0,"k":[0,1,1,1,1,0,0,0],"ix":9}},"s":{"a":0,"k":[-8.288,-3.138],"ix":5},"e":{"a":0,"k":[-7.436,3.97],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-38.302,-19.658],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":28,"ty":4,"nm":"R Wing Lower Light Blend","parent":29,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-3.5,-6.709],[-3.875,-2.5],[0,2.25],[4.894,6.611]],"o":[[0,0],[3,5.75],[1.25,-1.75],[-3.25,-2.125],[-7.125,-9.625]],"v":[[-56.475,-9.562],[-52.95,10.588],[-40.613,26.212],[-39.25,18.375],[-48.375,9.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.753,0,0,0,0.877,0,0,0,1,0,0,0,0.785,1,0.83,0.5,0.875,0],"ix":9}},"s":{"a":0,"k":[-15.206,-18.065],"ix":5},"e":{"a":0,"k":[-52.613,19.896],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":29,"ty":4,"nm":"R Wing Lower Green light","parent":30,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-34.236,-9.898,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.339,-9.466],[-4.827,-1.486],[0.587,2.259],[4.894,6.611]],"o":[[0,0],[3.301,7.202],[-0.444,-2.055],[-3.25,-2.125],[-7.125,-9.625]],"v":[[-56.7,-9.45],[-52.95,10.925],[-36.902,28.574],[-39.25,18.375],[-48.375,9.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.008,0,0,0,0.504,0.104,0.482,0.324,1,0.208,0.965,0.647],"ix":9}},"s":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":0,"s":[-61.203,-5.447],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":110,"s":[-61.203,-5.447],"to":[1.257,2.962],"ti":[-1.257,-2.962]},{"t":118,"s":[-53.662,12.325]}],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":0,"s":[-31.778,30.457],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":110,"s":[-31.778,30.457],"to":[1.981,0.707],"ti":[-1.981,-0.707]},{"t":118,"s":[-19.89,34.698]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":30,"ty":4,"nm":"R Wing","parent":26,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.454],"y":[0.829]},"o":{"x":[0.398],"y":[0]},"t":0,"s":[51]},{"i":{"x":[0.541],"y":[1]},"o":{"x":[0.228],"y":[0.675]},"t":6,"s":[10.666]},{"i":{"x":[0.221],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":21,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[0]},{"t":118,"s":[-15.531],"h":1},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":125,"s":[-15.531]},{"t":128,"s":[12.469]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.454,"y":0.829},"o":{"x":0.398,"y":0},"t":0,"s":[49.847,-0.211,0],"to":[0.077,0.192,0],"ti":[2.461,6.306,0]},{"i":{"x":0.541,"y":1},"o":{"x":0.228,"y":0.675},"t":6,"s":[43.271,-17.068,0],"to":[-1.018,-2.609,0],"ti":[0,0,0]},{"i":{"x":0.221,"y":0.221},"o":{"x":0.167,"y":0.167},"t":21,"s":[41.531,-21.527,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":110,"s":[41.531,-21.527,0],"to":[0,0,0],"ti":[-0.468,-1.169,0]},{"t":118,"s":[37.43,-20.78,0],"h":1},{"i":{"x":0.833,"y":0.892},"o":{"x":1,"y":0},"t":125,"s":[37.43,-20.78,0],"to":[0.452,1.129,0],"ti":[0,0,0]},{"t":128,"s":[45.43,-17.78,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-6.5,-12,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.567,-0.001],[0,0],[-1.09,-3.241],[-17.581,0.005],[-2.922,12.424]],"o":[[0,0],[-3.567,0.001],[5.237,15.571],[17.581,-0.005],[1.113,-3.241]],"v":[[32.999,-16.451],[-33.544,-16.431],[-38.562,-9.864],[-0.387,16.451],[38.589,-8.811]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":-50.195,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Combined Shape Copy 155","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":31,"ty":4,"nm":"Top L Wing Shine","parent":34,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-62.185,-28.907,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-2.386],[2.386,0],[0,0],[0,2.386],[-2.386,0],[0,0]],"o":[[0,2.386],[0,0],[-2.386,0],[0,-2.386],[0,0],[2.386,0]],"v":[[14.828,0.578],[10.421,4.32],[-10.421,4.32],[-14.654,0.578],[-10.585,-3.62],[10.257,-3.62]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0,0,0,0.5,0.5,0.5,0.5,1,1,1,1],"ix":9}},"s":{"a":0,"k":[-0.207,4.748],"ix":5},"e":{"a":0,"k":[-1.5,-5.143],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[84.279,13.604],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[103.023,87.77],"ix":3},"r":{"a":0,"k":-4.046,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":32,"ty":4,"nm":"Black Blend L Lower Wing","parent":33,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[12.25,-3.5],[0,0],[0,0],[-13.236,7.623]],"o":[[0,0],[-12.25,3.5],[0,0],[0,0],[15.696,-9.039]],"v":[[97.812,25.25],[77,38.75],[50.715,38.721],[42.864,46.568],[79.562,43]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.675,0,0,0,0.738,0,0,0,0.801,0,0,0,0.719,1,0.776,0.5,0.832,0],"ix":9}},"s":{"a":0,"k":[59.493,3.884],"ix":5},"e":{"a":0,"k":[84.703,48.701],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"Pink Light L Lower Wing","parent":34,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-62.435,-28.532,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[12.25,-3.5],[0,0],[0,0],[-13.561,7.329]],"o":[[0,0],[-12.25,3.5],[0,0],[0,0],[15.248,-8.241]],"v":[[97.812,25.25],[77,38.75],[47.079,40.173],[42.917,46.919],[79.562,43.394]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.11,0.875,0.314,1,0.509,0.437,0.157,0.5,0.908,0,0,0],"ix":9}},"s":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":0,"s":[51.756,51.649],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":110,"s":[51.756,51.649],"to":[-2.682,-0.531],"ti":[2.682,0.531]},{"t":118,"s":[35.666,48.465]}],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":0,"s":[106.339,35.486],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":110,"s":[106.339,35.486],"to":[-4.262,1.101],"ti":[4.262,-1.101]},{"t":118,"s":[80.767,42.092]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":34,"ty":4,"nm":"L Wing","parent":26,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.454],"y":[0.829]},"o":{"x":[0.398],"y":[0]},"t":0,"s":[-30]},{"i":{"x":[0.541],"y":[1]},"o":{"x":[0.228],"y":[0.675]},"t":6,"s":[-6.274]},{"i":{"x":[0.221],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":21,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[0]},{"t":118,"s":[43.714],"h":1},{"i":{"x":[0.833],"y":[0.81]},"o":{"x":[1],"y":[0]},"t":125,"s":[43.714]},{"t":128,"s":[16.714]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.454,"y":0.829},"o":{"x":0.398,"y":0},"t":0,"s":[-51.325,8.422,0],"to":[0,0.211,0],"ti":[-1.078,3.527,0]},{"i":{"x":0.541,"y":1},"o":{"x":0.228,"y":0.675},"t":6,"s":[-48.397,-0.914,0],"to":[0.443,-1.45,0],"ti":[0,0,0]},{"i":{"x":0.221,"y":0.221},"o":{"x":0.167,"y":0.167},"t":21,"s":[-47.64,-3.393,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":110,"s":[-47.64,-3.393,0],"to":[0,0,0],"ti":[0,-1.286,0]},{"t":118,"s":[-40.14,-5.922,0],"h":1},{"i":{"x":0.833,"y":0.624},"o":{"x":1,"y":0},"t":125,"s":[-40.14,-5.922,0],"to":[0,0,0],"ti":[0,0,0]},{"t":128,"s":[-43.928,-4.816,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-1,-12.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.815,-0.001],[0,0],[-1.166,-3.768],[-18.804,0.006],[-5.717,18.11]],"o":[[0,0],[-3.815,0.001],[5.602,18.106],[18.804,-0.006],[1.19,-3.769]],"v":[[35.606,-19.129],[-35.569,-19.106],[-40.935,-11.47],[-0.103,19.129],[40.923,-11.496]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":-3.923,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Combined Shape Copy 154","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":129,"st":8,"ct":1,"bm":0},{"ddd":0,"ind":35,"ty":3,"nm":"ALL - incl paths","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[286.222,359.167,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[222.222,222.222,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":153,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":36,"ty":3,"nm":"Duo and Bubble ALL","parent":35,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[1],"y":[1]},"o":{"x":[0.167],"y":[0.008]},"t":0,"s":[4]},{"i":{"x":[0.992],"y":[0.97]},"o":{"x":[0.006],"y":[0]},"t":6,"s":[0.775]},{"i":{"x":[0],"y":[1.075]},"o":{"x":[0.441],"y":[-0.033]},"t":110,"s":[0]},{"t":121,"s":[4]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[1],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":0,"s":[19.5]},{"i":{"x":[0.984],"y":[0.997]},"o":{"x":[0.031],"y":[0.092]},"t":6,"s":[1.2]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.526],"y":[-0.002]},"t":110,"s":[-3.5]},{"t":121,"s":[19.5]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":153,"st":-4,"ct":1,"bm":0},{"ddd":0,"ind":37,"ty":0,"nm":"Bell","parent":39,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-10.8,-27,0],"ix":2,"l":2},"a":{"a":0,"k":[375,667,0],"ix":1,"l":2},"s":{"a":0,"k":[45,45,100],"ix":6,"l":2}},"ao":0,"w":750,"h":1334,"ip":0,"op":12,"st":-156,"ct":1,"bm":0},{"ddd":0,"ind":38,"ty":0,"nm":"Bell","parent":39,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-10.8,-27,0],"ix":2,"l":2},"a":{"a":0,"k":[375,667,0],"ix":1,"l":2},"s":{"a":0,"k":[45,45,100],"ix":6,"l":2}},"ao":0,"w":750,"h":1334,"ip":12,"op":153,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":39,"ty":3,"nm":"Bubble Bell Null ++++++++","parent":36,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":0,"s":[0,-29,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.583,"y":0.583},"t":8,"s":[0,-29,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.583,"y":0},"t":110,"s":[0,-29,0],"to":[0,3,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":1,"y":0},"t":122,"s":[0,-11,0],"to":[0,0,0],"ti":[0,3,0]},{"t":140,"s":[0,-29,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":153,"st":-4,"ct":1,"bm":0},{"ddd":0,"ind":40,"ty":4,"nm":"Speech Bubble 2","parent":39,"sr":1,"ks":{"o":{"a":1,"k":[{"t":0,"s":[0],"h":1},{"t":2,"s":[100],"h":1},{"t":128,"s":[0],"h":1}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.22,"y":1},"o":{"x":0.949,"y":0},"t":0,"s":[0,15,0],"to":[0,-3.833,0],"ti":[0,1.521,0]},{"t":8,"s":[0,15,0],"h":1},{"t":114,"s":[0,15,0],"h":1}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0,0,0.667],"y":[0.997,0.997,1]},"o":{"x":[0.213,0.213,0.333],"y":[0.604,0.604,0]},"t":2,"s":[60,60,100]},{"t":8,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[29.25,0],[0,-26.625],[-24.005,0],[0,0],[-2.053,-0.596],[-0.126,4.982],[0,0],[0,22]],"o":[[-25.875,0],[0,27.75],[11.188,0],[0,0],[1.938,0.562],[0.126,-4.982],[0,0],[0,-24]],"v":[[-76.25,-138.625],[-123.609,-89.875],[-76.562,-41.75],[-58.563,-44.625],[-39.062,-38.312],[-34.751,-42.518],[-36.375,-61.625],[-27.125,-91.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.22,0.933,1,0.5,0.184,0.949,0.694,1,0.149,0.965,0.388],"ix":8}},"s":{"a":0,"k":[-131.621,-49.447],"ix":4},"e":{"a":0,"k":[-20.191,-49.867],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"bm":0,"nm":"Gradient Stroke 1","mn":"ADBE Vector Graphic - G-Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":153,"st":-4,"ct":1,"bm":0},{"ddd":0,"ind":41,"ty":4,"nm":"Path back","parent":35,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,15,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":147,"s":[{"i":[[1,0],[20.841,-66.738],[0,0],[0,0],[-1.48,35.424],[0,0],[0,0],[0,0]],"o":[[-1,0],[-13.35,42.75],[0,0],[0,0],[3.25,-77.8],[0,0],[0,0],[0,0]],"v":[[-30,-141.5],[33.05,-3.6],[-12.05,53.6],[65.675,53.6],[75.4,13.45],[-20.55,-138.05],[109.293,-117.238],[114.038,-118.163]],"c":true}]},{"t":148,"s":[{"i":[[1,0],[20.841,-66.738],[0,0],[0,0],[-1.48,35.424],[0,0],[0,0],[0,0]],"o":[[-1,0],[-13.35,42.75],[0,0],[0,0],[3.25,-77.8],[0,0],[0,0],[0,0]],"v":[[-30,-141.5],[33.05,-3.6],[-12.05,53.6],[65.675,53.6],[75.4,13.45],[-20.55,-138.05],[95.793,-119.263],[100.538,-120.188]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":7,"k":{"a":0,"k":[0,0.22,0.933,1,0.174,0.22,0.933,1,0.355,0.22,0.933,1,0.505,0.184,0.949,0.694,0.655,0.149,0.965,0.388,0.827,0.149,0.965,0.388,1,0.149,0.965,0.388,0,0,0.176,0.5,0.353,1,0.671,1,0.989,1,0.994,0.5,1,0],"ix":9}},"s":{"a":1,"k":[{"i":{"x":0.54,"y":0.186},"o":{"x":0.649,"y":0},"t":143,"s":[198.953,-220.285],"to":[-0.053,2.069],"ti":[21.309,10.688]},{"i":{"x":0.567,"y":0.648},"o":{"x":0.247,"y":0.196},"t":146,"s":[191.773,-181.02],"to":[-12.892,-6.467],"ti":[18.543,15.125]},{"i":{"x":0.544,"y":0.819},"o":{"x":0.304,"y":0.221},"t":148,"s":[135.159,-229.228],"to":[-12.981,-10.588],"ti":[-0.036,-27.337]},{"i":{"x":0.774,"y":0.908},"o":{"x":0.456,"y":0.123},"t":150,"s":[112.555,-155.656],"to":[0.047,35.674],"ti":[-0.044,-34.698]},{"t":151,"s":[114.916,-88.891]}],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.703,"y":0.436},"o":{"x":0.469,"y":0},"t":143,"s":[50.136,-113.649],"to":[-0.064,1.827],"ti":[-12.85,0.78]},{"i":{"x":0.622,"y":0.717},"o":{"x":0.3,"y":0.087},"t":146,"s":[34.351,-121.798],"to":[8.308,-0.504],"ti":[-16.279,-3.153]},{"i":{"x":0.644,"y":0.868},"o":{"x":0.313,"y":0.533},"t":147,"s":[77.445,-90.483],"to":[8.399,1.627],"ti":[-5.505,4.402]},{"i":{"x":0.527,"y":0.75},"o":{"x":0.314,"y":0.088},"t":148,"s":[99.154,-97.941],"to":[5.543,-4.433],"ti":[0.453,-32.687]},{"i":{"x":0.774,"y":0.954},"o":{"x":0.456,"y":0.055},"t":150,"s":[99.144,-37.319],"to":[-0.451,32.54],"ti":[-2.014,-40.451]},{"t":151,"s":[31.678,93.92]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":144,"op":153,"st":-7,"ct":1,"bm":0},{"ddd":0,"ind":42,"ty":4,"nm":"Path out","parent":35,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,15,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":129,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-138.875,-82.875],[-163.575,53.332],[171.325,53.432],[-88.875,-67.875],[-127.011,-80.655],[-129.875,-81.375]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":1,"y":0},"t":137,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-138.875,-82.875],[-146.925,53.332],[172.225,53.432],[-88.875,-67.875],[-127.348,-80.543],[-129.875,-81.375]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":138,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-158,-92.5],[-122.45,53.657],[160.75,53.557],[-43,-67],[108.486,-116.001],[114,-118.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":142,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-158,-92.5],[-123.8,53.657],[162.1,53.557],[-43,-67],[112.319,-116.566],[114,-118.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":143,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-158,-92.5],[-56.5,-99.018],[-23.5,-86.643],[-43,-67],[112.311,-117.351],[114,-118.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":144,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-158,-92.5],[-20.5,-102.393],[12.5,-90.018],[-43,-67],[112.311,-117.351],[114,-118.5]],"c":true}]},{"t":145,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-158,-92.5],[56.45,-114.318],[89.45,-101.943],[-43,-67],[112.311,-117.351],[114,-118.5]],"c":true}]}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":129,"s":[{"i":[[0,0],[-20.339,-28.536],[0,0],[0,0],[0,0],[30.659,13.855],[0,0],[0,0],[0,0]],"o":[[0,0],[20.339,28.536],[0,0],[0,0],[0,0],[-30.659,-13.855],[0,0],[0,0],[0,0]],"v":[[-120,-78.5],[-42.389,28.614],[-67.271,58.879],[69.143,99.357],[103.428,53.357],[49.659,36.855],[-113.412,-76.275],[113.477,-117.314],[114,-118.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[{"i":[[0,0],[-22.404,-33.653],[0,0],[0,0],[0,0],[32.748,14.775],[0,0],[0,0],[0,0]],"o":[[0,0],[19.589,29.03],[0,0],[0,0],[0,0],[-31.353,-13.999],[0,0],[0,0],[0,0]],"v":[[-120,-78.5],[-35.828,29.998],[-63.92,56.964],[69.143,99.357],[103.428,53.357],[42.433,35.271],[-112.725,-76.846],[112.282,-116.731],[114,-118.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":142,"s":[{"i":[[0,0],[-26.161,-42.964],[0,0],[0,0],[0,0],[36.55,16.448],[0,0],[0,0],[0,0]],"o":[[0,0],[18.225,29.93],[0,0],[0,0],[0,0],[-32.618,-14.262],[0,0],[0,0],[0,0]],"v":[[-120,-78.5],[-23.889,32.514],[-57.821,53.479],[69.143,99.357],[103.428,53.357],[29.284,32.389],[-111.775,-77],[111.606,-116.591],[114,-118.5]],"c":true}]},{"t":143,"s":[{"i":[[0,0],[-26.161,-42.964],[0,0],[0,0],[0,0],[31.733,11.177],[0,0],[0,0],[0,0]],"o":[[0,0],[18.225,29.93],[0,0],[0,0],[0,0],[-33.659,-11.855],[0,0],[0,0],[0,0]],"v":[[-120,-78.5],[-27.339,32.964],[-19.571,80.929],[69.143,99.357],[103.428,53.357],[38.659,36.855],[-110.875,-76.325],[112.215,-116.96],[113.1,-118.669]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.22,0.933,1,0.291,0.184,0.949,0.694,0.583,0.149,0.965,0.388,0.791,0.149,0.965,0.388,1,0.149,0.965,0.388,0,0,0.003,0.5,0.017,1,0.471,1,0.925,1,0.963,0.5,1,0],"ix":9}},"s":{"a":0,"k":[55.241,55.123],"ix":5},"e":{"a":0,"k":[50.459,-127.123],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":129,"op":146,"st":13,"ct":1,"bm":0}],"markers":[{"tm":110,"cm":"4","dr":0},{"tm":118,"cm":"6","dr":0}]} \ No newline at end of file diff --git a/Tests/SnapshotConfiguration.swift b/Tests/SnapshotConfiguration.swift index 92d791a1fd..970e65177a 100644 --- a/Tests/SnapshotConfiguration.swift +++ b/Tests/SnapshotConfiguration.swift @@ -47,6 +47,7 @@ extension SnapshotConfiguration { "Nonanimating/FirstText": .precision(0.99), "Nonanimating/verifyLineHeight": .precision(0.99), "Nonanimating/blend_mode_test": .precision(0.99), + "Issues/issue_2066": .precision(0.9), /// Test cases for the `AnimationKeypath` / `AnyValueProvider` system "Nonanimating/keypathTest": .customValueProviders([ diff --git a/Tests/__Snapshots__/AutomaticEngineTests/testAutomaticEngineDetection.Issues-issue_2066.txt b/Tests/__Snapshots__/AutomaticEngineTests/testAutomaticEngineDetection.Issues-issue_2066.txt new file mode 100644 index 0000000000..4b816d7353 --- /dev/null +++ b/Tests/__Snapshots__/AutomaticEngineTests/testAutomaticEngineDetection.Issues-issue_2066.txt @@ -0,0 +1 @@ +Supports Core Animation engine \ No newline at end of file diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Boat_Loader-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Boat_Loader-50.png index e161568360..689c2646ea 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Boat_Loader-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Boat_Loader-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-25.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-25.png index 031a71d805..8633e32bf6 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-25.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-50.png index d424c29158..eaa6a2b09b 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-75.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-75.png index 06e8fabc19..59cff3adc1 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-75.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1732-75.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-0.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-0.png index 1097755740..4790e3bbd9 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-0.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-0.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-100.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-100.png index 1097755740..4790e3bbd9 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-100.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-100.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-25.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-25.png index df9f67f890..716c65d98c 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-25.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-50.png index 039a5511dc..edc608608d 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-75.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-75.png index 6f0132a804..1d2131c1b2 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-75.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_1882-75.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-0.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-0.png new file mode 100644 index 0000000000..8a4e4d8824 Binary files /dev/null and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-0.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-100.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-100.png new file mode 100644 index 0000000000..7931e8203a Binary files /dev/null and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-100.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-25.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-25.png new file mode 100644 index 0000000000..5f53329def Binary files /dev/null and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-50.png new file mode 100644 index 0000000000..abc03d38b2 Binary files /dev/null and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-75.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-75.png new file mode 100644 index 0000000000..e5075e48f5 Binary files /dev/null and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.Issues-issue_2066-75.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-0.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-0.png index 921d14c6bf..427c371096 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-0.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-0.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-100.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-100.png index 50ed7f848e..42756ecebf 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-100.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-100.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-25.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-25.png index cf52018c51..e2631ba5fe 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-25.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-50.png index 34cb3ad61d..a74e57d7b9 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-75.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-75.png index 4df71b1f11..bdc85b95a2 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-75.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-gradient_shapes-75.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-growth-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-growth-50.png index 0b5c9d2030..6199c3c6d1 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-growth-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-growth-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-growth-75.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-growth-75.png index 5253d318c5..55bf390e54 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-growth-75.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.LottieFiles-growth-75.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-25.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-25.png index 9509691f3c..fba7d2ddbf 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-25.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-50.png index 92184deabd..5a3be78259 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-75.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-75.png index 45a49e4069..e6b3cb17a7 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-75.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-A-75.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-25.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-25.png index ac5bfc08b4..1123cfc701 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-25.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-50.png index d0d85fdd79..f30a7366bd 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-75.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-75.png index 090dcd177f..d2aaef4391 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-75.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Apostrophe-75.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Comma-25.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Comma-25.png index bbaae54977..35753bea62 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Comma-25.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Comma-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Comma-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Comma-50.png index 756f8a09ca..82476d8297 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Comma-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Comma-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-E-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-E-50.png index 1af983b6ef..a3428ace0c 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-E-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-E-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-E-75.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-E-75.png index 52d1395496..2d1dd20188 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-E-75.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-E-75.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-M-25.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-M-25.png index de2848c949..dab95aef03 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-M-25.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-M-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-U-25.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-U-25.png index 50a69d3b20..955ddc289d 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-U-25.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-U-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-U-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-U-50.png index 4b88234512..3967aeca7d 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-U-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-U-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-25.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-25.png index d106278cae..1fdd1679da 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-25.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-50.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-50.png index 400dbd577a..d5bb9e1026 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-50.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-75.png b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-75.png index 038bfe33f9..d5270a1af3 100644 Binary files a/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-75.png and b/Tests/__Snapshots__/SnapshotTests/testCoreAnimationRenderingEngine.TypeFace-Z-75.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-0.png b/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-0.png new file mode 100644 index 0000000000..b633469929 Binary files /dev/null and b/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-0.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-100.png b/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-100.png new file mode 100644 index 0000000000..f112c1711d Binary files /dev/null and b/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-100.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-25.png b/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-25.png new file mode 100644 index 0000000000..cac4bc6e93 Binary files /dev/null and b/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-25.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-50.png b/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-50.png new file mode 100644 index 0000000000..fedb7c7c0e Binary files /dev/null and b/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-50.png differ diff --git a/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-75.png b/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-75.png new file mode 100644 index 0000000000..5d2479aa87 Binary files /dev/null and b/Tests/__Snapshots__/SnapshotTests/testMainThreadRenderingEngine.Issues-issue_2066-75.png differ