From fa99e394abf70694d7ede7a45827d31db24317d2 Mon Sep 17 00:00:00 2001 From: MomentQYC <62551256+MomentQYC@users.noreply.github.com> Date: Mon, 27 Jun 2022 17:42:19 +0800 Subject: [PATCH] Delete animation404.js --- js/other/animation404.js | 8535 -------------------------------------- 1 file changed, 8535 deletions(-) delete mode 100644 js/other/animation404.js diff --git a/js/other/animation404.js b/js/other/animation404.js deleted file mode 100644 index baeb7fb..0000000 --- a/js/other/animation404.js +++ /dev/null @@ -1,8535 +0,0 @@ -//This is .js player -(function (root, factory) { if(typeof define === "function" && define.amd) { define( factory); } else if(typeof module === "object" && module.exports) { module.exports = factory(); } else { root.bodymovin = factory(); } }(window, function() {var svgNS = "http://www.w3.org/2000/svg"; -var subframeEnabled = true; -var expressionsPlugin; -var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent); -var cachedColors = {}; -var bm_rounder = Math.round; -var bm_rnd; -var bm_pow = Math.pow; -var bm_sqrt = Math.sqrt; -var bm_abs = Math.abs; -var bm_floor = Math.floor; -var bm_max = Math.max; -var bm_min = Math.min; -var blitter = 10; - -var BMMath = {}; -(function(){ - var propertyNames = Object.getOwnPropertyNames(Math); - var i, len = propertyNames.length; - for(i=0;i 0; --i) result += chars[Math.round(Math.random() * (chars.length - 1))]; - return result; -} - -function HSVtoRGB(h, s, v) { - var r, g, b, i, f, p, q, t; - if (arguments.length === 1) { - s = h.s, v = h.v, h = h.h; - } - i = Math.floor(h * 6); - f = h * 6 - i; - p = v * (1 - s); - q = v * (1 - f * s); - t = v * (1 - (1 - f) * s); - switch (i % 6) { - case 0: r = v, g = t, b = p; break; - case 1: r = q, g = v, b = p; break; - case 2: r = p, g = v, b = t; break; - case 3: r = p, g = q, b = v; break; - case 4: r = t, g = p, b = v; break; - case 5: r = v, g = p, b = q; break; - } - return [ r, - g, - b ]; -} - -function RGBtoHSV(r, g, b) { - if (arguments.length === 1) { - g = r.g, b = r.b, r = r.r; - } - var max = Math.max(r, g, b), min = Math.min(r, g, b), - d = max - min, - h, - s = (max === 0 ? 0 : d / max), - v = max / 255; - - switch (max) { - case min: h = 0; break; - case r: h = (g - b) + d * (g < b ? 6: 0); h /= 6 * d; break; - case g: h = (b - r) + d * 2; h /= 6 * d; break; - case b: h = (r - g) + d * 4; h /= 6 * d; break; - } - - return [ - h, - s, - v - ]; -} - -function addSaturationToRGB(color,offset){ - var hsv = RGBtoHSV(color[0]*255,color[1]*255,color[2]*255); - hsv[1] += offset; - if (hsv[1] > 1) { - hsv[1] = 1; - } - else if (hsv[1] <= 0) { - hsv[1] = 0; - } - return HSVtoRGB(hsv[0],hsv[1],hsv[2]); -} - -function addBrightnessToRGB(color,offset){ - var hsv = RGBtoHSV(color[0]*255,color[1]*255,color[2]*255); - hsv[2] += offset; - if (hsv[2] > 1) { - hsv[2] = 1; - } - else if (hsv[2] < 0) { - hsv[2] = 0; - } - return HSVtoRGB(hsv[0],hsv[1],hsv[2]); -} - -function addHueToRGB(color,offset) { - var hsv = RGBtoHSV(color[0]*255,color[1]*255,color[2]*255); - hsv[0] += offset/360; - if (hsv[0] > 1) { - hsv[0] -= 1; - } - else if (hsv[0] < 0) { - hsv[0] += 1; - } - return HSVtoRGB(hsv[0],hsv[1],hsv[2]); -} - -function componentToHex(c) { - var hex = c.toString(16); - return hex.length == 1 ? '0' + hex : hex; -} - -var rgbToHex = (function(){ - var colorMap = []; - var i; - var hex; - for(i=0;i<256;i+=1){ - hex = i.toString(16); - colorMap[i] = hex.length == 1 ? '0' + hex : hex; - } - - return function(r, g, b) { - if(r<0){ - r = 0; - } - if(g<0){ - g = 0; - } - if(b<0){ - b = 0; - } - return '#' + colorMap[r] + colorMap[g] + colorMap[b]; - }; -}()); - -function fillToRgba(hex,alpha){ - if(!cachedColors[hex]){ - var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex); - cachedColors[hex] = parseInt(result[1], 16)+','+parseInt(result[2], 16)+','+parseInt(result[3], 16); - } - return 'rgba('+cachedColors[hex]+','+alpha+')'; -} - -var fillColorToString = (function(){ - - var colorMap = []; - return function(colorArr,alpha){ - if(alpha !== undefined){ - colorArr[3] = alpha; - } - if(!colorMap[colorArr[0]]){ - colorMap[colorArr[0]] = {}; - } - if(!colorMap[colorArr[0]][colorArr[1]]){ - colorMap[colorArr[0]][colorArr[1]] = {}; - } - if(!colorMap[colorArr[0]][colorArr[1]][colorArr[2]]){ - colorMap[colorArr[0]][colorArr[1]][colorArr[2]] = {}; - } - if(!colorMap[colorArr[0]][colorArr[1]][colorArr[2]][colorArr[3]]){ - colorMap[colorArr[0]][colorArr[1]][colorArr[2]][colorArr[3]] = 'rgba(' + colorArr.join(',')+')'; - } - return colorMap[colorArr[0]][colorArr[1]][colorArr[2]][colorArr[3]]; - }; -}()); - -function RenderedFrame(tr,o) { - this.tr = tr; - this.o = o; -} - -function LetterProps(o,sw,sc,fc,m,p){ - this.o = o; - this.sw = sw; - this.sc = sc; - this.fc = fc; - this.m = m; - this.props = p; -} - -function iterateDynamicProperties(num){ - var i, len = this.dynamicProperties; - for(i=0;i= overflow) { // To avoid rounding up, before adding - n /= 2; // last byte, shift everything - d /= 2; // right using integer math until - x >>>= 1; // we have exactly the desired bits. - } - return (n + x) / d; // Form the number within [0, 1). - }; - - prng.int32 = function() { return arc4.g(4) | 0; } - prng.quick = function() { return arc4.g(4) / 0x100000000; } - prng.double = prng; - - // Mix the randomness into accumulated entropy. - mixkey(tostring(arc4.S), pool); - - // Calling convention: what to return as a function of prng, seed, is_math. - return (options.pass || callback || - function(prng, seed, is_math_call, state) { - if (state) { - // Load the arc4 state from the given state if it has an S array. - if (state.S) { copy(state, arc4); } - // Only provide the .state method if requested via options.state. - prng.state = function() { return copy(arc4, {}); } - } - - // If called as a method of Math (Math.seedrandom()), mutate - // Math.random because that is how seedrandom.js has worked since v1.0. - if (is_math_call) { math[rngname] = prng; return seed; } - - // Otherwise, it is a newer calling convention, so return the - // prng directly. - else return prng; - })( - prng, - shortseed, - 'global' in options ? options.global : (this == math), - options.state); - } - math['seed' + rngname] = seedrandom; - -// -// ARC4 -// -// An ARC4 implementation. The constructor takes a key in the form of -// an array of at most (width) integers that should be 0 <= x < (width). -// -// The g(count) method returns a pseudorandom integer that concatenates -// the next (count) outputs from ARC4. Its return value is a number x -// that is in the range 0 <= x < (width ^ count). -// - function ARC4(key) { - var t, keylen = key.length, - me = this, i = 0, j = me.i = me.j = 0, s = me.S = []; - - // The empty key [] is treated as [0]. - if (!keylen) { key = [keylen++]; } - - // Set up S using the standard key scheduling algorithm. - while (i < width) { - s[i] = i++; - } - for (i = 0; i < width; i++) { - s[i] = s[j = mask & (j + key[i % keylen] + (t = s[i]))]; - s[j] = t; - } - - // The "g" method returns the next (count) outputs as one number. - (me.g = function(count) { - // Using instance members instead of closure state nearly doubles speed. - var t, r = 0, - i = me.i, j = me.j, s = me.S; - while (count--) { - t = s[i = mask & (i + 1)]; - r = r * width + s[mask & ((s[i] = s[j = mask & (j + t)]) + (s[j] = t))]; - } - me.i = i; me.j = j; - return r; - // For robust unpredictability, the function call below automatically - // discards an initial batch of values. This is called RC4-drop[256]. - // See http://google.com/search?q=rsa+fluhrer+response&btnI - })(width); - } - -// -// copy() -// Copies internal state of ARC4 to or from a plain object. -// - function copy(f, t) { - t.i = f.i; - t.j = f.j; - t.S = f.S.slice(); - return t; - }; - -// -// flatten() -// Converts an object tree to nested arrays of strings. -// - function flatten(obj, depth) { - var result = [], typ = (typeof obj), prop; - if (depth && typ == 'object') { - for (prop in obj) { - try { result.push(flatten(obj[prop], depth - 1)); } catch (e) {} - } - } - return (result.length ? result : typ == 'string' ? obj : obj + '\0'); - } - -// -// mixkey() -// Mixes a string seed into a key that is an array of integers, and -// returns a shortened string seed that is equivalent to the result key. -// - function mixkey(seed, key) { - var stringseed = seed + '', smear, j = 0; - while (j < stringseed.length) { - key[mask & j] = - mask & ((smear ^= key[mask & j] * 19) + stringseed.charCodeAt(j++)); - } - return tostring(key); - } - -// -// autoseed() -// Returns an object for autoseeding, using window.crypto and Node crypto -// module if available. -// - function autoseed() { - try { - if (nodecrypto) { return tostring(nodecrypto.randomBytes(width)); } - var out = new Uint8Array(width); - (global.crypto || global.msCrypto).getRandomValues(out); - return tostring(out); - } catch (e) { - var browser = global.navigator, - plugins = browser && browser.plugins; - return [+new Date, global, plugins, global.screen, tostring(pool)]; - } - } - -// -// tostring() -// Converts an array of charcodes to a string -// - function tostring(a) { - return String.fromCharCode.apply(0, a); - } - -// -// When seedrandom.js is loaded, we immediately mix a few bits -// from the built-in RNG into the entropy pool. Because we do -// not want to interfere with deterministic PRNG state later, -// seedrandom will not call math.random on its own again after -// initialization. -// - mixkey(math.random(), pool); - -// -// Nodejs and AMD support: export the implementation as a module using -// either convention. -// - -// End anonymous scope, and pass initial values. -})( - [], // pool: entropy pool starts empty - BMMath // math: package containing random, pow, and seedrandom -); -var BezierFactory = (function(){ - /** - * BezierEasing - use bezier curve for transition easing function - * by Gaëtan Renaudeau 2014 - 2015 – MIT License - * - * Credits: is based on Firefox's nsSMILKeySpline.cpp - * Usage: - * var spline = BezierEasing([ 0.25, 0.1, 0.25, 1.0 ]) - * spline.get(x) => returns the easing value | x must be in [0, 1] range - * - */ - - var ob = {}; - ob.getBezierEasing = getBezierEasing; - var beziers = {}; - - function getBezierEasing(a,b,c,d,nm){ - var str = nm || ('bez_' + a+'_'+b+'_'+c+'_'+d).replace(/\./g, 'p'); - if(beziers[str]){ - return beziers[str]; - } - var bezEasing = new BezierEasing([a,b,c,d]); - beziers[str] = bezEasing; - return bezEasing; - } - -// These values are established by empiricism with tests (tradeoff: performance VS precision) - var NEWTON_ITERATIONS = 4; - var NEWTON_MIN_SLOPE = 0.001; - var SUBDIVISION_PRECISION = 0.0000001; - var SUBDIVISION_MAX_ITERATIONS = 10; - - var kSplineTableSize = 11; - var kSampleStepSize = 1.0 / (kSplineTableSize - 1.0); - - var float32ArraySupported = typeof Float32Array === "function"; - - function A (aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; } - function B (aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1; } - function C (aA1) { return 3.0 * aA1; } - -// Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2. - function calcBezier (aT, aA1, aA2) { - return ((A(aA1, aA2)*aT + B(aA1, aA2))*aT + C(aA1))*aT; - } - -// Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2. - function getSlope (aT, aA1, aA2) { - return 3.0 * A(aA1, aA2)*aT*aT + 2.0 * B(aA1, aA2) * aT + C(aA1); - } - - function binarySubdivide (aX, aA, aB, mX1, mX2) { - var currentX, currentT, i = 0; - do { - currentT = aA + (aB - aA) / 2.0; - currentX = calcBezier(currentT, mX1, mX2) - aX; - if (currentX > 0.0) { - aB = currentT; - } else { - aA = currentT; - } - } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS); - return currentT; - } - - function newtonRaphsonIterate (aX, aGuessT, mX1, mX2) { - for (var i = 0; i < NEWTON_ITERATIONS; ++i) { - var currentSlope = getSlope(aGuessT, mX1, mX2); - if (currentSlope === 0.0) return aGuessT; - var currentX = calcBezier(aGuessT, mX1, mX2) - aX; - aGuessT -= currentX / currentSlope; - } - return aGuessT; - } - - /** - * points is an array of [ mX1, mY1, mX2, mY2 ] - */ - function BezierEasing (points) { - this._p = points; - this._mSampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize); - this._precomputed = false; - - this.get = this.get.bind(this); - } - - BezierEasing.prototype = { - - get: function (x) { - var mX1 = this._p[0], - mY1 = this._p[1], - mX2 = this._p[2], - mY2 = this._p[3]; - if (!this._precomputed) this._precompute(); - if (mX1 === mY1 && mX2 === mY2) return x; // linear - // Because JavaScript number are imprecise, we should guarantee the extremes are right. - if (x === 0) return 0; - if (x === 1) return 1; - return calcBezier(this._getTForX(x), mY1, mY2); - }, - - // Private part - - _precompute: function () { - var mX1 = this._p[0], - mY1 = this._p[1], - mX2 = this._p[2], - mY2 = this._p[3]; - this._precomputed = true; - if (mX1 !== mY1 || mX2 !== mY2) - this._calcSampleValues(); - }, - - _calcSampleValues: function () { - var mX1 = this._p[0], - mX2 = this._p[2]; - for (var i = 0; i < kSplineTableSize; ++i) { - this._mSampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2); - } - }, - - /** - * getTForX chose the fastest heuristic to determine the percentage value precisely from a given X projection. - */ - _getTForX: function (aX) { - var mX1 = this._p[0], - mX2 = this._p[2], - mSampleValues = this._mSampleValues; - - var intervalStart = 0.0; - var currentSample = 1; - var lastSample = kSplineTableSize - 1; - - for (; currentSample !== lastSample && mSampleValues[currentSample] <= aX; ++currentSample) { - intervalStart += kSampleStepSize; - } - --currentSample; - - // Interpolate to provide an initial guess for t - var dist = (aX - mSampleValues[currentSample]) / (mSampleValues[currentSample+1] - mSampleValues[currentSample]); - var guessForT = intervalStart + dist * kSampleStepSize; - - var initialSlope = getSlope(guessForT, mX1, mX2); - if (initialSlope >= NEWTON_MIN_SLOPE) { - return newtonRaphsonIterate(aX, guessForT, mX1, mX2); - } else if (initialSlope === 0.0) { - return guessForT; - } else { - return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize, mX1, mX2); - } - } - }; - - return ob; - -}()) - - -function matrixManagerFunction(){ - - var mat = new Matrix(); - - var returnMatrix2D = function(rX, scaleX, scaleY, tX, tY){ - return mat.reset().translate(tX,tY).rotate(rX).scale(scaleX,scaleY).toCSS(); - }; - - var getMatrix = function(animData){ - return returnMatrix2D(animData.tr.r[2],animData.tr.s[0],animData.tr.s[1],animData.tr.p[0],animData.tr.p[1]); - }; - - return { - getMatrix : getMatrix - }; - -} -var MatrixManager = matrixManagerFunction; -(function () { - var lastTime = 0; - var vendors = ['ms', 'moz', 'webkit', 'o']; - for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { - window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame']; - window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'CancelRequestAnimationFrame']; - } - if(!window.requestAnimationFrame) - window.requestAnimationFrame = function (callback, element) { - var currTime = new Date().getTime(); - var timeToCall = Math.max(0, 16 - (currTime - lastTime)); - var id = window.setTimeout(function () { - callback(currTime + timeToCall); - }, - timeToCall); - lastTime = currTime + timeToCall; - return id; - }; - if(!window.cancelAnimationFrame) - window.cancelAnimationFrame = function (id) { - clearTimeout(id); - }; -}()); -function createElement(parent,child,params){ - if(child){ - child.prototype = Object.create(parent.prototype); - child.prototype.constructor = child; - child.prototype._parent = parent.prototype; - }else{ - var instance = Object.create(parent.prototype,params); - var getType = {}; - if(instance && getType.toString.call(instance.init) === '[object Function]'){ - instance.init(); - } - return instance; - } -} - -function extendPrototype(source,destination){ - for (var attr in source.prototype) { - if (source.prototype.hasOwnProperty(attr)) destination.prototype[attr] = source.prototype[attr]; - } -} -function bezFunction(){ - - var easingFunctions = []; - var math = Math; - - function pointOnLine2D(x1,y1, x2,y2, x3,y3){ - var det1 = (x1*y2) + (y1*x3) + (x2*y3) - (x3*y2) - (y3*x1) - (x2*y1); - return det1 > -0.0001 && det1 < 0.0001; - } - - function pointOnLine3D(x1,y1,z1, x2,y2,z2, x3,y3,z3){ - return pointOnLine2D(x1,y1, x2,y2, x3,y3) && pointOnLine2D(x1,z1, x2,z2, x3,z3); - } - - /*function getEasingCurve(aa,bb,cc,dd,encodedFuncName) { - if(!encodedFuncName){ - encodedFuncName = ('bez_' + aa+'_'+bb+'_'+cc+'_'+dd).replace(/\./g, 'p'); - } - if(easingFunctions[encodedFuncName]){ - return easingFunctions[encodedFuncName]; - } - var A0, B0, C0; - var A1, B1, C1; - easingFunctions[encodedFuncName] = function(tt) { - var x = tt; - var i = 0, z; - while (++i < 20) { - C0 = 3 * aa; - B0 = 3 * (cc - aa) - C0; - A0 = 1 - C0 - B0; - z = (x * (C0 + x * (B0 + x * A0))) - tt; - if (bm_abs(z) < 1e-3) break; - x -= z / (C0 + x * (2 * B0 + 3 * A0 * x)); - } - C1 = 3 * bb; - B1 = 3 * (dd - bb) - C1; - A1 = 1 - C1 - B1; - var polyB = x * (C1 + x * (B1 + x * A1)); - //return c * polyB + b; - return polyB; - }; - return easingFunctions[encodedFuncName]; - }*/ - var getBezierLength = (function(){ - - function Segment(l,p){ - this.l = l; - this.p = p; - } - - return function(pt1,pt2,pt3,pt4){ - var curveSegments = defaultCurveSegments; - var k; - var i, len; - var ptCoord,perc,addedLength = 0; - var ptDistance; - var point = [],lastPoint = []; - var lengthData = { - addedLength: 0, - segments: [] - }; - len = pt3.length; - for(k=0;k lengthPos ? -1 : 1; - var flag = true; - while(flag){ - if(segments[initPos].l <= lengthPos && segments[initPos+1].l > lengthPos){ - lPerc = (lengthPos - segments[initPos].l)/(segments[initPos+1].l-segments[initPos].l); - flag = false; - }else{ - initPos += dir; - } - if(initPos < 0 || initPos >= len - 1){ - flag = false; - } - } - return segments[initPos].p + (segments[initPos+1].p - segments[initPos].p)*lPerc; - } - } - - function SegmentPoints(){ - this.pt1 = new Array(2); - this.pt2 = new Array(2); - this.pt3 = new Array(2); - this.pt4 = new Array(2); - } - - function getNewSegment(pt1,pt2,pt3,pt4,startPerc,endPerc, bezierData){ - - var pts = new SegmentPoints(); - startPerc = startPerc < 0 ? 0 : startPerc > 1 ? 1 : startPerc; - var t0 = getDistancePerc(startPerc,bezierData); - endPerc = endPerc > 1 ? 1 : endPerc; - var t1 = getDistancePerc(endPerc,bezierData); - var i, len = pt1.length; - var u0 = 1 - t0; - var u1 = 1 - t1; - //Math.round(num * 100) / 100 - for(i=0;i=0;i-=1){ - if(arr[i].ty == 'sh'){ - if(arr[i].ks.k.i){ - convertPathsToAbsoluteValues(arr[i].ks.k); - }else{ - jLen = arr[i].ks.k.length; - for(j=0;janimVersion[0]){ - return true; - } else if(animVersion[0] > minimum[0]){ - return false; - } - if(minimum[1]>animVersion[1]){ - return true; - } else if(animVersion[1] > minimum[1]){ - return false; - } - if(minimum[2]>animVersion[2]){ - return true; - } else if(animVersion[2] > minimum[2]){ - return false; - } - } - - var checkText = (function(){ - var minimumVersion = [4,4,14]; - - function updateTextLayer(textLayer){ - var documentData = textLayer.t.d; - textLayer.t.d = { - k: [ - { - s:documentData, - t:0 - } - ] - } - } - - function iterateLayers(layers){ - var i, len = layers.length; - for(i=0;i=0;i-=1){ - if(arr[i].ty == 'sh'){ - if(arr[i].ks.k.i){ - arr[i].ks.k.c = arr[i].closed; - }else{ - jLen = arr[i].ks.k.length; - for(j=0;j=0;i-=1){ - if(arr[i].ty == 'sh'){ - if(arr[i].ks.k.i){ - blitPaths(arr[i].ks.k); - }else{ - jLen = arr[i].ks.k.length; - for(j=0;j=0){ - val[i] /= blitter; - i-=1; - } - } - return val; - } - function blitProperty(data){ - if(!data.k.length){ - data.k = blitValue(data.k); - }else if(typeof(data.k[0]) === 'number'){ - data.k = blitValue(data.k); - } else { - var i, len = data.k.length; - for(i=0;i boxWidth){ - if(lastSpaceIndex === -1){ - //i -= 1; - documentData.t = documentData.t.substr(0,i) + "\r" + documentData.t.substr(i); - len += 1; - } else { - i = lastSpaceIndex; - documentData.t = documentData.t.substr(0,i) + "\r" + documentData.t.substr(i+1); - } - lastSpaceIndex = -1; - lineWidth = 0; - }else { - lineWidth += cLength; - } - } - len = documentData.t.length; - } - lineWidth = 0; - cLength = 0; - for (i = 0;i < len ;i += 1) { - newLineFlag = false; - if(documentData.t.charAt(i) === ' '){ - val = '\u00A0'; - }else if(documentData.t.charCodeAt(i) === 13){ - lineWidths.push(lineWidth); - maxLineWidth = lineWidth > maxLineWidth ? lineWidth : maxLineWidth; - lineWidth = 0; - val = ''; - newLineFlag = true; - currentLine += 1; - }else{ - val = documentData.t.charAt(i); - } - if(fontManager.chars){ - charData = fontManager.getCharData(documentData.t.charAt(i), fontData.fStyle, fontManager.getFontByName(documentData.f).fFamily); - cLength = newLineFlag ? 0 : charData.w*documentData.s/100; - }else{ - //var charWidth = fontManager.measureText(val, documentData.f, documentData.s); - //tCanvasHelper.font = documentData.s + 'px '+ fontManager.getFontByName(documentData.f).fFamily; - cLength = fontManager.measureText(val, documentData.f, documentData.s); - } - - // - lineWidth += cLength; - letters.push({l:cLength,an:cLength,add:currentSize,n:newLineFlag, anIndexes:[], val: val, line: currentLine}); - if(anchorGrouping == 2){ - currentSize += cLength; - if(val == '' || val == '\u00A0' || i == len - 1){ - if(val == '' || val == '\u00A0'){ - currentSize -= cLength; - } - while(currentPos<=i){ - letters[currentPos].an = currentSize; - letters[currentPos].ind = index; - letters[currentPos].extra = cLength; - currentPos += 1; - } - index += 1; - currentSize = 0; - } - }else if(anchorGrouping == 3){ - currentSize += cLength; - if(val == '' || i == len - 1){ - if(val == ''){ - currentSize -= cLength; - } - while(currentPos<=i){ - letters[currentPos].an = currentSize; - letters[currentPos].ind = index; - letters[currentPos].extra = cLength; - currentPos += 1; - } - currentSize = 0; - index += 1; - } - }else{ - letters[index].ind = index; - letters[index].extra = 0; - index += 1; - } - } - documentData.l = letters; - maxLineWidth = lineWidth > maxLineWidth ? lineWidth : maxLineWidth; - lineWidths.push(lineWidth); - if(documentData.sz){ - documentData.boxWidth = documentData.sz[0]; - documentData.justifyOffset = 0; - }else{ - documentData.boxWidth = maxLineWidth; - switch(documentData.j){ - case 1: - documentData.justifyOffset = - documentData.boxWidth; - break; - case 2: - documentData.justifyOffset = - documentData.boxWidth/2; - break; - default: - documentData.justifyOffset = 0; - } - } - documentData.lineWidths = lineWidths; - - var animators = data.t.a; - jLen = animators.length; - var based, ind, indexes = []; - for(j=0;j - var l = document.createElement('link'); - l.type = "text/css"; - l.rel = "stylesheet"; - l.href = fontArr[i].fPath; - defs.appendChild(l); - } else if(fontArr[i].fOrigin === 't'){ - // - var sc = document.createElement('script'); - sc.setAttribute('src',fontArr[i].fPath); - defs.appendChild(sc); - } - fontArr[i].helper = createHelper(defs,fontArr[i]); - this.fonts.push(fontArr[i]); - } - checkLoadedFonts.bind(this)(); - } - - function addChars(chars){ - if(!chars){ - return; - } - if(!this.chars){ - this.chars = []; - } - var i, len = chars.length; - var j, jLen = this.chars.length, found; - for(i=0;i= this.keyframes[this.keyframes.length- 1].t-this.offsetTime && frameNum >= this.keyframes[this.keyframes.length- 1].t-this.offsetTime) || (this.lastFrame < this.keyframes[0].t-this.offsetTime && frameNum < this.keyframes[0].t-this.offsetTime))))){ - var i = this.lastFrame < frameNum ? this._lastIndex : 0; - var len = this.keyframes.length- 1,flag = true; - var keyData, nextKeyData; - - while(flag){ - keyData = this.keyframes[i]; - nextKeyData = this.keyframes[i+1]; - if(i == len-1 && frameNum >= nextKeyData.t - this.offsetTime){ - if(keyData.h){ - keyData = nextKeyData; - } - break; - } - if((nextKeyData.t - this.offsetTime) > frameNum){ - break; - } - if(i < len - 1){ - i += 1; - }else{ - flag = false; - } - } - - this._lastIndex = i; - - var k, kLen,perc,jLen, j, fnc; - if(keyData.to){ - - if(!keyData.bezierData){ - bez.buildBezierData(keyData); - } - var bezierData = keyData.bezierData; - if(frameNum >= nextKeyData.t-this.offsetTime || frameNum < keyData.t-this.offsetTime){ - var ind = frameNum >= nextKeyData.t-this.offsetTime ? bezierData.points.length - 1 : 0; - kLen = bezierData.points[ind].point.length; - for(k = 0; k < kLen; k += 1){ - this.pv[k] = bezierData.points[ind].point[k]; - this.v[k] = this.mult ? this.pv[k]*this.mult : this.pv[k]; - if(this.lastPValue[k] !== this.pv[k]) { - this.mdf = true; - this.lastPValue[k] = this.pv[k]; - } - } - this._lastBezierData = null; - }else{ - if(keyData.__fnct){ - fnc = keyData.__fnct; - }else{ - fnc = BezierFactory.getBezierEasing(keyData.o.x,keyData.o.y,keyData.i.x,keyData.i.y,keyData.n).get; - keyData.__fnct = fnc; - } - perc = fnc((frameNum-(keyData.t-this.offsetTime))/((nextKeyData.t-this.offsetTime)-(keyData.t-this.offsetTime))); - var distanceInLine = bezierData.segmentLength*perc; - - var segmentPerc; - var addedLength = (this.lastFrame < frameNum && this._lastBezierData === bezierData) ? this._lastAddedLength : 0; - j = (this.lastFrame < frameNum && this._lastBezierData === bezierData) ? this._lastPoint : 0; - flag = true; - jLen = bezierData.points.length; - while(flag){ - addedLength +=bezierData.points[j].partialLength; - if(distanceInLine === 0 || perc === 0 || j == bezierData.points.length - 1){ - kLen = bezierData.points[j].point.length; - for(k=0;k= addedLength && distanceInLine < addedLength + bezierData.points[j+1].partialLength){ - segmentPerc = (distanceInLine-addedLength)/(bezierData.points[j+1].partialLength); - kLen = bezierData.points[j].point.length; - for(k=0;k= nextKeyData.t-this.offsetTime){ - perc = 1; - }else if(frameNum < keyData.t-this.offsetTime){ - perc = 0; - }else{ - if(keyData.o.x instanceof Array){ - if(!keyData.__fnct){ - keyData.__fnct = []; - } - if (!keyData.__fnct[i]) { - outX = keyData.o.x[i] || keyData.o.x[0]; - outY = keyData.o.y[i] || keyData.o.y[0]; - inX = keyData.i.x[i] || keyData.i.x[0]; - inY = keyData.i.y[i] || keyData.i.y[0]; - fnc = BezierFactory.getBezierEasing(outX,outY,inX,inY).get; - keyData.__fnct[i] = fnc; - } else { - fnc = keyData.__fnct[i]; - } - } else { - if (!keyData.__fnct) { - outX = keyData.o.x; - outY = keyData.o.y; - inX = keyData.i.x; - inY = keyData.i.y; - fnc = BezierFactory.getBezierEasing(outX,outY,inX,inY).get; - keyData.__fnct = fnc; - } else{ - fnc = keyData.__fnct; - } - } - perc = fnc((frameNum-(keyData.t-this.offsetTime))/((nextKeyData.t-this.offsetTime)-(keyData.t-this.offsetTime))); - } - } - if(this.sh && keyData.h !== 1){ - var initP = keyData.s[i]; - var endP = keyData.e[i]; - if(initP-endP < -180){ - initP += 360; - } else if(initP-endP > 180){ - initP -= 360; - } - keyValue = initP+(endP-initP)*perc; - } else { - keyValue = keyData.h === 1 ? keyData.s[i] : keyData.s[i]+(keyData.e[i]-keyData.s[i])*perc; - } - if(len === 1){ - this.v = this.mult ? keyValue*this.mult : keyValue; - this.pv = keyValue; - if(this.lastPValue != this.pv){ - this.mdf = true; - this.lastPValue = this.pv; - } - }else{ - this.v[i] = this.mult ? keyValue*this.mult : keyValue; - this.pv[i] = keyValue; - if(this.lastPValue[i] !== this.pv[i]){ - this.mdf = true; - this.lastPValue[i] = this.pv[i]; - } - } - } - } - } - this.lastFrame = frameNum; - this.frameId = this.elem.globalData.frameId; - } - - function getNoValue(){} - - function ValueProperty(elem,data, mult){ - this.mult = mult; - this.v = mult ? data.k * mult : data.k; - this.pv = data.k; - this.mdf = false; - this.comp = elem.comp; - this.k = false; - this.kf = false; - this.vel = 0; - this.getValue = getNoValue; - } - - function MultiDimensionalProperty(elem,data, mult){ - this.mult = mult; - this.data = data; - this.mdf = false; - this.comp = elem.comp; - this.k = false; - this.kf = false; - this.frameId = -1; - this.v = Array.apply(null, {length:data.k.length}); - this.pv = Array.apply(null, {length:data.k.length}); - this.lastValue = Array.apply(null, {length:data.k.length}); - var arr = Array.apply(null, {length:data.k.length}); - this.vel = arr.map(function () { return 0 }); - var i, len = data.k.length; - for(i = 0;i= this.p.keyframes[this.p.keyframes.length - 1].t) { - v1 = this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length - 1].t / this.elem.globalData.frameRate), 0); - v2 = this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length - 1].t - 0.01) / this.elem.globalData.frameRate, 0); - } else { - v1 = this.p.pv; - v2 = this.p.getValueAtTime((this.p.lastFrame+this.p.offsetTime - 0.01) / this.elem.globalData.frameRate, this.p.offsetTime); - } - this.v.rotate(-Math.atan2(v1[1] - v2[1], v1[0] - v2[0])); - } - if(this.data.p.s){ - if(this.data.p.z) { - this.v.translate(this.px.v, this.py.v, -this.pz.v); - } else { - this.v.translate(this.px.v, this.py.v, 0); - } - }else{ - this.v.translate(this.p.v[0],this.p.v[1],-this.p.v[2]); - } - } - //console.log(this.v.to2dCSS()) - this.frameId = this.elem.globalData.frameId; - } - - function setInverted(){ - this.inverted = true; - this.iv = new Matrix(); - if(!this.k){ - if(this.data.p.s){ - this.iv.translate(this.px.v,this.py.v,-this.pz.v); - }else{ - this.iv.translate(this.p.v[0],this.p.v[1],-this.p.v[2]); - } - if(this.r){ - this.iv.rotate(-this.r.v); - }else{ - this.iv.rotateX(-this.rx.v).rotateY(-this.ry.v).rotateZ(this.rz.v); - } - if(this.s){ - this.iv.scale(this.s.v[0],this.s.v[1],1); - } - if(this.a){ - this.iv.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]); - } - } - } - - function autoOrient(){ - // - //var prevP = this.getValueAtTime(); - } - - return function TransformProperty(elem,data,arr){ - this.elem = elem; - this.frameId = -1; - this.type = 'transform'; - this.dynamicProperties = []; - this.mdf = false; - this.data = data; - this.getValue = processKeys; - this.applyToMatrix = applyToMatrix; - this.setInverted = setInverted; - this.autoOrient = autoOrient; - this.v = new Matrix(); - if(data.p.s){ - this.px = PropertyFactory.getProp(elem,data.p.x,0,0,this.dynamicProperties); - this.py = PropertyFactory.getProp(elem,data.p.y,0,0,this.dynamicProperties); - if(data.p.z){ - this.pz = PropertyFactory.getProp(elem,data.p.z,0,0,this.dynamicProperties); - } - }else{ - this.p = PropertyFactory.getProp(elem,data.p,1,0,this.dynamicProperties); - } - if(data.r) { - this.r = PropertyFactory.getProp(elem, data.r, 0, degToRads, this.dynamicProperties); - } else if(data.rx) { - this.rx = PropertyFactory.getProp(elem, data.rx, 0, degToRads, this.dynamicProperties); - this.ry = PropertyFactory.getProp(elem, data.ry, 0, degToRads, this.dynamicProperties); - this.rz = PropertyFactory.getProp(elem, data.rz, 0, degToRads, this.dynamicProperties); - this.or = PropertyFactory.getProp(elem, data.or, 1, degToRads, this.dynamicProperties); - } - if(data.sk){ - this.sk = PropertyFactory.getProp(elem, data.sk, 0, degToRads, this.dynamicProperties); - this.sa = PropertyFactory.getProp(elem, data.sa, 0, degToRads, this.dynamicProperties); - } - if(data.a) { - this.a = PropertyFactory.getProp(elem,data.a,1,0,this.dynamicProperties); - } - if(data.s) { - this.s = PropertyFactory.getProp(elem,data.s,1,0.01,this.dynamicProperties); - } - if(data.o){ - this.o = PropertyFactory.getProp(elem,data.o,0,0.01,arr); - } else { - this.o = {mdf:false,v:1}; - } - if(this.dynamicProperties.length){ - arr.push(this); - }else{ - if(this.a){ - this.v.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]); - } - if(this.s){ - this.v.scale(this.s.v[0],this.s.v[1],this.s.v[2]); - } - if(this.sk){ - this.v.skewFromAxis(-this.sk.v,this.sa.v); - } - if(this.r){ - this.v.rotate(-this.r.v); - }else{ - this.v.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]); - } - if(this.data.p.s){ - if(data.p.z) { - this.v.translate(this.px.v, this.py.v, -this.pz.v); - } else { - this.v.translate(this.px.v, this.py.v, 0); - } - }else{ - this.v.translate(this.p.v[0],this.p.v[1],-this.p.v[2]); - } - } - Object.defineProperty(this, "position", { get: positionGetter}); - Object.defineProperty(this, "xPosition", { get: xPositionGetter}); - Object.defineProperty(this, "yPosition", { get: yPositionGetter}); - Object.defineProperty(this, "orientation", { get: orientationGetter}); - Object.defineProperty(this, "anchorPoint", { get: anchorGetter}); - Object.defineProperty(this, "rotation", { get: rotationGetter}); - Object.defineProperty(this, "scale", { get: scaleGetter}); - Object.defineProperty(this, "opacity", { get: opacityGetter}); - Object.defineProperty(this, "skew", { get: skewGetter}); - Object.defineProperty(this, "skewAxis", { get: skewAxisGetter}); - } - }()); - - function getProp(elem,data,type, mult, arr) { - var p; - if(type === 2){ - p = new TransformProperty(elem, data, arr); - } else if(data.a === 0){ - if(type === 0) { - p = new ValueProperty(elem,data,mult); - } else { - p = new MultiDimensionalProperty(elem,data, mult); - } - } else if(data.a === 1){ - if(type === 0) { - p = new KeyframedValueProperty(elem,data,mult); - } else { - p = new KeyframedMultidimensionalProperty(elem,data, mult); - } - } else if(!data.k.length){ - p = new ValueProperty(elem,data, mult); - }else if(typeof(data.k[0]) === 'number'){ - p = new MultiDimensionalProperty(elem,data, mult); - }else{ - switch(type){ - case 0: - p = new KeyframedValueProperty(elem,data,mult); - break; - case 1: - p = new KeyframedMultidimensionalProperty(elem,data,mult); - break; - } - } - if(p.k){ - arr.push(p); - } - return p; - } - - var getGradientProp = (function(){ - - function getValue(forceRender){ - this.prop.getValue(); - this.cmdf = false; - this.omdf = false; - if(this.prop.mdf || forceRender){ - var i, len = this.data.p*4; - var mult, val; - for(i=0;ie){ - var _s = s; - s = e; - e = _s; - } - this.finalS = s; - this.finalE = e; - } - - function getMult(ind){ - //var easer = bez.getEasingCurve(this.ne.v/100,0,1-this.xe.v/100,1); - var easer = BezierFactory.getBezierEasing(this.ne.v/100,0,1-this.xe.v/100,1).get; - var mult = 0; - var s = this.finalS; - var e = this.finalE; - var type = this.data.sh; - if(type == 2){ - if(e === s){ - mult = ind >= e ? 1 : 0; - }else{ - mult = max(0,min(0.5/(e-s) + (ind-s)/(e-s),1)); - } - mult = easer(mult); - }else if(type == 3){ - if(e === s){ - mult = ind >= e ? 0 : 1; - }else{ - mult = 1 - max(0,min(0.5/(e-s) + (ind-s)/(e-s),1)); - } - - mult = easer(mult); - }else if(type == 4){ - if(e === s){ - mult = 0; - }else{ - mult = max(0,min(0.5/(e-s) + (ind-s)/(e-s),1)); - if(mult<.5){ - mult *= 2; - }else{ - mult = 1 - 2*(mult-0.5); - } - } - mult = easer(mult); - }else if(type == 5){ - if(e === s){ - mult = 0; - }else{ - var tot = e - s; - /*ind += 0.5; - mult = -4/(tot*tot)*(ind*ind)+(4/tot)*ind;*/ - ind = min(max(0,ind+0.5-s),e-s); - var x = -tot/2+ind; - var a = tot/2; - mult = Math.sqrt(1 - (x*x)/(a*a)); - } - mult = easer(mult); - }else if(type == 6){ - if(e === s){ - mult = 0; - }else{ - ind = min(max(0,ind+0.5-s),e-s); - mult = (1+(Math.cos((Math.PI+Math.PI*2*(ind)/(e-s)))))/2; - /* - ind = Math.min(Math.max(s,ind),e-1); - mult = (1+(Math.cos((Math.PI+Math.PI*2*(ind-s)/(e-1-s)))))/2; - mult = Math.max(mult,(1/(e-1-s))/(e-1-s));*/ - } - mult = easer(mult); - }else { - if(ind >= floor(s)){ - if(ind-s < 0){ - mult = 1 - (s - ind); - }else{ - mult = max(0,min(e-ind,1)); - } - } - mult = easer(mult); - } - return mult*this.a.v; - } - - return function TextSelectorProp(elem,data, arr){ - this.mdf = false; - this.k = false; - this.data = data; - this.dynamicProperties = []; - this.getValue = updateRange; - this.getMult = getMult; - this.comp = elem.comp; - this.finalS = 0; - this.finalE = 0; - this.s = PropertyFactory.getProp(elem,data.s || {k:0},0,0,this.dynamicProperties); - if('e' in data){ - this.e = PropertyFactory.getProp(elem,data.e,0,0,this.dynamicProperties); - }else{ - this.e = {v:data.r === 2 ? data.totalChars : 100}; - } - this.o = PropertyFactory.getProp(elem,data.o || {k:0},0,0,this.dynamicProperties); - this.xe = PropertyFactory.getProp(elem,data.xe || {k:0},0,0,this.dynamicProperties); - this.ne = PropertyFactory.getProp(elem,data.ne || {k:0},0,0,this.dynamicProperties); - this.a = PropertyFactory.getProp(elem,data.a,0,0.01,this.dynamicProperties); - if(this.dynamicProperties.length){ - arr.push(this); - }else{ - this.getValue(); - } - } - }()); - - function getTextSelectorProp(elem, data,arr) { - return new TextSelectorProp(elem, data, arr); - }; - - var ob = {}; - ob.getProp = getProp; - ob.getDashProp = getDashProp; - ob.getTextSelectorProp = getTextSelectorProp; - ob.getGradientProp = getGradientProp; - return ob; -}()); -function ShapePath(){ - this.c = false; - this._length = 0; - this._maxLength = 8; - this.v = Array.apply(null,{length:this._maxLength}); - this.o = Array.apply(null,{length:this._maxLength}); - this.i = Array.apply(null,{length:this._maxLength}); -}; - -ShapePath.prototype.setPathData = function(closed, len) { - this.c = closed; - while(len > this._maxLength){ - this.doubleArrayLength(); - } - var i = 0; - while(i < len){ - this.v[i] = point_pool.newPoint(); - this.o[i] = point_pool.newPoint(); - this.i[i] = point_pool.newPoint(); - i += 1; - } - this._length = len; -}; - -ShapePath.prototype.doubleArrayLength = function() { - this.v = this.v.concat(Array.apply(null,{length:this._maxLength})) - this.i = this.i.concat(Array.apply(null,{length:this._maxLength})) - this.o = this.o.concat(Array.apply(null,{length:this._maxLength})) - this._maxLength *= 2; -}; - -ShapePath.prototype.setXYAt = function(x, y, type, pos, replace) { - var arr; - this._length = Math.max(this._length, pos + 1); - if(this._length >= this._maxLength) { - this.doubleArrayLength(); - } - switch(type){ - case 'v': - arr = this.v; - break; - case 'i': - arr = this.i; - break; - case 'o': - arr = this.o; - break; - } - if(!arr[pos] || (arr[pos] && !replace)){ - arr[pos] = point_pool.newPoint(); - } - arr[pos][0] = x; - arr[pos][1] = y; -}; - -ShapePath.prototype.setTripleAt = function(vX,vY,oX,oY,iX,iY,pos, replace) { - this.setXYAt(vX,vY,'v',pos, replace); - this.setXYAt(oX,oY,'o',pos, replace); - this.setXYAt(iX,iY,'i',pos, replace); -}; -var ShapePropertyFactory = (function(){ - - var initFrame = -999999; - - function interpolateShape() { - if(this.elem.globalData.frameId === this.frameId){ - return; - } - this.mdf = false; - var frameNum = this.comp.renderedFrame - this.offsetTime; - if(!((this.lastFrame !== initFrame && ((this.lastFrame < this.keyframes[0].t-this.offsetTime && frameNum < this.keyframes[0].t-this.offsetTime) || (this.lastFrame > this.keyframes[this.keyframes.length - 1].t-this.offsetTime && frameNum > this.keyframes[this.keyframes.length - 1].t-this.offsetTime))))){ - var keyPropS,keyPropE,isHold; - if(frameNum < this.keyframes[0].t-this.offsetTime){ - keyPropS = this.keyframes[0].s[0]; - isHold = true; - this._lastIndex = 0; - }else if(frameNum >= this.keyframes[this.keyframes.length - 1].t-this.offsetTime){ - if(this.keyframes[this.keyframes.length - 2].h === 1){ - keyPropS = this.keyframes[this.keyframes.length - 1].s[0]; - }else{ - keyPropS = this.keyframes[this.keyframes.length - 2].e[0]; - } - isHold = true; - }else{ - var i = this.lastFrame < initFrame ? this._lastIndex : 0; - var len = this.keyframes.length- 1,flag = true,keyData,nextKeyData, j, jLen, k, kLen; - while(flag){ - keyData = this.keyframes[i]; - nextKeyData = this.keyframes[i+1]; - if((nextKeyData.t - this.offsetTime) > frameNum){ - break; - } - if(i < len - 1){ - i += 1; - }else{ - flag = false; - } - } - isHold = keyData.h === 1; - this._lastIndex = i; - - var perc; - if(!isHold){ - if(frameNum >= nextKeyData.t-this.offsetTime){ - perc = 1; - }else if(frameNum < keyData.t-this.offsetTime){ - perc = 0; - }else{ - var fnc; - if(keyData.__fnct){ - fnc = keyData.__fnct; - }else{ - fnc = BezierFactory.getBezierEasing(keyData.o.x,keyData.o.y,keyData.i.x,keyData.i.y).get; - keyData.__fnct = fnc; - } - perc = fnc((frameNum-(keyData.t-this.offsetTime))/((nextKeyData.t-this.offsetTime)-(keyData.t-this.offsetTime))); - } - keyPropE = keyData.e[0]; - } - keyPropS = keyData.s[0]; - } - jLen = this.v._length; - kLen = keyPropS.i[0].length; - var hasModified = false; - var vertexValue; - for(j=0;je){ - var _s = s; - s = e; - e = _s; - } - this.sValue = s; - this.eValue = e; - this.oValue = o; - } -} -TrimModifier.prototype.initModifierProperties = function(elem,data){ - this.sValue = 0; - this.eValue = 0; - this.oValue = 0; - this.getValue = this.processKeys; - this.s = PropertyFactory.getProp(elem,data.s,0,0.01,this.dynamicProperties); - this.e = PropertyFactory.getProp(elem,data.e,0,0.01,this.dynamicProperties); - this.o = PropertyFactory.getProp(elem,data.o,0,0,this.dynamicProperties); - this.m = data.m; - if(!this.dynamicProperties.length){ - this.getValue(true); - } -}; - -TrimModifier.prototype.getSegmentsLength = function(shapeData){ - var closed = shapeData.c; - var pathV = shapeData.v; - var pathO = shapeData.o; - var pathI = shapeData.i; - var i, len = shapeData._length; - var lengths = []; - var totalLength = 0; - for(i=0;i= 1){ - segments.push({ - s: s - 1, - e: e - 1 - }) - }else{ - segments.push({ - s: s, - e: 1 - }) - segments.push({ - s: 0, - e: e - 1 - }) - } - var shapeSegments = []; - var i, len = segments.length, segmentOb; - for(i = 0; i < len; i += 1) { - segmentOb = segments[i]; - if (segmentOb.e * totalModifierLength < addedLength || segmentOb.s * totalModifierLength > addedLength + shapeLength) { - - } else { - var shapeS, shapeE; - if(segmentOb.s * totalModifierLength <= addedLength) { - shapeS = 0; - } else { - shapeS = (segmentOb.s * totalModifierLength - addedLength) / shapeLength; - } - if(segmentOb.e * totalModifierLength >= addedLength + shapeLength) { - shapeE = 1; - } else { - shapeE = ((segmentOb.e * totalModifierLength - addedLength) / shapeLength); - } - shapeSegments.push([shapeS, shapeE]); - } - } - if(!shapeSegments.length){ - shapeSegments.push([0,0]); - } - return shapeSegments; -} - -TrimModifier.prototype.processShapes = function(firstFrame){ - var shapePaths; - var i, len = this.shapes.length; - var j, jLen; - var s = this.sValue; - var e = this.eValue; - var pathsData,pathData, totalShapeLength, totalModifierLength = 0; - - if(e === s){ - for(i=0;i= 0; i -= 1){ - shapeData = this.shapes[i]; - if (shapeData.shape.mdf) { - localShapeCollection = shapeData.localShapeCollection; - localShapeCollection.releaseShapes(); - if(this.m === 2 && len > 1) { - var edges = this.calculateShapeEdges(s, e, shapeData.totalShapeLength, addedLength, totalModifierLength); - addedLength += shapeData.totalShapeLength; - } else { - edges = [[shapeS, shapeE]] - } - jLen = edges.length; - for (j = 0; j < jLen; j += 1) { - shapeS = edges[j][0]; - shapeE = edges[j][1]; - segments.length = 0; - if(shapeE <= 1){ - segments.push({ - s:shapeData.totalShapeLength * shapeS, - e:shapeData.totalShapeLength * shapeE - }) - }else if(shapeS >= 1){ - segments.push({ - s:shapeData.totalShapeLength * (shapeS - 1), - e:shapeData.totalShapeLength * (shapeE - 1) - }) - }else{ - segments.push({ - s:shapeData.totalShapeLength * shapeS, - e:shapeData.totalShapeLength - }) - segments.push({ - s:0, - e:shapeData.totalShapeLength*(shapeE - 1) - }) - } - var newShapesData = this.addShapes(shapeData,segments[0]); - if (segments[0].s !== segments[0].e) { - var lastPos; - if(segments.length > 1){ - if(shapeData.shape.v.c){ - var lastShape = newShapesData.pop(); - this.addPaths(newShapesData, localShapeCollection); - newShapesData = this.addShapes(shapeData,segments[1], lastShape); - } else { - this.addPaths(newShapesData, localShapeCollection); - newShapesData = this.addShapes(shapeData,segments[1]); - } - } - this.addPaths(newShapesData, localShapeCollection); - } - - } - shapeData.shape.paths = localShapeCollection; - } - } - } - if(!this.dynamicProperties.length){ - this.mdf = false; - } -} - -TrimModifier.prototype.addPaths = function(newPaths, localShapeCollection) { - var i, len = newPaths.length; - for(i = 0; i < len; i += 1) { - localShapeCollection.addShape(newPaths[i]) - } -} - -TrimModifier.prototype.addSegment = function(pt1,pt2,pt3,pt4,shapePath,pos, newShape) { - /*console.log(pt1, 'vertex: v, at: ', pos); - console.log(pt2, 'vertex: o, at: ', pos); - console.log(pt3, 'vertex: i, at: ', pos + 1); - console.log(pt4, 'vertex: v, at: ', pos + 1); - console.log('newShape: ', newShape);*/ - shapePath.setXYAt(pt2[0],pt2[1],'o',pos); - shapePath.setXYAt(pt3[0],pt3[1],'i',pos + 1); - if(newShape){ - shapePath.setXYAt(pt1[0],pt1[1],'v',pos); - } - shapePath.setXYAt(pt4[0],pt4[1],'v',pos + 1); -} - -TrimModifier.prototype.addShapes = function(shapeData, shapeSegment, shapePath){ - var pathsData = shapeData.pathsData; - var shapePaths = shapeData.shape.paths.shapes; - var i, len = shapeData.shape.paths._length, j, jLen; - var addedLength = 0; - var currentLengthData,segmentCount; - var lengths; - var segment; - var shapes = []; - var initPos; - var newShape = true; - if(!shapePath){ - shapePath = shape_pool.newShape(); - segmentCount = 0; - initPos = 0; - } else { - segmentCount = shapePath._length; - initPos = shapePath._length; - } - shapes.push(shapePath); - for(i=0;i shapeSegment.e){ - shapePath.c = false; - break; - } else { - if(shapeSegment.s <= addedLength && shapeSegment.e >= addedLength + currentLengthData.addedLength){ - this.addSegment(shapePaths[i].v[j-1],shapePaths[i].o[j-1],shapePaths[i].i[j],shapePaths[i].v[j],shapePath,segmentCount,newShape); - newShape = false; - } else { - segment = bez.getNewSegment(shapePaths[i].v[j-1],shapePaths[i].v[j],shapePaths[i].o[j-1],shapePaths[i].i[j], (shapeSegment.s - addedLength)/currentLengthData.addedLength,(shapeSegment.e - addedLength)/currentLengthData.addedLength, lengths[j-1]); - this.addSegment(segment.pt1,segment.pt3,segment.pt4,segment.pt2,shapePath,segmentCount,newShape); - newShape = false; - shapePath.c = false; - } - addedLength += currentLengthData.addedLength; - segmentCount += 1; - } - } - if(shapePaths[i].c){ - currentLengthData = lengths[j-1]; - if(addedLength <= shapeSegment.e){ - var segmentLength = lengths[j-1].addedLength; - if(shapeSegment.s <= addedLength && shapeSegment.e >= addedLength + segmentLength){ - this.addSegment(shapePaths[i].v[j-1],shapePaths[i].o[j-1],shapePaths[i].i[0],shapePaths[i].v[0],shapePath,segmentCount,newShape); - newShape = false; - }else{ - segment = bez.getNewSegment(shapePaths[i].v[j-1],shapePaths[i].v[0],shapePaths[i].o[j-1],shapePaths[i].i[0], (shapeSegment.s - addedLength)/segmentLength,(shapeSegment.e - addedLength)/segmentLength, lengths[j-1]); - this.addSegment(segment.pt1,segment.pt3,segment.pt4,segment.pt2,shapePath,segmentCount,newShape); - newShape = false; - shapePath.c = false; - } - } else { - shapePath.c = false; - } - addedLength += currentLengthData.addedLength; - segmentCount += 1; - } - if(shapePath._length){ - shapePath.setXYAt(shapePath.v[initPos][0],shapePath.v[initPos][1],'i',initPos); - shapePath.setXYAt(shapePath.v[shapePath._length - 1][0],shapePath.v[shapePath._length - 1][1],'o',shapePath._length - 1); - } - if(addedLength > shapeSegment.e){ - break; - } - if(i 0 ? Math.floor(offset) : Math.ceil(offset); - var k, pathData, shapeCollection, shapeCollectionList; - var tMat = this.tr.v.props; - var pProps = this.pMatrix.props; - var rProps = this.rMatrix.props; - var sProps = this.sMatrix.props; - var iteration = 0; - var l, lLen, tProps,transformers, maxLvl; - for(i=0;i 0) { - while(iterationroundOffset){ - this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, 1, true); - iteration -= 1; - } - if(offsetModulo){ - this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, - offsetModulo, true); - iteration -= offsetModulo; - } - } - for(j=0;j= maxLvl; l -= 1) { - tProps = transformers[l].mProps.v.props; - this.matrix.transform(tProps[0],tProps[1],tProps[2],tProps[3],tProps[4],tProps[5],tProps[6],tProps[7],tProps[8],tProps[9],tProps[10],tProps[11],tProps[12],tProps[13],tProps[14],tProps[15]); - } - } - if(iteration !== 0){ - this.matrix.transform(rProps[0],rProps[1],rProps[2],rProps[3],rProps[4],rProps[5],rProps[6],rProps[7],rProps[8],rProps[9],rProps[10],rProps[11],rProps[12],rProps[13],rProps[14],rProps[15]); - this.matrix.transform(sProps[0],sProps[1],sProps[2],sProps[3],sProps[4],sProps[5],sProps[6],sProps[7],sProps[8],sProps[9],sProps[10],sProps[11],sProps[12],sProps[13],sProps[14],sProps[15]); - this.matrix.transform(pProps[0],pProps[1],pProps[2],pProps[3],pProps[4],pProps[5],pProps[6],pProps[7],pProps[8],pProps[9],pProps[10],pProps[11],pProps[12],pProps[13],pProps[14],pProps[15]); - } - localShapeCollection.addShape(this.processPath(currentPath, this.matrix)); - this.matrix.reset(); - iteration += 1; - } - } - } - shapeData.shape.paths = localShapeCollection; - } -}; - -RepeaterModifier.prototype.processPath = function(path, transform) { - var clonedPath = shape_pool.clone(path, transform); - return clonedPath; -}; - - -ShapeModifiers.registerModifier('rp',RepeaterModifier); -function ShapeCollection(){ - this._length = 0; - this._maxLength = 4; - this.shapes = Array.apply(null,{length:this._maxLength}); -}; - -ShapeCollection.prototype.addShape = function(shapeData){ - if(this._length === this._maxLength){ - this.shapes = this.shapes.concat(Array.apply(null,{length:this._maxLength})); - this._maxLength *= 2; - } - this.shapes[this._length] = shapeData; - this._length += 1; -}; - -ShapeCollection.prototype.releaseShapes = function(){ - var i; - for(i = 0; i < this._length; i += 1) { - shape_pool.release(this.shapes[i]); - } - this._length = 0; -}; -var ImagePreloader = (function(){ - - function imageLoaded(){ - this.loadedAssets += 1; - if(this.loadedAssets === this.totalImages){ - } - } - - function getAssetsPath(assetData){ - var path = ''; - if(this.assetsPath){ - var imagePath = assetData.p; - if(imagePath.indexOf('images/') !== -1){ - imagePath = imagePath.split('/')[1]; - } - path = this.assetsPath + imagePath; - } else { - path = this.path; - path += assetData.u ? assetData.u : ''; - path += assetData.p; - } - return path; - } - - function loadImage(path){ - var img = document.createElement('img'); - img.addEventListener('load', imageLoaded.bind(this), false); - img.addEventListener('error', imageLoaded.bind(this), false); - img.src = path; - } - function loadAssets(assets){ - this.totalAssets = assets.length; - var i; - for(i=0;i= 0; i--) { - if (!this.elements[i]) { - data = this.layers[i]; - if(data.ip - data.st <= (num - this.layers[i].st) && data.op - data.st > (num - this.layers[i].st)) - { - this.buildItem(i); - } - } - this.completeLayers = this.elements[i] ? this.completeLayers:false; - } - this.checkPendingElements(); -}; - -BaseRenderer.prototype.createItem = function(layer){ - switch(layer.ty){ - case 2: - return this.createImage(layer); - case 0: - return this.createComp(layer); - case 1: - return this.createSolid(layer); - case 4: - return this.createShape(layer); - case 5: - return this.createText(layer); - case 99: - return null; - } - return this.createBase(layer); -}; -BaseRenderer.prototype.buildAllItems = function(){ - var i, len = this.layers.length; - for(i=0;i= 0; i--) { - if(this.completeLayers || this.elements[i]){ - this.elements[i].prepareFrame(num - this.layers[i].st); - } - } - for (i = len - 1; i >= 0; i--) { - if(this.completeLayers || this.elements[i]){ - this.elements[i].renderFrame(); - } - } -}; - -SVGRenderer.prototype.appendElementInPos = function(element, pos){ - var newElement = element.getBaseElement(); - if(!newElement){ - return; - } - var i = 0; - var nextElement; - while(i 0){ - this.element.maskedElement.setAttribute(maskRef, "url(#" + layerId + ")"); - } - - defs.appendChild(this.maskElement); -}; - -MaskElement.prototype.getMaskProperty = function(pos){ - return this.viewData[pos].prop; -}; - -MaskElement.prototype.prepareFrame = function(){ - var i, len = this.dynamicProperties.length; - for(i=0;i 1){ - pathString += " C"+bm_rnd(pathNodes.o[i-1][0])+','+bm_rnd(pathNodes.o[i-1][1]) + " "+bm_rnd(pathNodes.i[0][0])+','+bm_rnd(pathNodes.i[0][1]) + " "+bm_rnd(pathNodes.v[0][0])+','+bm_rnd(pathNodes.v[0][1]); - } - //pathNodes.__renderedString = pathString; - - - if(viewData.lastPath !== pathString){ - if(viewData.elem){ - if(!pathNodes.c){ - viewData.elem.setAttribute('d',''); - }else if(pathData.inv){ - viewData.elem.setAttribute('d',this.solidPath + pathString); - }else{ - viewData.elem.setAttribute('d',pathString); - } - } - viewData.lastPath = pathString; - } -}; - -MaskElement.prototype.getMask = function(nm){ - var i = 0, len = this.masksProperties.length; - while(i num) - { - if(this.isVisible !== true){ - this.elemMdf = true; - this.globalData.mdf = true; - this.isVisible = true; - this.firstFrame = true; - if(this.data.hasMask){ - this.maskManager.firstFrame = true; - } - } - }else{ - if(this.isVisible !== false){ - this.elemMdf = true; - this.globalData.mdf = true; - this.isVisible = false; - } - } - var i, len = this.dynamicProperties.length; - for(i=0;i num){ - break; - } - textDocumentData = this.data.t.d.k[i].s; - i += 1; - } - this.lettersChangedFlag = false; - if(textDocumentData !== this.currentTextDocumentData){ - this.currentTextDocumentData = textDocumentData; - this.lettersChangedFlag = true; - this.buildNewText(); - } - this._parent.prepareFrame.call(this, num); -} - -ITextElement.prototype.createPathShape = function(matrixHelper, shapes) { - var j,jLen = shapes.length; - var k, kLen, pathNodes; - var shapeStr = ''; - for(j=0;j= currentLength + animatorOffset || !points) { - perc = (currentLength + animatorOffset - segmentLength) / currentPoint.partialLength; - xPathPos = prevPoint.point[0] + (currentPoint.point[0] - prevPoint.point[0]) * perc; - yPathPos = prevPoint.point[1] + (currentPoint.point[1] - prevPoint.point[1]) * perc; - matrixHelper.translate(0, -(renderedData.m.a.v[1] * yOff / 100) + yPos); - flag = false; - } else if (points) { - segmentLength += currentPoint.partialLength; - pointInd += 1; - if (pointInd >= points.length) { - pointInd = 0; - segmentInd += 1; - if (!segments[segmentInd]) { - if (mask.v.c) { - pointInd = 0; - segmentInd = 0; - points = segments[segmentInd].bezierData.points; - } else { - segmentLength -= currentPoint.partialLength; - points = null; - } - } else { - points = segments[segmentInd].bezierData.points; - } - } - if (points) { - prevPoint = currentPoint; - currentPoint = points[pointInd]; - partialLength = currentPoint.partialLength; - } - } - } - offf = letters[i].an / 2 - letters[i].add; - matrixHelper.translate(-offf, 0, 0); - } else { - offf = letters[i].an/2 - letters[i].add; - matrixHelper.translate(-offf,0,0); - - // Grouping alignment - matrixHelper.translate(-renderedData.m.a.v[0]*letters[i].an/200, -renderedData.m.a.v[1]*yOff/100, 0); - } - - lineLength += letters[i].l/2; - for(j=0;j= max){ - colorValue = inputDelta < 0 ? outputBlack : outputWhite; - } else { - colorValue = (outputBlack + outputDelta * Math.pow((perc - inputBlack) / inputDelta, 1 / gamma)); - } - table[pos++] = colorValue; - cnt += 256/(segments-1); - } - return table.join(' '); -}; - -SVGProLevelsFilter.prototype.renderFrame = function(forceRender){ - if(forceRender || this.filterManager.mdf){ - var val, cnt, perc, bezier; - var effectElements = this.filterManager.effectElements; - if(this.feFuncRComposed && (forceRender || effectElements[2].p.mdf || effectElements[3].p.mdf || effectElements[4].p.mdf || effectElements[5].p.mdf || effectElements[6].p.mdf)){ - val = this.getTableValue(effectElements[2].p.v,effectElements[3].p.v,effectElements[4].p.v,effectElements[5].p.v,effectElements[6].p.v); - this.feFuncRComposed.setAttribute('tableValues',val); - this.feFuncGComposed.setAttribute('tableValues',val); - this.feFuncBComposed.setAttribute('tableValues',val); - } - - if(this.feFuncR && (forceRender || effectElements[9].p.mdf || effectElements[10].p.mdf || effectElements[11].p.mdf || effectElements[12].p.mdf || effectElements[13].p.mdf)){ - val = this.getTableValue(effectElements[9].p.v,effectElements[10].p.v,effectElements[11].p.v,effectElements[12].p.v,effectElements[13].p.v); - this.feFuncR.setAttribute('tableValues',val); - } - - if(this.feFuncG && (forceRender || effectElements[16].p.mdf || effectElements[17].p.mdf || effectElements[18].p.mdf || effectElements[19].p.mdf || effectElements[20].p.mdf)){ - val = this.getTableValue(effectElements[16].p.v,effectElements[17].p.v,effectElements[18].p.v,effectElements[19].p.v,effectElements[20].p.v); - this.feFuncG.setAttribute('tableValues',val); - } - - if(this.feFuncB && (forceRender || effectElements[23].p.mdf || effectElements[24].p.mdf || effectElements[25].p.mdf || effectElements[26].p.mdf || effectElements[27].p.mdf)){ - val = this.getTableValue(effectElements[23].p.v,effectElements[24].p.v,effectElements[25].p.v,effectElements[26].p.v,effectElements[27].p.v); - this.feFuncB.setAttribute('tableValues',val); - } - - if(this.feFuncA && (forceRender || effectElements[30].p.mdf || effectElements[31].p.mdf || effectElements[32].p.mdf || effectElements[33].p.mdf || effectElements[34].p.mdf)){ - val = this.getTableValue(effectElements[30].p.v,effectElements[31].p.v,effectElements[32].p.v,effectElements[33].p.v,effectElements[34].p.v); - this.feFuncA.setAttribute('tableValues',val); - } - - } -}; -function SVGDropShadowEffect(filter, filterManager){ - /* - - - - - */ - /**/ - filter.setAttribute('x','-100%'); - filter.setAttribute('y','-100%'); - filter.setAttribute('width','400%'); - filter.setAttribute('height','400%'); - this.filterManager = filterManager; - - var feGaussianBlur = document.createElementNS(svgNS,'feGaussianBlur'); - feGaussianBlur.setAttribute('in','SourceAlpha'); - feGaussianBlur.setAttribute('result','drop_shadow_1'); - feGaussianBlur.setAttribute('stdDeviation','0'); - this.feGaussianBlur = feGaussianBlur; - filter.appendChild(feGaussianBlur); - - var feOffset = document.createElementNS(svgNS,'feOffset'); - feOffset.setAttribute('dx','25'); - feOffset.setAttribute('dy','0'); - feOffset.setAttribute('in','drop_shadow_1'); - feOffset.setAttribute('result','drop_shadow_2'); - this.feOffset = feOffset; - filter.appendChild(feOffset); - var feFlood = document.createElementNS(svgNS,'feFlood'); - feFlood.setAttribute('flood-color','#00ff00'); - feFlood.setAttribute('flood-opacity','1'); - feFlood.setAttribute('result','drop_shadow_3'); - this.feFlood = feFlood; - filter.appendChild(feFlood); - - var feComposite = document.createElementNS(svgNS,'feComposite'); - feComposite.setAttribute('in','drop_shadow_3'); - feComposite.setAttribute('in2','drop_shadow_2'); - feComposite.setAttribute('operator','in'); - feComposite.setAttribute('result','drop_shadow_4'); - filter.appendChild(feComposite); - - - var feMerge = document.createElementNS(svgNS,'feMerge'); - filter.appendChild(feMerge); - var feMergeNode; - feMergeNode = document.createElementNS(svgNS,'feMergeNode'); - feMerge.appendChild(feMergeNode); - feMergeNode = document.createElementNS(svgNS,'feMergeNode'); - feMergeNode.setAttribute('in','SourceGraphic'); - this.feMergeNode = feMergeNode; - this.feMerge = feMerge; - this.originalNodeAdded = false; - feMerge.appendChild(feMergeNode); -} - -SVGDropShadowEffect.prototype.renderFrame = function(forceRender){ - if(forceRender || this.filterManager.mdf){ - if(forceRender || this.filterManager.effectElements[4].p.mdf){ - this.feGaussianBlur.setAttribute('stdDeviation', this.filterManager.effectElements[4].p.v / 4); - } - if(forceRender || this.filterManager.effectElements[0].p.mdf){ - var col = this.filterManager.effectElements[0].p.v; - this.feFlood.setAttribute('flood-color',rgbToHex(Math.round(col[0]*255),Math.round(col[1]*255),Math.round(col[2]*255))); - } - if(forceRender || this.filterManager.effectElements[1].p.mdf){ - this.feFlood.setAttribute('flood-opacity',this.filterManager.effectElements[1].p.v/255); - } - if(forceRender || this.filterManager.effectElements[2].p.mdf || this.filterManager.effectElements[3].p.mdf){ - var distance = this.filterManager.effectElements[3].p.v - var angle = (this.filterManager.effectElements[2].p.v - 90) * degToRads - var x = distance * Math.cos(angle) - var y = distance * Math.sin(angle) - this.feOffset.setAttribute('dx', x); - this.feOffset.setAttribute('dy', y); - } - /*if(forceRender || this.filterManager.effectElements[5].p.mdf){ - if(this.filterManager.effectElements[5].p.v === 1 && this.originalNodeAdded) { - this.feMerge.removeChild(this.feMergeNode); - this.originalNodeAdded = false; - } else if(this.filterManager.effectElements[5].p.v === 0 && !this.originalNodeAdded) { - this.feMerge.appendChild(this.feMergeNode); - this.originalNodeAdded = true; - } - }*/ - } -}; -function SVGEffects(elem){ - var i, len = elem.data.ef.length; - var filId = randomString(10); - var fil = filtersFactory.createFilter(filId); - var count = 0; - this.filters = []; - var filterManager; - for(i=0;i arr.g.p*4) || arr.g.k.k.length > arr.g.p*4){ - var opFill; - var stop, j, jLen; - var mask = document.createElementNS(svgNS,"mask"); - var maskElement = document.createElementNS(svgNS, 'path'); - mask.appendChild(maskElement); - var opacityId = 'op_'+randomString(10); - var maskId = 'mk_'+randomString(10); - mask.setAttribute('id',maskId); - if(arr.t === 1){ - opFill = document.createElementNS(svgNS,'linearGradient'); - } else { - opFill = document.createElementNS(svgNS,'radialGradient'); - } - opFill.setAttribute('id',opacityId); - opFill.setAttribute('spreadMethod','pad'); - opFill.setAttribute('gradientUnits','userSpaceOnUse'); - jLen = arr.g.k.k[0].s ? arr.g.k.k[0].s.length : arr.g.k.k.length; - var stops = []; - for(j=arr.g.p*4;j=0;i-=1){ - if(arr[i].ty == 'fl' || arr[i].ty == 'st' || arr[i].ty == 'gf' || arr[i].ty == 'gs'){ - data[i] = {}; - styleOb = { - type: arr[i].ty, - d: '', - ld: '', - lvl: level, - mdf: false - }; - var pathElement = document.createElementNS(svgNS, "path"); - data[i].o = PropertyFactory.getProp(this,arr[i].o,0,0.01,dynamicProperties); - if(arr[i].ty == 'st' || arr[i].ty == 'gs') { - pathElement.setAttribute('stroke-linecap', this.lcEnum[arr[i].lc] || 'round'); - ////pathElement.style.strokeLinecap = this.lcEnum[arr[i].lc] || 'round'; - pathElement.setAttribute('stroke-linejoin',this.ljEnum[arr[i].lj] || 'round'); - ////pathElement.style.strokeLinejoin = this.ljEnum[arr[i].lj] || 'round'; - pathElement.setAttribute('fill-opacity','0'); - ////pathElement.style.fillOpacity = 0; - if(arr[i].lj == 1) { - pathElement.setAttribute('stroke-miterlimit',arr[i].ml); - ////pathElement.style.strokeMiterlimit = arr[i].ml; - } - - data[i].w = PropertyFactory.getProp(this,arr[i].w,0,null,dynamicProperties); - if(arr[i].d){ - var d = PropertyFactory.getDashProp(this,arr[i].d,'svg',dynamicProperties); - if(!d.k){ - pathElement.setAttribute('stroke-dasharray', d.dasharray); - ////pathElement.style.strokeDasharray = d.dasharray; - pathElement.setAttribute('stroke-dashoffset', d.dashoffset); - ////pathElement.style.strokeDashoffset = d.dashoffset; - } - data[i].d = d; - } - - } - if(arr[i].ty == 'fl' || arr[i].ty == 'st'){ - data[i].c = PropertyFactory.getProp(this,arr[i].c,1,255,dynamicProperties); - container.appendChild(pathElement); - } else { - data[i].g = PropertyFactory.getGradientProp(this,arr[i].g,dynamicProperties); - if(arr[i].t == 2){ - data[i].h = PropertyFactory.getProp(this,arr[i].h,1,0.01,dynamicProperties); - data[i].a = PropertyFactory.getProp(this,arr[i].a,1,degToRads,dynamicProperties); - } - data[i].s = PropertyFactory.getProp(this,arr[i].s,1,null,dynamicProperties); - data[i].e = PropertyFactory.getProp(this,arr[i].e,1,null,dynamicProperties); - this.setGradientData(pathElement,arr[i],data[i], styleOb); - var maskId = this.setGradientOpacity(arr[i],data[i], styleOb); - if(maskId){ - pathElement.setAttribute('mask','url(#'+maskId+')'); - } - data[i].elem = pathElement; - container.appendChild(pathElement); - } - if(arr[i].r === 2) { - pathElement.setAttribute('fill-rule', 'evenodd'); - } - - if(arr[i].ln){ - pathElement.setAttribute('id',arr[i].ln); - } - if(arr[i].cl){ - pathElement.setAttribute('class',arr[i].cl); - } - styleOb.pElem = pathElement; - this.stylesList.push(styleOb); - data[i].style = styleOb; - ownArrays.push(styleOb); - }else if(arr[i].ty == 'gr'){ - data[i] = { - it: [] - }; - var g = document.createElementNS(svgNS,'g'); - container.appendChild(g); - data[i].gr = g; - this.searchShapes(arr[i].it,data[i].it,g,dynamicProperties, level + 1, ownTransformers); - }else if(arr[i].ty == 'tr'){ - data[i] = { - transform : { - op: PropertyFactory.getProp(this,arr[i].o,0,0.01,dynamicProperties), - mProps: PropertyFactory.getProp(this,arr[i],2,null,dynamicProperties) - }, - elements: [] - }; - currentTransform = data[i].transform; - ownTransformers.push(currentTransform); - }else if(arr[i].ty == 'sh' || arr[i].ty == 'rc' || arr[i].ty == 'el' || arr[i].ty == 'sr'){ - data[i] = { - elements : [], - caches:[], - styles : [], - transformers: ownTransformers, - lStr: '' - }; - var ty = 4; - if(arr[i].ty == 'rc'){ - ty = 5; - }else if(arr[i].ty == 'el'){ - ty = 6; - }else if(arr[i].ty == 'sr'){ - ty = 7; - } - data[i].sh = ShapePropertyFactory.getShapeProp(this,arr[i],ty,dynamicProperties); - data[i].lvl = level; - this.shapes.push(data[i].sh); - this.addShapeToModifiers(data[i]); - jLen = this.stylesList.length; - for(j=0;j=0;i-=1){ - this.shapeModifiers[i].processShapes(this.firstFrame); - } -}; - -IShapeElement.prototype.renderFrame = function(parentMatrix){ - var renderParent = this._parent.renderFrame.call(this,parentMatrix); - if(renderParent===false){ - this.hide(); - return; - } - this.globalToLocal([0,0,0]); - if(this.hidden){ - this.layerElement.style.display = 'block'; - this.hidden = false; - } - this.renderModifiers(); - this.renderShape(null,null,true, null); -}; - -IShapeElement.prototype.hide = function(){ - if(!this.hidden){ - this.layerElement.style.display = 'none'; - var i, len = this.stylesList.length; - for(i=len-1;i>=0;i-=1){ - if(this.stylesList[i].ld !== '0'){ - this.stylesList[i].ld = '0'; - this.stylesList[i].pElem.style.display = 'none'; - if(this.stylesList[i].pElem.parentNode){ - this.stylesList[i].parent = this.stylesList[i].pElem.parentNode; - //this.stylesList[i].pElem.parentNode.removeChild(this.stylesList[i].pElem); - } - } - } - this.hidden = true; - } -}; - -IShapeElement.prototype.renderShape = function(items,data,isMain, container){ - var i, len; - if(!items){ - items = this.shapesData; - len = this.stylesList.length; - for(i=0;i=0;i-=1){ - ty = items[i].ty; - if(ty == 'tr'){ - if(this.firstFrame || data[i].transform.op.mdf && container){ - container.setAttribute('opacity',data[i].transform.op.v); - } - if(this.firstFrame || data[i].transform.mProps.mdf && container){ - container.setAttribute('transform',data[i].transform.mProps.v.to2dCSS()); - } - }else if(ty == 'sh' || ty == 'el' || ty == 'rc' || ty == 'sr'){ - this.renderPath(items[i],data[i]); - }else if(ty == 'fl'){ - this.renderFill(items[i],data[i]); - }else if(ty == 'gf'){ - this.renderGradient(items[i],data[i]); - }else if(ty == 'gs'){ - this.renderGradient(items[i],data[i]); - this.renderStroke(items[i],data[i]); - }else if(ty == 'st'){ - this.renderStroke(items[i],data[i]); - }else if(ty == 'gr'){ - this.renderShape(items[i].it,data[i].it,false, data[i].gr); - }else if(ty == 'tm'){ - // - } - } - if(isMain) { - len = this.stylesList.length; - for (i = 0; i < len; i += 1) { - if (this.stylesList[i].ld === '0') { - this.stylesList[i].ld = '1'; - this.stylesList[i].pElem.style.display = 'block'; - //this.stylesList[i].parent.appendChild(this.stylesList[i].pElem); - } - if (this.stylesList[i].mdf || this.firstFrame) { - this.stylesList[i].pElem.setAttribute('d', this.stylesList[i].d); - if(this.stylesList[i].msElem){ - this.stylesList[i].msElem.setAttribute('d', this.stylesList[i].d); - } - } - } - if (this.firstFrame) { - this.firstFrame = false; - } - } - -}; - -IShapeElement.prototype.renderPath = function(pathData,viewData){ - var len, i, j, jLen,pathStringTransformed,redraw,pathNodes,l, lLen = viewData.elements.length; - var lvl = viewData.lvl; - for(l=0;l 0) { - redraw = viewData.transformers[k].mProps.mdf || redraw; - props = viewData.transformers[k].mProps.v.props; - mat.transform(props[0],props[1],props[2],props[3],props[4],props[5],props[6],props[7],props[8],props[9],props[10],props[11],props[12],props[13],props[14],props[15]); - iterations --; - k --; - } - if(redraw){ - for(j=0;j= 1 ? 0.99 : viewData.h.v <= -1 ? -0.99:viewData.h.v; - var dist = rad*percent; - var x = Math.cos(ang + viewData.a.v)*dist + pt1[0]; - var y = Math.sin(ang + viewData.a.v)*dist + pt1[1]; - gfill.setAttribute('fx',x); - gfill.setAttribute('fy',y); - if(opFill){ - opFill.setAttribute('fx',x); - opFill.setAttribute('fy',y); - } - } - //gfill.setAttribute('fy','200'); - } -}; - -IShapeElement.prototype.renderStroke = function(styleData,viewData){ - var styleElem = viewData.style; - //TODO fix dashes - var d = viewData.d; - var dasharray,dashoffset; - if(d && d.k && (d.mdf || this.firstFrame)){ - styleElem.pElem.setAttribute('stroke-dasharray', d.dasharray); - ////styleElem.pElem.style.strokeDasharray = d.dasharray; - styleElem.pElem.setAttribute('stroke-dashoffset', d.dashoffset); - ////styleElem.pElem.style.strokeDashoffset = d.dashoffset; - } - if(viewData.c && (viewData.c.mdf || this.firstFrame)){ - styleElem.pElem.setAttribute('stroke','rgb('+bm_floor(viewData.c.v[0])+','+bm_floor(viewData.c.v[1])+','+bm_floor(viewData.c.v[2])+')'); - ////styleElem.pElem.style.stroke = 'rgb('+bm_floor(viewData.c.v[0])+','+bm_floor(viewData.c.v[1])+','+bm_floor(viewData.c.v[2])+')'; - } - if(viewData.o.mdf || this.firstFrame){ - styleElem.pElem.setAttribute('stroke-opacity',viewData.o.v); - } - if(viewData.w.mdf || this.firstFrame){ - styleElem.pElem.setAttribute('stroke-width',viewData.w.v); - if(styleElem.msElem){ - styleElem.msElem.setAttribute('stroke-width',viewData.w.v); - } - ////styleElem.pElem.style.strokeWidth = viewData.w.v; - } -}; - -IShapeElement.prototype.destroy = function(){ - this._parent.destroy.call(this._parent); - this.shapeData = null; - this.viewData = null; - this.parentContainer = null; - this.placeholder = null; -}; - -function ISolidElement(data,parentContainer,globalData,comp, placeholder){ - this._parent.constructor.call(this,data,parentContainer,globalData,comp, placeholder); -} -createElement(SVGBaseElement, ISolidElement); - -ISolidElement.prototype.createElements = function(){ - this._parent.createElements.call(this); - - var rect = document.createElementNS(svgNS,'rect'); - ////rect.style.width = this.data.sw; - ////rect.style.height = this.data.sh; - ////rect.style.fill = this.data.sc; - rect.setAttribute('width',this.data.sw); - rect.setAttribute('height',this.data.sh); - rect.setAttribute('fill',this.data.sc); - this.layerElement.appendChild(rect); - this.innerElem = rect; - if(this.data.ln){ - this.layerElement.setAttribute('id',this.data.ln); - } - if(this.data.cl){ - this.layerElement.setAttribute('class',this.data.cl); - } -}; - -ISolidElement.prototype.hide = IImageElement.prototype.hide; -ISolidElement.prototype.renderFrame = IImageElement.prototype.renderFrame; -ISolidElement.prototype.destroy = IImageElement.prototype.destroy; - -var animationManager = (function(){ - var moduleOb = {}; - var registeredAnimations = []; - var initTime = 0; - var len = 0; - var idled = true; - var playingAnimationsNum = 0; - - function removeElement(ev){ - var i = 0; - var animItem = ev.target; - while(i=0;i-=1){ - registeredAnimations[i].animation.destroy(animation); - } - } - - function searchAnimations(animationData, standalone, renderer){ - var animElements = document.getElementsByClassName('bodymovin'); - var i, len = animElements.length; - for(i=0;i this.animationData.op){ - this.animationData.op = data.op; - this.totalFrames = Math.floor(data.op - this.animationData.ip); - this.animationData.tf = this.totalFrames; - } - var layers = this.animationData.layers; - var i, len = layers.length; - var newLayers = data.layers; - var j, jLen = newLayers.length; - for(j=0;j this.timeCompleted){ - this.currentFrame = this.timeCompleted; - } - this.trigger('enterFrame'); - this.renderFrame(); -}; - -AnimationItem.prototype.renderFrame = function () { - if(this.isLoaded === false){ - return; - } - //console.log('this.currentFrame:',this.currentFrame + this.firstFrame); - this.renderer.renderFrame(this.currentFrame + this.firstFrame); -}; - -AnimationItem.prototype.play = function (name) { - if(name && this.name != name){ - return; - } - if(this.isPaused === true){ - this.isPaused = false; - if(this._idle){ - this._idle = false; - this.trigger('_active'); - } - } -}; - -AnimationItem.prototype.pause = function (name) { - if(name && this.name != name){ - return; - } - if(this.isPaused === false){ - this.isPaused = true; - if(!this.pendingSegment){ - this._idle = true; - this.trigger('_idle'); - } - } -}; - -AnimationItem.prototype.togglePause = function (name) { - if(name && this.name != name){ - return; - } - if(this.isPaused === true){ - this.play(); - }else{ - this.pause(); - } -}; - -AnimationItem.prototype.stop = function (name) { - if(name && this.name != name){ - return; - } - this.pause(); - this.currentFrame = this.currentRawFrame = 0; - this.playCount = 0; - this.gotoFrame(); -}; - -AnimationItem.prototype.goToAndStop = function (value, isFrame, name) { - if(name && this.name != name){ - return; - } - if(isFrame){ - this.setCurrentRawFrameValue(value); - }else{ - this.setCurrentRawFrameValue(value * this.frameModifier); - } - this.pause(); -}; - -AnimationItem.prototype.goToAndPlay = function (value, isFrame, name) { - this.goToAndStop(value, isFrame, name); - this.play(); -}; - -AnimationItem.prototype.advanceTime = function (value) { - if(this.pendingSegment){ - this.pendingSegment = false; - this.adjustSegment(this.segments.shift()); - if(this.isPaused){ - this.play(); - } - return; - } - if (this.isPaused === true || this.isLoaded === false) { - return; - } - this.setCurrentRawFrameValue(this.currentRawFrame + value * this.frameModifier); -}; - -AnimationItem.prototype.updateAnimation = function (perc) { - this.setCurrentRawFrameValue(this.totalFrames * perc); -}; - -AnimationItem.prototype.moveFrame = function (value, name) { - if(name && this.name != name){ - return; - } - this.setCurrentRawFrameValue(this.currentRawFrame+value); -}; - -AnimationItem.prototype.adjustSegment = function(arr){ - this.playCount = 0; - if(arr[1] < arr[0]){ - if(this.frameModifier > 0){ - if(this.playSpeed < 0){ - this.setSpeed(-this.playSpeed); - } else { - this.setDirection(-1); - } - } - this.totalFrames = arr[0] - arr[1]; - this.firstFrame = arr[1]; - this.setCurrentRawFrameValue(this.totalFrames - 0.01); - } else if(arr[1] > arr[0]){ - if(this.frameModifier < 0){ - if(this.playSpeed < 0){ - this.setSpeed(-this.playSpeed); - } else { - this.setDirection(1); - } - } - this.totalFrames = arr[1] - arr[0]; - this.firstFrame = arr[0]; - this.setCurrentRawFrameValue(0); - } - this.trigger('segmentStart'); -}; -AnimationItem.prototype.setSegment = function (init,end) { - var pendingFrame = -1; - if(this.isPaused) { - if (this.currentRawFrame + this.firstFrame < init) { - pendingFrame = init; - } else if (this.currentRawFrame + this.firstFrame > end) { - pendingFrame = end - init - 0.01; - } - } - - this.firstFrame = init; - this.totalFrames = end - init; - if(pendingFrame !== -1) { - this.goToAndStop(pendingFrame,true); - } -} - -AnimationItem.prototype.playSegments = function (arr,forceFlag) { - if(typeof arr[0] === 'object'){ - var i, len = arr.length; - for(i=0;i= this.totalFrames) { - this.checkSegments(); - if(this.loop === false){ - this.currentRawFrame = this.totalFrames - 0.01; - this.gotoFrame(); - this.pause(); - this.trigger('complete'); - return; - }else{ - this.trigger('loopComplete'); - this.playCount += 1; - if((this.loop !== true && this.playCount == this.loop) || this.pendingSegment){ - this.currentRawFrame = this.totalFrames - 0.01; - this.gotoFrame(); - this.pause(); - this.trigger('complete'); - return; - } else { - this.currentRawFrame = this.currentRawFrame % this.totalFrames; - } - } - } else if (this.currentRawFrame < 0) { - this.checkSegments(); - this.playCount -= 1; - if(this.playCount < 0){ - this.playCount = 0; - } - if(this.loop === false || this.pendingSegment){ - this.currentRawFrame = 0; - this.gotoFrame(); - this.pause(); - this.trigger('complete'); - return; - }else{ - this.trigger('loopComplete'); - this.currentRawFrame = (this.totalFrames + this.currentRawFrame) % this.totalFrames; - this.gotoFrame(); - return; - } - } - - this.gotoFrame(); -}; - -AnimationItem.prototype.setSpeed = function (val) { - this.playSpeed = val; - this.updaFrameModifier(); -}; - -AnimationItem.prototype.setDirection = function (val) { - this.playDirection = val < 0 ? -1 : 1; - this.updaFrameModifier(); -}; - -AnimationItem.prototype.updaFrameModifier = function () { - this.frameModifier = this.frameMult * this.playSpeed * this.playDirection; -}; - -AnimationItem.prototype.getPath = function () { - return this.path; -}; - -AnimationItem.prototype.getAssetsPath = function (assetData) { - var path = ''; - if(this.assetsPath){ - var imagePath = assetData.p; - if(imagePath.indexOf('images/') !== -1){ - imagePath = imagePath.split('/')[1]; - } - path = this.assetsPath + imagePath; - } else { - path = this.path; - path += assetData.u ? assetData.u : ''; - path += assetData.p; - } - return path; -}; - -AnimationItem.prototype.getAssetData = function (id) { - var i = 0, len = this.assets.length; - while (i < len) { - if(id == this.assets[i].id){ - return this.assets[i]; - } - i += 1; - } -}; - -AnimationItem.prototype.hide = function () { - this.renderer.hide(); -}; - -AnimationItem.prototype.show = function () { - this.renderer.show(); -}; - -AnimationItem.prototype.getAssets = function () { - return this.assets; -}; - -AnimationItem.prototype.trigger = function(name){ - if(this._cbs && this._cbs[name]){ - switch(name){ - case 'enterFrame': - this.triggerEvent(name,new BMEnterFrameEvent(name,this.currentFrame,this.totalFrames,this.frameMult)); - break; - case 'loopComplete': - this.triggerEvent(name,new BMCompleteLoopEvent(name,this.loop,this.playCount,this.frameMult)); - break; - case 'complete': - this.triggerEvent(name,new BMCompleteEvent(name,this.frameMult)); - break; - case 'segmentStart': - this.triggerEvent(name,new BMSegmentStartEvent(name,this.firstFrame,this.totalFrames)); - break; - case 'destroy': - this.triggerEvent(name,new BMDestroyEvent(name,this)); - break; - default: - this.triggerEvent(name); - } - } - if(name === 'enterFrame' && this.onEnterFrame){ - this.onEnterFrame.call(this,new BMEnterFrameEvent(name,this.currentFrame,this.totalFrames,this.frameMult)); - } - if(name === 'loopComplete' && this.onLoopComplete){ - this.onLoopComplete.call(this,new BMCompleteLoopEvent(name,this.loop,this.playCount,this.frameMult)); - } - if(name === 'complete' && this.onComplete){ - this.onComplete.call(this,new BMCompleteEvent(name,this.frameMult)); - } - if(name === 'segmentStart' && this.onSegmentStart){ - this.onSegmentStart.call(this,new BMSegmentStartEvent(name,this.firstFrame,this.totalFrames)); - } - if(name === 'destroy' && this.onDestroy){ - this.onDestroy.call(this,new BMDestroyEvent(name,this)); - } -}; - -AnimationItem.prototype.addEventListener = _addEventListener; -AnimationItem.prototype.removeEventListener = _removeEventListener; -AnimationItem.prototype.triggerEvent = _triggerEvent; -var bodymovinjs = {}; function play(animation){ animationManager.play(animation); } function pause(animation){ animationManager.pause(animation); } function togglePause(animation){ animationManager.togglePause(animation); } function setSpeed(value,animation){ animationManager.setSpeed(value, animation); } function setDirection(value,animation){ animationManager.setDirection(value, animation); } function stop(animation){ animationManager.stop(animation); } function moveFrame(value){ animationManager.moveFrame(value); } function searchAnimations(){ if(standalone === true){ animationManager.searchAnimations(animationData,standalone, renderer); }else{ animationManager.searchAnimations(); } } function registerAnimation(elem){ return animationManager.registerAnimation(elem); } function resize(){ animationManager.resize(); } function start(){ animationManager.start(); } function goToAndStop(val,isFrame, animation){ animationManager.goToAndStop(val,isFrame, animation); } function setSubframeRendering(flag){ subframeEnabled = flag; } function loadAnimation(params){ if(standalone === true){ params.animationData = JSON.parse(animationData); } return animationManager.loadAnimation(params); } function destroy(animation){ return animationManager.destroy(animation); } function setQuality(value){ if(typeof value === 'string'){ switch(value){ case 'high': defaultCurveSegments = 200; break; case 'medium': defaultCurveSegments = 50; break; case 'low': defaultCurveSegments = 10; break; } }else if(!isNaN(value) && value > 1){ defaultCurveSegments = value; } if(defaultCurveSegments >= 50){ roundValues(false); }else{ roundValues(true); } } function installPlugin(type,plugin){ if(type==='expressions'){ expressionsPlugin = plugin; } } function getFactory(name){ switch(name){ case "propertyFactory": return PropertyFactory;case "shapePropertyFactory": return ShapePropertyFactory; case "matrix": return Matrix; } } bodymovinjs.play = play; bodymovinjs.pause = pause; bodymovinjs.togglePause = togglePause; bodymovinjs.setSpeed = setSpeed; bodymovinjs.setDirection = setDirection; bodymovinjs.stop = stop; bodymovinjs.moveFrame = moveFrame; bodymovinjs.searchAnimations = searchAnimations; bodymovinjs.registerAnimation = registerAnimation; bodymovinjs.loadAnimation = loadAnimation; bodymovinjs.setSubframeRendering = setSubframeRendering; bodymovinjs.resize = resize; bodymovinjs.start = start; bodymovinjs.goToAndStop = goToAndStop; bodymovinjs.destroy = destroy; bodymovinjs.setQuality = setQuality; bodymovinjs.installPlugin = installPlugin; bodymovinjs.__getFactory = getFactory; bodymovinjs.version = '4.6.3'; function checkReady(){ if (document.readyState === "complete") { clearInterval(readyStateCheckInterval); searchAnimations(); } } function getQueryVariable(variable) { var vars = queryString.split('&'); for (var i = 0; i < vars.length; i++) { var pair = vars[i].split('='); if (decodeURIComponent(pair[0]) == variable) { return decodeURIComponent(pair[1]); } } } var standalone = '__[STANDALONE]__'; var animationData = '__[ANIMATIONDATA]__'; var renderer = ''; if(standalone) { var scripts = document.getElementsByTagName('script'); var index = scripts.length - 1; var myScript = scripts[index]; var queryString = myScript.src.replace(/^[^\?]+\??/,''); renderer = getQueryVariable('renderer'); } var readyStateCheckInterval = setInterval(checkReady, 100); return bodymovinjs; })); - -// This is animation -var icon = { - 404: {"v":"4.5.9","fr":24,"ip":0,"op":81,"w":1000,"h":1000,"ddd":0,"assets":[{"id":"comp_8","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"paw L Outlines","ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":0,"s":[8.7],"e":[-3.3]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":20,"s":[-3.3],"e":[8.7]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":40,"s":[8.7],"e":[-3.3]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":60,"s":[-3.3],"e":[8.7]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":80,"s":[8.7],"e":[-3.3]},{"t":100}]},"p":{"a":0,"k":[540.931,641.685,0]},"a":{"a":0,"k":[22.555,0.318,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.348,-0.108],[-0.452,0.265],[0.82,1.408],[0.027,-0.343]],"o":[[0.61,0.049],[-1.637,-0.478],[-0.149,0.251],[-0.108,1.348]],"v":[[0.377,1.58],[2.003,1.242],[-1.622,-1.63],[-1.895,-0.739]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.918,0.804,0.71,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[17.937,57.565],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.638,-0.478],[-0.059,0.738],[1.349,0.108],[0.436,-0.736]],"o":[[0.546,-0.321],[0.108,-1.348],[-1.005,-0.08],[0.821,1.408]],"v":[[1.267,1.972],[2.251,0.382],[-0.024,-1.893],[-2.359,-0.898]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[18.673,56.834],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.086,-1.077],[-1.077,-0.086],[-0.25,0.452],[0.142,1.151],[0.129,0.011]],"o":[[-0.086,1.077],[0.635,0.051],[-0.28,-0.953],[-0.108,-0.033],[-1.077,-0.086]],"v":[[-1.501,-0.138],[0.292,1.967],[1.588,1.288],[0.956,-1.865],[0.604,-1.932]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.918,0.804,0.71,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[13.774,52.364],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.035,0.442],[0.789,0.24],[-0.28,-0.952]],"o":[[0.076,-0.948],[0.142,1.152],[0.175,-0.315]],"v":[[0.433,0.422],[-0.509,-1.577],[0.122,1.577]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[15.239,52.075],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.047,-0.582],[-0.675,-0.065],[0.022,0.733]],"o":[[-0.054,0.678],[-0.048,-0.684],[-0.545,0.016]],"v":[[-0.534,-0.27],[0.588,1.064],[0.485,-1.064]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.918,0.804,0.71,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[13.967,47.57],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.007,-0.001],[-0.055,0.686],[0.685,0.055],[0.096,-0.003],[-0.048,-0.684]],"o":[[0.685,0.055],[0.055,-0.685],[-0.103,-0.008],[0.022,0.733],[0.007,0.001]],"v":[[-0.636,1.046],[0.703,-0.096],[-0.466,-1.093],[-0.758,-1.089],[-0.656,1.04]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[15.211,47.595],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.067,-0.837],[-0.837,-0.067],[-0.067,0.837],[0.837,0.066]],"o":[[-0.067,0.837],[0.837,0.067],[0.066,-0.837],[-0.837,-0.067]],"v":[[-1.515,-0.272],[-0.121,1.365],[1.517,-0.03],[0.098,-1.365]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[24.403,56.504],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.174,-2.496],[-2.496,-1.174],[-1.174,2.497],[2.496,1.174]],"o":[[-1.174,2.496],[2.496,1.175],[1.175,-2.496],[-2.497,-1.174]],"v":[[-4.52,-2.663],[-2.126,3.984],[4.52,1.589],[1.066,-3.292]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[21.96,49.281],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.482,0],[0.245,0.013],[-0.96,12.398],[2.505,9.483],[-1.068,0.282],[-0.283,-1.068],[0.63,-8.133],[-8.655,-0.806],[-2,2.027],[0.031,0.446],[-1.103,0.074],[-0.075,-1.103],[13.258,-13.453]],"o":[[-0.242,0],[-13.02,-1.211],[0.638,-8.24],[-0.283,-1.068],[1.064,-0.283],[2.678,10.138],[-1.029,13.298],[2.54,0.124],[12.007,-12.186],[-0.075,-1.101],[1.119,-0.085],[0.127,1.892],[-2.626,2.665]],"v":[[-4.354,32.951],[-5.085,32.931],[-16.316,8.615],[-17.46,-18.448],[-16.038,-20.893],[-13.593,-19.47],[-12.329,8.924],[-4.794,28.943],[1.999,26.131],[11.133,-30.737],[12.993,-32.866],[15.124,-31.006],[4.848,28.938]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[23.585,33.201],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.606,0.138],[4.943,22.906],[2.355,-1.008],[-18.355,-1.711],[-2.716,5.161]],"o":[[-19.062,4.549],[-0.547,-2.219],[6.45,24.415],[5.258,0.278],[-1.912,1.445]],"v":[[11.216,20.74],[-2.284,-22.294],[-7.846,-25.544],[3.297,26.274],[15.058,18.123]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[15.308,37.862],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[10.399,1.558],[-18.355,-1.711]],"o":[[-4.119,7.582],[6.451,24.415],[22.37,1.185]],"v":[[15.996,-32.501],[-13.474,-20.282],[-2.008,31.316]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,0.741,0.431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[20.612,32.819],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1}]},{"id":"comp_9","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"paw R Outlines","ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":0,"s":[-3.3],"e":[8.7]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":20,"s":[8.7],"e":[-3.3]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":40,"s":[-3.3],"e":[7.6]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":60,"s":[7.6],"e":[-3.3]},{"t":80}]},"p":{"a":0,"k":[452.731,649.302,0]},"a":{"a":0,"k":[22.454,0.527,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.421,0],[-0.266,1.069],[1.235,0.716],[0.261,0.17],[0,-0.235]],"o":[[1.219,0],[-1.454,0.183],[-0.264,-0.143],[-0.059,0.199],[0,1.421]],"v":[[0.037,1.442],[2.537,-0.232],[-1.65,-0.962],[-2.437,-1.442],[-2.537,-0.799]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.918,0.804,0.71,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[32.258,53.233],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.454,0.183],[0,0.202],[1.422,0],[0.298,-1.004],[-0.264,-0.143]],"o":[[0.044,-0.177],[0,-1.421],[-1.186,0],[0.261,0.17],[1.235,0.716]],"v":[[2.451,1.287],[2.524,0.721],[-0.05,-1.47],[-2.524,0.077],[-1.738,0.558]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[32.345,51.714],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.135],[1.135,0],[0,1.135],[-1.135,0]],"o":[[0,1.135],[-1.135,0],[0,-1.135],[1.135,0]],"v":[[1.792,0],[-0.263,2.055],[-1.792,0],[-0.263,-2.055]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[37.411,47.932],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.723],[0.722,0],[0,0.723],[-0.723,0]],"o":[[0,0.723],[-0.723,0],[0,-0.723],[0.722,0]],"v":[[1.309,-0.181],[0,1.127],[-1.309,-0.181],[0,-1.127]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[37.091,42.855],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.883],[0.882,0],[0,0.883],[-0.883,0]],"o":[[0,0.883],[-0.883,0],[0,-0.883],[0.882,0]],"v":[[1.598,-0.159],[0,1.439],[-1.598,-0.159],[0,-1.439]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.918,0.804,0.71,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[26.149,51.399],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.021,-2.714],[2.714,-1.022],[1.021,2.713],[-2.714,1.021]],"o":[[1.021,2.714],[-2.714,1.021],[-1.021,-2.714],[2.713,-1.022]],"v":[[4.914,-2.535],[1.849,4.228],[-4.914,1.164],[-0.885,-3.661]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[29.345,44.159],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.261,0],[2.22,1.349],[0.342,1.875],[-1.087,0.199],[-0.199,-1.087],[-14.669,-8.914],[-2.507,0.771],[4.063,12.521],[-0.232,10.58],[-1.092,-0.017],[0.024,-1.105],[-2.581,-7.951],[12.28,-4.315]],"o":[[-2.337,0],[-16.195,-9.842],[-0.199,-1.086],[1.085,-0.19],[0.081,0.441],[2.432,1.477],[8.155,-2.867],[-2.546,-7.844],[0.024,-1.105],[1.104,0.024],[-0.217,9.902],[3.875,11.94],[-1.292,0.398]],"v":[[7.85,30.205],[1.01,28.176],[-23.759,-27.688],[-22.151,-30.015],[-19.824,-28.406],[3.089,24.759],[10.428,25.811],[12.932,4.276],[7.449,-23.912],[9.492,-25.868],[11.449,-23.824],[16.737,3.042],[11.678,29.61]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[24.208,30.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.137,9.915],[3.6,-0.353],[-21.415,6.575],[1.791,4.708],[3.824,2.217]],"o":[[-1.469,-6.656],[0,0],[3.033,-0.611],[0.309,3.818],[-10.817,-5.863]],"v":[[-12.42,-25.052],[-20.037,-31.991],[12.986,25.77],[18.247,15.366],[8.372,19.677]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[22.237,32.595],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.557,25.455],[0,0],[-21.414,6.576]],"o":[[0,0],[0,0],[17.467,-6.137]],"v":[[6.104,-26.995],[-25.137,-31.173],[7.669,24.596]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,0.741,0.431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[27.553,33.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1}]},{"id":"comp_10","layers":[{"ddd":0,"ind":2,"ty":0,"nm":"Other 02","td":1,"refId":"comp_11","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[478.375,687.125,0]},"a":{"a":0,"k":[960,540,0]},"s":{"a":0,"k":[2,2,100]}},"ao":0,"w":1920,"h":1080,"ip":19,"op":51,"st":19,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":0,"nm":"Eye pre-comp","tt":2,"refId":"comp_12","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":81,"st":0,"bm":0,"sr":1}]},{"id":"comp_11","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"Shape Layer 7","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[960,540,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,-100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20.8,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1118,-532],[1042,-534]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21.6,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":22.4,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23.2,"s":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":24,"s":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":24.8,"s":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":25.6,"s":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-850],[-1146,-850],[-1098,-432],[1028,-420]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":26.4,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-850],[-1146,-850],[-1098,-432],[1028,-420]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-850],[-1146,-850],[-1098,-432],[1028,-420]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27.2,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-850],[-1146,-850],[-1098,-432],[1028,-420]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1118,-532],[1042,-534]],"c":true}]},{"t":28}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"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,"mn":"ADBE Vector Group"}],"ip":20.8,"op":28.8,"st":14.4,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 5","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[960,540,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,-100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1118,-532],[1042,-534]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0.8,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":1.6,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":2.4,"s":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":3.2,"s":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":4,"s":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":4.8,"s":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-850],[-1146,-850],[-1098,-432],[1028,-420]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5.6,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-850],[-1146,-850],[-1098,-432],[1028,-420]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-850],[-1146,-850],[-1098,-432],[1028,-420]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":6.4,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-850],[-1146,-850],[-1098,-432],[1028,-420]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1118,-532],[1042,-534]],"c":true}]},{"t":7.2}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"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,"mn":"ADBE Vector Group"}],"ip":0,"op":8,"st":-6.4,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 6","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[960,540,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20.8,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1118,-532],[1042,-534]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21.6,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":22.4,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23.2,"s":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":24,"s":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":24.8,"s":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":25.6,"s":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":26.4,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27.2,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1118,-532],[1042,-534]],"c":true}]},{"t":28}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"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,"mn":"ADBE Vector Group"}],"ip":20.8,"op":28.8,"st":14.4,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 4","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[960,540,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1118,-532],[1042,-534]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0.8,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":1.6,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":2.4,"s":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":3.2,"s":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":4,"s":[{"i":[[0,0],[0,0],[0,0],[-912,-162]],"o":[[0,0],[0,0],[0,0],[912,162]],"v":[[1124,-818],[-1146,-818],[-1098,68],[1040,74]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":4.8,"s":[{"i":[[0,0],[0,0],[0,0],[-1000,-400]],"o":[[0,0],[0,0],[0,0],[860.026,344.01]],"v":[[1124,-818],[-1146,-818],[-1088,-166],[998,-150]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5.6,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":6.4,"s":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1098,-400],[1028,-388]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[-916,-620]],"o":[[0,0],[0,0],[0,0],[767.083,519.205]],"v":[[1124,-818],[-1146,-818],[-1118,-532],[1042,-534]],"c":true}]},{"t":7.2}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0,0,0,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"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,"mn":"ADBE Vector Group"}],"ip":0,"op":8,"st":-6.4,"bm":0,"sr":1}]},{"id":"comp_12","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"eye R Outlines - Group 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[472.904,687.033,0]},"a":{"a":0,"k":[5.068,10.909,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.155],[-1.155,0],[0,1.155],[1.155,0]],"o":[[0,1.155],[1.155,0],[0,-1.155],[-1.155,0]],"v":[[-2.091,0],[0,2.091],[2.091,0],[0,-2.091]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[5.068,10.909],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"eye R Outlines - Group 2","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[478.803,687.033,0]},"a":{"a":0,"k":[10.968,10.909,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-3.258],[-3.258,0],[0,3.258],[3.258,0]],"o":[[0,3.258],[3.258,0],[0,-3.258],[-3.258,0]],"v":[[-5.899,0],[0,5.899],[5.899,0],[0,-5.899]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.31,0.243,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[10.968,10.909],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"eye R Outlines - Group 3","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[478.744,687.033,0]},"a":{"a":0,"k":[10.909,10.909,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-5.887],[-5.887,0],[0,5.887],[5.887,0]],"o":[[0,5.887],[5.887,0],[0,-5.887],[-5.887,0]],"v":[[-10.659,0],[0,10.659],[10.659,0],[0,-10.659]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[10.909,10.909],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1}]},{"id":"comp_13","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"Shape Layer 3","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.375,0.063],[0,0],[-4.188,0],[0,0]],"o":[[0,0],[0,0],[4.375,-0.063],[0,0],[4.188,0],[0,0]],"v":[[223.531,132.375],[224.344,145.313],[230.219,133.188],[233.281,143.625],[237.906,133.5],[240.656,145.063]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 3","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.75,3.688],[0.438,0],[-1.438,-6.625],[-0.688,3.75]],"o":[[0,0],[-0.75,-3.688],[-0.438,0],[1.438,6.625],[0.688,-3.75]],"v":[[212.344,138.438],[220.594,135.313],[215.969,132.875],[211.656,142.063],[220.719,142.813]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[207.691,127.188],[207.629,145]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 2","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-3.688,0.063],[0,-0.813],[7.063,0.5]],"o":[[0,0],[0,0],[3.688,-0.063],[0,0.813],[-7.063,-0.5]],"v":[[195.5,126],[195.5,144.25],[200.813,133.438],[203.75,139.5],[196.563,144.125]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 5","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,-5.875],[-1.5,0],[0.188,5.875]],"o":[[0,0],[0,5.875],[1.5,0],[-0.188,-5.875]],"v":[[186.438,132.375],[180.563,139.188],[186.188,145.188],[192.125,136.875]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 4","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.625,2.813]],"o":[[0,0],[0,0],[4.625,-2.813]],"v":[[172,133.625],[172.688,144.875],[177.313,132.688]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 3","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.063,-0.125],[0,0],[4.938,0.438],[0,0]],"o":[[0,0],[0,0],[5.125,0.125],[0,0],[-4.938,-0.438],[0,0]],"v":[[158.063,151.938],[157.938,137.563],[163.063,133.25],[168.813,139.75],[163.688,144.125],[158.5,142.375]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.938,-5.375],[3.688,-0.375],[-0.063,1.375],[-3,-0.313],[0,0]],"o":[[0,0],[1.938,5.375],[-3.688,0.375],[0.063,-1.375],[3,0.313],[0,0]],"v":[[131.563,133.5],[140,136.313],[137.063,146],[132.5,141.375],[137.063,137.938],[140.313,139.813]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.375,3.813],[0,0],[-0.375,-5.75],[-4.375,6.375]],"o":[[0,0],[-0.375,-3.063],[0,0],[0.375,5.75],[4.375,-6.375]],"v":[[223.75,112.438],[231.563,109.25],[228.063,106.625],[222.688,112.25],[231.688,116.813]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"Text","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[209.188,107],[215.063,118.438],[219.5,107.938]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 16","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.25,-12.313],[0,0],[0.5,3.813],[-1.5,0],[0,0]],"o":[[0,0],[0.125,4.813],[0,0],[-0.5,-3.813],[1.5,0],[0,0]],"v":[[195.563,107.375],[205.938,115.125],[201.5,119.875],[197.125,115.938],[200.875,111.75],[205.188,113.5]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 15","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.813,0.063],[0,0]],"o":[[0,0],[0,0],[2.813,-0.063],[0,0]],"v":[[184,103.125],[184.875,119.75],[189.438,108.688],[192.5,119.625]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 14","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.125,3.438],[0,0],[-3,-8.938],[0,0]],"o":[[0,0],[0.125,-3.438],[0,0],[2.875,6.563],[0,0]],"v":[[160,112.625],[167.75,110],[164.125,106.688],[159.813,117.313],[167.875,117.125]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 13","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-2.438,-0.25],[0,0],[-3,0],[0,0]],"o":[[0,0],[2.438,0.25],[0,0],[3,0],[0,0]],"v":[[139.938,107.313],[144.25,118.25],[147.688,108.063],[150.5,118.688],[155.625,107.5]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 12","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[3.188,-1.75]],"o":[[0,0],[-3.188,1.75]],"v":[[232.875,91.5],[230.313,97.438]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 11","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.188,0.375],[0,0]],"o":[[0,0],[0,0],[4.188,-0.375],[0,0]],"v":[[217.438,80.375],[218.125,93.625],[222.688,82.125],[227.125,94.625]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 10","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,-5.75],[-2.25,0],[0,4.438]],"o":[[0,0],[0,5.75],[2.25,0],[-0.063,-5.688]],"v":[[209.188,80.313],[203.25,86.75],[209,93.125],[214.25,86.563]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 9","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[193.313,81.5],[198.625,81.5]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 8","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.25,-0.188]],"o":[[0,0],[0,0],[4.25,0.188]],"v":[[195.75,77.875],[195.75,88.938],[200.125,93.563]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 7","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,-4],[-1.375,-0.813],[3.438,0],[0,0]],"o":[[0,0],[0,4],[1.375,0.813],[-3.438,0],[0,0]],"v":[[190.375,82.563],[181.438,84.188],[190.375,88],[186.75,92.5],[181.75,89.813]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 6","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.125,0],[0,0]],"o":[[0,0],[0,0],[5.188,0],[0,0]],"v":[[169.813,80.625],[169.563,86.938],[174.438,92.688],[177.875,83.063]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 5","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.75,0],[0,-5.375],[-1.813,0],[0,4.125]],"o":[[-1.75,0],[0,5.375],[1.813,0],[0,-6]],"v":[[160.625,80.25],[155.188,86.75],[160.75,92.938],[166.188,86.625]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 4","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[150.75,84.438],[139.688,84.438]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 3","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[151.688,93.625],[151.188,76.625]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[139,92.375],[139,76.625]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1}]},{"id":"comp_14","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"Shape Layer 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[3,-28.75]],"o":[[0,0],[-3,28.75]],"v":[[45.25,-297.25],[50.5,-232.75]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6.1},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 5","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.75,-3],[0,0]],"o":[[0,0],[1.75,3],[0,0]],"v":[[27.75,-299.75],[26.25,-253.5],[63.75,-253.5]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6.1},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 4","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.188,0],[0,-35],[-7.5,0],[1.25,32.25]],"o":[[-4.188,0],[0,35],[7.5,0],[-1.25,-32.25]],"v":[[-7.75,-300.25],[-31.5,-259.75],[-9.25,-227.25],[11.75,-266.5]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6.1},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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 3","np":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[2.75,-23.25]],"o":[[0,0],[-2.75,23.25]],"v":[[-62.25,-298],[-57.5,-233.75]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6.1},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.25,-3.5],[0,0]],"o":[[0,0],[0.25,3.5],[0,0]],"v":[[-81,-300],[-81.75,-253.25],[-43.5,-253.5]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6.1},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1}]},{"id":"comp_15","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"light leak","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[-5.432,6.772],[59.462,37.439]],"o":[[0,0],[14.997,-18.696],[-81,-51]],"v":[[-182.75,-42],[-172.581,-52.731],[-196.75,-149]],"c":false}],"e":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}],"e":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}],"e":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":14,"s":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}],"e":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}],"e":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23.75,"s":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}],"e":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":28,"s":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}],"e":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":33,"s":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}],"e":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":38,"s":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}],"e":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":43,"s":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}],"e":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":47.499,"s":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":52.25,"s":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":57,"s":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":61.751,"s":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":66.501,"s":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":71.25,"s":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":76,"s":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":81,"s":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-158.016,-109.372],[-194.25,-150.25]],"c":false}]},{"t":85}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":3.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"},{"ty":"tm","s":{"a":0,"k":68.1,"ix":1},"e":{"a":0,"k":78.5,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"cap 3","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[-5.432,6.772],[59.462,37.439]],"o":[[0,0],[14.997,-18.696],[-81,-51]],"v":[[-182.75,-42],[-172.581,-52.731],[-196.75,-149]],"c":false}],"e":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}],"e":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}],"e":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":14,"s":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}],"e":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}],"e":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23.75,"s":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}],"e":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":28,"s":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}],"e":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":33,"s":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}],"e":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":38,"s":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}],"e":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":43,"s":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}],"e":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":47.499,"s":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":52.25,"s":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":57,"s":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":61.751,"s":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":66.501,"s":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":71.25,"s":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":76,"s":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":81,"s":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-158.016,-109.372],[-194.25,-150.25]],"c":false}]},{"t":85}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16.8},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"},{"ty":"tm","s":{"a":0,"k":97,"ix":1},"e":{"a":0,"k":93.2,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"cap 2","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[-5.432,6.772],[59.462,37.439]],"o":[[0,0],[14.997,-18.696],[-81,-51]],"v":[[-182.75,-42],[-172.581,-52.731],[-196.75,-149]],"c":false}],"e":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}],"e":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}],"e":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":14,"s":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}],"e":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}],"e":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23.75,"s":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}],"e":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":28,"s":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}],"e":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":33,"s":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}],"e":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":38,"s":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}],"e":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":43,"s":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}],"e":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":47.499,"s":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":52.25,"s":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":57,"s":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":61.751,"s":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":66.501,"s":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":71.25,"s":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":76,"s":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":81,"s":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-158.016,-109.372],[-194.25,-150.25]],"c":false}]},{"t":85}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.918,0.804,0.71,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16.8},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"},{"ty":"tm","s":{"a":0,"k":99.4,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"cap","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[-5.432,6.772],[59.462,37.439]],"o":[[0,0],[14.997,-18.696],[-81,-51]],"v":[[-182.75,-42],[-172.581,-52.731],[-196.75,-149]],"c":false}],"e":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}],"e":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}],"e":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":14,"s":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}],"e":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}],"e":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23.75,"s":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}],"e":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":28,"s":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}],"e":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":33,"s":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}],"e":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":38,"s":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}],"e":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":43,"s":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}],"e":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":47.499,"s":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":52.25,"s":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":57,"s":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":61.751,"s":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":66.501,"s":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":71.25,"s":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":76,"s":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":81,"s":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-158.016,-109.372],[-194.25,-150.25]],"c":false}]},{"t":85}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16.8},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"},{"ty":"tm","s":{"a":0,"k":92.3,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"tail","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500.25,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[-5.432,6.772],[59.462,37.439]],"o":[[0,0],[14.997,-18.696],[-81,-51]],"v":[[-182.75,-42],[-172.581,-52.731],[-196.75,-149]],"c":false}],"e":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}],"e":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}],"e":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":14,"s":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}],"e":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}],"e":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23.75,"s":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}],"e":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":28,"s":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}],"e":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":33,"s":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}],"e":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":38,"s":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}],"e":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":43,"s":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}],"e":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":47.499,"s":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":52.25,"s":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":57,"s":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":61.751,"s":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":66.501,"s":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":71.25,"s":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":76,"s":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":81,"s":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-158.016,-109.372],[-194.25,-150.25]],"c":false}]},{"t":85}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,0.741,0.431,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":14},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[1,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,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":4,"nm":"tail 2","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[-5.432,6.772],[59.462,37.439]],"o":[[0,0],[14.997,-18.696],[-81,-51]],"v":[[-182.75,-42],[-172.581,-52.731],[-196.75,-149]],"c":false}],"e":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}],"e":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}],"e":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":14,"s":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}],"e":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}],"e":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23.75,"s":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}],"e":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":28,"s":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}],"e":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":33,"s":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}],"e":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":38,"s":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}],"e":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":43,"s":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}],"e":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":47.499,"s":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":52.25,"s":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":57,"s":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":61.751,"s":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":66.501,"s":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":71.25,"s":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":76,"s":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":81,"s":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-158.016,-109.372],[-194.25,-150.25]],"c":false}]},{"t":85}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16.8},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":6,"ty":4,"nm":"stroke","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[-5.432,6.772],[59.462,37.439]],"o":[[0,0],[14.997,-18.696],[-81,-51]],"v":[[-182.75,-42],[-172.581,-52.731],[-196.75,-149]],"c":false}],"e":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[{"i":[[0,0],[-10.134,15.247],[41.25,28.5]],"o":[[0,0],[22.516,-33.878],[-78.75,-54.409]],"v":[[-183.5,-42.5],[-169.016,-64.497],[-189.5,-144]],"c":false}],"e":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[{"i":[[0,0],[-8.285,12.85],[35,24]],"o":[[0,0],[26.516,-41.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-170.766,-66.872],[-183.75,-142]],"c":false}],"e":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":14,"s":[{"i":[[0,0],[-11.484,20.122],[21.625,13.125]],"o":[[0,0],[27.516,-40.878],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-173.766,-79.872],[-170.5,-142.5]],"c":false}],"e":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[{"i":[[0,0],[-6.732,19.872],[15.997,17.501]],"o":[[0,0],[6.018,-20.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-178.018,-89.872],[-160.997,-141.001]],"c":false}],"e":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23.75,"s":[{"i":[[0,0],[-5.457,18.05],[5.25,16.75]],"o":[[0,0],[10.016,-33.128],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-184.516,-89.872],[-148.25,-144]],"c":false}],"e":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":28,"s":[{"i":[[0,0],[-7.484,26.122],[-8.5,2.25]],"o":[[0,0],[9.532,-33.271],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-187.766,-90.122],[-139.25,-135.5]],"c":false}],"e":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":33,"s":[{"i":[[0,0],[-4.984,27.872],[-10.75,0.5]],"o":[[0,0],[6.512,-36.416],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-197.516,-91.622],[-151.75,-140.5]],"c":false}],"e":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":38,"s":[{"i":[[0,0],[-2.985,25.872],[-10.002,3.5]],"o":[[0,0],[3.995,-34.631],[-82.192,-49.057]],"v":[[-183.5,-42.5],[-202.015,-91.372],[-160.248,-141.75]],"c":false}],"e":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":43,"s":[{"i":[[0,0],[-3.984,28.372],[-12.5,2.5]],"o":[[0,0],[4.016,-34.628],[-7.25,-2.75]],"v":[[-183.5,-42.5],[-208.516,-98.372],[-168.5,-148.5]],"c":false}],"e":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":47.499,"s":[{"i":[[0,0],[2.516,25.872],[-22.75,7]],"o":[[0,0],[-2.385,-24.517],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-180.75,-147.5]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":52.25,"s":[{"i":[[0,0],[17.224,27.795],[-22.75,7]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-214.516,-99.872],[-185,-147]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":57,"s":[{"i":[[0,0],[17.224,27.795],[-33.75,18.75]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-206.266,-100.372],[-200.25,-150]],"c":false}],"e":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":61.751,"s":[{"i":[[0,0],[17.224,27.795],[-15,19]],"o":[[0,0],[-11.234,-18.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-195.516,-106.622],[-209.75,-148.5]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":66.501,"s":[{"i":[[0,0],[12.7,30.132],[-9.75,22.25]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-187.266,-108.122],[-217.25,-153.75]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":71.25,"s":[{"i":[[0,0],[12.7,30.132],[26,6]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-177.516,-115.872],[-221.5,-151.25]],"c":false}],"e":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":76,"s":[{"i":[[0,0],[12.7,30.132],[25,7.75]],"o":[[0,0],[-8.484,-20.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-169.516,-116.622],[-211.5,-154.5]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":81,"s":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-159.266,-104.872],[-196.125,-148.625]],"c":false}],"e":[{"i":[[0,0],[8.885,37.903],[21.5,13.25]],"o":[[0,0],[-4.484,-19.128],[-48,-26.25]],"v":[[-183.5,-42.5],[-158.016,-109.372],[-194.25,-150.25]],"c":false}]},{"t":85}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":25.2},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"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,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1}]}],"layers":[{"ddd":0,"ind":0,"ty":4,"nm":"Shape Layer 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"leg R Outlines","ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":-20,"s":[0],"e":[8.6]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":0,"s":[8.6],"e":[0]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":20,"s":[0],"e":[8.6]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":40,"s":[8.6],"e":[1]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":60,"s":[1],"e":[8.6]},{"t":81}]},"p":{"a":0,"k":[463.282,549.841,0]},"a":{"a":0,"k":[63.702,63.684,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.499,0],[0.693,0.08],[2.217,4.953],[-2.287,8.436],[-0.44,1.97],[-0.031,2.408],[1.292,1.411],[0.091,-0.008],[0.283,-0.525],[0.134,-1.585],[0.006,-0.043],[20.369,-1.962],[7.858,22.179],[-1.041,0.368],[-0.37,-1.042],[-17.283,1.664],[-2.889,19.157],[-1.036,1.917],[-1.662,0.205],[-1.114,-1.217],[0.045,-3.529],[0.789,-3.533],[0.555,-2.049],[-3.246,-7.25],[-4.777,-0.552],[-1.977,2.598],[1.504,6.013],[-0.928,11.882],[-0.169,3.997],[7.199,2.046],[2.984,-2.315],[0,0],[2.413,0.519],[2.149,3.999],[0.664,0.998],[2.371,2.047],[2.43,0.924],[-0.392,1.032],[-1.034,-0.393],[-2.973,-2.567],[-2.033,-3.052],[-0.75,-1.395],[-2.401,-0.515],[-1.741,1.336],[0,0],[-5.322,-1.512],[0.62,-14.656],[0.308,-3.94],[-2.931,-11.726],[4.065,-5.34]],"o":[[-0.669,0],[-6.206,-0.716],[-3.83,-8.553],[0.569,-2.098],[0.727,-3.257],[0.024,-1.854],[-0.334,-0.365],[-0.301,0.037],[-0.732,1.354],[-0.004,0.043],[-3.16,21.127],[-18.822,1.812],[-0.369,-1.041],[1.04,-0.373],[7.172,20.245],[18.401,-1.772],[0.18,-2.113],[0.871,-1.611],[1.532,-0.189],[2.179,2.38],[-0.035,2.691],[-0.46,2.059],[-2.104,7.758],[1.636,3.652],[3.915,0.45],[3.042,-3.997],[-3.089,-12.358],[0.304,-3.906],[0.303,-7.188],[-3.376,-0.955],[0,0],[-2.714,2.084],[-4.209,-0.903],[-0.703,-1.31],[-1.832,-2.75],[-2.577,-2.224],[-1.033,-0.392],[0.392,-1.032],[2.908,1.104],[2.645,2.283],[0.769,1.155],[1.738,3.235],[1.213,0.263],[0,0],[3.361,-2.609],[7.4,2.103],[-0.172,4.067],[-0.943,12.096],[1.746,6.981],[-2.484,3.265]],"v":[[44.748,57.921],[42.701,57.802],[28.618,48.324],[29.441,22.613],[30.988,16.562],[32.098,8.259],[30.88,1.138],[30.217,0.814],[29.202,1.648],[28.133,6.392],[28.118,6.52],[-9.458,43.393],[-59.317,13.259],[-58.1,10.706],[-55.545,11.923],[-9.84,39.411],[24.153,5.99],[25.683,-0.255],[29.727,-3.156],[33.83,-1.563],[36.098,8.31],[34.891,17.433],[33.301,23.66],[32.269,46.69],[43.16,53.828],[52.436,50.451],[53.003,34.327],[51.801,-2.199],[52.59,-14.141],[45.129,-35.74],[35.386,-31.758],[34.661,-31.197],[26.938,-28.837],[18.145,-38.271],[16.114,-41.816],[9.779,-49.045],[2.234,-53.79],[1.075,-56.369],[3.654,-57.528],[12.394,-52.072],[19.442,-44.033],[21.67,-40.165],[27.778,-32.748],[32.226,-34.37],[32.933,-34.918],[46.222,-39.588],[56.587,-13.971],[55.788,-1.889],[56.884,33.357],[55.62,52.873]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[67.469,67.673],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.625,8.162],[-0.372,5.471],[1.907,0.534],[-3.063,-6.842],[-5.844,0.038],[-2.24,2.907],[-0.001,0.002]],"o":[[-2.625,-3.069],[-1.931,-0.273],[-1.823,7.048],[2.271,5.072],[3.55,-0.054],[1.768,-2.297],[-0.001,0]],"v":[[-3.032,-0.102],[-5.64,-13.574],[-11.4,-14.776],[-11.456,6.329],[2.93,14.738],[12.102,10.484],[14.519,2.483]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.918,0.804,0.71,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[109.368,108.852],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.271,5.072],[-1.823,7.049],[-1.931,-0.274],[11.443,1.413],[0.002,-0.138],[0.646,-2.861],[-4.5,-9.933],[-5.95,0.091]],"o":[[-3.063,-6.841],[1.907,0.534],[0.887,-13.023],[-0.002,0.148],[-0.038,2.938],[-2.227,9.855],[2.315,5.111],[-5.844,0.038]],"v":[[-4.791,20.965],[-4.735,-0.14],[1.024,1.063],[-4.493,-29.466],[-1.436,-15.32],[-2.57,-9.545],[-5.094,20.965],[9.594,29.375]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[102.704,94.215],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[9.554,26.656],[-32.696,18.31],[-6.344,-25.735],[-18.029,29.209]],"o":[[-7.123,-20.101],[-39.139,4.232],[11.644,32.487],[-22.067,13.465]],"v":[[-25.282,3.828],[-6.526,-53.063],[-36.034,15.217],[42.462,25.984]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[44.785,65.355],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100.6,100.6],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.625,-3.069],[-0.001,0],[0.743,2.976],[0.311,2.196],[5.756,0.816]],"o":[[5.625,8.162],[0.03,-3.358],[-0.552,-2.208],[-5.813,0.916],[-0.372,5.471]],"v":[[-7.3,2.838],[10.251,5.424],[8.777,-4.396],[7.504,-11.001],[-9.908,-10.633]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[113.637,105.911],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.386,5.545],[-0.686,16.192],[8.802,2.501],[3.34,-2.565],[3.71,5.571],[2.571,2.219],[2.994,1.138],[-9.788,-40.171],[-7.196,48.117],[-0.897,1.659],[-1.619,-1.768],[0.032,-2.497],[0.639,-2.862],[-4.448,-9.933],[-5.924,7.782]],"o":[[-4.008,-16.034],[0.311,-7.345],[-4.679,-1.328],[-8.845,6.791],[-1.882,-2.825],[-2.41,-2.081],[-48.535,-11.764],[13.375,37.75],[0.156,-1.853],[1,-1.85],[1.798,1.964],[-0.038,2.938],[-2.2,9.855],[3.653,8.16],[3.773,-4.956]],"v":[[59.653,37.831],[59.297,-10.066],[50.385,-33.674],[38.153,-28.794],[22.487,-38.935],[15.795,-46.57],[7.653,-51.669],[-52.722,16.581],[30.849,10.214],[32.152,4.685],[37.064,3.776],[38.807,12.275],[37.648,20.987],[35.153,51.496],[58.737,55.651]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,0.741,0.431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[62.76,63.684],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"mouse Outlines","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500.747,672.596,0]},"a":{"a":0,"k":[4.625,4.708,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,2.462],[2.416,0],[0,-2.462],[0,0]],"o":[[0,-2.462],[-2.416,0],[0,2.462],[0,0]],"v":[[4.375,0],[0,-4.458],[-4.375,0],[0,4.458]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.31,0.243,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[4.625,4.708],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"nose Outlines","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500.747,681.836,0]},"a":{"a":0,"k":[6.388,6.657,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1.5,3.938],[-1.5,3.938],[-1.5,-3.938],[1.5,-3.938]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.31,0.243,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[6.388,4.188],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.83],[0,1.508],[2.529,0]],"o":[[0,1.508],[0,-2.83],[-2.529,0]],"v":[[-6.138,1.808],[6.138,1.808],[0,-3.317]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.31,0.243,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[6.388,9.748],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":0,"nm":"Paw R","refId":"comp_8","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":-7.7},"p":{"a":0,"k":[538.625,649.75,0]},"a":{"a":0,"k":[537,648,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":0,"nm":"Paw","refId":"comp_9","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,503.5,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":6,"ty":0,"nm":"Eye","refId":"comp_10","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[544,500,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":7,"ty":0,"nm":"Eye","refId":"comp_10","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":8,"ty":4,"nm":"ball","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[517.819,783.702,0]},"a":{"a":0,"k":[26,26,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[11.993,0],[0,-11.993],[-11.993,0],[0,11.993]],"o":[[-11.993,0],[0,11.993],[11.993,0],[0,-11.993]],"v":[[0,-21.75],[-21.75,0],[0,21.75],[21.75,0]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[14.198,0],[0,14.198],[-14.198,0],[0,-14.198]],"o":[[-14.198,0],[0,-14.198],[14.198,0],[0,14.198]],"v":[[0,25.75],[-25.75,0],[0,-25.75],[25.75,0]],"c":true}},"nm":"Path 2","mn":"ADBE Vector Shape - Group"},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[26,26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":4,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.183,0.596],[-0.997,12.007],[-1.9,2.925],[0.677,-8.156],[-13.071,-1.085],[-2.664,11.238]],"o":[[-12.007,-0.997],[0.309,-3.719],[-6.63,3.735],[-1.086,13.071],[11.861,0.985],[-4.405,5.041]],"v":[[5.686,10.933],[-14.25,-12.613],[-10.815,-22.679],[-22.844,-3.939],[-1.141,21.694],[23.93,3.532]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.847,0.227,0.361,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[25.176,27.975],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.129,-2.133],[3.979,2.107],[-1.129,2.133],[-3.978,-2.106]],"o":[[-1.129,2.133],[-3.979,-2.106],[1.13,-2.134],[3.979,2.107]],"v":[[7.205,3.813],[-2.044,3.863],[-7.205,-3.814],[2.044,-3.863]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,0.451,0.569,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[33.168,13.027],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.085,-13.072],[13.072,1.085],[-1.085,13.072],[-13.071,-1.085]],"o":[[-1.085,13.072],[-13.071,-1.086],[1.085,-13.072],[13.072,1.086]],"v":[[23.669,1.965],[-1.965,23.669],[-23.668,-1.965],[1.964,-23.669]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.937,0.329,0.435,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[26,26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":9,"ty":0,"nm":"Text","refId":"comp_13","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":10,"ty":4,"nm":"buble Outlines","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[668.994,615.748,0]},"a":{"a":0,"k":[89.148,72.386,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[17.175,-12.465],[-21.777,12.221],[23.58,3.505]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-24.27,13.208],[17.415,-13.208],[24.27,3.883],[23.973,3.939]],"c":true}},"nm":"Path 2","mn":"ADBE Vector Shape - Group"},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[24.52,99.331],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":4,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[16.844,-12.776],[-23.475,12.776],[23.475,3.755]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[24.972,99.27],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[39.501,0],[0,-39.501],[-39.501,0],[0,39.501]],"o":[[-39.501,0],[0,39.501],[39.501,0],[0,-39.501]],"v":[[0,-71.637],[-71.637,0.001],[0,71.637],[71.637,0.001]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[39.776,0],[0,39.776],[-39.776,0],[0,-39.777]],"o":[[-39.776,0],[0,-39.777],[39.776,0],[0,39.776]],"v":[[0,72.137],[-72.137,0.001],[0,-72.137],[72.137,0.001]],"c":true}},"nm":"Path 2","mn":"ADBE Vector Shape - Group"},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[105.91,72.387],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":4,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-39.702],[-39.702,0],[0,39.702],[39.701,0]],"o":[[0,39.702],[39.701,0],[0,-39.702],[-39.702,0]],"v":[[-71.886,0],[0,71.887],[71.886,0],[0,-71.887]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[105.91,72.387],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":11,"ty":0,"nm":"404 text","refId":"comp_14","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[500,500,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":12,"ty":4,"nm":"cat Outlines","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[477.363,647.652,0]},"a":{"a":0,"k":[114.78,181.106,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.059,0],[0.035,0.001],[0,0],[-0.054,1.103],[-1.106,-0.055],[0,0],[0.056,-1.103]],"o":[[-0.034,0],[0,0],[-1.104,-0.054],[0.055,-1.103],[0,0],[1.102,0.055],[-0.053,1.069]],"v":[[7.877,2.418],[7.774,2.416],[-7.975,1.632],[-9.873,-0.464],[-7.777,-2.363],[7.975,-1.58],[9.872,0.517]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[123.409,15.802],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.988,-0.496],[0.495,-0.988]],"o":[[0,0],[0,0],[0.495,-0.988],[0.987,0.495],[0,0]],"v":[[-1.125,6.904],[-4.701,5.111],[0.629,-5.515],[3.314,-6.408],[4.206,-3.723]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[121.74,16.257],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,2.507],[14.595,0],[0,-2.507],[-14.596,0]],"o":[[0,-2.507],[-14.596,0],[0,2.507],[14.595,0]],"v":[[26.428,0],[0.001,-4.54],[-26.428,0],[0.001,4.54]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.886,0.835,0.843,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[141.394,340.906],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.187,0],[0.236,0.583],[-0.768,0.312],[-29.12,0],[-8.958,-3.666],[0.314,-0.766],[0.772,0.316],[28.905,0],[8.787,-3.557]],"o":[[-0.593,0],[-0.311,-0.768],[9.055,-3.665],[29.292,0],[0.767,0.315],[-0.313,0.765],[-8.686,-3.556],[-28.737,0],[-0.184,0.074]],"v":[[-62.046,5.032],[-63.437,4.095],[-62.609,2.141],[-0.03,-5.236],[62.614,2.142],[63.434,4.099],[61.477,4.92],[-0.03,-2.236],[-61.484,4.923]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[125.189,333.222],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[19.438,0],[13.765,1.633],[0,2.773],[0,0],[-1.104,0],[0,-1.104],[0,0],[-41.412,0],[-2.842,2.866],[0,0],[-1.104,0],[0,-1.104],[0,0],[20.208,-2.397]],"o":[[-19.438,0],[-20.209,-2.397],[0,0],[0,-1.104],[1.105,0],[0,0],[2.843,2.866],[41.412,0],[0,0],[0,-1.104],[1.105,0],[0,0],[0,2.773],[-13.765,1.633]],"v":[[0,15.757],[-51.489,13.226],[-74.484,5.16],[-74.484,-13.757],[-72.484,-15.757],[-70.484,-13.757],[-70.484,4.86],[0,11.757],[70.484,4.86],[70.484,-13.757],[72.484,-15.757],[74.484,-13.757],[74.484,5.16],[51.49,13.226]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[124.437,165.793],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[19.418,0],[12,0.959],[-0.066,0.825],[-0.837,-0.064],[-14.448,0],[-1.835,2.963],[-0.791,0],[0,-0.828],[22.554,-2.676]],"o":[[-14.526,0],[-0.826,-0.065],[0.065,-0.826],[11.922,0.952],[42.991,0],[0.056,-0.776],[0.828,0],[0,1.589],[-13.747,1.63]],"v":[[-15.998,5.799],[-56.545,4.333],[-57.92,2.719],[-56.306,1.343],[-15.998,2.799],[54.99,-4.409],[56.486,-5.799],[57.986,-4.299],[35.432,3.271]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[140.571,168.906],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[14.526,0],[13.748,1.63],[0,1.589],[-0.829,0],[-0.056,-0.776],[-42.991,0],[-11.922,0.952],[-0.067,-0.826],[0.826,-0.065]],"o":[[-19.418,0],[-22.553,-2.676],[0,-0.828],[0.792,0],[1.836,2.963],[14.448,0],[0.814,-0.066],[0.066,0.825],[-11.999,0.959]],"v":[[15.998,5.799],[-35.433,3.271],[-57.986,-4.299],[-56.486,-5.799],[-54.99,-4.409],[15.998,2.799],[56.306,1.343],[57.921,2.719],[56.545,4.333]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[108.44,162.792],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[19.437,0],[13.766,1.633],[0,2.773],[-1.455,0.915],[-0.588,-0.934],[0.858,-0.611],[-39.858,0],[-4.429,2.835],[0.029,0.016],[-0.546,0.959],[-0.957,-0.548],[0,-1.362],[20.208,-2.398]],"o":[[-19.437,0],[-20.209,-2.398],[0,-1.271],[0.933,-0.586],[0.568,0.903],[4.413,2.835],[39.844,0],[-0.028,-0.017],[-0.959,-0.548],[0.548,-0.959],[1.676,0.957],[0,2.773],[-13.766,1.633]],"v":[[0,7.32],[-51.489,4.789],[-74.484,-3.277],[-72.292,-6.572],[-69.535,-5.945],[-70.066,-3.25],[0,3.32],[70.063,-3.247],[69.977,-3.297],[69.23,-6.026],[71.959,-6.772],[74.484,-3.277],[51.49,4.789]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[124.437,155.313],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.341,0],[8.168,10.039],[3.655,16.203],[-5.521,17.555],[-8.298,10.043],[0.231,8.958],[-1.104,0.028],[-0.029,-1.103],[4.651,-5.629],[2.925,-9.299],[-4.702,-20.854],[-15.843,-16.775],[-0.035,-0.043],[-35.249,0.116],[-5.559,7.043],[-0.04,0.042],[-3.548,15.733],[5.31,16.885],[7.967,9.644],[-0.267,10.299],[-1.091,-0.052],[0.029,-1.105],[-4.244,-5.136],[-3.08,-9.793],[4.857,-21.542],[16.427,-17.427],[28.718,-0.087]],"o":[[-28.302,0],[-16.428,-17.426],[-4.857,-21.543],[3.081,-9.795],[4.242,-5.134],[-0.028,-1.105],[1.077,-0.066],[0.265,10.301],[-7.968,9.643],[-5.31,16.884],[3.549,15.733],[0.037,0.04],[5.801,7.258],[33.924,-0.103],[0.037,-0.046],[15.844,-16.776],[4.702,-20.853],[-2.924,-9.298],[-4.652,-5.63],[0.027,-1.104],[1.105,0.028],[-0.232,8.957],[8.297,10.043],[5.522,17.556],[-3.654,16.201],[-7.949,9.882],[-0.339,0.001]],"v":[[0.339,91.952],[-71.485,78.371],[-99.372,21.779],[-98.357,-37.985],[-81.209,-67.881],[-71.585,-89.835],[-69.637,-91.886],[-67.586,-89.939],[-78.125,-65.333],[-94.541,-36.786],[-95.47,20.898],[-68.523,75.681],[-68.415,75.806],[1.349,87.952],[68.408,75.814],[68.523,75.681],[95.469,20.897],[94.542,-36.786],[78.127,-65.333],[67.588,-89.939],[69.638,-91.886],[71.586,-89.835],[81.211,-67.88],[98.357,-37.985],[99.372,21.779],[71.49,78.366],[1.361,91.952]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[125.08,264.504],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.234,0],[0.303,0.802],[1.629,2.507],[-0.926,0.602],[-0.601,-0.926],[-1.209,-3.207],[1.033,-0.39]],"o":[[-0.809,0],[-1.107,-2.938],[-0.603,-0.927],[0.928,-0.602],[1.787,2.749],[0.389,1.033],[-0.232,0.087]],"v":[[2.168,6.435],[0.296,5.139],[-3.826,-3.066],[-3.239,-5.833],[-0.473,-5.246],[4.04,3.729],[2.873,6.306]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[207.333,222.298],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.02,0],[0.064,0.006],[-0.105,1.099],[2.763,9.485],[-1.061,0.309],[-0.308,-1.062],[1.248,-13.044]],"o":[[-0.063,0],[-1.1,-0.105],[1.2,-12.532],[-0.31,-1.061],[1.058,-0.31],[2.909,9.981],[-0.099,1.036]],"v":[[0.695,18.849],[0.503,18.841],[-1.298,16.66],[-3.622,-16.059],[-2.262,-18.539],[0.217,-17.178],[2.684,17.039]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[214.211,251.048],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.632,0],[0.349,0.243],[-0.632,0.907],[-2.733,17.109],[-1.087,-0.178],[0.174,-1.09],[9.283,-13.317]],"o":[[-0.395,0],[-0.906,-0.632],[8.955,-12.845],[0.175,-1.091],[1.091,0.174],[-2.824,17.676],[-0.389,0.557]],"v":[[-9.44,26.41],[-10.582,26.051],[-11.079,23.266],[7.587,-24.572],[9.877,-26.232],[11.537,-23.942],[-7.797,25.554]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[204.509,300.961],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,-0.015],[-1.543,-0.123],[-0.005,0.112],[0.363,2.901],[1.283,0.065],[0.076,-1.49],[0.721,-2.846]],"o":[[1.536,0.231],[0.017,-0.108],[0.655,-2.849],[0.076,-1.489],[-1.283,-0.065],[0.43,2.904],[0,0.014]],"v":[[-2.731,5.402],[1.888,5.921],[1.933,5.595],[2.37,-3.03],[0.174,-5.856],[-2.296,-3.266],[-2.733,5.359]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[129.337,245.459],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.721,-2.846],[-0.06,-0.265],[-0.262,-0.011],[-0.207,0.003],[-0.107,0.007],[-0.954,0.08],[-0.005,0.105],[0.363,2.9],[1.283,0.065],[0.075,-1.489]],"o":[[-0.015,0.289],[0.263,0.012],[0.207,-0.003],[0.071,-0.051],[0.956,-0.059],[0.018,-0.1],[0.654,-2.849],[0.075,-1.49],[-1.283,-0.065],[0.429,2.904]],"v":[[-2.725,5.212],[-2.644,6.042],[-1.856,6.068],[-1.236,6.061],[-0.975,5.964],[1.89,5.748],[1.941,5.448],[2.378,-3.176],[0.182,-6.003],[-2.288,-3.413]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[137.069,245.543],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.005,-0.102],[-1.576,0.164],[0.345,2.76],[1.283,0.065],[0.075,-1.49],[0.721,-2.846]],"o":[[1.576,-0.158],[0.576,-2.714],[0.075,-1.489],[-1.283,-0.065],[0.429,2.904],[-0.005,0.105]],"v":[[-2.707,5.793],[2.021,5.307],[2.382,-2.902],[0.185,-5.728],[-2.285,-3.138],[-2.721,5.487]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[144.805,245.206],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.333,4.083],[5.073,4.939],[-0.017,-15.221]],"o":[[-9.917,-3.583],[0,0],[6.833,0]],"v":[[12.691,1.927],[-7.559,-9.841],[-12.674,9.841]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[82.934,246.518],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.165,9.274],[3.502,-10.393]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[193.419,163.94],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[7.408,9.215],[8.002,-10.697]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[188.169,165.717],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.981,-6.57],[2.46,-2.239],[5.981,6.569],[-2.46,2.24]],"o":[[5.981,6.569],[-2.46,2.24],[-5.982,-6.57],[2.46,-2.239]],"v":[[4.454,-4.056],[10.83,11.895],[-4.454,4.056],[-10.83,-11.896]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,0.82,0.643,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[173.694,37.626],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.124,0],[0.338,0.236],[0.089,0.53],[-3.175,11.315],[-0.435,17.264],[-1.081,0],[-0.017,-0.001],[0.028,-1.105],[-4.906,-18.458],[0.1,-0.349],[-1.241,-9.849],[-0.118,0.07],[-0.572,-0.943],[0.942,-0.574],[31.742,-5.998]],"o":[[-0.406,0],[-0.441,-0.308],[-1.737,-10.416],[-4.907,-18.659],[0.028,-1.087],[0.017,0],[1.105,0.027],[-0.43,17.058],[0.094,0.35],[-2.94,10.155],[29.387,-5.766],[0.943,-0.571],[0.572,0.944],[-0.511,0.311],[-0.124,0.023]],"v":[[-19.659,47.746],[-20.804,47.386],[-21.632,46.075],[-19.224,9.875],[-26.157,-45.797],[-24.158,-47.746],[-24.107,-47.745],[-22.158,-45.695],[-15.217,9.381],[-15.228,10.45],[-17.982,43.387],[23.275,30.599],[26.02,31.272],[25.351,34.017],[-19.287,47.711]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[81.191,220.363],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.459,0],[0.105,0.017],[0.584,0.253],[-0.439,1.014],[-1.018,-0.437],[-21.048,-3.605],[5.005,8.251],[-0.944,0.573],[-0.572,-0.944],[0.593,-15.448],[0.442,-0.363]],"o":[[-0.105,0],[-22.902,-3.664],[-1.013,-0.438],[0.437,-1.013],[0.133,0.059],[0.232,-13.669],[-0.573,-0.944],[0.944,-0.571],[5.687,9.376],[-0.021,0.572],[-0.361,0.295]],"v":[[18.334,20.557],[18.018,20.532],[-19.445,10.634],[-20.485,8.005],[-17.856,6.963],[16.398,16.209],[9.124,-17.239],[9.797,-19.986],[12.544,-19.313],[20.332,18.633],[19.603,20.104]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[172.677,242.033],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[12.042,0],[3.653,0.525],[2.955,0.779],[-0.281,1.069],[-1.067,-0.28],[-2.983,-0.428],[-17.332,12.551],[-1.334,25.266],[-1.086,-0.061],[0.059,-1.104],[18.373,-13.302]],"o":[[-5.229,0],[-3.134,-0.45],[-1.068,-0.281],[0.282,-1.068],[2.806,0.739],[11.467,1.647],[16.126,-11.675],[0.059,-1.104],[1.102,0.058],[-1.282,24.297],[-12.88,9.327]],"v":[[-21.66,42.283],[-35.196,41.309],[-44.372,39.458],[-45.796,37.014],[-43.352,35.591],[-34.627,37.35],[16,27.334],[42.024,-40.329],[44.127,-42.221],[46.018,-40.118],[18.345,30.574]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[149.364,215.148],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[160.883,136.946]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-35.201],[22.159,0],[0,35.201],[-22.159,0]],"o":[[0,35.201],[-22.159,0],[0,-35.201],[22.159,0]],"v":[[40.123,0.535],[0.001,47.125],[-40.123,0.535],[0.001,-47.125]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[150.742,92.368],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.912,0],[0.15,0.034],[-0.245,1.077],[-0.97,3.914],[-1.149,11.141],[5.037,14.587],[16.592,8.183],[23.002,-6.755],[7.14,-4.932],[-7.269,-29.781],[-2.979,-8.148],[-2.113,-9.481],[1.078,-0.24],[0.24,1.077],[3.231,8.839],[2.122,8.691],[-27.219,18.798],[-9.373,2.752],[-21.23,-10.472],[-5.833,-16.89],[1.517,-14.717],[2.673,-10.779],[0.909,-3.982]],"o":[[-0.147,0],[-1.077,-0.246],[0.918,-4.019],[2.64,-10.644],[2.35,-22.791],[-5.492,-15.901],[-20.352,-10.04],[-8.963,2.631],[-25.842,17.848],[2.069,8.477],[3.277,8.961],[0.24,1.078],[-1.079,0.235],[-2.056,-9.223],[-3.018,-8.252],[-7.665,-31.408],[7.491,-5.174],[23.939,-7.031],[17.528,8.645],[6.876,19.913],[-1.178,11.421],[-0.966,3.897],[-0.212,0.927]],"v":[[76.342,77.992],[75.894,77.942],[74.389,75.547],[77.281,63.567],[83.8,30.774],[79.863,-24.012],[45.113,-61.911],[-24.126,-67.158],[-48.395,-55.76],[-78.968,22.644],[-70.839,47.696],[-62.063,75.404],[-63.58,77.791],[-65.967,76.273],[-74.596,49.07],[-82.855,23.594],[-50.667,-59.051],[-25.253,-70.996],[46.883,-65.497],[83.643,-25.317],[87.779,31.184],[81.163,64.53],[78.29,76.437]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[118.108,78.277],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-8.451,-0.198],[-11.707,0.072],[0,0],[2.579,3.033],[-0.681,3.893],[43.608,6.956],[-103.854,30.605],[2.79,0.221],[15.207,-14.014],[3.695,-14.744],[-0.357,-10.362]],"o":[[0,0],[11.698,0.276],[12.004,-0.074],[0,0],[0.075,-1.374],[-22.019,5.951],[0,0],[-7.039,-0.159],[-20.616,-1.629],[-11.178,10.302],[-3.662,14.612],[0.008,6.737]],"v":[[-55.807,80.745],[2.549,87.245],[36.67,86.579],[88.951,80.745],[86.845,61.379],[87.221,58.047],[-28.341,59.568],[14.43,-85.448],[-1.599,-85.893],[-51.844,-60.608],[-72.195,-16.475],[-55.688,59.288]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[107.633,92.468],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.955,0.192],[10.852,8.496],[0.004,-0.002],[3.948,1.729],[2.033,3.112],[0,0],[-38.687,7.088],[0.631,2.749],[0.145,5.559],[0.018,5.405],[4.396,2.468],[3.098,-0.615],[0,-1.768],[-6.729,-43.832],[-0.907,-0.841],[-13.176,5.284],[-6.343,-1.262],[-10.497,6.188]],"o":[[-13.329,-0.322],[-0.004,0.002],[-3.921,1.532],[-3.46,-1.516],[-4.782,-7.321],[31.44,0.906],[0,0],[-33.439,6.556],[-0.141,-5.405],[-0.015,-4.334],[-2.706,-1.519],[1.074,4.071],[0,9.709],[-1.775,7.415],[1,0.927],[6.532,2.031],[9.302,1.85],[-7.631,1.522]],"v":[[18.227,44.58],[-21.14,34.102],[-21.152,34.109],[-33.257,34.421],[-41.389,26.916],[-47.43,-21.176],[70.611,-26.832],[70.654,-29.695],[-57.739,-30.675],[-57.683,-46.852],[-61.99,-60.949],[-71.286,-61.533],[-69.54,-52.532],[-58.208,22.76],[-59.96,61.541],[-15.99,48.104],[5.124,50.917],[41.609,42.569]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[121.493,204.567],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.776,7.415],[0,9.708],[-3.696,14.744],[-11.177,10.301],[-20.615,-1.629],[-6.826,-3.206],[-13.416,-38.068],[0.791,-19.079],[5.134,-9.31],[3.177,-16.229],[8.415,-9.192],[11.742,2.336],[6.532,2.031],[0.999,0.927]],"o":[[-6.73,-43.832],[0,-9.709],[3.695,-14.744],[15.207,-14.015],[7.518,0.594],[15.722,7.383],[12.286,42.605],[1.796,10.828],[-5.091,9.233],[-4.683,10.452],[-7.966,8.937],[-6.344,-1.261],[-13.176,5.284],[-0.908,-0.84]],"v":[[-59.228,91.336],[-70.56,16.045],[-87.075,-59.998],[-66.725,-104.13],[-16.48,-129.415],[30.099,-126.148],[78.485,-77.687],[71.933,18.278],[70.208,45.438],[64.247,80.767],[47.332,105.893],[4.104,119.493],[-17.011,116.68],[-60.981,130.117]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,0.741,0.431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[122.513,135.991],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.904,9.734],[0,0],[-23.958,-5.486]],"o":[[0,0],[0,0],[0.534,-13.935]],"v":[[8.441,-17.963],[-17.492,8.286],[16.958,17.964]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[174.052,242.627],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.768,1.115],[7.211,-0.755],[12.955,-0.025],[13.357,0.953],[10.431,3.088],[2.581,3.131],[1.89,2.681],[0,-5.401],[-55.064,0],[0,8.262]],"o":[[-5.497,4.382],[-12.814,1.341],[-13.391,0.025],[-11.009,-0.786],[-4.198,-1.242],[-2.136,-2.591],[-28.599,2.63],[0,8.262],[55.064,0],[0,-1.196]],"v":[[96.992,-5.132],[76,2.402],[37.471,5.59],[-2.713,4.913],[-35.776,-0.202],[-47.004,-6.075],[-52.021,-14.421],[-99.702,-1.657],[0,14.421],[99.702,-1.657]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.898,0.855,0.867,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[99.952,347.541],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":13,"ty":4,"nm":"leg L Outlines","ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":0,"s":[0],"e":[8.6]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":20,"s":[8.6],"e":[0]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":40,"s":[0],"e":[8.6]},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.75],"y":[0]},"n":["0p25_1_0p75_0"],"t":60,"s":[8.6],"e":[0]},{"t":81}]},"p":{"a":0,"k":[527.429,521.931,0]},"a":{"a":0,"k":[64.8,71.558,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[16.119,-0.001],[5.433,2.212],[-0.416,1.024],[-1.025,-0.419],[-10.243,14.019],[12.392,14.891],[0.744,2.049],[-0.951,1.378],[-1.649,0.024],[-0.028,0],[-2.584,-2.358],[-2.114,-2.936],[-1.162,-1.778],[-7.575,-2.394],[-3.588,3.203],[0.627,3.205],[5.491,2.874],[8.261,8.591],[2.874,2.783],[6.312,-4.018],[0.252,-3.77],[0,0],[0.048,-0.35],[1.833,-1.285],[4.666,0.998],[1.085,0.132],[6.744,-6.995],[2.367,-10.562],[1.077,0.242],[-0.241,1.078],[-6.636,6.884],[-11.889,-1.44],[-1.491,-0.319],[-2.22,1.557],[-0.22,1.609],[-0.019,0.269],[0,0],[-4.669,2.973],[-10.537,-10.205],[-2.74,-2.85],[-10.708,-5.603],[-1.287,-6.585],[4.022,-3.591],[5.176,1.635],[4.782,7.316],[1.18,1.639],[1.78,1.625],[1.94,-0.061],[0.05,-0.074],[-0.203,-0.559],[-1.095,-1.152],[-0.029,-0.034],[12.073,-16.522]],"o":[[-5.354,0.001],[-1.024,-0.416],[0.417,-1.023],[19.891,8.097],[10.907,-14.927],[-1.46,-1.538],[-0.625,-1.721],[0.876,-1.271],[0.029,0],[3.196,0],[1.99,1.816],[1.232,1.712],[4.397,6.727],[3.814,1.205],[2.942,-2.627],[-0.963,-4.927],[-11.286,-5.905],[-2.716,-2.824],[-5.169,-5.005],[-2.962,1.886],[0,0],[-0.026,0.352],[-0.375,2.737],[-3.647,2.559],[-1.4,-0.3],[-10.642,-1.288],[-6.12,6.349],[-0.241,1.078],[-1.078,-0.242],[2.531,-11.288],[7.61,-7.893],[1.265,0.153],[3.674,0.787],[0.898,-0.628],[0.036,-0.265],[0,0],[0.284,-4.246],[6.488,-4.132],[2.925,2.832],[8.409,8.744],[6.377,3.337],[0.904,4.625],[-4.66,4.161],[-8.936,-2.824],[-1.189,-1.82],[-1.948,-2.707],[-1.368,-1.249],[-0.494,0.007],[-0.173,0.25],[0.526,1.449],[0.03,0.031],[13.683,16.402],[-8.377,11.465]],"v":[[-19.024,60.057],[-35.298,56.859],[-36.397,54.252],[-33.791,53.154],[17.125,37.276],[14.75,-10.337],[11.101,-15.631],[11.621,-20.58],[15.538,-22.588],[15.623,-22.588],[24.423,-17.719],[30.437,-10.754],[34.033,-5.426],[50.553,10.652],[63.125,7.259],[66.768,-1.918],[55.098,-13.058],[27.008,-36.436],[18.61,-44.963],[-2.486,-53.745],[-5.987,-43.815],[-6.049,-42.905],[-6.158,-41.85],[-9.485,-35.79],[-23.086,-35.363],[-26.893,-36.078],[-54.661,-26.968],[-67.453,-1.483],[-69.842,0.031],[-71.357,-2.358],[-57.541,-29.744],[-26.412,-40.049],[-22.248,-39.275],[-11.782,-39.065],[-10.121,-42.391],[-10.04,-43.194],[-9.978,-44.083],[-4.634,-57.119],[21.393,-47.836],[29.891,-39.208],[56.952,-16.602],[70.694,-2.685],[65.789,10.243],[49.348,14.466],[30.684,-3.238],[27.191,-8.416],[21.726,-14.765],[15.595,-18.588],[14.914,-18.308],[14.861,-16.996],[17.695,-13.044],[17.782,-12.947],[20.355,39.635]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.322,0.22,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[86.706,61.501],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[9.837,1.222],[3.84,3.915],[1.667,-1.07],[-7.148,-2.258],[-3.856,4.392],[0.684,3.606],[0.001,0.002]],"o":[[-4.038,-0.078],[-1.488,1.261],[4.055,6.046],[5.299,1.674],[2.319,-2.688],[-0.541,-2.848],[0,0]],"v":[[-1.063,-0.424],[-12.862,-7.429],[-17.589,-3.924],[-1.857,10.145],[13.988,4.986],[16.905,-4.695],[12.534,-11.818]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.918,0.804,0.71,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[138.514,63.915],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.299,1.674],[4.054,6.046],[-1.488,1.261],[8.661,-7.611],[-0.102,-0.094],[-1.709,-2.385],[-10.413,-3.24],[-3.887,4.506]],"o":[[-7.148,-2.258],[1.666,-1.07],[-9.141,-9.318],[0.109,0.099],[2.17,1.981],[5.883,8.213],[5.357,1.668],[-3.856,4.392]],"v":[[10.818,19.729],[-4.913,5.66],[-0.186,2.156],[-26.663,-14.012],[-14.062,-6.895],[-10.501,-2.208],[10.616,19.956],[26.663,14.57]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.827,0.494,0.192,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[125.839,54.33],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[26.266,10.578],[-12.673,32.219],[-23.445,-12.366],[9.841,32.884]],"o":[[-19.753,-8.038],[-19.909,30.699],[32.012,12.893],[-4.606,25.437]],"v":[[-12.826,15.153],[-38.686,-43.649],[-11.463,30.756],[48.754,-20.735]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.827,0.494,0.192,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[62.742,86.743],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.038,-0.078],[0,0],[2.718,1.422],[1.849,1.227],[4.435,-3.758]],"o":[[9.837,1.222],[-2.488,-2.256],[-2.016,-1.055],[-3.178,4.952],[3.84,3.915]],"v":[[-0.898,9.518],[12.697,-1.876],[4.382,-7.301],[-1.4,-10.74],[-12.697,2.512]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[138.35,53.973],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.064,2.65],[11.642,11.275],[7.719,-4.915],[0.304,-4.2],[6.629,0.931],[3.366,-0.445],[2.84,-1.481],[-36.519,-19.387],[31.168,37.358],[0.644,1.772],[-2.398,0.035],[-1.844,-1.684],[-1.713,-2.379],[-10.378,-3.279],[1.877,9.598]],"o":[[-14.644,-7.662],[-5.282,-5.114],[-4.102,2.612],[-0.804,11.122],[-3.36,-0.472],[-3.157,0.418],[-41.048,28.443],[37.095,15.098],[-1.28,-1.348],[-0.717,-1.977],[2.662,-0.038],[2.17,1.981],[5.901,8.194],[8.525,2.694],[-1.195,-6.113]],"v":[[63.949,-19.709],[27.926,-51.278],[4.363,-60.31],[-0.121,-47.928],[-18.11,-42.963],[-28.261,-43.038],[-37.484,-40.344],[-26.62,50.127],[24.169,-16.545],[20.905,-21.191],[23.491,-25.467],[30.998,-21.12],[36.738,-14.463],[57.875,7.679],[76.655,-7.18]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.929,0.592,0.263,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[78.782,66.38],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":81,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":14,"ty":0,"nm":"Tail","refId":"comp_15","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[652.5,522,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":81,"st":0,"bm":0,"sr":1}]} -}; - -//This is animation activation -var allIcons = ['404']; -for(var i = 0; i < allIcons.length; i++){ -var animation = { -autoplay:true, -loop:true, -container: document.getElementById(allIcons[i]), -animationData:icon[allIcons[i]], -renderer:'svg' -}; -bodymovin.loadAnimation(animation); -}