update states of AnimationItem & clean unused code
diff --git a/player/index.html b/player/index.html
index c377efd..850441f 100644
--- a/player/index.html
+++ b/player/index.html
@@ -5,6 +5,7 @@
     <script src="js/main.js"></script>
     <script src="js/3rd_party/transformation-matrix.js"></script>
     <script src="js/3rd_party/canvasPoly.js"></script>
+
     <script src="js/utils/MatrixManager.js"></script>
     <script src="js/utils/animationFramePolyFill.js"></script>
     <script src="js/utils/common.js"></script>
@@ -12,6 +13,7 @@
     <script src="js/utils/functionExtensions.js"></script>
     <script src="js/utils/bez.js"></script>
     <script src="js/utils/DataManager.js"></script>
+    
     <script src="js/renderers/SVGRenderer.js"></script>
     <script src="js/renderers/CanvasRenderer.js"></script>
     <script src="js/mask.js"></script>
@@ -32,6 +34,7 @@
     <script src="js/elements/canvasElements/CVMaskElement.js"></script>
 
     <script src="js/interface/requestAnimationFrame.js"></script>
+    <script src="js/interface/animations.js"></script>
     <script src="js/interface/BodyMovinManager.js"></script>
     <script src="js/interface/AnimationItem.js"></script>
     <script src="js/interface/BodyMovin.js"></script>
@@ -42,7 +45,7 @@
     <!-- endbuild -->
 </head>
 <body style="background-color:#ccc; margin: 0px;height: 100%; font-family: sans-serif;font-size: 10px">
-<div style="width:800px;height:800px;background-color:#333;display:inline-block" class="bodymovin" data-bm-path="exports/handi1" data-bm-type="svg" data-bm-loop="true" data-bm-prerender="false"></div>
+<div style="width:800px;height:800px;background-color:#333;display:inline-block" class="bodymovin" ></div>
 
 <nav style="position:absolute;top:10px;right:10px;cursor:pointer">
     <div class="button" data-anim="exports/handi1" style="height:30px;width:30px;background:red;"></div>
diff --git a/player/js/index.js b/player/js/index.js
index ae73b6b..2e614da 100644
--- a/player/js/index.js
+++ b/player/js/index.js
@@ -4,11 +4,14 @@
 
 	var bodyMovin = new BodyMovin({
 		element: document.getElementsByClassName('bodymovin')[0],
-		engine: 'svg'
+		engine: 'svg',
+		data: anim1,
+		loop: false,
+		autoplay: false
 	});
 
 	var buttons = document.getElementsByClassName('button');
-	console.log(buttons);
+
 	for (var i = 0; i < buttons.length; i++){
 		buttons[i].addEventListener('click', onButtonClick);
 	}
diff --git a/player/js/interface/AnimationItem.js b/player/js/interface/AnimationItem.js
index 7449ebf..f3ee343 100644
--- a/player/js/interface/AnimationItem.js
+++ b/player/js/interface/AnimationItem.js
@@ -6,6 +6,11 @@
 
 	this.element = options.element;
 	this.src = options.src;
+	this.data = options.data;
+	this.autoplay = options.autoplay;
+	this.loop = options.loop;
+	this.engine = options.engine;
+	this.prerender = options.prerender;
 
 	this._init();
 
@@ -15,22 +20,40 @@
 
 AnimationItem.prototype.trigger = function(eventName, args){
 
+	if (!this.callbacks){
+		this.callbacks = [];
+	}
+
 	var delay = (this.callbacks.length === 0) ? true : false;
 	var that = this;
 
-	if (delay){
-		setTimeout(function(){
-			that.callbacks[eventName](args);
-		}, 0);
-	}
-	else {
-		this.callbacks[eventName](args);
+	if (this.callbacks[eventName]) {
+		if (delay){
+			setTimeout(function(){
+				for (var i = 0; i < that.callbacks[eventName].length; i++){
+					that.callbacks[eventName][i](args);
+				}
+			}, 0);
+		}
+		else {
+			for (var i = 0; i < this.callbacks[eventName].length; i++){
+				this.callbacks[eventName][i](args);
+			}
+		}
 	}
 };
 
 AnimationItem.prototype.addEventListener = function(eventName, callback){
 
-	this.callbacks[eventName] = callback;
+	if (!this.callbacks){
+		this.callbacks = [];
+	}
+
+	if (!this.callbacks[eventName]){
+		this.callbacks[eventName] = [];
+	}
+
+	this.callbacks[eventName].push(callback);
 
 };
 
@@ -55,13 +78,16 @@
 	this.playDirection = 1;
 	this.pendingElements = 0;
 	this.playCount = 0;
-	this.prerenderFramesFlag = true;
 	this.renderedFrameCount = 0;
 
 	this.isLoaded = false;
-	this.isPaused = false;
+	this.isPaused = true;
 
-	this.setData(this.element);
+	this.initParams();
+
+	if (this.autoplay === true) {
+		this.play();
+	}
 
 }
 
@@ -103,19 +129,10 @@
 
 AnimationItem.prototype.timeUpdate = function (frame) {
 
-
-
 	this.trigger(BodyMovin.TIMEUPDATE);
 
 }
 
-AnimationItem.prototype.render = function (elapsedTime) {
-
-
-	this.animItem.advanceTime(elapsedTime);
-
-}
-
 
 
 // -------------------------------------------------------------------o Getters
@@ -134,11 +151,30 @@
 
 // -------------------------------------------------------------------o Setters
 
-/*AnimationItem.prototype.setData = function (data) {
+AnimationItem.prototype.setData = function (data) {
 
 	this.data = data;
 
-}*/
+}
+
+AnimationItem.prototype.initParams = function () {
+
+    var params = {
+        wrapper: this.element
+    };
+
+    var wrapperAttributes = this.element.attributes;
+
+    params.path = this.path || this.element.getAttribute('data-animation-path') || this.element.getAttribute('data-bm-path') || '';
+    params.engine = this.engine || this.element.getAttribute('data-animation-engine') || this.element.getAttribute('data-anim-engine') || this.element.getAttribute('data-bm-engine') || 'svg';
+    params.loop = this.loop || this.element.getAttribute('data-animation-loop') || this.element.getAttribute('data-bm-loop') || true;
+    params.name = this.name || this.element.getAttribute('data-animation-name') || this.element.getAttribute('data-bm-name') || '';
+    params.path = this.src;
+    params.prerender = this.prerender || this.element.getAttribute('data-animation-prerender') || this.element.getAttribute('data-bm-prerender') || true;
+
+    this.setParams(params);
+
+}
 
 AnimationItem.prototype.setParams = function (params) {
 
@@ -152,34 +188,15 @@
         this.wrapper = params.wrapper;
     }
 
-    var animType = params.animType ? params.animType : 'canvas';
-
-    switch (animType) {
-        case 'canvas':
-            this.renderer = new CanvasRenderer(this, params.renderer);
-            break;
-        case 'svg':
-            this.renderer = new SVGRenderer(this, params.renderer);
+    if (this.engine == 'canvas') {
+    	this.renderer = new CanvasRenderer(this, params.renderer);
+    }
+    else {
+    	this.renderer = new SVGRenderer(this, params.renderer);
     }
 
-    this.animType = animType;
-
-    if (params.loop === '' || params.loop === null) {
-
-    }
-    else if (params.loop === false){
-        this.loop = false;
-    } else if (params.loop === true){
-        this.loop = true;
-    } else {
-        this.loop = parseInt(params.loop);
-    }
-
-    this.name = params.name ? params.name :  '';
-    this.prerenderFramesFlag = 'prerender' in params ? params.prerender : true;
-
-    if (params.animationData) {
-        self.configAnimation(params.animationData);
+    if (this.data) {
+        self.configAnimation(this.data);
     } else if (params.path) {
 
         if (params.path.substr(-4) != 'json') {
@@ -212,41 +229,6 @@
 
 }
 
-AnimationItem.prototype.setData = function (wrapper) {
-
-    var params = {
-        wrapper: wrapper
-    };
-
-    var wrapperAttributes = wrapper.attributes;
-
-    params.path = wrapperAttributes.getNamedItem('data-animation-path') ? wrapperAttributes.getNamedItem('data-animation-path').value : wrapperAttributes.getNamedItem('data-bm-path') ? wrapperAttributes.getNamedItem('data-bm-path').value :  wrapperAttributes.getNamedItem('bm-path') ? wrapperAttributes.getNamedItem('bm-path').value : '';
-    params.animType = wrapperAttributes.getNamedItem('data-anim-type') ? wrapperAttributes.getNamedItem('data-anim-type').value : wrapperAttributes.getNamedItem('data-bm-type') ? wrapperAttributes.getNamedItem('data-bm-type').value : wrapperAttributes.getNamedItem('bm-type') ? wrapperAttributes.getNamedItem('bm-type').value :  'canvas';
-
-    params.path = this.src;
-
-    var loop = wrapperAttributes.getNamedItem('data-anim-loop') ? wrapperAttributes.getNamedItem('data-anim-loop').value :  wrapperAttributes.getNamedItem('data-bm-loop') ? wrapperAttributes.getNamedItem('data-bm-loop').value :  wrapperAttributes.getNamedItem('bm-loop') ? wrapperAttributes.getNamedItem('bm-loop').value : '';
-    if (loop === '') {
-
-    } else if (loop === 'false') {
-        params.loop = false;
-    } else if(loop === 'true') {
-        params.loop = true;
-    } else {
-        params.loop = parseInt(loop);
-    }
-
-    params.name = wrapperAttributes.getNamedItem('data-name') ? wrapperAttributes.getNamedItem('data-name').value :  wrapperAttributes.getNamedItem('data-bm-name') ? wrapperAttributes.getNamedItem('data-bm-name').value : wrapperAttributes.getNamedItem('bm-name') ? wrapperAttributes.getNamedItem('bm-name').value :  '';
-    var prerender = wrapperAttributes.getNamedItem('data-anim-prerender') ? wrapperAttributes.getNamedItem('data-anim-prerender').value :  wrapperAttributes.getNamedItem('data-bm-prerender') ? wrapperAttributes.getNamedItem('data-bm-prerender').value :  wrapperAttributes.getNamedItem('bm-prerender') ? wrapperAttributes.getNamedItem('bm-prerender').value : '';
-
-    if (prerender === 'false') {
-        params.prerender = false;
-    }
-
-    this.setParams(params);
-
-}
-
 
 AnimationItem.prototype.configAnimation = function (animData) {
 
@@ -254,7 +236,7 @@
 
     this.animationData = animData;
     this.animationData._id = this.animationID;
-    this.animationData._animType = this.animType;
+    this.animationData._animType = this.engine;
     this.layers = this.animationData.animation.layers;
     this.assets = this.animationData.assets;
     this.totalFrames = this.animationData.animation.totalFrames;
@@ -282,19 +264,21 @@
 
     if (this.pendingElements === 0) {
         this.renderer.buildStage(this.container, this.layers);
-        if (this.prerenderFramesFlag) {
+        if (this.prerender) {
             this.prerenderFrames(0);
             dataManager.renderFrame(this.animationID,this.currentFrame + this.firstFrame);
             this.renderer.renderFrame(this.currentFrame + this.firstFrame);
         } else {
             this.isLoaded = true;
-            this.gotoFrame();
+            this.gotoFrame(0);
             // autoplayed
         }
     }
 };
 
-AnimationItem.prototype.prerenderFrames = function (count) {
+/*AnimationItem.prototype.prerenderFrames = function (count) {
+
+    console.log(count);
 
     if (!count) {
         count = 0;
@@ -303,11 +287,11 @@
     if (this.renderedFrameCount === Math.floor(this.totalFrames)) {
         //TODO Need polyfill for ios 5.1
         this.isLoaded = true;
-        this.gotoFrame();
+        this.gotoFrame(0);
         // autoplayed
     } else {
-        dataManager.renderFrame(this.animationID,this.renderedFrameCount + this.firstFrame);
-        this.renderedFrameCount+=1;
+        dataManager.renderFrame(this.animationID, this.renderedFrameCount + this.firstFrame);
+        this.renderedFrameCount += 1;
 
         if (count > 10) {
             setTimeout(this.prerenderFrames.bind(this),0);
@@ -316,35 +300,13 @@
             this.prerenderFrames(count);
         }
     }
-};
+};*/
 
 AnimationItem.prototype.resize = function () {
 
     this.renderer.updateContainerSize();
 
 };
-AnimationItem.prototype.gotoFrame = function () {
-
-    if (subframeEnabled){
-        this.currentFrame = Math.round(this.currentRawFrame*100)/100;
-    } else {
-        this.currentFrame = Math.floor(this.currentRawFrame);
-    }
-
-    this.renderFrame();
-
-};
-
-AnimationItem.prototype.renderFrame = function () {
-
-    if(this.isLoaded === false){
-        return;
-    }
-
-    dataManager.renderFrame(this.animationID,this.currentFrame + this.firstFrame);
-    this.renderer.renderFrame(this.currentFrame + this.firstFrame);
-
-};
 
 AnimationItem.prototype.play = function (name) {
 
@@ -360,6 +322,8 @@
         this.isPaused = true;
     }
 
+    this.trigger(BodyMovin.PAUSED);
+
 };
 
 AnimationItem.prototype.togglePause = function (name) {
@@ -379,7 +343,7 @@
     this.isPaused = true;
     this.currentFrame = this.currentRawFrame = 0;
     this.playCount = 0;
-    this.gotoFrame();
+    this.gotoFrame(0);
 
 };
 
@@ -395,32 +359,34 @@
 
 };
 
-AnimationItem.prototype.advanceTime = function (value) {
 
-    if (this.isPaused === true || this.isLoaded === false) {
-        return;
-    }
+// ----------------------------------------------o Animating frames
 
-    this.setCurrentRawFrameValue(this.currentRawFrame + value * this.frameModifier);
+AnimationItem.prototype.update = function (value) {
+
+	this.currentRawFrame = this.currentRawFrame + value * this.frameModifier;
+	this.currentFrame = this.currentRawFrame % this.totalFrames;
+
+	if (this.isPaused === false && this.currentFrame > this.totalFrames - 1) {
+		this.resetFrame();
+
+		if (this.loop === false){
+			this.pause();
+		}
+	}
+	else if (this.isPaused === true) {
+		return;
+	}
+
+    this.gotoFrame(this.currentRawFrame);
+    //this.updateCurrentRawFrameValue(currentRawFrame);
 
 };
 
-AnimationItem.prototype.updateAnimation = function (perc) {
-
-    this.setCurrentRawFrameValue(this.totalFrames * perc);
-
-};
-
-AnimationItem.prototype.moveFrame = function (value, name) {
-
-    this.setCurrentRawFrameValue(this.currentRawFrame + value);
-
-};
-
-AnimationItem.prototype.setCurrentRawFrameValue = function(value){
+/*AnimationItem.prototype.updateCurrentRawFrameValue = function(value){
 
     this.currentRawFrame = value;
-    if (this.currentRawFrame >= this.totalFrames) {
+    /*if (this.currentRawFrame >= this.totalFrames) {
         if(this.loop === false){
             this.currentRawFrame = this.totalFrames - 1;
             this.gotoFrame();
@@ -430,7 +396,7 @@
             this.playCount += 1;
 
             if (this.loop !== true) {
-                if(this.playCount == this.loop){
+                if(this.playCount == this.loop){ 
                     this.currentRawFrame = this.totalFrames - 1;
                     this.gotoFrame();
                     this.pause();
@@ -457,8 +423,53 @@
         }
     }
 
+
+
     this.currentRawFrame = this.currentRawFrame % this.totalFrames;
-    this.gotoFrame();
+    this.gotoFrame(this.currentRawFrame);
+
+};*/
+
+AnimationItem.prototype.gotoFrame = function (frame) {
+
+	frame = this.getFrame(frame);
+    this.currentFrame = frame;
+
+	if (frame > this.totalFrames - 1) {
+		this.resetFrame();
+	}
+
+    this.renderFrame();
+
+};
+
+AnimationItem.prototype.getFrame = function (rawFrame) {
+
+    if (subframeEnabled){
+        frame = Math.round(rawFrame * 100) / 100;
+    } else {
+        frame = Math.floor(rawFrame);
+    }
+
+    return frame;
+
+};
+
+AnimationItem.prototype.resetFrame = function (rawFrame) {
+
+	this.currentRawFrame = 0;
+	this.currentFrame = 0;
+
+};
+
+AnimationItem.prototype.renderFrame = function () {
+
+    if(this.isLoaded === false){
+        return;
+    }
+
+    dataManager.renderFrame(this.animationID,this.currentFrame + this.firstFrame);
+    this.renderer.renderFrame(this.currentFrame + this.firstFrame);
 
 };
 
diff --git a/player/js/interface/BodyMovin.js b/player/js/interface/BodyMovin.js
index 8ef43cf..b3949dc 100644
--- a/player/js/interface/BodyMovin.js
+++ b/player/js/interface/BodyMovin.js
@@ -5,11 +5,12 @@
 	}
 
 	this.element = options.element || document.getElementsByClassName('bodymovin')[0];
-	this.engine = options.engine || 'svg';
-	this.src = options.src || this.element.getAttribute('data-bm-path');
-	this.data = options.data || undefined;
-	this.loop = options.loop || true;
-	this.autoplay = this.autoplay || true;
+	this.engine = (options.engine != undefined) ? options.engine : 'svg';
+	this.src = (options.src != undefined) ? options.src : (this.element.getAttribute('data-bm-path') != undefined) ? this.element.getAttribute('data-bm-path') : '';
+	this.data = (options.data != undefined) ? options.data : undefined;
+	this.loop = (options.loop != undefined) ? options.loop : true;
+	this.autoplay = (options.autoplay != undefined) ? options.autoplay : true;
+	this.prerender = (options.prerender != undefined) ? options.prerender : true;
 
 	this.canPlay = false;
 
@@ -36,28 +37,39 @@
 
 BodyMovin.prototype.trigger = function(eventName, args){
 
+	if (!this.callbacks){
+		this.callbacks = [];
+	}
+
 	var delay = (this.callbacks.length === 0) ? true : false;
 	var that = this;
 
-	if (delay){
-		setTimeout(function(){
+	if (this.callbacks[eventName]) {
+		if (delay){
+			setTimeout(function(){
+				for (var i = 0; i < that.callbacks[eventName].length; i++){
+					that.callbacks[eventName][i](args);
+				}
+			}, 0);
+		}
+		else {
 			for (var i = 0; i < this.callbacks[eventName].length; i++){
 				this.callbacks[eventName][i](args);
 			}
-		}, 0);
-	}
-	else {
-		for (var i = 0; i < this.callbacks[eventName].length; i++){
-			this.callbacks[eventName][i](args);
 		}
 	}
 };
 
 BodyMovin.prototype.addEventListener = function(eventName, callback){
 
-	if (this.callbacks[eventName]){
+	if (!this.callbacks){
+		this.callbacks = [];
+	}
+
+	if (!this.callbacks[eventName]){
 		this.callbacks[eventName] = [];
 	}
+
 	this.callbacks[eventName].push(callback);
 
 };
@@ -68,7 +80,11 @@
 
 	this.animationItem = new AnimationItem({
 		element: this.element,
-		src: this.src
+		src: this.src,
+		data: this.data,
+		loop: this.loop,
+		autoplay: this.autoplay,
+		engine: this.engine
 	});
 	
 	if (this.data){
@@ -92,6 +108,9 @@
 	this.bodyMovinManager
 		.addEventListener(BodyMovinManager.UPDATE, this._onUpdate.bind(this));
 
+	this.animationItem
+		.addEventListener(BodyMovin.PAUSED, this._onBodyMovinPaused.bind(this));
+
 }
 
 
@@ -103,6 +122,12 @@
 
 }
 
+BodyMovin.prototype._onBodyMovinPaused = function (e) {
+
+	console.log('paused');
+
+}
+
 // -------------------------------------------------------------------o Private
 
 BodyMovin.prototype._canPlay = function () {
@@ -151,7 +176,7 @@
 
 BodyMovin.prototype.render = function (elapsedTime) {
 
-	this.animationItem.advanceTime(elapsedTime);
+	this.animationItem.update(elapsedTime);
 
 }
 
diff --git a/player/js/interface/BodyMovinManager.js b/player/js/interface/BodyMovinManager.js
index 24b0ec9..51b4214 100644
--- a/player/js/interface/BodyMovinManager.js
+++ b/player/js/interface/BodyMovinManager.js
@@ -31,23 +31,24 @@
 	var delay = (this.callbacks.length === 0) ? true : false;
 	var that = this;
 
-	if (delay){
-		setTimeout(function(){
-			for (var i = 0; i < that.callbacks[eventName].length; i++){
-				that.callbacks[eventName][i](args);
+	if (this.callbacks[eventName]) {
+		if (delay){
+			setTimeout(function(){
+				for (var i = 0; i < that.callbacks[eventName].length; i++){
+					that.callbacks[eventName][i](args);
+				}
+			}, 0);
+		}
+		else {
+			for (var i = 0; i < this.callbacks[eventName].length; i++){
+				this.callbacks[eventName][i](args);
 			}
-		}, 0);
-	}
-	else {
-		for (var i = 0; i < this.callbacks[eventName].length; i++){
-			this.callbacks[eventName][i](args);
 		}
 	}
 };
 
 BodyMovinManager.prototype.addEventListener = function(eventName, callback){
 
-
 	if (!this.callbacks){
 		this.callbacks = [];
 	}
diff --git a/player/js/interface/animations.js b/player/js/interface/animations.js
new file mode 100644
index 0000000..f656a64
--- /dev/null
+++ b/player/js/interface/animations.js
@@ -0,0 +1,4 @@
+var anim1 = {"animation":{"layers":[{"ind":0,"layers":[{"ind":0,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.857,0.857],"y":[0,0]},"n":"0p667,0p667_1,1_0p857,0p857_0,0","t":48,"s":[0,0],"e":[21.203,21.203]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":59,"s":[21.203,21.203],"e":[0,0]},{"t":70}],"p":[{"i":{"x":0.175,"y":1},"o":{"x":0.235,"y":0},"n":"0p175_1_0p235_0","t":48,"s":[-57.146,33],"e":[-153,-5],"to":[-15.9756164550781,-6.33333349227905],"ti":[15.9756164550781,6.33333349227905]},{"t":70}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-292.602,244.398],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 26","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":36,"outPoint":1559,"startTime":36,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":1,"type":"NullLayer","layerName":"Nul 2","threeD":false,"an":{},"inPoint":36,"outPoint":1559,"startTime":36,"ks":{"o":0,"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"n":"0p667_1_0p167_0","t":36,"s":[283],"e":[136]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":48,"s":[136],"e":[-80]},{"t":70}],"p":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":63,"s":[2024,1321,0],"e":[2024,1455,0],"to":[0,22.3333339691162,0],"ti":[0,-22.3333339691162,0]},{"t":70}],"a":[-265,391,0],"s":[33,33,100]}},{"ind":2,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":48,"s":[74.828,74.828],"e":[98.828,98.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":59,"s":[98.828,98.828],"e":[74.828,74.828]},{"t":70}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-296.93,396.277],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":1,"layerName":"Calque de forme 25","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":36,"outPoint":1559,"startTime":36,"ks":{"o":100,"r":0,"p":[149,-24,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":3,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":29,"s":[142.828,142.828],"e":[166.828,166.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":40,"s":[166.828,166.828],"e":[142.828,142.828]},{"t":51}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-314.023,373.152],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":1,"layerName":"Calque de forme 24","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":17,"outPoint":1540,"startTime":17,"ks":{"o":100,"r":0,"p":[8,76,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":4,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":29,"s":[143.828,143.828],"e":[166.828,166.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":40,"s":[166.828,166.828],"e":[143.828,143.828]},{"t":51}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-314.023,373.152],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":1,"layerName":"Calque de forme 23","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":17,"outPoint":1540,"startTime":17,"ks":{"o":100,"r":0,"p":[70,-44,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":5,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[139.828,139.828],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-352.961,362.242],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":1,"layerName":"Calque de forme 22","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":17,"outPoint":1540,"startTime":17,"ks":{"o":100,"r":0,"p":[143,81,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":6,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[139.828,139.828],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-352.961,362.242],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":1,"layerName":"Calque de forme 21","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":17,"outPoint":1540,"startTime":17,"ks":{"o":100,"r":0,"p":[0,0,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":7,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.857,0.857],"y":[0,0]},"n":"0p667,0p667_1,1_0p857,0p857_0,0","t":53,"s":[0,0],"e":[21.203,21.203]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":62,"s":[21.203,21.203],"e":[0,0]},{"t":70}],"p":[{"i":{"x":0.175,"y":1},"o":{"x":0.235,"y":0},"n":"0p175_1_0p235_0","t":53,"s":[-57.146,33],"e":[-220,16],"to":[-27.1422824859619,-2.83333325386047],"ti":[27.1422824859619,2.83333325386047]},{"t":70}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-292.602,244.398],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 20","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":41,"outPoint":1564,"startTime":41,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":8,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.857,0.857],"y":[0,0]},"n":"0p667,0p667_1,1_0p857,0p857_0,0","t":48,"s":[0,0],"e":[21.203,21.203]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":59,"s":[21.203,21.203],"e":[0,0]},{"t":70}],"p":[{"i":{"x":0.175,"y":1},"o":{"x":0.235,"y":0},"n":"0p175_1_0p235_0","t":48,"s":[-57.146,33],"e":[-153,-5],"to":[-15.9756164550781,-6.33333349227905],"ti":[15.9756164550781,6.33333349227905]},{"t":70}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-292.602,244.398],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 19","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":36,"outPoint":1559,"startTime":36,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":9,"type":"NullLayer","layerName":"Nul 2","threeD":false,"an":{},"inPoint":36,"outPoint":1559,"startTime":36,"ks":{"o":0,"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"n":"0p667_1_0p167_0","t":36,"s":[163],"e":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":48,"s":[0],"e":[-216]},{"t":72}],"p":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":38,"s":[1895,1485,0],"e":[1895,1351,0],"to":[0,-22.3333339691162,0],"ti":[0,22.3333339691162,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0.333},"n":"0p833_0p833_0p333_0p333","t":43,"s":[1895,1351,0],"e":[1895,1351,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":63,"s":[1895,1351,0],"e":[1895,1485,0],"to":[0,22.3333339691162,0],"ti":[0,-22.3333339691162,0]},{"t":70}],"a":[-265,391,0],"s":[100,100,100]}},{"ind":10,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":48,"s":[74.828,74.828],"e":[98.828,98.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":59,"s":[98.828,98.828],"e":[74.828,74.828]},{"t":70}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-296.93,396.277],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":9,"layerName":"Calque de forme 18","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":36,"outPoint":1559,"startTime":36,"ks":{"o":100,"r":0,"p":[149,-24,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":11,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":29,"s":[142.828,142.828],"e":[166.828,166.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":40,"s":[166.828,166.828],"e":[142.828,142.828]},{"t":51}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-314.023,373.152],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":9,"layerName":"Calque de forme 17","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":17,"outPoint":1540,"startTime":17,"ks":{"o":100,"r":0,"p":[8,76,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":12,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":29,"s":[143.828,143.828],"e":[166.828,166.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":40,"s":[166.828,166.828],"e":[143.828,143.828]},{"t":51}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-314.023,373.152],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":9,"layerName":"Calque de forme 16","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":17,"outPoint":1540,"startTime":17,"ks":{"o":100,"r":0,"p":[70,-44,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":13,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[139.828,139.828],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-352.961,362.242],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":9,"layerName":"Calque de forme 15","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":17,"outPoint":1540,"startTime":17,"ks":{"o":100,"r":0,"p":[143,81,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":14,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[139.828,139.828],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-352.961,362.242],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":9,"layerName":"Calque de forme 14","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":17,"outPoint":1540,"startTime":17,"ks":{"o":100,"r":0,"p":[0,0,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":15,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.857,0.857],"y":[0,0]},"n":"0p667,0p667_1,1_0p857,0p857_0,0","t":26,"s":[0,0],"e":[21.203,21.203]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":37,"s":[21.203,21.203],"e":[0,0]},{"t":48}],"p":[{"i":{"x":0.175,"y":1},"o":{"x":0.235,"y":0},"n":"0p175_1_0p235_0","t":26,"s":[-57.146,33],"e":[-153,-5],"to":[-15.9756164550781,-6.33333349227905],"ti":[15.9756164550781,6.33333349227905]},{"t":48}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-292.602,244.398],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 12","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":14,"outPoint":1537,"startTime":14,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":16,"type":"NullLayer","layerName":"Nul 2","threeD":false,"an":{},"inPoint":14,"outPoint":1537,"startTime":14,"ks":{"o":0,"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":26,"s":[136],"e":[-80]},{"t":48}],"p":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":38,"s":[2024,1321,0],"e":[2024,1455,0],"to":[0,22.3333339691162,0],"ti":[0,-22.3333339691162,0]},{"t":43}],"a":[-265,391,0],"s":[33,33,100]}},{"ind":17,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":26,"s":[74.828,74.828],"e":[98.828,98.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":37,"s":[98.828,98.828],"e":[74.828,74.828]},{"t":48}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-296.93,396.277],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":16,"layerName":"Calque de forme 11","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":14,"outPoint":1537,"startTime":14,"ks":{"o":100,"r":0,"p":[149,-24,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":18,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":7,"s":[142.828,142.828],"e":[166.828,166.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":18,"s":[166.828,166.828],"e":[142.828,142.828]},{"t":29}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-314.023,373.152],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":16,"layerName":"Calque de forme 10","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-5,"outPoint":1518,"startTime":-5,"ks":{"o":100,"r":0,"p":[8,76,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":19,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":7,"s":[143.828,143.828],"e":[166.828,166.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":18,"s":[166.828,166.828],"e":[143.828,143.828]},{"t":29}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-314.023,373.152],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":16,"layerName":"Calque de forme 9","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-5,"outPoint":1518,"startTime":-5,"ks":{"o":100,"r":0,"p":[70,-44,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":20,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[139.828,139.828],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-352.961,362.242],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":16,"layerName":"Calque de forme 8","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-5,"outPoint":1518,"startTime":-5,"ks":{"o":100,"r":0,"p":[143,81,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":21,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[139.828,139.828],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-352.961,362.242],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":16,"layerName":"Calque de forme 7","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-5,"outPoint":1518,"startTime":-5,"ks":{"o":100,"r":0,"p":[0,0,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":22,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.857,0.857],"y":[0,0]},"n":"0p667,0p667_1,1_0p857,0p857_0,0","t":31,"s":[0,0],"e":[21.203,21.203]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":40,"s":[21.203,21.203],"e":[0,0]},{"t":48}],"p":[{"i":{"x":0.175,"y":1},"o":{"x":0.235,"y":0},"n":"0p175_1_0p235_0","t":31,"s":[-57.146,33],"e":[-220,16],"to":[-27.1422824859619,-2.83333325386047],"ti":[27.1422824859619,2.83333325386047]},{"t":48}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-292.602,244.398],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 13","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":19,"outPoint":1542,"startTime":19,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":23,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.857,0.857],"y":[0,0]},"n":"0p667,0p667_1,1_0p857,0p857_0,0","t":26,"s":[0,0],"e":[21.203,21.203]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":37,"s":[21.203,21.203],"e":[0,0]},{"t":48}],"p":[{"i":{"x":0.175,"y":1},"o":{"x":0.235,"y":0},"n":"0p175_1_0p235_0","t":26,"s":[-57.146,33],"e":[-153,-5],"to":[-15.9756164550781,-6.33333349227905],"ti":[15.9756164550781,6.33333349227905]},{"t":48}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-292.602,244.398],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 6","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":14,"outPoint":1537,"startTime":14,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":24,"type":"NullLayer","layerName":"Nul 2","threeD":false,"an":{},"inPoint":14,"outPoint":1537,"startTime":14,"ks":{"o":0,"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":26,"s":[0],"e":[-216]},{"t":50}],"p":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":38,"s":[1895,1351,0],"e":[1895,1485,0],"to":[0,22.3333339691162,0],"ti":[0,-22.3333339691162,0]},{"t":48}],"a":[-265,391,0],"s":[100,100,100]}},{"ind":25,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":26,"s":[74.828,74.828],"e":[98.828,98.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":37,"s":[98.828,98.828],"e":[74.828,74.828]},{"t":48}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-296.93,396.277],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":24,"layerName":"Calque de forme 3","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":14,"outPoint":1537,"startTime":14,"ks":{"o":100,"r":0,"p":[149,-24,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":26,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":7,"s":[142.828,142.828],"e":[166.828,166.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":18,"s":[166.828,166.828],"e":[142.828,142.828]},{"t":29}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-314.023,373.152],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":24,"layerName":"Calque de forme 5","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-5,"outPoint":1518,"startTime":-5,"ks":{"o":100,"r":0,"p":[8,76,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":27,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":7,"s":[143.828,143.828],"e":[166.828,166.828]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":"0p667,0p667_1,1_0p333,0p333_0,0","t":18,"s":[166.828,166.828],"e":[143.828,143.828]},{"t":29}],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-314.023,373.152],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":24,"layerName":"Calque de forme 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-5,"outPoint":1518,"startTime":-5,"ks":{"o":100,"r":0,"p":[70,-44,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":28,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[139.828,139.828],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-352.961,362.242],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":24,"layerName":"Calque de forme 4","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-5,"outPoint":1518,"startTime":-5,"ks":{"o":100,"r":0,"p":[143,81,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":29,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"el","s":[139.828,139.828],"p":[0,0]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[-352.961,362.242],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":24,"layerName":"Calque de forme 1","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-5,"outPoint":1518,"startTime":-5,"ks":{"o":100,"r":0,"p":[0,0,0],"a":[0,0,0],"s":[100,100,100]}}],"masksProperties":[{"cl":true,"inv":false,"mode":"a","pt":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2279,1025],[1526.246,1025],[1526.246,1313.406],[2279,1313.406]]},"o":100}],"hasMask":true,"type":"PreCompLayer","layerName":"smoke 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-4,"outPoint":1519,"startTime":-4,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]}},{"ind":1,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.388,0.672],[0,0],[-0.388,0.672],[0,0],[-0.775,0],[0,0],[-0.388,-0.672],[0,0],[0.388,-0.672],[0,0],[0.775,0],[0,0]],"o":[[0,0],[-0.388,-0.672],[0,0],[0.388,-0.672],[0,0],[0.775,0],[0,0],[0.388,0.672],[0,0],[-0.388,0.672],[0,0],[-0.775,0]],"v":[[-6.416,8.942],[-10.952,1.085],[-10.952,-1.085],[-6.416,-8.942],[-4.536,-10.028],[4.536,-10.028],[6.416,-8.942],[10.952,-1.085],[10.952,1.085],[6.416,8.942],[4.536,10.028],[-4.536,10.028]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 4","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":27,"outPoint":1517,"startTime":-6,"ks":{"o":100,"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.572],"y":[0]},"n":"0p667_1_0p572_0","t":27,"s":[0],"e":[-182]},{"t":40}],"p":[{"i":{"x":0.667,"y":1},"o":{"x":0.572,"y":0},"n":"0p667_1_0p572_0","t":27,"s":[1984,1117,0],"e":[1674,1117,0],"to":[-51.6666679382324,0,0],"ti":[51.6666679382324,0,0]},{"t":40}],"a":[0,0,0],"s":[{"i":{"x":[0,0,0.667],"y":[1,1,0.667]},"o":{"x":[0.154,0.154,0.333],"y":[0,0,0.333]},"n":"0,0,0p667_1,1,0p667_0p154,0p154,0p333_0,0,0p333","t":27,"s":[0,0,100],"e":[139,139,100]},{"i":{"x":[0.978,0.978,0.667],"y":[1,1,0.667]},"o":{"x":[1,1,0.333],"y":[0,0,0.333]},"n":"0p978,0p978,0p667_1,1,0p667_1,1,0p333_0,0,0p333","t":38,"s":[139,139,100],"e":[0,0,100]},{"t":40}]}},{"ind":2,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.472,0],[0.345,0.121],[0.369,0.767],[0,0],[0,0],[0.761,1.58],[0,0],[-0.281,0.803],[-0.765,0.369],[0,0],[0,0],[-1.582,0.759],[0,0],[-0.802,-0.281],[-0.369,-0.766],[0,0],[0,0],[-0.803,-0.281],[-0.369,-0.766],[0,0],[1.58,-0.76],[0,0],[0,0],[0,0],[1.581,-0.761],[0,0]],"o":[[-0.354,0],[-0.803,-0.281],[0,0],[0,0],[-1.581,0.76],[0,0],[-0.369,-0.764],[0.281,-0.802],[0,0],[0,0],[-0.76,-1.584],[0,0],[0.766,-0.37],[0.803,0.281],[0,0],[0,0],[0.766,-0.369],[0.803,0.281],[0,0],[0.76,1.582],[0,0],[0,0],[0,0],[0.761,1.581],[0,0],[-0.436,0.21]],"v":[[7.159,22.398],[6.104,22.217],[4.288,20.593],[-2.343,6.809],[-16.938,13.83],[-21.186,12.344],[-22.863,8.855],[-22.999,6.424],[-21.377,4.609],[-6.78,-2.413],[-13.411,-16.198],[-11.92,-20.447],[-8.732,-21.981],[-6.3,-22.116],[-4.484,-20.492],[2.147,-6.707],[16.595,-13.658],[19.027,-13.794],[20.843,-12.169],[22.52,-8.684],[21.032,-4.437],[21.032,-4.436],[6.583,2.514],[13.215,16.299],[11.727,20.546],[8.535,22.081]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[235,93,67,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 3","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":25,"outPoint":1515,"startTime":-8,"ks":{"o":100,"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.572],"y":[0]},"n":"0p667_1_0p572_0","t":25,"s":[0],"e":[-182]},{"t":38}],"p":[{"i":{"x":0.667,"y":1},"o":{"x":0.572,"y":0},"n":"0p667_1_0p572_0","t":25,"s":[1709,1171,0],"e":[1399,1171,0],"to":[-51.6666679382324,0,0],"ti":[51.6666679382324,0,0]},{"t":38}],"a":[0,0,0],"s":[{"i":{"x":[0,0,0.667],"y":[1,1,0.667]},"o":{"x":[0.154,0.154,0.333],"y":[0,0,0.333]},"n":"0,0,0p667_1,1,0p667_0p154,0p154,0p333_0,0,0p333","t":25,"s":[0,0,100],"e":[139,139,100]},{"i":{"x":[0.978,0.978,0.667],"y":[1,1,0.667]},"o":{"x":[1,1,0.333],"y":[0,0,0.333]},"n":"0p978,0p978,0p667_1,1,0p667_1,1,0p333_0,0,0p333","t":36,"s":[139,139,100],"e":[0,0,100]},{"t":38}]}},{"ind":3,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.285,0.246],[0,0],[0.089,-0.352],[0,0],[-0.367,0.125],[0,0]],"o":[[0,0],[-0.275,-0.237],[0,0],[-0.095,0.376],[0,0],[0.357,-0.122]],"v":[[11.467,3.049],[-5.282,-11.401],[-6.074,-11.151],[-11.657,10.931],[-11.026,11.513],[11.306,3.88]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[7,137,234,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":24,"outPoint":1514,"startTime":-9,"ks":{"o":100,"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.572],"y":[0]},"n":"0p667_1_0p572_0","t":24,"s":[0],"e":[-182]},{"t":37}],"p":[{"i":{"x":0.667,"y":1},"o":{"x":0.572,"y":0},"n":"0p667_1_0p572_0","t":24,"s":[1583,1029,0],"e":[1273,1029,0],"to":[-51.6666679382324,0,0],"ti":[51.6666679382324,0,0]},{"t":37}],"a":[0,0,0],"s":[{"i":{"x":[0,0,0.667],"y":[1,1,0.667]},"o":{"x":[0.154,0.154,0.333],"y":[0,0,0.333]},"n":"0,0,0p667_1,1,0p667_0p154,0p154,0p333_0,0,0p333","t":24,"s":[0,0,100],"e":[139,139,100]},{"i":{"x":[0.978,0.978,0.667],"y":[1,1,0.667]},"o":{"x":[1,1,0.333],"y":[0,0,0.333]},"n":"0p978,0p978,0p667_1,1,0p667_1,1,0p333_0,0,0p333","t":35,"s":[139,139,100],"e":[0,0,100]},{"t":37}]}},{"ind":4,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-226,134],[-596,134]]}},{"ty":"tm","s":[{"i":{"x":[0.532],"y":[1]},"o":{"x":[0.97],"y":[0]},"n":"0p532_1_0p97_0","t":27,"s":[0],"e":[100]},{"t":37}],"e":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.672],"y":[0]},"n":"0_1_0p672_0","t":27,"s":[0],"e":[100]},{"t":37}],"o":0,"m":1},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":19},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"trait 7","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":27,"outPoint":1534,"startTime":11,"ks":{"o":100,"r":0,"p":[2107,960,0],"a":[{"i":{"x":0.647,"y":1},"o":{"x":0.993,"y":0},"n":"0p647_1_0p993_0","t":27,"s":[0,0,0],"e":[81,0,0],"to":[13.5,0,0],"ti":[-13.5,0,0]},{"t":37}],"s":[100,100,100]}},{"ind":5,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-448,134],[-588,134]]}},{"ty":"tm","s":[{"i":{"x":[0.532],"y":[1]},"o":{"x":[0.97],"y":[0]},"n":"0p532_1_0p97_0","t":27,"s":[0],"e":[100]},{"t":37}],"e":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.672],"y":[0]},"n":"0_1_0p672_0","t":27,"s":[0],"e":[100]},{"t":37}],"o":0,"m":1},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":19},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"trait 8","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":27,"outPoint":1534,"startTime":11,"ks":{"o":100,"r":0,"p":[2028,960,0],"a":[{"i":{"x":0.647,"y":1},"o":{"x":0.945,"y":0},"n":"0p647_1_0p945_0","t":27,"s":[0,0,0],"e":[81,0,0],"to":[13.5,0,0],"ti":[-13.5,0,0]},{"t":37}],"s":[100,100,100]}},{"ind":6,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-448,134],[-588,134]]}},{"ty":"tm","s":[{"i":{"x":[0.532],"y":[1]},"o":{"x":[0.97],"y":[0]},"n":"0p532_1_0p97_0","t":25,"s":[0],"e":[100]},{"t":35}],"e":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.672],"y":[0]},"n":"0_1_0p672_0","t":25,"s":[0],"e":[100]},{"t":35}],"o":0,"m":1},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":19},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"trait 5","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":24,"outPoint":1532,"startTime":9,"ks":{"o":100,"r":0,"p":[2420,1003,0],"a":[{"i":{"x":0.547,"y":1},"o":{"x":1,"y":0},"n":"0p547_1_1_0","t":25,"s":[0,0,0],"e":[81,0,0],"to":[13.5,0,0],"ti":[-13.5,0,0]},{"t":35}],"s":[100,100,100]}},{"ind":7,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-226,134],[-596,134]]}},{"ty":"tm","s":[{"i":{"x":[0.532],"y":[1]},"o":{"x":[0.97],"y":[0]},"n":"0p532_1_0p97_0","t":24,"s":[0],"e":[100]},{"t":34}],"e":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.672],"y":[0]},"n":"0_1_0p672_0","t":24,"s":[0],"e":[100]},{"t":34}],"o":0,"m":1},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":19},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"trait 6","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":24,"outPoint":1531,"startTime":8,"ks":{"o":100,"r":0,"p":[2021,1004,0],"a":[{"i":{"x":0.547,"y":1},"o":{"x":0.91,"y":0},"n":"0p547_1_0p91_0","t":24,"s":[0,0,0],"e":[94,0,0],"to":[15.6666669845581,0,0],"ti":[-15.6666669845581,0,0]},{"t":34}],"s":[100,100,100]}},{"ind":8,"layers":[{"ind":0,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[6.315,-4.544],[-0.575,-0.609],[0.417,8.623],[0.831,0.102]],"o":[[0.563,0.632],[22.269,-14.328],[-0.825,-0.098],[-0.695,31.014]],"v":[[-12.071,23.764],[-10.365,25.628],[11.994,-25.328],[9.51,-25.628]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-494.771,269.258],[465.229,269.258],[465.229,-290.742],[-494.771,-290.742]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-494.771,-290.742],[465.229,-290.742],[465.229,269.258],[-494.771,269.258]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-12.072,25.628],[12.071,25.628],[12.071,-25.628],[-12.072,-25.628]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[216,216,216,255],"o":100},{"ty":"tr","p":[494.771,290.742],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[6.722,-5.789],[-5.686,-1.968],[0.397,17.425],[4.627,0.504]],"o":[[5.008,4.669],[19.358,-13.268],[-4.033,-0.281],[3.144,27.951]],"v":[[-18.587,21.787],[-2.505,32.07],[18.544,-30.872],[5.458,-32.07]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-506.5,261.923],[453.5,261.923],[453.5,-298.077],[-506.5,-298.077]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-506.5,-298.077],[453.5,-298.077],[453.5,261.923],[-506.5,261.923]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-18.587,32.071],[18.586,32.071],[18.586,-32.071],[-18.587,-32.071]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[216,216,216,255],"o":100},{"ty":"tr","p":[506.5,298.077],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[-5.689,6.907],[42.257,-20.316]],"o":[[0,0],[0,0],[-42.257,20.316]],"v":[[-58.713,-46.118],[35.96,-37.178],[16.456,25.801]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-509.047,256.957],[450.953,256.957],[450.953,-303.043],[-509.047,-303.043]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-509.047,-303.043],[450.953,-303.043],[450.953,256.957],[-509.047,256.957]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[81,120,147,255],"o":100},{"ty":"tr","p":[509.047,303.043],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-10.83,-3.682],[-8.909,26.207],[41.403,14.076],[1.965,-23.737],[-23.734,-16.307]],"o":[[41.403,14.076],[8.91,-26.207],[-41.404,-14.076],[-1.024,12.369],[8.408,5.776]],"v":[[-19.197,47.451],[71.902,25.486],[13.066,-47.452],[-79.788,-13.479],[-51.947,4.438]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-473.686,297.1],[486.314,297.1],[486.314,-262.9],[-473.686,-262.9]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-473.686,-262.9],[486.314,-262.9],[486.314,297.1],[-473.686,297.1]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[32,45,43,255],"o":100},{"ty":"tr","p":[473.686,262.9],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-5.604,0.861],[5.603,-0.86]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":6},{"ty":"tr","p":[519.073,288.869],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-5.621,0.522],[5.621,-0.522]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":6},{"ty":"tr","p":[496.43,284.621],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.731,-2.82],[-2.82,-0.731],[-0.731,2.821],[2.821,0.731]],"o":[[-0.731,2.82],[2.82,0.731],[0.731,-2.82],[-2.82,-0.731]],"v":[[-5.106,-1.324],[-1.323,5.106],[5.107,1.323],[1.324,-5.107]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-495.971,260.869],[464.029,260.869],[464.029,-299.131],[-495.971,-299.131]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-495.971,-299.131],[464.029,-299.131],[464.029,260.869],[-495.971,260.869]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-5.276,5.277],[5.276,5.277],[5.276,-5.277],[-5.276,-5.277]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[68,68,68,255],"o":100},{"ty":"tr","p":[495.971,299.131],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.731,-2.82],[-2.82,-0.731],[-0.731,2.821],[2.821,0.731]],"o":[[-0.731,2.82],[2.82,0.731],[0.731,-2.82],[-2.82,-0.731]],"v":[[-5.107,-1.323],[-1.324,5.107],[5.106,1.324],[1.323,-5.106]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-518.888,258.138],[441.112,258.138],[441.112,-301.862],[-518.888,-301.862]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-518.888,-301.862],[441.112,-301.862],[441.112,258.138],[-518.888,258.138]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-5.276,5.276],[5.276,5.276],[5.276,-5.277],[-5.276,-5.277]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[68,68,68,255],"o":100},{"ty":"tr","p":[518.888,301.862],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-4.679,18.051],[0,0],[-18.05,-4.679],[0,0],[4.679,-18.051],[0,0],[18.051,4.678],[0,0]],"o":[[0,0],[4.679,-18.051],[0,0],[18.051,4.679],[0,0],[-4.678,18.051],[0,0],[-18.051,-4.678]],"v":[[-44.945,10.66],[-34.108,-31.15],[7.218,-55.463],[20.633,-51.986],[44.945,-10.659],[34.109,31.15],[-7.217,55.464],[-20.632,51.986]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-490.864,262.32],[469.136,262.32],[469.136,-297.68],[-490.864,-297.68]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-490.864,-297.68],[469.136,-297.68],[469.136,262.32],[-490.864,262.32]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[490.864,297.68],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-18.051,-4.679],[0,0],[-4.678,18.051],[0,0],[18.051,4.678],[0,0],[4.679,-18.051],[0,0]],"o":[[0,0],[18.051,4.679],[0,0],[4.679,-18.051],[0,0],[-18.051,-4.679],[0,0],[-4.679,18.05]],"v":[[-34.83,48.306],[6.98,59.143],[48.306,34.83],[59.143,-6.98],[34.83,-48.306],[-6.98,-59.143],[-48.306,-34.83],[-59.143,6.98]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-476.667,266],[483.333,266],[483.333,-294],[-476.667,-294]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-476.667,-294],[483.333,-294],[483.333,266],[-476.667,266]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[239,239,239,255],"o":100},{"ty":"tr","p":[476.667,294],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":6,"layerName":"casque2 Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0.375,"p":[78.417,-29.137,0],"a":[480,280,0],"s":[100,100,100]}},{"ind":1,"layers":[{"ind":0,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":12,"s":[{"i":[[0,0],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[114.499,57.5],[-18.661,-38.723],[-114.499,42.639]]}],"e":[{"i":[[0,0],[55.661,-45.277],[0,0]],"o":[[0,0],[-45.39,36.922],[0,0]],"v":[[114.499,57.5],[-55.661,41.277],[-28.499,195.639]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16.105,"s":[{"i":[[0,0],[55.661,-45.277],[0,0]],"o":[[0,0],[-45.39,36.922],[0,0]],"v":[[114.499,57.5],[-55.661,41.277],[-28.499,195.639]]}],"e":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[101.499,63.5],[-36.661,120.277],[-21.499,257.639]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21.579,"s":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[101.499,63.5],[-36.661,120.277],[-21.499,257.639]]}],"e":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[89.499,65.5],[-67.244,149.194],[-86.332,295.139]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27.053,"s":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[89.499,65.5],[-67.244,149.194],[-86.332,295.139]]}],"e":[{"i":[[0,0],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[83.499,49.5],[-71.661,-12.723],[-201.499,41.639]]}]},{"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],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[83.499,49.5],[-71.661,-12.723],[-201.499,41.639]]}],"e":[{"i":[[0,0],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[114.499,57.5],[-18.661,-38.723],[-114.499,42.639]]}]},{"t":39.158203125}]},{"ty":"st","fillEnabled":true,"c":[178,15,40,255],"o":100,"w":23},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":11,"e":88.8,"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"bras 3","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0,"p":[2212,961,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":1,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":12,"s":[{"i":[[0,0],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[114.499,57.5],[-18.661,-38.723],[-114.499,42.639]]}],"e":[{"i":[[0,0],[55.661,-45.277],[0,0]],"o":[[0,0],[-45.39,36.922],[0,0]],"v":[[114.499,57.5],[-55.661,41.277],[-28.499,195.639]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16.105,"s":[{"i":[[0,0],[55.661,-45.277],[0,0]],"o":[[0,0],[-45.39,36.922],[0,0]],"v":[[114.499,57.5],[-55.661,41.277],[-28.499,195.639]]}],"e":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[101.499,63.5],[-36.661,120.277],[-21.499,257.639]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21.579,"s":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[101.499,63.5],[-36.661,120.277],[-21.499,257.639]]}],"e":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[89.499,65.5],[-67.244,149.194],[-86.332,295.139]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27.053,"s":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[89.499,65.5],[-67.244,149.194],[-86.332,295.139]]}],"e":[{"i":[[0,0],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[83.499,49.5],[-71.661,-12.723],[-201.499,41.639]]}]},{"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],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[83.499,49.5],[-71.661,-12.723],[-201.499,41.639]]}],"e":[{"i":[[0,0],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[114.499,57.5],[-18.661,-38.723],[-114.499,42.639]]}]},{"t":39.158203125}]},{"ty":"st","fillEnabled":true,"c":[178,15,40,255],"o":100,"w":23},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":58,"e":0,"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"bras","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0,"p":[2212,961,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":2,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":12,"s":[{"i":[[0,0],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[114.499,57.5],[-18.661,-38.723],[-114.499,42.639]]}],"e":[{"i":[[0,0],[55.661,-45.277],[0,0]],"o":[[0,0],[-45.39,36.922],[0,0]],"v":[[114.499,57.5],[-55.661,41.277],[-28.499,195.639]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16.105,"s":[{"i":[[0,0],[55.661,-45.277],[0,0]],"o":[[0,0],[-45.39,36.922],[0,0]],"v":[[114.499,57.5],[-55.661,41.277],[-28.499,195.639]]}],"e":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[101.499,63.5],[-36.661,120.277],[-21.499,257.639]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21.579,"s":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[101.499,63.5],[-36.661,120.277],[-21.499,257.639]]}],"e":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[89.499,65.5],[-67.244,149.194],[-86.332,295.139]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27.053,"s":[{"i":[[0,0],[40.518,-59.215],[0,0]],"o":[[0,0],[-33.339,48.723],[0,0]],"v":[[89.499,65.5],[-67.244,149.194],[-86.332,295.139]]}],"e":[{"i":[[0,0],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[83.499,49.5],[-71.661,-12.723],[-201.499,41.639]]}]},{"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],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[83.499,49.5],[-71.661,-12.723],[-201.499,41.639]]}],"e":[{"i":[[0,0],[84.66,-18.777],[0,0]],"o":[[0,0],[-52.607,11.668],[0,0]],"v":[[114.499,57.5],[-18.661,-38.723],[-114.499,42.639]]}]},{"t":39.158203125}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":23},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":0,"e":100,"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"bras 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0,"p":[2212,961,0],"a":[0,0,0],"s":[100,100,100]}}],"type":"PreCompLayer","layerName":"bras - Comp 3","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]},"tm":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"n":"0p667_1_0p167_0p167","t":0,"s":[0],"e":[0.48]},{"i":{"x":[0.656],"y":[1]},"o":{"x":[0.598],"y":[0]},"n":"0p656_1_0p598_0","t":12,"s":[0.48],"e":[1.56]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"n":"0p833_0p833_0p333_0","t":34,"s":[1.56],"e":[60.92]},{"t":1523}]},{"ind":2,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[6.315,-4.544],[-0.575,-0.609],[0.417,8.623],[0.831,0.102]],"o":[[0.563,0.632],[22.269,-14.328],[-0.825,-0.098],[-0.695,31.014]],"v":[[-12.071,23.764],[-10.365,25.628],[11.994,-25.328],[9.51,-25.628]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-514.448,483.831],[485.552,483.831],[485.552,-516.169],[-514.448,-516.169]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-514.448,-516.169],[485.552,-516.169],[485.552,483.831],[-514.448,483.831]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-12.071,25.628],[12.071,25.628],[12.071,-25.628],[-12.071,-25.628]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[216,216,216,255],"o":100},{"ty":"tr","p":[514.448,516.169],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[6.722,-5.789],[-5.686,-1.968],[0.397,17.425],[4.627,0.504]],"o":[[5.008,4.669],[19.358,-13.268],[-4.033,-0.281],[3.144,27.951]],"v":[[-18.586,21.787],[-2.504,32.071],[18.545,-30.872],[5.459,-32.07]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-526.177,476.496],[473.823,476.496],[473.823,-523.504],[-526.177,-523.504]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-526.177,-523.504],[473.823,-523.504],[473.823,476.496],[-526.177,476.496]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-18.587,32.071],[18.586,32.071],[18.586,-32.071],[-18.587,-32.071]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[216,216,216,255],"o":100},{"ty":"tr","p":[526.177,523.504],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[-5.689,6.907],[42.257,-20.316]],"o":[[0,0],[0,0],[-42.257,20.316]],"v":[[-58.713,-46.117],[35.96,-37.178],[16.456,25.802]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-528.725,471.53],[471.275,471.53],[471.275,-528.47],[-528.725,-528.47]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-528.725,-528.47],[471.275,-528.47],[471.275,471.53],[-528.725,471.53]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[81,120,147,255],"o":100},{"ty":"tr","p":[528.725,528.47],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-10.83,-3.682],[-8.909,26.207],[41.403,14.076],[1.965,-23.737],[-23.734,-16.307]],"o":[[41.403,14.076],[8.91,-26.207],[-41.404,-14.076],[-1.024,12.369],[8.408,5.776]],"v":[[-19.197,47.451],[71.902,25.486],[13.066,-47.452],[-79.788,-13.479],[-51.947,4.437]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-493.364,511.673],[506.636,511.673],[506.636,-488.327],[-493.364,-488.327]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-493.364,-488.327],[506.636,-488.327],[506.636,511.673],[-493.364,511.673]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[32,45,43,255],"o":100},{"ty":"tr","p":[493.364,488.327],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":6,"layerName":"casque Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0,"p":[82,-33,0],"a":[500,500,0],"s":[100,100,100]}},{"ind":3,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-5.737],[5.737,0],[0,5.737],[-5.737,0]],"o":[[0,5.737],[-5.737,0],[0,-5.737],[5.737,0]],"v":[[10.388,0],[0,10.388],[-10.388,0],[0,-10.388]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-500.059,499.979],[499.941,499.979],[499.941,-500.021],[-500.059,-500.021]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-500.059,-500.021],[499.941,-500.021],[499.941,499.979],[-500.059,499.979]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-10.389,10.388],[10.388,10.388],[10.388,-10.389],[-10.389,-10.389]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[500.059,500.021],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-37.791],[37.791,0],[0,37.791],[-37.792,0]],"o":[[0,37.791],[-37.792,0],[0,-37.791],[37.791,0]],"v":[[68.427,0],[0,68.427],[-68.428,0],[0,-68.427]]}},{"ty":"st","fillEnabled":true,"c":[239,239,239,255],"o":100,"w":9},{"ty":"tr","p":[500.058,500.021],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-65.162],[65.162,0],[0,65.162],[-65.162,0]],"o":[[0,65.162],[-65.162,0],[0,-65.162],[65.162,0]],"v":[[117.987,0],[0,117.987],[-117.987,0],[0,-117.987]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-500.058,499.979],[499.942,499.979],[499.942,-500.021],[-500.058,-500.021]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-500.058,-500.021],[499.942,-500.021],[499.942,499.979],[-500.058,499.979]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[32,45,43,255],"o":100},{"ty":"tr","p":[500.058,500.021],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"roue Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0,"p":[2128,1192,0],"a":[500,500,0],"s":[100,100,100]}},{"ind":4,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[37.553,16.382],[-37.552,-16.382]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":23},{"ty":"tr","p":[792.159,432.347],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[10.614,18.649],[-10.614,-18.649]]}},{"ty":"st","fillEnabled":true,"c":[237,92,60,255],"o":100,"w":23},{"ty":"tr","p":[840.613,467.149],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[44.195,20.329],[-44.195,-20.329]]}},{"ty":"st","fillEnabled":true,"c":[237,92,60,255],"o":100,"w":23},{"ty":"tr","p":[556.054,462.501],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[103.416,-29.169]],"o":[[0,0],[0,0]],"v":[[163.079,5.745],[-163.079,14.585]]}},{"ty":"st","fillEnabled":true,"c":[237,92,60,255],"o":100,"w":23},{"ty":"tr","p":[687.312,482.795],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-31.198],[31.199,0],[0,31.198],[-31.198,0]],"o":[[0,31.198],[-31.198,0],[0,-31.198],[31.199,0]],"v":[[56.49,0],[0,56.49],[-56.49,0],[0,-56.49]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":16},{"ty":"tr","p":[922.531,517.018],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[37.553,16.382],[-37.552,-16.382]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":23},{"ty":"tr","p":[893.159,505.347],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"structure Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1539,"startTime":16,"ks":{"o":100,"r":0,"p":[2216,1229.1,0],"a":[500,500,0],"s":[100,100,100]}},{"ind":5,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-156.696,340],[788.696,340]]}},{"ty":"st","fillEnabled":true,"c":[235,93,67,255],"o":100,"w":19},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 1","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0,"p":[1903,979,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":6,"type":"NullLayer","layerName":"Nul 1","threeD":false,"an":{},"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":0,"r":[{"i":{"x":[0.74],"y":[1]},"o":{"x":[0.937],"y":[0]},"n":"0p74_1_0p937_0","t":12,"s":[0],"e":[-15]},{"i":{"x":[0.115],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p115_1_0p333_0","t":24,"s":[-15],"e":[0]},{"t":33}],"p":[{"i":{"x":0.74,"y":1},"o":{"x":0.937,"y":0},"n":"0p74_1_0p937_0","t":12,"s":[2369,1003,0],"e":[2400,949,0],"to":[5.16666650772095,-9,0],"ti":[0,0,0]},{"i":{"x":0.115,"y":1},"o":{"x":0.333,"y":0},"n":"0p115_1_0p333_0","t":24,"s":[2400,949,0],"e":[2369,1003,0],"to":[0,0,0],"ti":[5.16666650772095,-9,0]},{"t":33}],"a":[0,0,0],"s":[100,100,100]}},{"ind":7,"layers":[{"ind":0,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":12,"s":[{"i":[[0,0],[-113.032,-22.115]],"o":[[0,0],[0,0]],"v":[[-109.971,59.378],[89.972,-32.263]]}],"e":[{"i":[[0,0],[-65.972,60.263]],"o":[[0,0],[0,0]],"v":[[-109.971,59.378],[106.972,-48.263]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":27,"s":[{"i":[[0,0],[-65.972,60.263]],"o":[[0,0],[0,0]],"v":[[-109.971,59.378],[106.972,-48.263]]}],"e":[{"i":[[0,0],[-113.032,-22.115]],"o":[[0,0],[0,0]],"v":[[-109.971,59.378],[89.972,-32.263]]}]},{"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],[-113.032,-22.115]],"o":[[0,0],[0,0]],"v":[[-109.971,59.378],[89.972,-32.263]]}],"e":[{"i":[[0,0],[-113.032,-22.115]],"o":[[0,0],[0,0]],"v":[[-109.971,59.378],[89.972,-32.263]]}]},{"t":39}]},{"ty":"st","fillEnabled":true,"c":[224,130,27,255],"o":100,"w":99},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"tronc 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0,"p":[2254,1068,0],"a":[0,0,0],"s":[100,100,100]}}],"type":"PreCompLayer","layerName":"tronc 2 - Comp 3","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]},"tm":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"n":"0p667_1_0p167_0p167","t":0,"s":[0],"e":[0.48]},{"i":{"x":[0.656],"y":[1]},"o":{"x":[0.598],"y":[0]},"n":"0p656_1_0p598_0","t":12,"s":[0.48],"e":[1.56]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"n":"0p833_0p833_0p333_0","t":34,"s":[1.56],"e":[60.92]},{"t":1523}]}],"compId":"ofqflm5","type":"PreCompLayer","layerName":"HandicapŽ 8","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":34,"outPoint":56,"startTime":22,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]}},{"ind":9,"refId":"ofqflm5","type":"PreCompLayer","layerName":"HandicapŽ 8","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":12,"outPoint":34,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]}},{"ind":10,"type":"SolidLayer","layerName":"Orange uni 1","threeD":false,"an":{},"width":4320,"height":1920,"color":"#f6b100","inPoint":0,"outPoint":1523,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]}}],"totalFrames":22,"frameRate":25,"ff":0.96,"compWidth":4320,"compHeight":1920},"assets":[],"v":"2.0.6"};
+var anim2 = {"animation":{"layers":[{"ind":0,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[-212,-10]],"o":[[0,0],[276.91,13.062]],"v":[[-180,-286],[79,-385]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":8},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0.204],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p204_1_0p333_0","t":24,"s":[0],"e":[100]},{"t":31}],"e":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.722],"y":[0]},"n":"0p667_1_0p722_0","t":24,"s":[0],"e":[100]},{"t":31}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 5","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-6,"outPoint":1457,"startTime":-6,"ks":{"o":30,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":1,"type":"NullLayer","layerName":"Nul 12","threeD":false,"an":{},"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":0,"r":92,"p":[2333,601,0],"a":[543,-460,0],"s":[100,100,100]}},{"ind":2,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[535,-466],[535,-506]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":8},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":29,"s":[0],"e":[100]},{"t":36}],"e":[{"i":{"x":[0],"y":[1]},"o":{"x":[0],"y":[0]},"n":"0_1_0_0","t":27,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":29,"s":[100],"e":[100]},{"t":36}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"eclat 3","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":14,"outPoint":1477,"startTime":14,"ks":{"o":100,"r":103,"p":[{"i":{"x":0,"y":1},"o":{"x":0.177,"y":0},"n":"0_1_0p177_0","t":27,"s":[2318.431,595.08,0],"e":[2431.955,623.385,0],"to":[18.9207668304443,4.7174768447876,0],"ti":[-18.9207668304443,-4.7174768447876,0]},{"t":36}],"a":[534.75,-462.5,0],"s":[100,100,100]}},{"ind":3,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[535,-466],[535,-506]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":8},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":29,"s":[0],"e":[100]},{"t":36}],"e":[{"i":{"x":[0],"y":[1]},"o":{"x":[0],"y":[0]},"n":"0_1_0_0","t":27,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":29,"s":[100],"e":[100]},{"t":36}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":1,"layerName":"eclat 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":14,"outPoint":1477,"startTime":14,"ks":{"o":100,"r":-51,"p":[{"i":{"x":0,"y":1},"o":{"x":0.177,"y":0},"n":"0_1_0p177_0","t":27,"s":[533.655,-418.065,0],"e":[445.354,-494.824,0],"to":[-14.7168369293213,-12.7931509017944,0],"ti":[14.7168369293213,12.7931509017944,0]},{"t":36}],"a":[534.75,-462.5,0],"s":[100,100,100]}},{"ind":4,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[535,-466],[535,-506]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":8},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":29,"s":[0],"e":[100]},{"t":36}],"e":[{"i":{"x":[0],"y":[1]},"o":{"x":[0],"y":[0]},"n":"0_1_0_0","t":27,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":29,"s":[100],"e":[100]},{"t":36}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"eclat","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":14,"outPoint":1477,"startTime":14,"ks":{"o":100,"r":65,"p":[{"i":{"x":0,"y":1},"o":{"x":0.177,"y":0},"n":"0_1_0p177_0","t":27,"s":[2314.103,599.557,0],"e":[2420.141,550.111,0],"to":[17.673002243042,-8.24105644226074,0],"ti":[-17.673002243042,8.24105644226074,0]},{"t":36}],"a":[534.75,-462.5,0],"s":[100,100,100]}},{"ind":5,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.18,0.155],[0,0],[0.056,-0.221],[0,0],[-0.23,0.079],[0,0]],"o":[[0,0],[-0.173,-0.149],[0,0],[-0.06,0.236],[0,0],[0.224,-0.077]],"v":[[3.558,1.886],[-10.261,-3.142],[-10.759,-2.985],[-10.981,6.842],[-10.585,7.208],[3.456,2.409]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[0,194,112,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[114.039,178.678],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-12,"outPoint":1451,"startTime":-12,"ks":{"o":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":12,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":14,"s":[100],"e":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":30,"s":[100],"e":[0]},{"t":32}],"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":12,"s":[0],"e":[217]},{"t":32}],"p":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":8,"s":[3125,249,0],"e":[2771.994,321.124,0],"to":[0,0,0],"ti":[196.548004150391,-51.4805030822754,0]},{"i":{"x":0.712,"y":0.651},"o":{"x":0.44,"y":0},"n":"0p712_0p651_0p44_0","t":12,"s":[2771.994,321.124,0],"e":[2401.784,448.506,0],"to":[-117.367492675781,30.7412815093994,0],"ti":[121.179481506348,-54.9032211303711,0]},{"i":{"x":0.642,"y":1},"o":{"x":0.318,"y":0.169},"n":"0p642_1_0p318_0p169","t":27,"s":[2401.784,448.506,0],"e":[2689.65,485.594,0],"to":[-25.939245223999,11.752387046814,0],"ti":[24.7355308532715,-12.980224609375,0]},{"t":32}],"a":[0,0,0],"s":[100,100,100]}},{"ind":6,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-1.314],[1.314,0],[0,1.314],[-1.314,0]],"o":[[0,1.314],[-1.314,0],[0,-1.314],[1.314,0]],"v":[[2.38,0],[0,2.38],[-2.38,0],[0,-2.38]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 4","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-5,"outPoint":1458,"startTime":-5,"ks":{"o":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":19,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":21,"s":[100],"e":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":34,"s":[100],"e":[0]},{"t":39}],"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":19,"s":[0],"e":[212]},{"t":39}],"p":[{"i":{"x":0.716,"y":0.606},"o":{"x":0.435,"y":0},"n":"0p716_0p606_0p435_0","t":19,"s":[2771.994,321.124,0],"e":[2432.637,434.901,0],"to":[-107.474105834961,28.1499729156494,0],"ti":[112.421913146973,-48.2567710876465,0]},{"i":{"x":0.639,"y":1},"o":{"x":0.319,"y":0.328},"n":"0p639_1_0p319_0p328","t":33,"s":[2432.637,434.901,0],"e":[2615.65,485.594,0],"to":[-36.6287231445312,15.7227697372437,0],"ti":[34.4762306213379,-18.0917568206787,0]},{"t":39}],"a":[0,0,0],"s":[100,100,100]}},{"ind":7,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.239,0],[0.175,0.061],[0.187,0.389],[0,0],[0,0],[0.386,0.802],[0,0],[-0.143,0.407],[-0.388,0.187],[0,0],[0,0],[-0.803,0.385],[0,0],[-0.407,-0.143],[-0.187,-0.389],[0,0],[0,0],[-0.407,-0.143],[-0.187,-0.389],[0,0],[0.802,-0.386],[0,0],[0,0],[0,0],[0.802,-0.386],[0,0]],"o":[[-0.18,0],[-0.407,-0.143],[0,0],[0,0],[-0.802,0.386],[0,0],[-0.187,-0.388],[0.142,-0.407],[0,0],[0,0],[-0.386,-0.804],[0,0],[0.389,-0.188],[0.407,0.143],[0,0],[0,0],[0.388,-0.187],[0.407,0.143],[0,0],[0.386,0.803],[0,0],[0,0],[0,0],[0.386,0.802],[0,0],[-0.221,0.107]],"v":[[3.632,11.365],[3.097,11.273],[2.175,10.448],[-1.189,3.455],[-8.595,7.017],[-10.75,6.263],[-11.601,4.493],[-11.67,3.26],[-10.847,2.339],[-3.44,-1.224],[-6.805,-8.219],[-6.048,-10.375],[-4.431,-11.153],[-3.197,-11.222],[-2.275,-10.397],[1.089,-3.403],[8.42,-6.93],[9.654,-6.999],[10.576,-6.175],[11.426,-4.406],[10.672,-2.251],[10.671,-2.251],[3.34,1.276],[6.705,8.27],[5.95,10.425],[4.331,11.204]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[225,34,71,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 3","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-7,"outPoint":1456,"startTime":-7,"ks":{"o":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":17,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":19,"s":[100],"e":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":30,"s":[100],"e":[0]},{"t":33}],"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":17,"s":[0],"e":[212]},{"t":37}],"p":[{"i":{"x":0.716,"y":0.578},"o":{"x":0.435,"y":0},"n":"0p716_0p578_0p435_0","t":17,"s":[2771.994,321.124,0],"e":[2432.637,434.901,0],"to":[-107.474105834961,28.1499729156494,0],"ti":[112.421913146973,-48.2567710876465,0]},{"i":{"x":0.639,"y":1},"o":{"x":0.319,"y":0.222},"n":"0p639_1_0p319_0p222","t":32,"s":[2432.637,434.901,0],"e":[2720.65,485.594,0],"to":[-36.6287231445312,15.7227697372437,0],"ti":[34.4762306213379,-18.0917568206787,0]},{"t":38}],"a":[0,0,0],"s":[100,100,100]}},{"ind":8,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.194,0.337],[0,0],[-0.194,0.337],[0,0],[-0.389,0],[0,0],[-0.194,-0.337],[0,0],[0.195,-0.337],[0,0],[0.389,0],[0,0]],"o":[[0,0],[-0.194,-0.337],[0,0],[0.194,-0.337],[0,0],[0.389,0],[0,0],[0.195,0.337],[0,0],[-0.194,0.337],[0,0],[-0.389,0]],"v":[[-3.217,4.483],[-5.491,0.544],[-5.491,-0.544],[-3.217,-4.483],[-2.274,-5.028],[2.274,-5.028],[3.217,-4.483],[5.491,-0.544],[5.491,0.544],[3.217,4.483],[2.274,5.028],[-2.274,5.028]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 1","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-14,"outPoint":1449,"startTime":-14,"ks":{"o":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":10,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":12,"s":[100],"e":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":28,"s":[100],"e":[0]},{"t":30}],"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":10,"s":[0],"e":[349]},{"t":30}],"p":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":6,"s":[3125,249,0],"e":[2771.994,321.124,0],"to":[0,0,0],"ti":[196.548004150391,-51.4805030822754,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.451,"y":0},"n":"0p667_1_0p451_0","t":10,"s":[2771.994,321.124,0],"e":[2325.65,485.594,0],"to":[-142.490753173828,37.3216514587402,0],"ti":[140.291656494141,-73.6194915771484,0]},{"t":30}],"a":[0,0,0],"s":[100,100,100]}},{"ind":9,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-12.15],[12.15,0],[0,12.15],[-12.15,0]],"o":[[0,12.15],[-12.15,0],[0,-12.15],[12.15,0]],"v":[[22,0],[0,22],[-22,0],[0,-22]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[244,247,139,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"balle","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":7,"outPoint":1470,"startTime":7,"ks":{"o":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":14,"s":[0],"e":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p833_1_0p333_0","t":27,"s":[100],"e":[1]},{"t":38}],"r":20,"p":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":14,"s":[3264,245,0],"e":[2206,560,0],"to":[0,0,0],"ti":[362,-268.000122070312,0]},{"i":{"x":0,"y":1},"o":{"x":0.059,"y":0},"n":"0_1_0p059_0","t":27,"s":[2206,560,0],"e":[3494,440,0],"to":[-18.51904296875,14.1787719726562,0],"ti":[-124,-52,0]},{"t":38}],"a":[0,0,0],"s":[100,100,100]}},{"ind":10,"type":"NullLayer","layerName":"handicapŽ","threeD":false,"an":{},"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":0,"r":0,"p":[{"i":{"x":0.297,"y":1},"o":{"x":0.333,"y":0},"n":"0p297_1_0p333_0","t":0,"s":[2001,960,0],"e":[2160,960,0],"to":[26.5,0,0],"ti":[0,0,0]},{"i":{"x":0.377,"y":1},"o":{"x":0.333,"y":0},"n":"0p377_1_0p333_0","t":27,"s":[2160,960,0],"e":[2001,960,0],"to":[0,0,0],"ti":[26.5,0,0]},{"t":54}],"a":[0,0,0],"s":[100,100,100]}},{"ind":11,"type":"NullLayer","parent":10,"layerName":"Nul 5","threeD":false,"an":{},"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":0,"r":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.128],"y":[0]},"n":"0_1_0p128_0","t":27,"s":[0],"e":[56]},{"t":44}],"p":[{"i":{"x":0.028,"y":1},"o":{"x":0.333,"y":0},"n":"0p028_1_0p333_0","t":22,"s":[-12,-68,0],"e":[32,-68,0],"to":[7.33333349227905,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.057,"y":0},"n":"0p667_1_0p057_0","t":33,"s":[32,-68,0],"e":[-12,-68,0],"to":[0,0,0],"ti":[7.33333349227905,0,0]},{"t":44}],"a":[-12,-68,0],"s":[100,100,100]}},{"ind":12,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.539,-1.319],[12.51,-14.63],[12.06,2.762],[4.056,6.142],[0.593,1.212],[0.02,0.041],[0.711,2.16],[0,0],[-0.257,1.22],[-0.15,0.657],[-0.138,0.517],[0,0],[0,0],[-19.73,-4.519],[3.23,-21.387],[0,0]],"o":[[0,0],[-8.241,11.804],[-6.925,-1.586],[-0.561,-0.741],[-0.02,-0.041],[-1.013,-1.922],[-7.152,-19.621],[0.021,-0.503],[0.121,-0.656],[0.121,-0.526],[0.185,-0.782],[0,0],[6.223,-20.97],[19.564,4.481],[0,0],[0,0]],"v":[[36.434,4.727],[20.137,33.731],[-12.66,49.249],[-29.366,37.125],[-31.096,34.22],[-31.155,34.097],[-33.748,27.964],[-38.074,-11.773],[-37.59,-14.602],[-37.188,-16.573],[-36.792,-18.134],[-36.477,-19.445],[-36.425,-19.433],[9.522,-48.992],[38.109,-2.927],[38.179,-2.913]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-478.773,333.922],[481.227,333.922],[481.227,-226.077],[-478.773,-226.077]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-478.773,-226.077],[481.227,-226.077],[481.227,333.922],[-478.773,333.922]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-38.625,49.882],[38.625,49.882],[38.625,-49.882],[-38.625,-49.882]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[252,250,250,255],"o":100},{"ty":"tr","p":[478.773,226.077],"a":[0,0],"s":[100,100],"r":0,"o":26}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.539,-1.319],[12.51,-14.63],[12.06,2.762],[4.056,6.142],[0.593,1.212],[0.02,0.041],[0.711,2.16],[0,0],[-0.257,1.22],[-0.15,0.657],[-0.138,0.517],[0,0],[0,0],[-19.73,-4.519],[3.23,-21.387],[0,0]],"o":[[0,0],[-8.241,11.804],[-6.925,-1.586],[-0.561,-0.741],[-0.02,-0.041],[-1.013,-1.922],[-7.152,-19.621],[0.021,-0.503],[0.121,-0.656],[0.121,-0.526],[0.185,-0.782],[0,0],[6.223,-20.97],[19.564,4.481],[0,0],[0,0]],"v":[[34.804,-13.079],[18.507,15.926],[-14.29,31.443],[-30.996,19.32],[-32.726,16.415],[-32.785,16.292],[-35.378,10.158],[-39.704,-29.579],[-39.22,-32.407],[-38.818,-34.378],[-38.422,-35.939],[-38.107,-37.251],[-38.055,-37.238],[7.892,-66.798],[36.479,-20.732],[36.549,-20.718]]}},{"ty":"sh","closed":true,"ks":{"i":[[4.286,-6.898],[2.907,8.378],[-3.762,-0.88],[0,0],[0,0],[-3.681,0.421]],"o":[[-0.857,-8.074],[3.126,1.976],[0,0],[0,0],[3.784,0.848],[-6.266,6.278]],"v":[[-20.895,59.337],[-27.128,34.71],[-16.8,39.023],[-15.995,39.262],[-15.765,39.26],[-4.559,39.873]]}},{"ty":"sh","closed":true,"ks":{"i":[[-2.589,11.306],[25.431,5.825],[6.7,-29.25],[-1.972,-10.304],[0,0],[-1.376,-3.95],[-2.02,-5.607],[3.075,-13.422],[0,0],[0,0],[0,0],[-11.878,11.627],[-4.272,4.667],[-2.753,3.907],[0,0]],"o":[[6.7,-29.251],[-25.39,-5.816],[-2.589,11.307],[0,0],[0.78,4.736],[1.806,6.044],[5.633,15.639],[0,0],[0,0],[0,0],[3.075,-13.424],[4.269,-4.181],[2.944,-2.949],[0,0],[6.258,-8.42]],"v":[[42.51,-12.708],[9.67,-74.231],[-46.621,-33.124],[-46.73,-0.682],[-46.752,-0.679],[-43.496,12.327],[-37.575,29.813],[-29.696,73.645],[-30.612,77.643],[-20.116,80.048],[-19.2,76.049],[6.972,40.018],[19.951,26.816],[28.507,16.557],[28.488,16.546]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-480.404,316.117],[479.596,316.117],[479.596,-243.883],[-480.404,-243.883]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-480.404,-243.883],[479.596,-243.883],[479.596,316.117],[-480.404,316.117]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[216,216,216,255],"o":100},{"ty":"tr","p":[480.404,243.883],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-0.89,-0.204],[0,0],[-0.204,0.89],[0,0],[0,0],[0,0]],"o":[[0,0],[0.89,0.204],[0,0],[0,0],[0,0],[-0.204,0.89]],"v":[[-11.443,32.556],[-3.991,34.264],[-2.01,33.021],[12.888,-32.022],[2.213,-34.467],[-12.685,30.576]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-446.383,199.196],[513.617,199.196],[513.617,-360.804],[-446.383,-360.804]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-446.383,-360.804],[513.617,-360.804],[513.617,199.196],[-446.383,199.196]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[216,216,216,255],"o":100},{"ty":"tr","p":[446.383,360.804],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":11,"layerName":"raquette Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":[{"i":{"x":[0.01],"y":[1]},"o":{"x":[0.452],"y":[0]},"n":"0p01_1_0p452_0","t":0,"s":[47],"e":[0]},{"i":{"x":[0.677],"y":[-0.93]},"o":{"x":[0.973],"y":[0]},"n":"0p677_-0p93_0p973_0","t":22,"s":[0],"e":[5.672]},{"i":{"x":[0.391],"y":[1]},"o":{"x":[0.129],"y":[0.187]},"n":"0p391_1_0p129_0p187","t":28.429,"s":[5.672],"e":[37]},{"t":37}],"p":[{"i":{"x":0.01,"y":1},"o":{"x":0.452,"y":0},"n":"0p01_1_0p452_0","t":0,"s":[-41,92,0],"e":[-171,-126,0],"to":[0,0,0],"ti":[67.07373046875,92.871337890625,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.845,"y":0},"n":"0p833_0p833_0p845_0","t":22,"s":[-171,-126,0],"e":[165,-158,0],"to":[-26,-35.9999389648438,0],"ti":[-112.8896484375,-208.41259765625,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.321},"n":"0_1_0p167_0p321","t":28.29,"s":[165,-158,0],"e":[103,76,0],"to":[51.999755859375,96,0],"ti":[0,0,0]},{"t":37}],"a":[443,374,0],"s":[100,100,100]}},{"ind":13,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.01,"y":1},"o":{"x":0.452,"y":0},"n":"0p01_1_0p452_0","t":0,"s":[{"i":[[0,0],[-80.929,56.422]],"o":[[0,0],[0,0]],"v":[[-38.929,97.956],[-35.071,-66.422]]}],"e":[{"i":[[0,0],[-134.929,62.422]],"o":[[0,0],[0,0]],"v":[[-170.929,-124.044],[-1.071,-72.422]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.845,"y":0},"n":"0p833_0p833_0p845_0","t":22,"s":[{"i":[[0,0],[-134.929,62.422]],"o":[[0,0],[0,0]],"v":[[-170.929,-124.044],[-1.071,-72.422]]}],"e":[{"i":[[0,0],[-48.886,-94.778]],"o":[[0,0],[0,0]],"v":[[-69.443,-223.855],[8.993,-74.099]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":28.29,"s":[{"i":[[0,0],[-48.886,-94.778]],"o":[[0,0],[0,0]],"v":[[-69.443,-223.855],[8.993,-74.099]]}],"e":[{"i":[[0,0],[80.929,-56.422]],"o":[[0,0],[0,0]],"v":[[52.301,-254.726],[48.443,-90.349]]}]},{"t":37}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":23},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":11,"layerName":"bras","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.611],"y":[0]},"n":"0_1_0p611_0","t":22,"s":[0],"e":[136]},{"t":37}],"p":[{"i":{"x":0,"y":1},"o":{"x":0.611,"y":0},"n":"0_1_0p611_0","t":22,"s":[26,-72,0],"e":[-6,-72,0],"to":[-5.33333349227905,0,0],"ti":[7.5,2.33333325386047,0]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"n":"0p833_1_0p333_0","t":37,"s":[-6,-72,0],"e":[-19,-86,0],"to":[-7.5,-2.33333325386047,0],"ti":[2.16666674613953,2.33333325386047,0]},{"t":44}],"a":[26,-72,0],"s":[100,100,100]}},{"ind":14,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-4.653,3.238],[4.654,-3.238]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":6},{"ty":"tr","p":[517.118,263.363],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-4.819,2.941],[4.819,-2.941]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":6},{"ty":"tr","p":[494.916,269.51],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-0.584,-2.854],[-2.854,0.585],[0.584,2.855],[2.855,-0.584]],"o":[[0.584,2.854],[2.854,-0.584],[-0.585,-2.854],[-2.854,0.584]],"v":[[-5.168,1.057],[1.058,5.168],[5.169,-1.059],[-1.058,-5.168]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-500.888,277.258],[459.112,277.258],[459.112,-282.742],[-500.888,-282.742]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-500.888,-282.742],[459.112,-282.742],[459.112,277.258],[-500.888,277.258]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-5.277,5.276],[5.276,5.276],[5.276,-5.277],[-5.277,-5.277]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[68,68,68,255],"o":100},{"ty":"tr","p":[500.888,282.742],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-0.584,-2.854],[-2.854,0.585],[0.584,2.855],[2.855,-0.584]],"o":[[0.584,2.854],[2.854,-0.584],[-0.585,-2.854],[-2.854,0.584]],"v":[[-5.168,1.058],[1.058,5.168],[5.169,-1.058],[-1.058,-5.168]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-522.667,284.888],[437.333,284.888],[437.333,-275.112],[-522.667,-275.112]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-522.667,-275.112],[437.333,-275.112],[437.333,284.888],[-522.667,284.888]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-5.276,5.277],[5.276,5.277],[5.276,-5.276],[-5.276,-5.276]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[68,68,68,255],"o":100},{"ty":"tr","p":[522.667,275.112],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[3.327,16.253],[0,0],[0,0],[0,0],[0,0],[0,0],[-3.326,-16.252]],"o":[[0,0],[16.253,-3.326],[0,0],[0,0],[0,0],[0,0],[0,0],[-16.252,3.327],[0,0]],"v":[[-56.453,30.924],[33.519,12.509],[57.021,-23.089],[56.452,-25.868],[37.43,-21.975],[35.854,-30.924],[-4.697,-13.353],[-33.52,-7.454],[-57.022,28.144]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-477.672,319.38],[482.328,319.38],[482.328,-240.62],[-477.672,-240.62]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-477.672,-240.62],[482.328,-240.62],[482.328,319.38],[-477.672,319.38]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[255,149,0,255],"o":100},{"ty":"tr","p":[477.672,240.62],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[3.739,18.269],[0,0],[-18.269,3.739],[0,0],[-3.739,-18.269],[0,0],[18.268,-3.739],[0,0]],"o":[[0,0],[-3.74,-18.269],[0,0],[18.268,-3.739],[0,0],[3.739,18.268],[0,0],[-18.269,3.74]],"v":[[-35.673,29.344],[-44.333,-12.97],[-17.917,-52.984],[-4.34,-55.763],[35.674,-29.345],[44.334,12.969],[17.917,52.983],[4.34,55.762]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-495.662,276.315],[464.338,276.315],[464.338,-283.685],[-495.662,-283.685]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-495.662,-283.685],[464.338,-283.685],[464.338,276.315],[-495.662,276.315]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[495.662,283.685],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-18.269,3.739],[0,0],[3.739,18.268],[0,0],[18.269,-3.739],[0,0],[-3.739,-18.268],[0,0]],"o":[[0,0],[18.269,-3.739],[0,0],[-3.739,-18.268],[0,0],[-18.269,3.739],[0,0],[3.739,18.268]],"v":[[-10.029,58.703],[32.285,50.043],[58.703,10.029],[50.042,-32.286],[10.028,-58.703],[-32.286,-50.043],[-58.703,-10.029],[-50.043,32.286]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-481.294,273.374],[478.706,273.374],[478.706,-286.626],[-481.294,-286.626]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-481.294,-286.626],[478.706,-286.626],[478.706,273.374],[-481.294,273.374]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[239,239,239,255],"o":100},{"ty":"tr","p":[481.294,286.626],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":10,"layerName":"tte Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":[{"i":{"x":[0.01],"y":[1]},"o":{"x":[0.452],"y":[0]},"n":"0p01_1_0p452_0","t":0,"s":[13],"e":[-26]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.437],"y":[0]},"n":"0_1_0p437_0","t":22,"s":[-26],"e":[8]},{"i":{"x":[0.48],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p48_1_0p333_0","t":32,"s":[8],"e":[13]},{"t":41}],"p":[{"i":{"x":0.01,"y":1},"o":{"x":0.452,"y":0},"n":"0p01_1_0p452_0","t":0,"s":[-22,-180,0],"e":[9,-206,0],"to":[5.16666650772095,-4.33333349227905,0],"ti":[-21.8333339691162,3.33333325386047,0]},{"i":{"x":0.122,"y":1},"o":{"x":0.437,"y":0},"n":"0p122_1_0p437_0","t":22,"s":[9,-206,0],"e":[109,-200,0],"to":[21.8333339691162,-3.33333325386047,0],"ti":[5.16666650772095,-8.33333301544189,0]},{"i":{"x":0.48,"y":1},"o":{"x":0.333,"y":0},"n":"0p48_1_0p333_0","t":32,"s":[109,-200,0],"e":[-22,-180,0],"to":[-72.6666641235352,3.33333325386047,0],"ti":[21.8333339691162,-3.33333325386047,0]},{"t":41}],"a":[480,280,0],"s":[100,100,100]}},{"ind":16,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-6.197],[6.197,0],[0,6.197],[-6.198,0]],"o":[[0,6.197],[-6.198,0],[0,-6.197],[6.197,0]],"v":[[11.221,0],[0,11.221],[-11.222,0],[0,-11.221]]}},{"ty":"st","fillEnabled":true,"c":[27,54,71,255],"o":100,"w":20},{"ty":"tr","p":[616.835,371.382],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-52.127],[52.127,0],[0,52.127],[-52.127,0]],"o":[[0,52.127],[-52.127,0],[0,-52.127],[52.127,0]],"v":[[94.384,0],[0,94.384],[-94.384,0],[0,-94.384]]}},{"ty":"st","fillEnabled":true,"c":[27,54,71,255],"o":100,"w":20},{"ty":"tr","p":[440.34,294.886],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0],[0,-34.115],[0,0]],"o":[[0,0],[34.115,0],[0,0],[0,0]],"v":[[-54,-72],[-7.77,-72],[54,-10.23],[54,72]]}},{"ty":"st","fillEnabled":true,"c":[5,110,222,255],"o":100,"w":10},{"ty":"tr","p":[566.504,308.508],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-44.309,-18.177],[44.309,18.177]]}},{"ty":"st","fillEnabled":true,"c":[5,110,222,255],"o":100,"w":10},{"ty":"tr","p":[572.526,353.205],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-25.208,-7.75],[25.208,7.75]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":30},{"ty":"tr","p":[569.935,328.059],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,14.5]],"o":[[0,0],[0,0]],"v":[[-3.5,19.75],[3.5,-19.75]]}},{"ty":"st","fillEnabled":true,"c":[232,232,232,255],"o":100,"w":35},{"ty":"tr","p":[563.754,295.258],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-4.356],[4.356,0],[0,4.356],[-4.356,0]],"o":[[0,4.356],[-4.356,0],[0,-4.356],[4.356,0]],"v":[[7.888,0],[0,7.888],[-7.888,0],[0,-7.888]]}},{"ty":"st","fillEnabled":true,"c":[27,54,71,255],"o":100,"w":20},{"ty":"tr","p":[443.168,294.716],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0],[0,14.322],[0,0]],"o":[[0,0],[-14.322,0],[0,0],[0,0]],"v":[[61,46.678],[-35.068,46.678],[-61,20.747],[-61,-46.678]]}},{"ty":"st","fillEnabled":true,"c":[60,65,71,255],"o":100,"w":25},{"ty":"tr","p":[458.504,190.429],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[7.724,0.303],[0,0],[-0.302,7.724],[0,0],[-7.724,-0.303],[0,0],[0.302,-7.724],[0,0]],"o":[[0,0],[-7.724,-0.303],[0,0],[0.302,-7.725],[0,0],[7.724,0.302],[0,0],[-0.302,7.725]],"v":[[39.781,26.682],[-41.746,23.487],[-55.241,8.893],[-54.374,-13.188],[-39.78,-26.682],[41.746,-23.487],[55.241,-8.893],[54.375,13.188]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-448.504,355.825],[511.496,355.825],[511.496,-204.175],[-448.504,-204.175]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-448.504,-204.175],[511.496,-204.175],[511.496,355.825],[-448.504,355.825]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[225,34,71,255],"o":100},{"ty":"tr","p":[448.504,204.175],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-52.127],[52.127,0],[0,52.127],[-52.127,0]],"o":[[0,52.127],[-52.127,0],[0,-52.127],[52.127,0]],"v":[[94.384,0],[0,94.384],[-94.384,0],[0,-94.384]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-409.111,264.767],[550.889,264.767],[550.889,-295.233],[-409.111,-295.233]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-409.111,-295.233],[550.889,-295.233],[550.889,264.767],[-409.111,264.767]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[5,110,222,255],"o":100},{"ty":"tr","p":[409.111,295.233],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[-28.766,-15.499]],"o":[[32.354,5.909],[0,0]],"v":[[-36.666,1.416],[36.667,7.749]]}},{"ty":"st","fillEnabled":true,"c":[225,34,71,255],"o":100,"w":51},{"ty":"tr","p":[500.504,213.758],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[75.789,4.994]],"o":[[0,0],[0,0]],"v":[[28.269,37.092],[-37.894,-37.092]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":34},{"ty":"tr","p":[538.653,249.741],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[266.804,384.966],[692.847,384.966]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":88},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":7}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":10,"layerName":"fauteuil jambe Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2,167,0],"a":[480,280,0],"s":[100,100,100]}},{"ind":17,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0,"y":1},"o":{"x":0.452,"y":0},"n":"0_1_0p452_0","t":0,"s":[{"i":[[0,0],[-18.952,-64.747]],"o":[[-6.84,29.457],[0,0]],"v":[[-30.952,-62.99],[-25.048,62.747]]}],"e":[{"i":[[0,0],[28.985,-54.533]],"o":[[-6.84,29.457],[0,0]],"v":[[25.048,-62.747],[-25.048,62.747]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":22,"s":[{"i":[[0,0],[28.985,-54.533]],"o":[[-6.84,29.457],[0,0]],"v":[[25.048,-62.747],[-25.048,62.747]]}],"e":[{"i":[[0,0],[61.048,-50.747]],"o":[[-3.048,38.747],[0,0]],"v":[[39.048,-74.747],[-25.048,62.747]]}]},{"i":{"x":0,"y":1},"o":{"x":0.174,"y":0},"n":"0_1_0p174_0","t":33,"s":[{"i":[[0,0],[61.048,-50.747]],"o":[[-3.048,38.747],[0,0]],"v":[[39.048,-74.747],[-25.048,62.747]]}],"e":[{"i":[[0,0],[-18.952,-64.747]],"o":[[-6.84,29.457],[0,0]],"v":[[-30.952,-62.99],[-25.048,62.747]]}]},{"t":44}]},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":88},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":10,"layerName":"tronc","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[0,0,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":18,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.01,"y":1},"o":{"x":0.452,"y":0},"n":"0p01_1_0p452_0","t":0,"s":[{"i":[[0,0],[-79,-57]],"o":[[0,0],[0,0]],"v":[[-8.893,-58.967],[46.893,92.5]]}],"e":[{"i":[[0,0],[-10.677,-120.603]],"o":[[0,0],[0,0]],"v":[[55.107,-60.967],[132.139,105.356]]}]},{"i":{"x":0,"y":1},"o":{"x":0.611,"y":0},"n":"0_1_0p611_0","t":22,"s":[{"i":[[0,0],[-10.677,-120.603]],"o":[[0,0],[0,0]],"v":[[55.107,-60.967],[132.139,105.356]]}],"e":[{"i":[[0,0],[132.156,-69.3]],"o":[[0,0],[0,0]],"v":[[55.107,-60.967],[-143.17,69.45]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"n":"0p667_1_0p167_0","t":29,"s":[{"i":[[0,0],[132.156,-69.3]],"o":[[0,0],[0,0]],"v":[[55.107,-60.967],[-143.17,69.45]]}],"e":[{"i":[[0,0],[57.221,-37.793]],"o":[[0,0],[0,0]],"v":[[55.107,-60.967],[-68.329,90.778]]}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"n":"0_1_0p167_0","t":37,"s":[{"i":[[0,0],[57.221,-37.793]],"o":[[0,0],[0,0]],"v":[[55.107,-60.967],[-68.329,90.778]]}],"e":[{"i":[[0,0],[-10.677,-120.603]],"o":[[0,0],[0,0]],"v":[[55.107,-60.967],[-68.329,90.778]]}]},{"t":44}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":23},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":10,"layerName":"bras 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":[{"i":{"x":[0.01],"y":[1]},"o":{"x":[0.452],"y":[0]},"n":"0p01_1_0p452_0","t":0,"s":[0],"e":[-43]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.611],"y":[0]},"n":"0_1_0p611_0","t":22,"s":[-43],"e":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":29,"s":[10],"e":[-61]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p833_1_0p333_0","t":37,"s":[-61],"e":[-39]},{"t":44}],"p":[{"i":{"x":0.01,"y":0.01},"o":{"x":0.452,"y":0.452},"n":"0p01_0p01_0p452_0p452","t":0,"s":[42,-62,0],"e":[42,-62,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.611,"y":0},"n":"0_1_0p611_0","t":22,"s":[42,-62,0],"e":[-9,-62,0],"to":[-8.5,0,0],"ti":[8.5,0,0]},{"t":29}],"a":[42,-62,0],"s":[100,100,100]}},{"ind":19,"type":"SolidLayer","layerName":"Bleu roi uni 1","threeD":false,"an":{},"width":4320,"height":1920,"color":"#007aff","inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]}}],"totalFrames":75,"frameRate":24,"ff":0,"compWidth":4320,"compHeight":1920},"assets":[],"v":"2.0.6"};
+var anim3 = {"animation":{"layers":[{"ind":0,"type":"NullLayer","layerName":"Nul 15","threeD":false,"an":{},"inPoint":6,"outPoint":1469,"startTime":6,"ks":{"o":0,"r":-180,"p":[2160,843,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":1,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.18,0.155],[0,0],[0.056,-0.221],[0,0],[-0.23,0.079],[0,0]],"o":[[0,0],[-0.173,-0.149],[0,0],[-0.06,0.236],[0,0],[0.224,-0.077]],"v":[[3.558,1.886],[-10.261,-3.142],[-10.759,-2.985],[-10.981,6.842],[-10.585,7.208],[3.456,2.409]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[246,177,0,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[114.039,178.678],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":0,"layerName":"Calque de forme 11","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-14,"outPoint":1449,"startTime":-14,"ks":{"o":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":11,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":13,"s":[100],"e":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":17,"s":[100],"e":[0]},{"t":23}],"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":11,"s":[0],"e":[217]},{"t":25}],"p":[{"i":{"x":0,"y":1},"o":{"x":0.132,"y":0},"n":"0_1_0p132_0","t":11,"s":[119.977,23.929,0],"e":[302.977,23.929,0],"to":[30.5,0,0],"ti":[-30.5,0,0]},{"t":25}],"a":[-4.977,4.871,0],"s":[100,100,100]}},{"ind":2,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-3.379],[3.379,0],[0,3.379],[-3.379,0]],"o":[[0,3.379],[-3.379,0],[0,-3.379],[3.379,0]],"v":[[9.075,51.314],[2.956,57.432],[-3.162,51.314],[2.956,45.195]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":0,"layerName":"Calque de forme 10","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-9,"outPoint":1454,"startTime":-9,"ks":{"o":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":12,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":14,"s":[100],"e":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":21,"s":[100],"e":[0]},{"t":23}],"r":108.5,"p":[{"i":{"x":0,"y":1},"o":{"x":0.132,"y":0},"n":"0_1_0p132_0","t":12,"s":[208.977,-18.071,0],"e":[338.977,-18.071,0],"to":[21.6666660308838,0,0],"ti":[-21.6666660308838,0,0]},{"t":25}],"a":[-4.977,4.871,0],"s":[100,100,100]}},{"ind":3,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.268,0],[0.196,0.068],[0.209,0.436],[0,0],[0,0],[0.433,0.898],[0,0],[-0.16,0.456],[-0.435,0.21],[0,0],[0,0],[-0.9,0.432],[0,0],[-0.456,-0.16],[-0.209,-0.436],[0,0],[0,0],[-0.457,-0.16],[-0.21,-0.436],[0,0],[0.898,-0.432],[0,0],[0,0],[0,0],[0.899,-0.432],[0,0]],"o":[[-0.202,0],[-0.457,-0.16],[0,0],[0,0],[-0.899,0.432],[0,0],[-0.209,-0.435],[0.16,-0.456],[0,0],[0,0],[-0.433,-0.901],[0,0],[0.436,-0.21],[0.457,0.16],[0,0],[0,0],[0.436,-0.21],[0.457,0.16],[0,0],[0.433,0.9],[0,0],[0,0],[0,0],[0.433,0.899],[0,0],[-0.248,0.12]],"v":[[4.071,12.737],[3.471,12.634],[2.438,11.711],[-1.333,3.872],[-9.632,7.865],[-12.048,7.019],[-13.002,5.036],[-13.079,3.653],[-12.157,2.621],[-3.855,-1.373],[-7.626,-9.212],[-6.779,-11.628],[-4.966,-12.5],[-3.583,-12.577],[-2.55,-11.654],[1.221,-3.814],[9.438,-7.767],[10.821,-7.844],[11.854,-6.921],[12.807,-4.938],[11.961,-2.523],[11.96,-2.523],[3.744,1.43],[7.515,9.269],[6.669,11.684],[4.854,12.557]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":0,"layerName":"Calque de forme 9","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-11,"outPoint":1452,"startTime":-11,"ks":{"o":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":10,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":12,"s":[100],"e":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":20,"s":[100],"e":[0]},{"t":26}],"r":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0.307]},"n":"0p833_1_0p333_0p307","t":10,"s":[108.5],"e":[391.5]},{"t":26}],"p":[{"i":{"x":0,"y":1},"o":{"x":0.132,"y":0},"n":"0_1_0p132_0","t":10,"s":[91.977,15.929,0],"e":[206.977,15.929,0],"to":[19.1666660308838,0,0],"ti":[-19.1666660308838,0,0]},{"t":27}],"a":[-4.977,4.871,0],"s":[70,70,100]}},{"ind":4,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-129,-93],[-212,-93]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":4},{"ty":"fl","fillEnabled":true,"c":[0,0,0,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.153],"y":[0]},"n":"0_1_0p153_0","t":13,"s":[0],"e":[100]},{"t":22}],"e":[{"i":{"x":[0.767],"y":[1]},"o":{"x":[1],"y":[0]},"n":"0p767_1_1_0","t":13,"s":[0],"e":[100]},{"t":22}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 8","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":8,"outPoint":1471,"startTime":8,"ks":{"o":100,"r":0,"p":[{"i":{"x":0.201,"y":1},"o":{"x":0.762,"y":0},"n":"0p201_1_0p762_0","t":13,"s":[2160,945.8,0],"e":[2103,945.8,0],"to":[-9.5,0,0],"ti":[9.5,0,0]},{"t":22}],"a":[0,0,0],"s":[100,100,100]}},{"ind":5,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-147,-93],[-212,-93]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":4},{"ty":"fl","fillEnabled":true,"c":[0,0,0,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.153],"y":[0]},"n":"0_1_0p153_0","t":16,"s":[0],"e":[100]},{"t":25}],"e":[{"i":{"x":[0.767],"y":[1]},"o":{"x":[1],"y":[0]},"n":"0p767_1_1_0","t":16,"s":[0],"e":[100]},{"t":25}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 12","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":11,"outPoint":1474,"startTime":11,"ks":{"o":100,"r":0,"p":[{"i":{"x":0.201,"y":1},"o":{"x":0.762,"y":0},"n":"0p201_1_0p762_0","t":16,"s":[2095,1058,0],"e":[2038,1058,0],"to":[-9.5,0,0],"ti":[9.5,0,0]},{"t":25}],"a":[0,0,0],"s":[100,100,100]}},{"ind":6,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-129,-93],[-212,-93]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":4},{"ty":"fl","fillEnabled":true,"c":[0,0,0,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.153],"y":[0]},"n":"0_1_0p153_0","t":16,"s":[0],"e":[100]},{"t":25}],"e":[{"i":{"x":[0.767],"y":[1]},"o":{"x":[1],"y":[0]},"n":"0p767_1_1_0","t":16,"s":[0],"e":[100]},{"t":25}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 7","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":11,"outPoint":1474,"startTime":11,"ks":{"o":100,"r":0,"p":[{"i":{"x":0.201,"y":1},"o":{"x":0.762,"y":0},"n":"0p201_1_0p762_0","t":16,"s":[2160,960,0],"e":[2103,960,0],"to":[-9.5,0,0],"ti":[9.5,0,0]},{"t":25}],"a":[0,0,0],"s":[100,100,100]}},{"ind":13,"type":"NullLayer","layerName":"Nul 14","threeD":false,"an":{},"inPoint":-9,"outPoint":1454,"startTime":-9,"ks":{"o":0,"r":-13.7,"p":[1529,846,0],"a":[224,-332,0],"s":[100,100,100]}},{"ind":14,"layers":[{"ind":0,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,20.225],[-6.229,9.218],[18.475,-33.88],[-1.159,0.021],[0,0],[-30.83,-11.155],[0,0],[0,0]],"o":[[0,-11.962],[-36.991,4.165],[-0.608,1.114],[0,0],[34.11,-0.599],[0,0],[0,0],[-15.741,-10.315]],"v":[[25.697,-8.055],[35.563,-40.348],[-51.625,21.378],[-50.331,23.913],[-50.304,23.913],[47.54,40.256],[47.542,40.347],[51.843,40.271]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-444.096,299.662],[515.904,299.662],[515.904,-260.338],[-444.096,-260.338]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-444.096,-260.338],[515.904,-260.338],[515.904,299.662],[-444.096,299.662]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-51.842,40.347],[51.842,40.347],[51.842,-40.347],[-51.842,-40.347]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[174,185,193,255],"o":100},{"ty":"tr","p":[444.096,260.338],"a":[0,0],"s":[100,100],"r":0,"o":38}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[3.159,-2.232],[0,0],[0.09,2.412]],"o":[[0,0],[0,-2.552],[-2.647,2.806]],"v":[[-4.44,3.789],[4.44,3.633],[4.289,-3.788]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-565.258,264.319],[394.742,264.319],[394.742,-295.681],[-565.258,-295.681]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-565.258,-295.681],[394.742,-295.681],[394.742,264.319],[-565.258,264.319]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[232,232,232,255],"o":100},{"ty":"tr","p":[565.258,295.681],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[2.258,7.053],[0,0],[0,-6.6],[0,0],[-6.601,0],[0,0]],"o":[[0,0],[-6.601,0],[0,0],[0,6.6],[0,0],[-0.756,-9.207]],"v":[[27.468,-12.167],[-19.993,-12.167],[-31.993,-0.167],[-31.993,0.167],[-19.993,12.167],[31.993,12.167]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-537.121,287.8],[422.879,287.8],[422.879,-272.2],[-537.121,-272.2]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-537.121,-272.2],[422.879,-272.2],[422.879,287.8],[-537.121,287.8]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[33,78,112,255],"o":100},{"ty":"tr","p":[537.121,272.2],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[49.569,0],[0,0],[0,0],[20.096,-36.853],[-1.159,0.02],[0,0],[-30.83,-11.156],[0,0],[0,0]],"o":[[0,0],[0,0],[-41.177,0.723],[-0.607,1.114],[0,0],[34.11,-0.6],[0,0],[0,0],[0,-58.78]],"v":[[15.609,-40.736],[9.427,-40.626],[8.726,-40.613],[-88.311,21.768],[-87.016,24.303],[-86.989,24.303],[10.855,40.646],[10.856,40.736],[88.917,39.365]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-480.781,300.051],[479.219,300.051],[479.219,-259.949],[-480.781,-259.949]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-480.781,-259.949],[479.219,-259.949],[479.219,300.051],[-480.781,300.051]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[232,232,232,255],"o":100},{"ty":"tr","p":[480.781,259.949],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-5.618,-0.556],[5.618,0.556]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":6},{"ty":"tr","p":[551.504,268.794],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-5.618,-0.556],[5.618,0.556]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":6},{"ty":"tr","p":[524.873,270.827],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-0.035,-2.913],[-2.913,0.035],[0.035,2.913],[2.913,-0.035]],"o":[[0.035,2.913],[2.914,-0.035],[-0.035,-2.914],[-2.913,0.035]],"v":[[-5.275,0.063],[0.063,5.275],[5.275,-0.063],[-0.063,-5.275]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-528.24,275.052],[431.76,275.052],[431.76,-284.948],[-528.24,-284.948]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-528.24,-284.948],[431.76,-284.948],[431.76,275.052],[-528.24,275.052]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-5.275,5.276],[5.276,5.276],[5.276,-5.275],[-5.275,-5.275]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[68,68,68,255],"o":100},{"ty":"tr","p":[528.24,284.948],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-0.035,-2.913],[-2.913,0.035],[0.035,2.913],[2.913,-0.035]],"o":[[0.035,2.913],[2.914,-0.035],[-0.035,-2.914],[-2.913,0.035]],"v":[[-5.275,0.063],[0.063,5.275],[5.275,-0.063],[-0.063,-5.275]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-551.881,274.711],[408.119,274.711],[408.119,-285.289],[-551.881,-285.289]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-551.881,-285.289],[408.119,-285.289],[408.119,274.711],[-551.881,274.711]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-5.275,5.275],[5.276,5.275],[5.276,-5.275],[-5.275,-5.275]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[68,68,68,255],"o":100},{"ty":"tr","p":[551.881,285.289],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.223,18.646],[0,0],[-18.646,0.223],[0,0],[-0.224,-18.646],[0,0],[18.646,-0.223],[0,0]],"o":[[0,0],[-0.224,-18.646],[0,0],[18.646,-0.223],[0,0],[0.223,18.646],[0,0],[-18.646,0.223]],"v":[[-40.571,22.083],[-41.089,-21.105],[-7.593,-55.413],[6.265,-55.579],[40.573,-22.083],[41.089,21.105],[7.594,55.413],[-6.263,55.579]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-522.93,275.111],[437.07,275.111],[437.07,-284.889],[-522.93,-284.889]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-522.93,-284.889],[437.07,-284.889],[437.07,275.111],[-522.93,275.111]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[522.93,284.889],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[-18.646,0.223],[0,0],[0.223,18.646],[0,0],[18.646,-0.224],[0,0],[-0.223,-18.646],[0,0]],"o":[[0,0],[18.646,-0.224],[0,0],[-0.223,-18.646],[0,0],[-18.646,0.223],[0,0],[0.223,18.646]],"v":[[-20.929,55.755],[22.258,55.238],[55.755,20.93],[55.237,-22.258],[20.93,-55.754],[-22.258,-55.237],[-55.754,-20.929],[-55.237,22.259]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-508.265,274.936],[451.735,274.936],[451.735,-285.064],[-508.265,-285.064]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-508.265,-285.064],[451.735,-285.064],[451.735,274.936],[-508.265,274.936]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[239,239,239,255],"o":100},{"ty":"tr","p":[508.265,285.064],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"tte Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":0,"s":[0],"e":[14]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":12,"s":[14],"e":[0]},{"t":24}],"p":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[2273,748,0],"e":[2273,712,0],"to":[0,-6,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.689,"y":0},"n":"0p667_1_0p689_0","t":13,"s":[2273,712,0],"e":[2273,748,0],"to":[0,0,0],"ti":[0,-6,0]},{"t":24}],"a":[480,280,0],"s":[100,100,100]}},{"ind":2,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[1.083,0.192],[0,0],[-0.278,1.571],[0,0],[-0.471,-0.083],[0,0],[0,0],[0,0],[2.182,-12.328],[0,0]],"o":[[0,0],[-1.571,-0.278],[0,0],[0.083,-0.471],[0,0],[0,0],[0,0],[12.33,2.18],[0,0],[-0.192,1.083]],"v":[[30.686,24.705],[-32.76,13.485],[-35.11,10.124],[-31.249,-11.695],[-28.71,-24.813],[11.132,-18.76],[10.509,-5.713],[14.756,-4.443],[33.207,21.937],[33.004,23.083]]}},{"ty":"st","fillEnabled":true,"c":[17,53,86,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":10,"layerName":"chaussure","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":"0p833_0p833_0p167_0p167","t":0,"s":[0],"e":[-162]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":"0p833_0p833_0p167_0p167","t":12,"s":[-162],"e":[-359]},{"t":24}],"p":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[-2.5,66.5,0],"e":[-2.5,70.5,0],"to":[0,0.66666668653488,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":12,"s":[-2.5,70.5,0],"e":[-2.5,66.5,0],"to":[0,0,0],"ti":[0,0.66666668653488,0]},{"t":24}],"a":[-14.5,17.5,0],"s":[100,100,100]}},{"ind":3,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"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],[-14.787,-23.908],[-2.552,-87.123]],"o":[[-39.938,48.373],[18.507,29.922],[0,0]],"v":[[17.438,-49.123],[32.493,38.328],[80.052,176.873]]}],"e":[{"i":[[0,0],[-13.289,-22.245],[13.602,-55.431]],"o":[[-47.746,41.912],[15.815,26.422],[0,0]],"v":[[17.438,-55.585],[63.185,38.328],[54.398,139.181]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":7,"s":[{"i":[[0,0],[-13.289,-22.245],[13.602,-55.431]],"o":[[-47.746,41.912],[15.815,26.422],[0,0]],"v":[[17.438,-55.585],[63.185,38.328],[54.398,139.181]]}],"e":[{"i":[[0,0],[-12.648,-21.532],[8.025,-55.527]],"o":[[-51.092,39.143],[14.661,24.922],[0,0]],"v":[[17.438,-58.354],[76.339,38.328],[64.975,128.527]]}]},{"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],[-12.648,-21.532],[8.025,-55.527]],"o":[[-51.092,39.143],[14.661,24.922],[0,0]],"v":[[17.438,-58.354],[76.339,38.328],[64.975,128.527]]}],"e":[{"i":[[0,0],[-12.006,-20.818],[2.448,-55.623]],"o":[[-54.438,36.373],[13.507,23.422],[0,0]],"v":[[17.438,-61.123],[89.493,38.328],[85.552,123.873]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":13,"s":[{"i":[[0,0],[-12.006,-20.818],[2.448,-55.623]],"o":[[-54.438,36.373],[13.507,23.422],[0,0]],"v":[[17.438,-61.123],[89.493,38.328],[85.552,123.873]]}],"e":[{"i":[[0,0],[-14.125,-21.074],[14.899,-48.286]],"o":[[-51.796,45.617],[27.234,27.279],[0,0]],"v":[[17.438,-56.331],[81.266,35.471],[97.601,144.536]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":17,"s":[{"i":[[0,0],[-14.125,-21.074],[14.899,-48.286]],"o":[[-51.796,45.617],[27.234,27.279],[0,0]],"v":[[17.438,-56.331],[81.266,35.471],[97.601,144.536]]}],"e":[{"i":[[0,0],[-16.244,-21.33],[-9.721,-77.591]],"o":[[-49.153,54.86],[40.962,31.137],[0,0]],"v":[[17.438,-51.539],[57.038,42.613],[99.65,167.198]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21,"s":[{"i":[[0,0],[-16.244,-21.33],[-9.721,-77.591]],"o":[[-49.153,54.86],[40.962,31.137],[0,0]],"v":[[17.438,-51.539],[57.038,42.613],[99.65,167.198]]}],"e":[{"i":[[0,0],[-14.787,-23.908],[-2.552,-87.123]],"o":[[-39.938,48.373],[18.507,29.922],[0,0]],"v":[[17.438,-49.123],[32.493,38.328],[80.052,176.873]]}]},{"t":24}]},{"ty":"st","fillEnabled":true,"c":[17,53,86,255],"o":100,"w":31},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":5,"e":100,"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"jambe 3","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2081.5,827.75,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":5,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0,0],[-61.512,-0.109]],"o":[[-8.667,59.333],[0,0]],"v":[[27.911,-167.055],[79.756,-77.945]]}],"e":[{"i":[[0,0],[-41.85,-12.348]],"o":[[-6.004,52.762],[0,0]],"v":[[11.911,-196.055],[79.756,-77.945]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":12,"s":[{"i":[[0,0],[-41.85,-12.348]],"o":[[-6.004,52.762],[0,0]],"v":[[11.911,-196.055],[79.756,-77.945]]}],"e":[{"i":[[0,0],[-61.512,-0.109]],"o":[[-8.667,59.333],[0,0]],"v":[[27.911,-167.055],[79.756,-77.945]]}]},{"t":24}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":23},{"ty":"tr","p":[26.094,-8.707],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"bras","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":6,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":[{"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],[7.047,4.219],[0.984,13.304],[0,0]],"o":[[0,0],[-6.842,4.545],[0,0],[-1.335,-18.043],[0,0]],"v":[[41.833,19.76],[30.199,27.488],[-14.536,36.521],[-39.833,5.51],[-20.583,-45.24]]}],"e":[{"i":[[0,0],[0,0],[7.047,4.219],[0,0],[0,0]],"o":[[0,0],[-6.842,4.545],[0,0],[0,0],[0,0]],"v":[[40.083,19.01],[17.949,34.238],[-7.536,29.521],[-30.583,-27.24],[-16.083,-52.74]]}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":13,"s":[{"i":[[0,0],[0,0],[7.047,4.219],[0,0],[0,0]],"o":[[0,0],[-6.842,4.545],[0,0],[0,0],[0,0]],"v":[[40.083,19.01],[17.949,34.238],[-7.536,29.521],[-30.583,-27.24],[-16.083,-52.74]]}],"e":[{"i":[[0,0],[0,0],[7.047,4.219],[0.984,13.304],[0,0]],"o":[[0,0],[-6.842,4.545],[0,0],[-1.335,-18.043],[0,0]],"v":[[41.833,19.76],[30.199,27.488],[-14.536,36.521],[-39.833,5.51],[-20.583,-45.24]]}]},{"t":24}]},{"ty":"st","fillEnabled":true,"c":[17,53,86,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[17,53,86,255],"o":100},{"ty":"tr","p":[-50.574,-144.555],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 1","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[2158.5,951.25,0],"e":[2158.5,942.25,0],"to":[0,-1.5,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":12,"s":[2158.5,942.25,0],"e":[2158.5,951.25,0],"to":[0,0,0],"ti":[0,-1.5,0]},{"t":24}],"a":[0,0,0],"s":[100,100,100]}},{"ind":8,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0,0],[-25.5,-7.5]],"o":[[23.292,-13.618],[0,0]],"v":[[-38.375,-159.875],[33.375,-170.625]]}],"e":[{"i":[[0,0],[-21.625,27.125]],"o":[[33.125,-4.625],[0,0]],"v":[[-38.375,-174.875],[37.375,-200.625]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":12,"s":[{"i":[[0,0],[-21.625,27.125]],"o":[[33.125,-4.625],[0,0]],"v":[[-38.375,-174.875],[37.375,-200.625]]}],"e":[{"i":[[0,0],[-25.5,-7.5]],"o":[[23.292,-13.618],[0,0]],"v":[[-38.375,-159.875],[33.375,-170.625]]}]},{"t":24}]},{"ty":"st","fillEnabled":true,"c":[0,87,165,255],"o":100,"w":84},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"tronc","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2159.25,952.5,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":10,"type":"NullLayer","layerName":"pŽdalier","threeD":false,"an":{},"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":0,"r":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":"0p833_0p833_0p167_0p167","t":0,"s":[0],"e":[360]},{"t":24}],"p":[2151.5,1003,0],"a":[-8.5,43,0],"s":[100,100,100]}},{"ind":11,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-8.938,10.848],[13.961,15.573]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":10},{"ty":"fl","fillEnabled":true,"c":[244,247,139,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":10,"layerName":"pŽdale","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":"0p833_0p833_0p167_0p167","t":0,"s":[0],"e":[-168]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":"0p833_0p833_0p167_0p167","t":12,"s":[-168],"e":[-360]},{"t":24}],"p":[-0.75,69.25,0],"a":[-4,11.5,0],"s":[100,100,100]}},{"ind":12,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-8.417,43.573],[-1.083,63.926]]}},{"ty":"st","fillEnabled":true,"c":[15,32,73,255],"o":100,"w":14},{"ty":"fl","fillEnabled":true,"c":[244,247,139,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":10,"layerName":"pŽdalier","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[0,0,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":13,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0],[12.693,-4.327]],"o":[[0,0],[13.228,2.205],[0,0]],"v":[[-22.048,-12.924],[7.312,-12.023],[9.355,12.924]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":12},{"ty":"tr","p":[576.872,200.029],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-11.401],[11.402,0],[0,11.401],[-11.401,0]],"o":[[0,11.401],[-11.401,0],[0,-11.401],[11.402,0]],"v":[[20.644,0],[0,20.644],[-20.643,0],[0,-20.644]]}},{"ty":"fl","fillEnabled":true,"c":[17,53,86,255],"o":100},{"ty":"tr","p":[471.768,322.5],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[15.812,-52.156],[-58.214,46.057],[58.214,52.156]]}},{"ty":"st","fillEnabled":true,"c":[15,32,73,255],"o":100,"w":12},{"ty":"tr","p":[412.128,273.563],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-24.377,-66.232],[24.377,66.232]]}},{"ty":"st","fillEnabled":true,"c":[15,32,73,255],"o":100,"w":14},{"ty":"tr","p":[579.097,253.442],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-12.668],[12.668,0],[0,12.668],[-12.668,0]],"o":[[0,12.668],[-12.668,0],[0,-12.668],[12.668,0]],"v":[[22.938,0],[0,22.937],[-22.938,0],[0,-22.937]]}},{"ty":"fl","fillEnabled":true,"c":[33,78,112,255],"o":100},{"ty":"tr","p":[357.634,317.055],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-12.668],[12.668,0],[0,12.668],[-12.668,0]],"o":[[0,12.668],[-12.668,0],[0,-12.668],[12.668,0]],"v":[[22.938,0],[0,22.937],[-22.938,0],[0,-22.937]]}},{"ty":"fl","fillEnabled":true,"c":[33,78,112,255],"o":100},{"ty":"tr","p":[601.846,319.412],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-31.197,-0.469],[31.197,0.469]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":12},{"ty":"tr","p":[417.771,161.258],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-73.988,-78.177],[-12.377,78.177],[73.987,-24.599],[-53.627,-24.44]]}},{"ty":"st","fillEnabled":true,"c":[15,32,73,255],"o":100,"w":12},{"ty":"tr","p":[484.486,244.596],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-44.566],[44.566,0],[0,44.566],[-44.565,0]],"o":[[0,44.566],[-44.565,0],[0,-44.566],[44.566,0]],"v":[[80.693,0],[-0.001,80.694],[-80.694,0],[-0.001,-80.694]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":10},{"ty":"fl","fillEnabled":true,"c":[17,53,86,255],"o":100},{"ty":"tr","p":[603.474,319.674],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-44.566],[44.566,0],[0,44.566],[-44.565,0]],"o":[[0,44.566],[-44.565,0],[0,-44.566],[44.566,0]],"v":[[80.693,0],[-0.001,80.694],[-80.694,0],[-0.001,-80.694]]}},{"ty":"st","fillEnabled":true,"c":[255,149,0,255],"o":100,"w":10},{"ty":"fl","fillEnabled":true,"c":[17,53,86,255],"o":100},{"ty":"tr","p":[357.015,318.423],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"vŽlo Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[480,280,0],"s":[100,100,100]}},{"ind":15,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[24.3,0],[0,0],[0,-24.302],[-24.302,0],[0,0],[0,24.3]],"o":[[0,0],[-24.302,0],[0,24.3],[0,0],[24.3,0],[0,-24.302]],"v":[[213.022,-44],[-213.021,-44],[-257.022,0.001],[-213.021,44],[213.022,44],[257.021,0.001]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":0},{"ty":"fl","fillEnabled":true,"c":[0,0,0,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"shadow","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":11,"r":0,"p":[2161.5,1074,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":16,"type":"SolidLayer","layerName":"Bleu roi uni 2","threeD":false,"an":{},"width":4320,"height":1920,"color":"#007aff","inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]}}],"compId":"v7ue43e","type":"PreCompLayer","layerName":"vŽlo 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":20,"outPoint":40,"startTime":20,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]},"tm":[{"i":{"x":[0.522],"y":[1]},"o":{"x":[0.11],"y":[0]},"n":"0p522_1_0p11_0","t":20,"s":[0],"e":[0.5]},{"i":{"x":[0.515],"y":[1]},"o":{"x":[0.166],"y":[0]},"n":"0p515_1_0p166_0","t":30,"s":[0.5],"e":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"n":"0p833_0p833_0p333_0","t":40,"s":[1],"e":[60.958]},{"t":1483}]},{"ind":15,"refId":"v7ue43e","type":"PreCompLayer","layerName":"vŽlo 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":20,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]},"tm":[{"i":{"x":[0.522],"y":[1]},"o":{"x":[0.11],"y":[0]},"n":"0p522_1_0p11_0","t":0,"s":[0],"e":[0.5]},{"i":{"x":[0.515],"y":[1]},"o":{"x":[0.166],"y":[0]},"n":"0p515_1_0p166_0","t":10,"s":[0.5],"e":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"n":"0p833_0p833_0p333_0","t":20,"s":[1],"e":[60.958]},{"t":1463}]}],"totalFrames":20,"frameRate":24,"ff":0.41666666666667,"compWidth":4320,"compHeight":1920},"assets":[],"v":"2.0.6"};
+var anim4 = {"animation":{"layers":[{"ind":0,"type":"NullLayer","layerName":"Nul 12","threeD":false,"an":{},"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":0,"r":-70,"p":[2978,635,0],"a":[543,-460,0],"s":[100,100,100]}},{"ind":1,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[535,-466],[535,-506]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":8},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":41,"s":[0],"e":[100]},{"t":48}],"e":[{"i":{"x":[0],"y":[1]},"o":{"x":[0],"y":[0]},"n":"0_1_0_0","t":39,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":41,"s":[100],"e":[100]},{"t":48}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":0,"layerName":"eclat","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":26,"outPoint":1489,"startTime":26,"ks":{"o":100,"r":-27,"p":[{"i":{"x":0,"y":1},"o":{"x":0.177,"y":0},"n":"0_1_0p177_0","t":39,"s":[542.776,-425.074,0],"e":[489.659,-529.322,0],"to":[-8.85281467437744,-17.3746280670166,0],"ti":[8.85281467437744,17.3746280670166,0]},{"t":48}],"a":[534.75,-462.5,0],"s":[100,100,100]}},{"ind":2,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[535,-466],[535,-506]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":8},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":41,"s":[0],"e":[100]},{"t":48}],"e":[{"i":{"x":[0],"y":[1]},"o":{"x":[0],"y":[0]},"n":"0_1_0_0","t":39,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":41,"s":[100],"e":[100]},{"t":48}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":0,"layerName":"eclat 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":26,"outPoint":1489,"startTime":26,"ks":{"o":100,"r":-51,"p":[{"i":{"x":0,"y":1},"o":{"x":0.177,"y":0},"n":"0_1_0p177_0","t":39,"s":[533.655,-418.065,0],"e":[445.354,-494.824,0],"to":[-14.7168369293213,-12.7931509017944,0],"ti":[14.7168369293213,12.7931509017944,0]},{"t":48}],"a":[534.75,-462.5,0],"s":[100,100,100]}},{"ind":3,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[535,-466],[535,-506]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":8},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p667_1_0p333_0","t":41,"s":[0],"e":[100]},{"t":48}],"e":[{"i":{"x":[0],"y":[1]},"o":{"x":[0],"y":[0]},"n":"0_1_0_0","t":39,"s":[0],"e":[100]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":41,"s":[100],"e":[100]},{"t":48}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"parent":0,"layerName":"eclat 3","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":26,"outPoint":1489,"startTime":26,"ks":{"o":100,"r":11,"p":[{"i":{"x":0,"y":1},"o":{"x":0.177,"y":0},"n":"0_1_0p177_0","t":39,"s":[538.151,-429.243,0],"e":[562.477,-543.686,0],"to":[4.0542778968811,-19.0738773345947,0],"ti":[-4.0542778968811,19.0738773345947,0]},{"t":48}],"a":[534.75,-462.5,0],"s":[100,100,100]}},{"ind":4,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[-212,-10]],"o":[[0,0],[276.91,13.062]],"v":[[-252.55,-255.66],[79,-385]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":8},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":[{"i":{"x":[0.358],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":"0p358_1_0p333_0","t":4,"s":[0],"e":[100]},{"t":11}],"e":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.722],"y":[0]},"n":"0p667_1_0p722_0","t":4,"s":[0],"e":[100]},{"t":11}],"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"Calque de forme 5","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":-26,"outPoint":1437,"startTime":-26,"ks":{"o":58,"r":30,"p":[2420,792,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":5,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0,0],[-87.674,84.684]],"o":[[0,0],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}],"e":[{"i":[[0,0],[-96.496,145.857]],"o":[[0,0],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":7,"s":[{"i":[[0,0],[-96.496,145.857]],"o":[[0,0],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}],"e":[{"i":[[0,0],[-102.824,69.945]],"o":[[0,0],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[{"i":[[0,0],[-102.824,69.945]],"o":[[0,0],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}],"e":[{"i":[[0,0],[-87.674,84.684]],"o":[[0,0],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":29,"s":[{"i":[[0,0],[-87.674,84.684]],"o":[[0,0],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}],"e":[{"i":[[0,0],[-87.674,84.684]],"o":[[0,0],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":37,"s":[{"i":[[0,0],[-87.674,84.684]],"o":[[0,0],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}],"e":[{"i":[[0,0],[-31.491,21.223]],"o":[[185.88,-167.127],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}]},{"i":{"x":0.667,"y":1},"o":{"x":1,"y":0},"n":"0p667_1_1_0","t":40,"s":[{"i":[[0,0],[-31.491,21.223]],"o":[[185.88,-167.127],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}],"e":[{"i":[[0,0],[-33.425,50.227]],"o":[[185.88,-167.127],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}]},{"i":{"x":0.067,"y":1},"o":{"x":0.333,"y":0},"n":"0p067_1_0p333_0","t":45,"s":[{"i":[[0,0],[-33.425,50.227]],"o":[[185.88,-167.127],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}],"e":[{"i":[[0,0],[-87.674,84.684]],"o":[[0,0],[0,0]],"v":[[-131.511,127.026],[131.511,-127.026]]}]},{"t":50}]},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":8},{"ty":"tr","p":[494.227,265.649],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[-10.168,-10.527],[10.527,-10.168]],"o":[[10.527,-10.168],[10.168,10.527],[0,0]],"v":[[-23.819,-13.977],[13.651,-13.326],[13.001,24.145]]}},{"ty":"fl","fillEnabled":true,"c":[32,45,43,255],"o":100},{"ty":"tr","p":[354.644,400.264],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"ŽpŽe Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":[{"i":{"x":[0.105],"y":[1]},"o":{"x":[0.683],"y":[0]},"n":"0p105_1_0p683_0","t":0,"s":[-24],"e":[13]},{"i":{"x":[0.104],"y":[0.979]},"o":{"x":[0.529],"y":[0]},"n":"0p104_0p979_0p529_0","t":18,"s":[13],"e":[33]},{"i":{"x":[0.641],"y":[1]},"o":{"x":[1],"y":[0]},"n":"0p641_1_1_0","t":29,"s":[33],"e":[37]},{"i":{"x":[0.367],"y":[1]},"o":{"x":[0.707],"y":[0]},"n":"0p367_1_0p707_0","t":40,"s":[37],"e":[-24]},{"t":50}],"p":[{"i":{"x":0.304,"y":1},"o":{"x":0.817,"y":0},"n":"0p304_1_0p817_0","t":0,"s":[2300,734,0],"e":[2488,715,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0},"o":{"x":0.333,"y":0.333},"n":"0_0_0p333_0p333","t":13,"s":[2488,715,0],"e":[2488,715,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.104,"y":0.994},"o":{"x":0.529,"y":0},"n":"0p104_0p994_0p529_0","t":18,"s":[2488,715,0],"e":[2418,733,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.641,"y":1},"o":{"x":1,"y":0},"n":"0p641_1_1_0","t":29,"s":[2418,733,0],"e":[2572,703,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.367,"y":1},"o":{"x":0.707,"y":0},"n":"0p367_1_0p707_0","t":40,"s":[2572,703,0],"e":[2300,734,0],"to":[0,0,0],"ti":[0,0,0]},{"t":50}],"a":[350,404,0],"s":[100,100,100]}},{"ind":6,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0.635,10.91],[0,0],[-0.104,6.508],[0,0],[0,0],[0,0],[-56.654,-41.669],[-0.204,12.735],[1.189,6.518]],"o":[[0,0],[-0.378,-6.498],[0,0],[0,0],[0,0],[0,0],[0,0],[0.025,-1.575],[-1.961,-10.751]],"v":[[27.921,4.352],[27.295,-6.412],[26.884,-25.927],[27.696,-76.625],[20.586,-76.739],[-22.075,-77.422],[22.575,77.422],[34.054,51.652],[31.853,36.869]]}},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[457.844,169.196],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[23.975,0.384],[0,0],[0,0],[0,0],[-0.429,26.818],[0,0]],"o":[[0,0],[0,0],[0,0],[23.975,0.384],[0,0],[0.43,-26.818]],"v":[[-19.903,-56.803],[-21.521,-56.829],[-23.335,56.419],[-21.717,56.445],[22.653,8.383],[22.905,-7.345]]}},{"ty":"fl","fillEnabled":true,"c":[32,45,43,255],"o":100},{"ty":"tr","p":[507.061,149.373],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[18.985,0],[0,0],[0,18.984],[0,0],[-18.984,0],[0,0],[0,-18.985],[0,0]],"o":[[0,0],[-18.984,0],[0,0],[0,-18.985],[0,0],[18.985,0],[0,0],[0,18.984]],"v":[[9.351,54.3],[-9.35,54.3],[-43.867,19.783],[-43.867,-19.782],[-9.35,-54.3],[9.351,-54.3],[43.868,-19.782],[43.868,19.783]]}},{"ty":"fl","fillEnabled":true,"c":[234,234,234,255],"o":100},{"ty":"tr","p":[452.502,148.755],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-2.324],[2.324,0],[0,2.324],[-2.324,0]],"o":[[0,2.324],[-2.324,0],[0,-2.324],[2.324,0]],"v":[[4.208,0],[0,4.208],[-4.208,0],[0,-4.208]]}},{"ty":"fl","fillEnabled":true,"c":[168,168,168,255],"o":100},{"ty":"tr","p":[505.885,140.673],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,16.677],[0,0],[16.676,0],[0,0],[0,-16.677],[0,0],[-16.677,0],[0,0]],"o":[[0,0],[0,-16.677],[0,0],[-16.677,0],[0,0],[0,16.677],[0,0],[16.676,0]],"v":[[36.518,19.313],[36.518,-19.313],[6.197,-49.635],[-6.197,-49.635],[-36.518,-19.313],[-36.518,19.313],[-6.197,49.635],[6.197,49.635]]}},{"ty":"fl","fillEnabled":true,"c":[234,234,234,255],"o":100},{"ty":"tr","p":[462.732,150.205],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[514.945,140.48],[525.55,140.48]]}},{"ty":"st","fillEnabled":true,"c":[168,168,168,255],"o":100,"w":3},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"tte Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":[{"i":{"x":[0.304],"y":[1]},"o":{"x":[0.817],"y":[0]},"n":"0p304_1_0p817_0","t":0,"s":[-17],"e":[0]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":"0p667_0p667_0p333_0p333","t":13,"s":[0],"e":[0]},{"i":{"x":[0.104],"y":[1.032]},"o":{"x":[0.449],"y":[0]},"n":"0p104_1p032_0p449_0","t":18,"s":[0],"e":[-13]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[1],"y":[0.035]},"n":"0p667_1_1_0p035","t":29,"s":[-13],"e":[0]},{"i":{"x":[0.367],"y":[1]},"o":{"x":[0.707],"y":[0]},"n":"0p367_1_0p707_0","t":40,"s":[0],"e":[-17]},{"t":50}],"p":[{"i":{"x":0.304,"y":1},"o":{"x":0.817,"y":0},"n":"0p304_1_0p817_0","t":0,"s":[2166,563,0],"e":[2372,612,0],"to":[34.3333320617676,8.16666698455811,0],"ti":[-34.3333320617676,-8.16666698455811,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"n":"0p667_0p667_0p333_0p333","t":13,"s":[2372,612,0],"e":[2372,612,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.104,"y":0.99},"o":{"x":0.449,"y":0},"n":"0p104_0p99_0p449_0","t":18,"s":[2372,612,0],"e":[2329,612,0],"to":[-7.16666650772095,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":1,"y":0.008},"n":"0p667_1_1_0p008","t":29,"s":[2329,612,0],"e":[2372,612,0],"to":[0,0,0],"ti":[27.1666660308838,8.16666698455811,0]},{"i":{"x":0.367,"y":1},"o":{"x":0.707,"y":0},"n":"0p367_1_0p707_0","t":40,"s":[2372,612,0],"e":[2166,563,0],"to":[-27.1666660308838,-8.16666698455811,0],"ti":[34.3333320617676,8.16666698455811,0]},{"t":50}],"a":[460,166,0],"s":[100,100,100]}},{"ind":7,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-9.75,-88.495],[9.749,88.495]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":23},{"ty":"tr","p":[417.517,131.006],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-17.041,-15],[17.041,15]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":23},{"ty":"tr","p":[640.109,221.651],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0],[-11.73,-1.877],[-7.882,-16.913],[0,0],[0,0]],"o":[[0,0],[10.591,-5.381],[18.425,2.948],[0,0],[0,0],[0,0]],"v":[[-99.039,-6.988],[1.864,-58.258],[36.209,-63.65],[78.278,-31.89],[99.038,12.651],[93.999,65.527]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":23},{"ty":"tr","p":[626.483,302.124],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-5.737],[5.737,0],[0,5.737],[-5.737,0]],"o":[[0,5.737],[-5.737,0],[0,-5.737],[5.737,0]],"v":[[10.388,0],[0,10.388],[-10.388,0],[0,-10.388]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-503.294,262.943],[456.706,262.943],[456.706,-297.057],[-503.294,-297.057]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-503.294,-297.057],[456.706,-297.057],[456.706,262.943],[-503.294,262.943]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-10.389,10.388],[10.388,10.388],[10.388,-10.388],[-10.389,-10.388]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[255,255,255,255],"o":100},{"ty":"tr","p":[503.294,297.057],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-37.791],[37.791,0],[0,37.791],[-37.792,0]],"o":[[0,37.791],[-37.792,0],[0,-37.791],[37.791,0]],"v":[[68.427,0],[0,68.427],[-68.428,0],[0,-68.427]]}},{"ty":"st","fillEnabled":true,"c":[239,239,239,255],"o":100,"w":9},{"ty":"tr","p":[503.293,297.057],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-14.631],[14.63,0],[0,14.631],[-14.631,0]],"o":[[0,14.631],[-14.631,0],[0,-14.631],[14.63,0]],"v":[[26.492,0],[0,26.491],[-26.492,0],[0,-26.491]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-717.778,171.948],[242.222,171.948],[242.222,-388.052],[-717.778,-388.052]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-717.778,-388.052],[242.222,-388.052],[242.222,171.948],[-717.778,171.948]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[32,45,43,255],"o":100},{"ty":"tr","p":[717.778,388.052],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[18.848,0],[0,0],[0,18.849],[0,0],[-18.848,0],[0,0],[0,-18.848],[0,0]],"o":[[0,0],[-18.848,0],[0,0],[0,-18.848],[0,0],[18.848,0],[0,0],[0,18.849]],"v":[[64.725,42.186],[-64.726,42.186],[-98.995,7.916],[-98.995,-7.916],[-64.726,-42.186],[64.725,-42.186],[98.995,-7.916],[98.995,7.916]]}},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":23},{"ty":"tr","p":[529.262,172.316],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,-65.162],[65.163,0],[0,65.162],[-65.162,0]],"o":[[0,65.162],[-65.162,0],[0,-65.162],[65.163,0]],"v":[[117.987,0],[0,117.987],[-117.987,0],[0,-117.987]]}},{"ty":"gr","it":[{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-503.293,262.943],[456.707,262.943],[456.707,-297.057],[-503.293,-297.057]]}},{"ty":"sh","closed":true,"ks":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-503.293,-297.057],[456.707,-297.057],[456.707,262.943],[-503.293,262.943]]}},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"fl","fillEnabled":true,"c":[32,45,43,255],"o":100},{"ty":"tr","p":[503.293,297.057],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[314.415,402.468],[740.458,402.468]]}},{"ty":"st","fillEnabled":true,"c":[0,0,0,255],"o":100,"w":88},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":10}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"chaise roulante Silhouettes","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[480,280,0],"s":[100,100,100]}},{"ind":8,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.304,"y":1},"o":{"x":0.817,"y":0},"n":"0p304_1_0p817_0","t":0,"s":[{"i":[[0,0],[21.667,54.5]],"o":[[0,0],[0,0]],"v":[[131.667,-222.833],[-13.667,-306.5]]}],"e":[{"i":[[0,0],[71,-47]],"o":[[0,0],[0,0]],"v":[[321.667,-240.833],[144.333,-232.5]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":13,"s":[{"i":[[0,0],[71,-47]],"o":[[0,0],[0,0]],"v":[[321.667,-240.833],[144.333,-232.5]]}],"e":[{"i":[[0,0],[71,-47]],"o":[[0,0],[0,0]],"v":[[321.667,-240.833],[144.333,-232.5]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.449,"y":0},"n":"0p667_1_0p449_0","t":18,"s":[{"i":[[0,0],[71,-47]],"o":[[0,0],[0,0]],"v":[[321.667,-240.833],[144.333,-232.5]]}],"e":[{"i":[[0,0],[-14.333,80.5]],"o":[[0,0],[0,0]],"v":[[245.667,-224.833],[144.333,-232.5]]}]},{"i":{"x":0.641,"y":1},"o":{"x":1,"y":0},"n":"0p641_1_1_0","t":29,"s":[{"i":[[0,0],[-14.333,80.5]],"o":[[0,0],[0,0]],"v":[[245.667,-224.833],[144.333,-232.5]]}],"e":[{"i":[[0,0],[155.667,-15.5]],"o":[[0,0],[0,0]],"v":[[405.667,-256.833],[144.333,-232.5]]}]},{"i":{"x":0.367,"y":1},"o":{"x":0.707,"y":0},"n":"0p367_1_0p707_0","t":40,"s":[{"i":[[0,0],[155.667,-15.5]],"o":[[0,0],[0,0]],"v":[[405.667,-256.833],[144.333,-232.5]]}],"e":[{"i":[[0,0],[21.667,54.5]],"o":[[0,0],[0,0]],"v":[[131.667,-222.833],[-13.667,-306.5]]}]},{"t":50}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":23},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]},{"ty":"tm","s":0,"e":0.5,"o":0,"m":1}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"bras 3","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":9,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.304,"y":1},"o":{"x":0.817,"y":0},"n":"0p304_1_0p817_0","t":0,"s":[{"i":[[0,0],[21.667,54.5]],"o":[[0,0],[0,0]],"v":[[131.667,-222.833],[-13.667,-306.5]]}],"e":[{"i":[[0,0],[71,-47]],"o":[[0,0],[0,0]],"v":[[321.667,-240.833],[144.333,-232.5]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":13,"s":[{"i":[[0,0],[71,-47]],"o":[[0,0],[0,0]],"v":[[321.667,-240.833],[144.333,-232.5]]}],"e":[{"i":[[0,0],[71,-47]],"o":[[0,0],[0,0]],"v":[[321.667,-240.833],[144.333,-232.5]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.449,"y":0},"n":"0p667_1_0p449_0","t":18,"s":[{"i":[[0,0],[71,-47]],"o":[[0,0],[0,0]],"v":[[321.667,-240.833],[144.333,-232.5]]}],"e":[{"i":[[0,0],[-14.333,80.5]],"o":[[0,0],[0,0]],"v":[[245.667,-224.833],[144.333,-232.5]]}]},{"i":{"x":0.641,"y":1},"o":{"x":1,"y":0},"n":"0p641_1_1_0","t":29,"s":[{"i":[[0,0],[-14.333,80.5]],"o":[[0,0],[0,0]],"v":[[245.667,-224.833],[144.333,-232.5]]}],"e":[{"i":[[0,0],[155.667,-15.5]],"o":[[0,0],[0,0]],"v":[[405.667,-256.833],[144.333,-232.5]]}]},{"i":{"x":0.367,"y":1},"o":{"x":0.707,"y":0},"n":"0p367_1_0p707_0","t":40,"s":[{"i":[[0,0],[155.667,-15.5]],"o":[[0,0],[0,0]],"v":[[405.667,-256.833],[144.333,-232.5]]}],"e":[{"i":[[0,0],[21.667,54.5]],"o":[[0,0],[0,0]],"v":[[131.667,-222.833],[-13.667,-306.5]]}]},{"t":50}]},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":23},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"bras 2","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":11,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":{"i":[[0,0],[-49,-65],[0,0]],"o":[[0,0],[21.435,28.435],[0,0]],"v":[[-88.5,-33.167],[65.5,-13.5],[88.5,78.5]]}},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":23},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"jambe","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2308,906,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":12,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.304,"y":1},"o":{"x":0.817,"y":0},"n":"0p304_1_0p817_0","t":0,"s":[{"i":[[0,0],[-44.806,-78.01]],"o":[[-15.682,32.623],[0,0]],"v":[[-14.806,-312.01],[34.806,-109.99]]}],"e":[{"i":[[0,0],[62.974,-61.203]],"o":[[-15.682,32.623],[0,0]],"v":[[145.194,-250.01],[34.806,-109.99]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":13,"s":[{"i":[[0,0],[62.974,-61.203]],"o":[[-15.682,32.623],[0,0]],"v":[[145.194,-250.01],[34.806,-109.99]]}],"e":[{"i":[[0,0],[62.974,-61.203]],"o":[[-15.682,32.623],[0,0]],"v":[[145.194,-250.01],[34.806,-109.99]]}]},{"i":{"x":0.328,"y":1},"o":{"x":0.333,"y":0},"n":"0p328_1_0p333_0","t":18,"s":[{"i":[[0,0],[62.974,-61.203]],"o":[[-15.682,32.623],[0,0]],"v":[[145.194,-250.01],[34.806,-109.99]]}],"e":[{"i":[[49.194,-8.01],[39.194,-73.01]],"o":[[-49.194,8.01],[0,0]],"v":[[125.194,-250.01],[34.806,-109.99]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":29,"s":[{"i":[[49.194,-8.01],[39.194,-73.01]],"o":[[-49.194,8.01],[0,0]],"v":[[125.194,-250.01],[34.806,-109.99]]}],"e":[{"i":[[0,0],[62.974,-61.203]],"o":[[-15.682,32.623],[0,0]],"v":[[145.194,-250.01],[34.806,-109.99]]}]},{"i":{"x":0.367,"y":1},"o":{"x":0.707,"y":0},"n":"0p367_1_0p707_0","t":40,"s":[{"i":[[0,0],[62.974,-61.203]],"o":[[-15.682,32.623],[0,0]],"v":[[145.194,-250.01],[34.806,-109.99]]}],"e":[{"i":[[0,0],[-44.806,-78.01]],"o":[[-15.682,32.623],[0,0]],"v":[[-14.806,-312.01],[34.806,-109.99]]}]},{"t":50}]},{"ty":"st","fillEnabled":true,"c":[255,255,255,255],"o":100,"w":88},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"tronc","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":13,"type":"ShapeLayer","shapes":[{"ty":"gr","it":[{"ty":"sh","closed":false,"ks":[{"i":{"x":0.304,"y":1},"o":{"x":0.831,"y":0},"n":"0p304_1_0p831_0","t":0,"s":[{"i":[[0,0],[-19.884,-66.426]],"o":[[0,0],[0,0]],"v":[[-35.884,-271.256],[109.884,-147.574]]}],"e":[{"i":[[0,0],[83.785,-15.17]],"o":[[0,0],[0,0]],"v":[[126.116,-247.256],[-40.116,-309.574]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":13,"s":[{"i":[[0,0],[83.785,-15.17]],"o":[[0,0],[0,0]],"v":[[126.116,-247.256],[-40.116,-309.574]]}],"e":[{"i":[[0,0],[83.785,-15.17]],"o":[[0,0],[0,0]],"v":[[126.116,-247.256],[-40.116,-309.574]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":18,"s":[{"i":[[0,0],[83.785,-15.17]],"o":[[0,0],[0,0]],"v":[[126.116,-247.256],[-40.116,-309.574]]}],"e":[{"i":[[0,0],[14.116,-150.426]],"o":[[0,0],[0,0]],"v":[[126.116,-247.256],[-32.116,-149.574]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":29,"s":[{"i":[[0,0],[14.116,-150.426]],"o":[[0,0],[0,0]],"v":[[126.116,-247.256],[-32.116,-149.574]]}],"e":[{"i":[[0,0],[14.116,-150.426]],"o":[[0,0],[0,0]],"v":[[126.116,-247.256],[-32.116,-149.574]]}]},{"i":{"x":0.667,"y":1},"o":{"x":0.707,"y":0},"n":"0p667_1_0p707_0","t":40,"s":[{"i":[[0,0],[14.116,-150.426]],"o":[[0,0],[0,0]],"v":[[126.116,-247.256],[-32.116,-149.574]]}],"e":[{"i":[[0,0],[-19.884,-66.426]],"o":[[0,0],[0,0]],"v":[[-35.884,-271.256],[109.884,-147.574]]}]},{"t":50}]},{"ty":"st","fillEnabled":true,"c":[32,45,43,255],"o":100,"w":23},{"ty":"tr","p":[0,0],"a":[0,0],"s":[100,100],"r":0,"o":100}]}],"rectData":{"l":0,"t":0,"b":0,"r":0,"w":0,"h":0},"layerName":"bras","threeD":false,"an":{},"width":4320,"height":1920,"inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[0,0,0],"s":[100,100,100]}},{"ind":14,"type":"SolidLayer","layerName":"Orange uni 2","threeD":false,"an":{},"width":4320,"height":1920,"color":"#ff9500","inPoint":0,"outPoint":1463,"startTime":0,"ks":{"o":100,"r":0,"p":[2160,960,0],"a":[2160,960,0],"s":[100,100,100]}}],"totalFrames":51,"frameRate":24,"ff":0,"compWidth":4320,"compHeight":1920},"assets":[],"v":"2.0.6"};
\ No newline at end of file
diff --git a/player/js/renderers/SVGRenderer.js b/player/js/renderers/SVGRenderer.js
index 0ebfd5d..701563d 100644
--- a/player/js/renderers/SVGRenderer.js
+++ b/player/js/renderers/SVGRenderer.js
@@ -8,6 +8,39 @@
     this.elements = [];
 }
 
+SVGRenderer.prototype.configAnimation = function(animData){
+    this.animationItem.container = document.createElementNS(svgNS,'svg');
+    this.animationItem.container.setAttribute('xmlns','http://www.w3.org/2000/svg');
+    this.animationItem.container.setAttribute('width',animData.animation.compWidth);
+    this.animationItem.container.setAttribute('height',animData.animation.compHeight);
+    this.animationItem.container.setAttribute('viewBox','0 0 '+animData.animation.compWidth+' '+animData.animation.compHeight);
+    this.animationItem.container.setAttribute('preserveAspectRatio','xMidYMid meet');
+    this.animationItem.container.style.width = '100%';
+    this.animationItem.container.style.height = '100%';
+    this.animationItem.container.style.transformOrigin = this.animationItem.container.style.mozTransformOrigin = this.animationItem.container.style.webkitTransformOrigin = this.animationItem.container.style['-webkit-transform'] = "0px 0px 0px";
+    this.animationItem.wrapper.appendChild(this.animationItem.container);
+    //Mask animation
+    var defs = document.createElementNS(svgNS, 'defs');
+    this.globalData.defs = defs;
+    this.animationItem.container.appendChild(defs);
+    var maskElement = document.createElementNS(svgNS, 'clipPath');
+    var rect = document.createElementNS(svgNS,'rect');
+    rect.setAttribute('width',animData.animation.compWidth);
+    rect.setAttribute('height',animData.animation.compHeight);
+    rect.setAttribute('x',0);
+    rect.setAttribute('y',0);
+    var maskId = 'animationMask_'+randomString(10);
+    maskElement.setAttribute('id', maskId);
+    maskElement.appendChild(rect);
+    var maskedElement = document.createElementNS(svgNS,'g');
+    maskedElement.setAttribute("clip-path", "url(#"+maskId+")");
+    this.animationItem.container.appendChild(maskedElement);
+    defs.appendChild(maskElement);
+    this.animationItem.container = maskedElement;
+    this.layers = animData.animation.layers;
+    console.log(this.layers);
+};
+
 SVGRenderer.prototype.buildItems = function(layers,parentContainer,elements){
     var count = 0, i, len = layers.length;
     if(!elements){
@@ -67,38 +100,6 @@
     return new ISolidElement(data, this.animationItem,parentContainer,this.globalData);
 };
 
-SVGRenderer.prototype.configAnimation = function(animData){
-    this.animationItem.container = document.createElementNS(svgNS,'svg');
-    this.animationItem.container.setAttribute('xmlns','http://www.w3.org/2000/svg');
-    this.animationItem.container.setAttribute('width',animData.animation.compWidth);
-    this.animationItem.container.setAttribute('height',animData.animation.compHeight);
-    this.animationItem.container.setAttribute('viewBox','0 0 '+animData.animation.compWidth+' '+animData.animation.compHeight);
-    this.animationItem.container.setAttribute('preserveAspectRatio','xMidYMid meet');
-    this.animationItem.container.style.width = '100%';
-    this.animationItem.container.style.height = '100%';
-    this.animationItem.container.style.transformOrigin = this.animationItem.container.style.mozTransformOrigin = this.animationItem.container.style.webkitTransformOrigin = this.animationItem.container.style['-webkit-transform'] = "0px 0px 0px";
-    this.animationItem.wrapper.appendChild(this.animationItem.container);
-    //Mask animation
-    var defs = document.createElementNS(svgNS, 'defs');
-    this.globalData.defs = defs;
-    this.animationItem.container.appendChild(defs);
-    var maskElement = document.createElementNS(svgNS, 'clipPath');
-    var rect = document.createElementNS(svgNS,'rect');
-    rect.setAttribute('width',animData.animation.compWidth);
-    rect.setAttribute('height',animData.animation.compHeight);
-    rect.setAttribute('x',0);
-    rect.setAttribute('y',0);
-    var maskId = 'animationMask_'+randomString(10);
-    maskElement.setAttribute('id', maskId);
-    maskElement.appendChild(rect);
-    var maskedElement = document.createElementNS(svgNS,'g');
-    maskedElement.setAttribute("clip-path", "url(#"+maskId+")");
-    this.animationItem.container.appendChild(maskedElement);
-    defs.appendChild(maskElement);
-    this.animationItem.container = maskedElement;
-    this.layers = animData.animation.layers;
-};
-
 SVGRenderer.prototype.buildStage = function (container, layers,elements) {
     var i, len = layers.length, layerData;
     if(!elements){