Adobe Animate to Wix

So is there a way to show a html 5 animation published in Adobe Animate on a Wix website?
I have tried the HTML iframe green box plug in more times than I can count. I cannot get it to work.

Heres a minor example of something I might want to display. If I open this in Dreamweaver, it plays immediately. What is the WIX secret?

I am so close to just rebuilding my whole site in Wordpress. I know vector animations like the one above will work on Wordpress. The only way I can get an animation to display on WIX is to use an animated GIF, and they have so many limitations (no interaction & scaling limits being the main ones)

Thanks so much.

spin

OK you have a line that reads

There is no local file access in an htmlComponent. You will need to add the code from this file inline.

sounds like a start - I am a graphic designer illustrator/animator who has minor experience using code - Please explain what you said like I was a code newbie

Any new outlooks on getting an html5 animation from Adobe animate to WIX?
I understand that in order to work, the website needs both the html code and js code, other wise Animate wouldn’t include them both upon publishing. I guess I just don’t know what to do with them in WIX.

[@Eric Horne] Hi Eric:

OK Javascript can be loaded onto your page in two ways:

  1. Embedded between script tags
<script> <!-- Here --></script> 
  1. Loaded from a file via either a URL or the site root filesystem
<script src="https://www.somewebsite.com/javascriptFile.js"></script>
or
<script src="scriptFile.js"></script>

In your code you seem to be loading javascript that is critical to the animation from what the browser will think of as a file in the website root i.e. spin.js.

Wix is a single page application (that is all pages are rendered using javascript after the initial page load). Further the iframe is embedded in the single page and doesn’t really have a context for where to find script.js. So you will need to do one of two things:

  1. Figure out the full URL for the spin.js file (e.g. “https://www.theSpinSite.com/spin.js”) and change the script I highlighted to something like this (the line above the one that seems broken uses this technique) :
<script src="https://www.theSpinSite.com/spin.js"></script>
  1. Figure out what the javascript is that is in the spin.js file. Copy it all from the file and paste it between the tags like this:

Code in file spin.js:

function spin(data) {
    // Do something with data
}

New code in the iframe html:

<script>
     function spin(data) {
          // Do something with data
      }
</script>

Hope this helps
Steve

if you don’t mind, could you show me using the following js and html code? Just so I get it correct - then I’ll be able to apply it to any of my animations:

html -

spin

Java -
(function (lib, img, cjs, ss, an) {

var p; // shortcut to reference prototypes
lib.webFontTxtInst = {};
var loadedTypekitCount = 0;
var loadedGoogleCount = 0;
var gFontsUpdateCacheList = ;
var tFontsUpdateCacheList = ;
lib.ssMetadata = ;

lib.updateListCache = function (cacheList) {
for(var i = 0; i < cacheList.length; i++) {
if(cacheList[i].cacheCanvas)
cacheList[i].updateCache();
}
};

lib.addElementsToCache = function (textInst, cacheList) {
var cur = textInst;
while(cur != null && cur != exportRoot) {
if(cacheList.indexOf(cur) != -1)
break;
cur = cur.parent;
}
if(cur != exportRoot) {
var cur2 = textInst;
var index = cacheList.indexOf(cur);
while(cur2 != null && cur2 != cur) {
cacheList.splice(index, 0, cur2);
cur2 = cur2.parent;
index++;
}
}
else {
cur = textInst;
while(cur != null && cur != exportRoot) {
cacheList.push(cur);
cur = cur.parent;
}
}
};

lib.gfontAvailable = function(family, totalGoogleCount) {
lib.properties.webfonts[family] = true;
var txtInst = lib.webFontTxtInst && lib.webFontTxtInst[family] || ;
for(var f = 0; f < txtInst.length; ++f)
lib.addElementsToCache(txtInst[f], gFontsUpdateCacheList);

loadedGoogleCount++;		 
if(loadedGoogleCount == totalGoogleCount) {		 
	lib.updateListCache(gFontsUpdateCacheList);		 
}		 

};

lib.tfontAvailable = function(family, totalTypekitCount) {
lib.properties.webfonts[family] = true;
var txtInst = lib.webFontTxtInst && lib.webFontTxtInst[family] || ;
for(var f = 0; f < txtInst.length; ++f)
lib.addElementsToCache(txtInst[f], tFontsUpdateCacheList);

loadedTypekitCount++;		 
if(loadedTypekitCount == totalTypekitCount) {		 
	lib.updateListCache(tFontsUpdateCacheList);		 
}		 

};
// symbols:

(lib.Tween3 = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});

// Layer 1 
this.shape = new cjs.Shape(); 
this.shape.graphics.f("#FF0000").s().p("AifERQAygbALgTQAOgXAAgRQAAgPgKgNQgggTgVgeQgXgfgIglQgUhVA+hPQAzhEAsgfQA9grBlgUQAygKAmgBIgxAXQgyAcgLASQgOAYAAARQAAAOALAOQAfATAXAeQAWAfAKAlQAJAsgLAsQgMApgeAlQg0BDgsAfQg8AqhlAUIhZAKQAXgJAagOgAgxgyQgVAVAAAdQAAAeAVAWQAVAVAdAAQAeAAAVgVQAWgWAAgeQAAgdgWgVQgVgVgeAAQgdAAgVAVg"); 

this.timeline.addTween(cjs.Tween.get(this.shape).wait(1)); 

}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(-20.9,-29.6,41.8,59.3);

// stage content:
(lib.spin = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});

// Layer 1 
this.instance = new lib.Tween3("synched",0); 
this.instance.parent = this; 
this.instance.setTransform(275.5,200.5); 

this.timeline.addTween(cjs.Tween.get(this.instance).to({rotation:-18060},19).wait(1)); 

}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(529.6,370.9,41.8,59.3);
// library properties:
lib.properties = {
width: 550,
height: 400,
fps: 24,
color: “#FFFFFF”,
opacity: 1.00,
webfonts: {},
manifest: ,
preloads:
};

})(lib = lib||{}, images = images||{}, createjs = createjs||{}, ss = ss||{}, AdobeAn = AdobeAn||{});
var lib, images, createjs, ss, AdobeAn;

Thank you so much.

What is the url of the page you have it working on?

https://ehornet73.wixsite.com/erichorneportfolio/test

[@Eric Horne] OK here is the answer you need!

The spin.js issue was a red herring.

The simple answer is that you need to insert code you have tagged as Java - above the last tag (don’t include the Java - ). Here:

	makeResponsive(false,'both',false,1);	
	fnStartAnimation();
}
// ADD JAVASCRIPT BELOW THIS COMMENT AND ABOVE THE </SCRIPT> TAG
</script>
<!-- write your code here -->
</head>

This code defines the objects that your code needs to do its job. So for example in the handleComplete() function there is a call to lib.spin();

function handleComplete() {
	//This function is always called, irrespective of the content. You can use the variable "stage" after it is created in token create_stage.
	exportRoot = new lib.spin();
	stage = new createjs.Stage(canvas);
	stage.addChild(exportRoot);

lib is defined at the end of the javascript after the object definition code…

...
})(lib = lib||{}, images = images||{}, createjs = createjs||{}, ss = ss||{}, AdobeAn = AdobeAn||{});
var lib, images, createjs, ss, AdobeAn;  // <<<< lib defined here

And spin is defined inside the code like this…

// stage content:
(lib.spin = function(mode,startPosition,loop) {  //<<<<<<<< spin defined here
	this.initialize(mode,startPosition,loop,{});
	// Layer 1
	this.instance = new lib.Tween3("synched",0);
	this.instance.parent = this;
	this.instance.setTransform(275.5,200.5);
	this.timeline.addTween(cjs.Tween.get(this.instance).to({rotation:-18060},19).wait(1));
}).prototype = p = new cjs.MovieClip();

So with this code where it need to be you get this…


Only it spins :wink:

sounds great - i am a school teacher so i am constantly so busy - i can’t wait to try it - Thanks so much - I did find a work around that works decent for SOME animations if anyone is interested - here goes: go to Adobe Exchange from the Adobe Animate start screen and install the Animate SVG exporter extension/plug in by Thomas Byrne - there is a minor experimentation and or learning curve, but once you get it wired, it is more or less acceptable - there are 2 big criterion though - ONE you must get in the time machine and choose an ActionScript 3 Canvas instead of an HTML 5 Canvas before beginning your animation. You cannot or at least so far i have been unable to use the convert to ActionScript 3 inside of an existing HTML 5 animation previously created - AGAIN, the Animated SVG Exporter plug in will only work with an ActionScript Canvas - and TWO, upon getting an svg export, you must open it in Dreamweaver, or a code editor of your choice, copy the code, select it, and paste it into a WIX html iframe - the result is so far:

https://ehornet73.wixsite.com/erichorneportfolio/test

and it doesn’t seem to work well with a motion guide path animation from Adobe Animate - the conversion does not look like it does as a source file, browser test, or of course an animated GIF

once again, thank again kind Sir

oh yeah, the i frame scrolling interface mysteriously and randomly goes away on SOME animations - do you know why? after all, I don’t want it there so that was a nice happy accident, if I knew what caused it, because I have no clue

@stevendc Please show me with the following html and java - i know i am close, but still can’t quite get it to function properly - it should look like the 3rd one from the left here - http://www.erichorneportfolio.com/?page_id=18 - thank you sir - i feel like i’m so close


airplane mouse start

(function (lib, img, cjs, ss) {

var p; // shortcut to reference prototypes

// library properties:
lib.properties = {
width: 205,
height: 205,
fps: 24,
color: “#FFFFFF”,
opacity: 1.00,
manifest:
};

lib.ssMetadata = ;

// symbols:

(lib.Tween2 = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});

// Layer 1 
this.shape = new cjs.Shape(); 
this.shape.graphics.f("#FFFFFF").s().p("AAGDKIgLAAIhCAOIAAgTIAwgkIAAieIjKAgIAAgUIDIhgIAAhdQABgKAEgKQAJgVALABQAMgBAJAVQAEAKABAKIAABdIDIBgIAAAUIjKggIAACeIAwAkIAAATg"); 
this.shape.setTransform(-84,0,1,1,0,0,0,-84,0.1); 

this.timeline.addTween(cjs.Tween.get(this.shape).wait(1)); 

}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(-22.6,-21.7,45.3,43.2);

(lib.bckgrndcircle = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});

// Layer_1 
this.shape = new cjs.Shape(); 
this.shape.graphics.f("#39474E").s().p("ArELEQkmklAAmfQAAmeEmkmQEmkmGeAAQGfAAElEmQEnEmAAGeQAAGfknElQklEnmfAAQmeAAkmkng"); 
this.shape.setTransform(100.3,100.3); 

this.timeline.addTween(cjs.Tween.get(this.shape).wait(1)); 

}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(0,0,200.6,200.6);

(lib.Symbol1 = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});

// Layer_1 
this.instance = new lib.bckgrndcircle("synched",0); 
this.instance.parent = this; 
this.instance.setTransform(0,0,1,1,0,0,0,100.3,100.3); 

this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); 

}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(-100.3,-100.3,200.6,200.6);

// stage content:
(lib.airplanemousestart = function(mode,startPosition,loop) {
this.initialize(mode,startPosition,loop,{});

// timeline functions: 
this.frame_0 = function() { 
	this.stop(); 
	
	canvas.addEventListener("mouseover", over.bind(this)); 
	
	 
	
	function over() 
	
	{ 
	
	  this.play(); 
	
	} 
	
	 
	
	canvas.addEventListener("mouseout", out.bind(this)); 
	
	 
	
	function out() 
	
	{ 
	
	  this.stop(); 
	
	} 
	
	/* Click to Go to Web Page 
	Clicking on the specified symbol instance loads the URL in a new browser window. 
	
	Instructions: 
	1. Replace http://www.adobe.com with the desired URL address. 
	   Keep the quotation marks (""). 
	*/ 
	
	this.movieClip_1.addEventListener("click", fl_ClickToGoToWebPage); 
	
	function fl_ClickToGoToWebPage() { 
		window.open("https://www.traveltexas.com/", "_blank"); 
	} 
} 
this.frame_100 = function() { 
	canvas.addEventListener("mouseover", over.bind(this)); 
	
	 
	
	function over() 
	
	{ 
	
	  this.play(); 
	
	} 
	
	 
	
	canvas.addEventListener("mouseout", out.bind(this)); 
	
	 
	
	function out() 
	
	{ 
	
	  this.stop(); 
	
	} 
	
	
	
	this.movieClip_1.addEventListener("click", fl_ClickToGoToWebPage); 
	
	function fl_ClickToGoToWebPage() { 
		window.open("https://www.traveltexas.com/", "_blank"); 
	} 
} 

// actions tween: 
this.timeline.addTween(cjs.Tween.get(this).call(this.frame_0).wait(100).call(this.frame_100).wait(1)); 

// Texas 
this.shape = new cjs.Shape(); 
this.shape.graphics.f("#8BC43F").s().p("ACUEwQgdgFgbgIQgggKgFgJQgIgTgbgsIgcgxQgDgHgXgdIgdglQgHgJgcADQgcAEgFAOIgHASQgFAKgOgBQgQAAgZgWQgZgVgCgOQgDgYgTgUIghgaIgLgMIgMgOIgGgFIgFgEQgDgEAAgEIABgDICtACIACkCICNAAIAABvIA3ASQA+ARAgABQAfAAAagDIAUgFIAGABQAIACAKAFQAIADAPADQALADABAMIAGBJQAVAYAFArQADArgNAPIgHAJIgUAPQg7AsgZAUQgeAXgNAOQgIAJgDAHQgEAKAAAUQAAAGANAmQAKAagLAAIgCAAg"); 
this.shape.setTransform(102.6,102.7); 

this.shape_1 = new cjs.Shape(); 
this.shape_1.graphics.f("#8BC43F").s().p("ABpFAQgcgJgagKQgegOgEgKQgGgUgSgvIgYg1QgCgHgTggIgYgpQgGgJgcAAQgcAAgIANIgIARQgGAJgOgCQgQgDgWgZQgWgYAAgOQAAgYgQgVQgWgVgHgKIgKgOIgKgQQgBgCgEgDIgFgEQgCgFABgDIABgDICsAYIAjkAICLATIgPBuIA1AYQA8AaAfAFQAeAEAbAAIAVgCIAFACQAIADAJAGQAHAEAPAEQALAGgBALIgDBJQASAZgCAuQgCAqgPANIgJAIIgVANIhcA0QghATgOAMQgJAIgEAHQgFAJgDAUQgBAGAJAnQAFAagJgBIgDAAg"); 
this.shape_1.setTransform(102.8,102.6); 
this.shape_1._off = true; 

this.shape_2 = new cjs.Shape(); 
this.shape_2.graphics.f("#8BC43F").s().p("ACCEeQghgGgFgIQgMgSgggoIgkgtQgEgHgZgZIghgiQgIgHgbAHQgbAHgEAOIgEAUQgEAKgOACQgPABgdgSQgbgSgEgOQgGgXgVgSIglgWIgNgLIgNgNQgCgCgFgCIgFgDQgDgEgBgDIABgDICrgTIggkBICOgRIANBtIA4ALQBAAIAggDQAegEAagHIATgHIAGAAQAJABAKAEQAIACAPAAQAMACACAMIAQBHQAYAWALAsQAJAogLAQIgGAKIgTASIhKBKQgbAbgLAQQgGAJgCAIQgDAKADAUQABAGARAkQAOAagOAAQgdgBgcgEg"); 
this.shape_2.setTransform(102.5,101.6); 
this.shape_2._off = true; 

this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape}]}).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).to({state:[{t:this.shape_1}]},2).to({state:[{t:this.shape_2}]},2).wait(1)); 
this.timeline.addTween(cjs.Tween.get(this.shape_1).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(1)); 
this.timeline.addTween(cjs.Tween.get(this.shape_2).wait(4).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).to({_off:true},2).wait(2).to({_off:false},0).wait(1)); 

// white circle 
this.shape_3 = new cjs.Shape(); 
this.shape_3.graphics.f("#FFFFFF").s().p("Ak8E9QiEiDAAi6QAAi4CEiEQCEiEC4AAQC6AACDCEQCDCEABC4QgBC6iDCDQiDCDi6ABQi4gBiEiDg"); 
this.shape_3.setTransform(102.5,102.5); 

this.timeline.addTween(cjs.Tween.get(this.shape_3).wait(101)); 

// mask (mask) 
var mask = new cjs.Shape(); 
mask._off = true; 
var mask_graphics_0 = new cjs.Graphics().p("AkUOBQijhGh/h+QkLkKAAl6QAAl2ELkLQB/h+CjhGQCphHC3AAQEsAADvCvQDwCvBaEeIiWAvQhLjsjGiRQjGiRj4AAQk1AAjdDdQjdDdAAE1QAAE4DdDdQDdDdE1AAQD9AADLiaQDKiaBEjzICYArQhSEmj2C5Qj0C6kyAAQi3AAiphHg"); 
var mask_graphics_1 = new cjs.Graphics().p("AjlOVQiog7iGh2Qkbj6gYl4QgXl2D5kbQB3iGCehQQClhSC2gLQErgTD6CgQD6CgBsEXIiTA5QhZjnjPiEQjPiFj3AQQk1ATjPDrQjODqATE1QAUE3DqDPQDrDPE1gUQD8gQDBimQDAimA1j3ICZAhQg/EqjpDJQjoDJkxATQgeACgdAAQiYAAiRgzg"); 
var mask_graphics_2 = new cjs.Graphics().p("Ai0OmQirgxiNhtQkqjngvl2Qgwl0DokrQBtiNCahZQCfhcC3gXQEngmEECQQEDCQB+EQIiPBBQhojgjXh3QjWh3j0AfQk1AnjAD3Qi/D3AnEzQAnE1D3C/QD3DAEzgnQD6ggC3iyQC1iyAlj6ICcAYQgtEtjcDXQjbDYkwAmQg6AHg6AAQh5AAh5ghg"); 
var mask_graphics_3 = new cjs.Graphics().p("AiAOzQitgmiUhkQk4jUhHlzQhGlvDUk5QBkiUCUhiQCZhmC1gjQElg4EMCAQEMB/COEHIiLBLQh1jajehqQjehpjxAvQkyA6iwECQiwEDA7EwQA6EyEDCwQECCvEwg6QD4gvCri+QCqi8AVj8ICdANQgaEwjODkQjNDlksA6QhWAQhWAAQhdAAhfgUg"); 
var mask_graphics_4 = new cjs.Graphics().p("AhJO8QivgaiahbQlFjAheltQhelrDAlFQBciaCMhsQCThvCzguQEghLEUBvQETBuCfD+IiGBTQiDjSjkhbQjkhbjuA9QkuBOifENQifENBNEsQBOEtENCfQENCgEshOQD0g/CfjIQCdjGAGj9ICdAEQgGExjADwQi+DykoBMQhxAchxAAQhCAAhDgKg"); 
var mask_graphics_5 = new cjs.Graphics().p("AgQPDQixgQighRQlQirh0lnQh1lkCrlRQBSifCGh0QCLh4Cvg6QEbhcEaBdQEaBdCuDzIiABbQiQjJjphNQjphMjqBMQkoBgiOEXQiOEWBgEnQBhEoEWCOQEXCOEmhhQDwhOCSjRQCQjQgKj9ICdgGQANExiwD8QivD9kjBeQiKAtiOAAQgnAAglgDg"); 
var mask_graphics_6 = new cjs.Graphics().p("AAmPFQivgEikhHQlaiWiLleQiLleCWlZQBHikB+h9QCDiBCshEQEVhuEfBLQEfBLC9DoIh6BjQicjAjug+Qjtg+jlBcQkhByh9EfQh8EdBzEiQBzEhEfB8QEcB9EihzQDrhdCEjaQCDjZgaj6ICdgQQAgEuigEHQifEHkcBwQiiBAisAAIgWAAg"); 
var mask_graphics_7 = new cjs.Graphics().p("Aj4OPQljiAihlVQiglVB/liQA9inB2iFQB7iJCnhOQEQiAEhA5QEjA5DLDbIhzBrQioi2jxgvQjvgujhBpQkZCFhqEmQhqEkCEEaQCFEaEmBpQEkBqEaiEQDlhsB2jiQB1jhgqj3ICcgaQAzEriPEQQiOERkVCCQinBPi4AHIgjABQidAAiXg2g"); 
var mask_graphics_8 = new cjs.Graphics().p("AjCOgQlrhpi1lLQi2lKBplpQAzirBtiMQByiQCihZQEHiQEkAnQEmAmDZDOIhtByQizirj0ggQjxgfjZB3QkRCWhXEsQhXEqCWERQCWEREsBYQEqBXERiWQDdh6BojpQBnjog5j0ICZgjQBGEnh+EYQh8EZkMCUQiiBZi3ATQgvAEguAAQh/AAh+gkg"); 
var mask_graphics_9 = new cjs.Graphics().p("AiLOuQlwhTjKk+QjKk+BSlvQAniuBliSQBoiXCdhjQD9ihEmAUQEoAUDlDAIhlB5Qi+igj1gQQjzgQjRCFQkHCnhEExQhFEvCnEHQCnEHExBEQEvBEEHinQDWiHBZjvQBYjuhJjwICXgtQBYEihsEgQhqEgkCCkQicBji2AfQhLAMhKAAQhiAAhkgWg"); 
var mask_graphics_10 = new cjs.Graphics().p("AhTO4Ql1g7jekxQjdkxA7lzQAciwBbiYQBfieCWhsQDyiwEnABQEpABDxCyIheB+QjHiTj2gBQjzgBjJCSQj8C3gwE1QgxEzC3D8QC3D8E1AwQEyAxD8i3QDNiUBJj0QBKjzhYjrICTg3QBrEchaEmQhYEnj3C0QiWBsizAqQhmAXhnAAQhGAAhIgLg"); 
var mask_graphics_11 = new cjs.Graphics().p("AgaO/Ql4gkjxkiQjwkiAkl2QARiyBRieQBVijCPh2QDni/EmgRQEogRD8CiIhWCEQjQiHj1APQjzAPi/CeQjwDGgeE3QgdE2DHDwQDGDwE3AdQE2AdDwjGQDCihA6j4QA6j1hmjnICQhAQB8EXhHEpQhGErjrDDQiPB2iwA1QiAAmiFAAQgrAAgpgEg"); 
var mask_graphics_12 = new cjs.Graphics().p("AAdPCQl4gMkCkTQkCkSAMl6QAGiwBHijQBLioCHh+QDajNEngkQEkgkEFCSIhNCJQjYh5jxAeQj0Aei1CqQjjDVgKE2QgJE5DVDjQDVDjE2AKQE5AJDjjVQC4itArj7QAqj4h1jgICMhJQCNEOg0EtQgzEwjeDRQiHB+isBAQiaA5ikAAIgbgBg"); 
var mask_graphics_13 = new cjs.Graphics().p("Ao1LLQkSkBgMl6QgFiwA9inQA/isB/iHQDNjbEkg2QEig2EOCBIhFCOQjfhrjvAtQjyAtipC1QjWDjAKE2QAKE4DjDWQDjDVE3gKQE4gKDVjjQCti4Abj+QAaj6iCjYICGhRQCfEFghEvQggEyjRDfQh/CHinBKQijBIiyAGIghAAQljAAkHj3g"); 
var mask_graphics_14 = new cjs.Graphics().p("AoKLxQkijwgkl4QgQiwAyiqQA1iwB2iPQC/jnEghIQEdhJEWBwIg7CSQjmhdjsA8QjuA9ieC/QjGDwAdE1QAeE3DwDGQDwDHE1gdQE3geDGjwQChjCALj/QALj8iQjPICBhaQCuD7gNExQgNEzjCDrQh2CPijBVQieBRixASQgxAEgvAAQk8AAj9jRg"); 
var mask_graphics_15 = new cjs.Graphics().p("AndMTQkwjdg8l1QgcixAoirQAqizBtiVQCwjzEbhaQEYhbEcBfIgyCVQjrhOjoBLQjpBLiSDIQi3D8AxEzQAxE1D8C3QD8C3EygxQE1gxC3j8QCUjMgFj/QgFj8idjGIB8hiQC9DvAGEyQAHEzi0D4QhsCVieBfQiYBbiwAdQhOAMhMAAQkZAAjxivg"); 
var mask_graphics_16 = new cjs.Graphics().p("AmuMzQk+jKhTlxQgmiuAcitQAfi1BjidQCgj9EVhsQEShsEhBNIgoCYQjwhAjiBaQjlBZiEDSQinEHBEEvQBEExEHCnQEHCnEvhFQExhECnkHQCHjVgVj8QgVj9ipi8IB1hpQDMDjAaEyQAaExikECQhjCciXBoQiSBliuAnQhrAYhnAAQj5AAjiiPg"); 
var mask_graphics_17 = new cjs.Graphics().p("Al+NPQlKi1hplrQgyisASiuQATi3BZiiQCQkGEOh+QEMh9EkA6IgfCaQjxgwjeBoQjfBoh3DZQiWERBXEqQBXEsERCWQERCWEqhXQEshXCWkRQB6jdglj7Qglj7i1ixIBvhwQDaDWAsEwQAuEuiUEMQhZCiiQByQiLBtisAzQiFAmiAAAQjdAAjRhzg"); 
var mask_graphics_18 = new cjs.Graphics().p("AlLNpQlVihiAljQg9ioAHixQAHi2BPinQCAkPEFiOQEEiOEnAnIgVCcQj0ghjXB2QjYB1hpDhQiFEYBqEmQBqEmEaCEQEXCFEnhqQEmhqCEkaQBsjkg1j4Qg1j4i/ilIBnh3QDnDHA/EtQBBEriCEUQhPCoiJB6QiEB3ioA8QieA5iaAAQjAAAi+hZg"); 
var mask_graphics_19 = new cjs.Graphics().p("AkYN/QleiKiWlbQhHikgEixQgEi2BEisQBukXD8ieQD7ieEoAVIgLCdQj1gRjQCDQjQCChbDnQhzEgB9EeQB8EfEhBzQEgBzEfh9QEfh8BykhQBdjrhEj0QhEj0jKiZIBgh9QDzC4BSEoQBTEmhwEdQhECsiBCDQh9B+ikBHQizBOi1AAQimAAiphDg"); 
var mask_graphics_20 = new cjs.Graphics().p("AjiOTQlmh1islQQhRiggQiwQgPi1A5iwQBckdDyiuQDwitEpACIgBCdQj2gCjHCQQjHCQhMDrQhhEnCOEWQCOEXEoBgQEnBgEWiOQEXiOBgkoQBOjwhUjvQhTjwjTiMIBYiCQD+CoBkEjQBmEghfEjQg5Cwh4CKQh1CGieBSQjJBmjQAAQiLAAiRgvg"); 
var mask_graphics_21 = new cjs.Graphics().p("AisOjQlshejBlFQhbiagaivQgci2AuixQBLkjDmi8QDli8EpgRIAICeQj1ANi+CcQi+Ccg9DwQhOEsCfENQCgENEtBNQEsBOENigQENifBNktQA/jzhijrQhjjqjbh+IBPiJQEJCZB2EcQB4EbhMEmQguCzhvCSQhsCNiaBbQjaCBjtAAQhxAAh4geg"); 
var mask_graphics_22 = new cjs.Graphics().p("Ah0OvQlyhGjVk5QhkiUgmitQgmi0AiizQA5knDZjKQDZjKEpgkIASCdQj2AdizCnQizCogvDzQg6EwCvEDQCwECEyA7QEwA6EDiwQECivA6kyQAwj2hyjlQhwjjjjhxIBHiMQERCHCIEUQCJETg5EqQgjC2hmCZQhiCTiUBlQjqCfkLAAQhXAAhcgSg"); 
var mask_graphics_23 = new cjs.Graphics().p("Ag8O4Ql2gvjokqQhtiNgwirQgyixAXi1QAmkqDMjXQDMjYEmg2IAcCbQjzAtipCyQipCygfD2QgnEzDAD3QC/D3E1AnQEzAnD3i/QD3jAAnk1QAgj4h/jdQh/jcjphiIA9iRQEZB2CaELQCaEKgmEtQgYC3hcCfQhZCaiNBtQj4DAksAAQg9AAg9gIg"); 
var mask_graphics_24 = new cjs.Graphics().p("AgEO+Ql3gYj7kbQh1iGg8inQg8iuALi2QATkrC/jkQC9jkEjhIIAlCYQjwA8idC9QidC8gQD2QgTE3DPDqQDODqE1AUQE3AUDqjPQDrjPATk3QAQj6iNjUQiMjTjvhUIA0iUQEgBkCqEAQCrEAgTEvQgMC5hSCkQhQCfiFB2QkDDklQAAQggAAgfgCg"); 
var mask_graphics_25 = new cjs.Graphics().p("ApPK1Qh+h+hFikQhIipAAi5QAAkqCwjvQCvjvEdhbIAvCWQjsBLiRDGQiRDGAAD2QAAE4DdDdQDeDdE1AAQE4AADdjdQDdjdAAk4QAAj6ibjMQiZjKjzhEIAqiXQEmBSC6D1QC6D1AAEvQAAC5hICpQhFCkh+B+QkLELl5AAQl2AAkMkLg"); 
var mask_graphics_26 = new cjs.Graphics().p("AomLcQiFh2hQifQhSikgMi5QgSkpCgj6QCgj6EXhsIA4CTQjnBZiEDPQiEDPAPD1QAUE3DqDPQDrDPE1gUQE3gUDOjqQDPjqgUk3QgPj6injCQimi/j3g1IAhiaQEqA/DJDpQDJDpAUExQALC2g9CuQg7Cnh1CGQj6Ebl4AYQghACggAAQlOAAkDjkg"); 
var mask_graphics_27 = new cjs.Graphics().p("An6MAQiNhthaiaQhcifgXi3QglknCQkEQCQkDEPh+IBCCPQjhBoh3DXQh3DWAfD0QAnE1D3DAQD3C/EzgnQE1gnDAj3QC/j3gnkzQgfj6izi3Qixi1j6glIAXibQEuAsDXDcQDXDbAnEwQAXC1gyCxQgwCrhuCNQjnEql2AvQg/AIg9AAQkqAAj4jAg"); 
var mask_graphics_28 = new cjs.Graphics().p("AnNMiQiThlhjiTQhmiZgii2Qg5kkCAkMQB/kMEIiPIBKCLQjaB2hpDeQhpDdAuDyQA6EyEDCvQECCwEwg6QEyg7CwkCQCwkDg7kwQgvj4i9iqQi9iqj8gWIAOicQEwAZDkDOQDlDOA5EsQAjCzgnC0QgmCuhjCTQjVE5lyBGQhcAShZAAQkJAAjrifg"); 
var mask_graphics_29 = new cjs.Graphics().p("AmdNAQiZhbhsiNQhwiSguizQhKkgBvkUQBukTD+ifIBTCGQjSCDhcDkQhbDkA+DuQBNEtENCgQENCfEshOQEuhNCfkNQCfkNhNksQg/j1jIieQjHiej9gFIAEieQExAHDxC/QDxC/BMEoQAuCxgbC2QgbCvhaCaQjAFFluBeQh3Aeh0AAQjqAAjbiBg"); 
var mask_graphics_30 = new cjs.Graphics().p("AlrNcQifhSh1iGQh4iKg5iwQhdkdBekYQBckaDziuIBcCAQjKCQhMDpQhNDnBNDsQBgEoEWCOQEXCOEmhgQEohgCOkXQCOkWhgknQhOjwjSiRQjQiRj8AKIgHidQExgND8CwQD9CvBfEjQA5CwgQC1QgQCwhQCgQisFQlmB1QiRAviOAAQjOAAjIhmg"); 
var mask_graphics_31 = new cjs.Graphics().p("Ak4N0QikhHh8h+QiBiDhEisQhukXBLkdQBLkfDni9IBkB6QjACcg+DuQg+DrBbDnQBzEhEfB9QEdB8EhhzQEihzB8kfQB8kehzkgQhdjrjaiEQjZiDj5AaIgQidQEtggEHCgQEHCfBxEcQBECsgEC2QgFCxhGCkQiWFblfCKQioBDioAAQizAAi0hOg"); 
var mask_graphics_32 = new cjs.Graphics().p("AkDOKQiog9iEh3QiJh6hPinQh/kQA5khQA4kjDcjMIBqB0Qi1CogvDxQgvDvBqDgQCEEaEmBqQEkBqEaiFQEaiEBqkmQBqkmiFkYQhrjljih2Qjhh1j3AqIgaicQEqgzERCPQEQCOCDEVQBOCnAIC2QAGCxg8CoQiAFjlVChQi9BZjDAAQiYAAieg4g"); 
var mask_graphics_33 = new cjs.Graphics().p("AjNOcQirgziMhtQiQhyhZiiQiRkHAnkkQAmkmDPjZIBxBtQirCzgfDzQggDyB4DZQCWEREsBXQEqBXERiWQERiWBXksQBXkqiWkRQh5jdjphoQjohnj0A5IgkiZQEnhGEZB+QEZB8CTEMQBZCiATC3QASCvgxCrQhqFrlKC1QjRBzjeAAQh/AAiFgmg"); 
var mask_graphics_34 = new cjs.Graphics().p("AiWOqQiugniShlQiXhohkicQigj9AUknQAUkoDAjlIB4BmQifC9gQD0QgRD0CFDRQCnEHExBFQEvBEEHinQEHinBEkxQBFkvinkHQiIjVjvhZQjthZjwBJIguiXQEihYEhBsQEgBrCkECQBjCcAeC1QAdCtgnCuQhSFxk+DKQjiCPj8AAQhlAAhqgYg"); 
var mask_graphics_35 = new cjs.Graphics().p("AheO2QixgdiYhbQidhfhtiVQiwjzACkpQAAkmCyjxIB/BeQiUDHAADzQgBD2CSDIQC3D8E0AxQEzAxD8i3QD8i3Axk1QAxkzi3j8QiVjMj0hKQjzhJjrBYIg2iUQEchqEmBZQEmBZC0D3QBtCVApCzQAoCrgbCxQg7F1kxDdQjxCvkcAAQhJAAhOgMg"); 
var mask_graphics_36 = new cjs.Graphics().p("AgmO+QiygSidhRQijhVh2iOQi/jngRkpQgSkmCij7ICEBVQiGDQAPDzQAOD1CeC/QDHDwE3AeQE1AdDwjGQDwjHAdk3QAek1jHjwQihjDj4g6Qj1g6jnBmIhAiPQEXh9EpBHQEsBGDDDrQB1CPA1CwQAzCqgRCwQgjF3kjDxQj9DRk+AAQgvAAgugEg"); 
var mask_graphics_37 = new cjs.Graphics().p("AARPCQixgGiihIQiohKh/iHQjNjagkknQgkklCSkFICJBNQh4DYAdDyQAeD0CqC0QDVDjE3AKQE4AKDjjVQDjjVAKk5QAKk2jVjjQiti4j8grQj4gqjgB1IhJiMQEPiNEtAzQEvAzDRDfQB/CHBACsQA9CngFCwQgMF5kTEDQkHD2llAAIggAAg"); 
var mask_graphics_38 = new cjs.Graphics().p("AkOOKQisg/iHh/QjajNg2kkQg3kiCBkOICOBFQhrDfAtDvQAtDyC1CpQDjDVE3gJQE4gKDVjjQDVjjgJk5QgKk2jjjVQi4itj+gbQj6gajZCCIhRiHQEFieEwAhQEyAgDeDRQCHB+BLCoQBHCjAGCwQAMF6kCESQkCETl5AMIgcABQiiAAiag5g"); 
var mask_graphics_39 = new cjs.Graphics().p("AjYOdQiwg1iOh2Qjni/hJkgQhIkdBwkWICRA8QhcDkA8DtQA8DuC/CeQDwDGE1gdQE3gdDHjwQDGjwgdk2Qgdk3jwjGQjDihj/gLQj7gLjQCQIhZiBQD6iuExANQEzANDsDCQCOB2BVCjQBSCeARCyQAkF1jxEjQjwEil4AkQgrAEgrAAQiDAAiBgmg"); 
var mask_graphics_40 = new cjs.Graphics().p("AihOsQizgqiWhsQjyixhbkaQhakbBekaICVAyQhODpBLDqQBLDqDJCRQD8C3EygwQE1gxC3j8QC3j8gxkzQgwk1j8i3QjNiUj/AFQj7AFjHCdIhhh7QDvi+ExgGQE0gHD3C0QCWBsBfCeQBbCYAcCwQA7FzjdExQjeExl1A7QhIALhHAAQhmAAhmgXg"); 
var mask_graphics_41 = new cjs.Graphics().p("AhqO4Qi1gfichjQj9ighskVQhskUBMkfICYAoQg/DuBZDkQBaDkDRCFQEHCnEvhEQExhECnkHQCnkHhEkvQhEkxkHinQjViHj9AVQj8AVi8CpIhph1QDijMEzgaQEwgaECCkQCcBjBpCXQBkCSAoCuQBSFvjKE+QjKE+lwBTQhkAWhkAAQhJAAhLgMg"); 
var mask_graphics_42 = new cjs.Graphics().p("AgyPAQi2gTiihZQkHiRh9kNQh9kNA6kjICaAfQgwDxBnDeQBoDeDZB4QERCWErhXQEshXCWkRQCWkRhXkrQhYkskRiWQjdh5j6AlQj7AlixC0IhwhuQDVjaEwgtQEugtEMCTQCiBZByCRQBuCLAyCrQBpFpi1FKQi2FKlqBqQh/AkiBAAQgsAAgvgEg"); 
var mask_graphics_43 = new cjs.Graphics().p("AAFPEQi1gHiohPQkPh/iOkFQiOkFAokmICcAVQghDzB1DYQB2DXDgBqQEYCEEmhpQEmhqCFkaQCEkahpkkQhqkmkaiFQjlhrj3A1Qj4A0imDAIh2hoQDHjmEthAQEqhAEVCCQCnBPB7CIQB2CFA9CnQCAFiihFVQigFUljCBQiYA2ifAAIgjgBg"); 
var mask_graphics_44 = new cjs.Graphics().p("AkkOFQkWhuiej8Qiej6AVkpICdAJQgSD3CDDQQCDDQDmBbQEgBzEfh8QEfh9BykhQBzkih8kdQh8kfkihyQjrhdjzBEQj1BFiZDJIh9hgQC5jzEohSQEmhTEcBwQCsBFCDCAQB+B9BICkQCWFYiLFfQiLFelbCWQikBHixAEIgVAAQirAAiihAg"); 
var mask_graphics_45 = new cjs.Graphics().p("AjuOZQkdhcitjyQiujwACkrICeABQgCD4CQDHQCPDHDsBMQEmBhEXiOQEWiOBgkoQBhkniOkWQiOkXkohgQjxhOjvBUQjvBTiMDTIiDhYQCpj+EihkQEhhmEiBfQCwA5CLB4QCGB1BRCeQCsFRh1FkQh0FmlRCsQifBRixAQQgnADgnAAQiNAAiKgtg"); 
var mask_graphics_46 = new cjs.Graphics().p("Ai3OqQkihLi8jmQi8jlgRkrICdgIQAOD3CcC+QCbC+DwA9QEsBOENifQENigBOktQBNksifkNQifkNkuhNQjyg/jsBiQjpBjh/DbIiIhPQCYkJEch2QEbh4EmBMQCzAuCTBvQCMBsBcCaQDAFFheFrQheFslFDBQiaBbivAaQhDALhDAAQhwAAhxgdg"); 
var mask_graphics_47 = new cjs.Graphics().p("Ah/O3Qkmg5jKjZQjLjZgjkpICcgSQAeD2CnCzQCnC0D0AuQEwA6ECivQEDiwA6kyQA7kwiwkCQiwkDkyg6Qj2gwjkByQjkBxhwDiIiNhGQCIkSETiIQETiJErA5QC1AjCZBmQCUBjBkCTQDUE4hGFxQhHFxk4DVQiUBkitAmQhfAUhfAAQhUAAhWgQg"); 
var mask_graphics_48 = new cjs.Graphics().p("AhGPAQkpgljYjNQjXjLg2knICbgcQAsD0CzCoQCyCpD2AfQEzAnD3jAQD3i/Ank1QAnkzjAj3Qi/j3k1gnQj5ggjdCAQjbB/hjDoIiRg9QB3kZEKiZQEKibEtAnQC4AXCfBcQCZBZBuCNQDnErgvF0QgvF1krDoQiNBtirAxQh4Aih8AAQg4AAg6gIg"); 
var mask_graphics_49 = new cjs.Graphics().p("AgNPGQkrgTjki+Qjki+hIkiICZgmQA8DwC8CdQC9CdD3AQQE1AUDrjPQDqjPAUk3QATk1jPjqQjOjqk3gUQj6gQjVCNQjTCNhTDuIiVg0QBkkgEBiqQEAiqEvATQC4AMClBSQCeBPB3CGQD5EbgXF2QgYF4kbD6QiGB2ioA7QiRAziaAAQgdAAgcgCg"); 
var mask_graphics_50 = new cjs.Graphics().p("AnuMZQjwivhakeICWgvQBLDsDGCRQDGCRD2AAQE3AADdjdQDdjdAAk3QAAk2jdjdQjdjdk3AAQj7AAjLCaQjKCahEDzIiYgrQBSklD1i6QD1i6EwAAQC5AACpBHQCjBGB/B+QELELAAF3QAAF4kLEMQh/B+ijBFQipBHi5AAQkqAAjvivg"); 
var mask_graphics_51 = new cjs.Graphics().p("Am/M6Qj6ighskXICSg5QBaDnDPCEQDOCFD2gQQE3gTDOjrQDPjqgTk3QgUk1jqjPQjrjPk1AUQj8AQjBCmQjACmg1D3IiaghQBAkqDpjJQDojJExgTQC3gMCtA9QCoA7CGB2QEbD6AYF2QAXF4j5EbQh3CGieBQQilBSi4ALQggACgfAAQkFAAjfiPg"); 
var mask_graphics_52 = new cjs.Graphics().p("AmONXQkEiPh9kQICPhCQBnDhDXB3QDXB3D0gfQE1gnC/j3QDAj3gnkzQgnk1j3jAQj3i/kzAnQj7Afi2CzQi1CxglD6IicgXQAtkuDcjXQDbjXEvgmQC2gYCwAyQCrAxCNBtQErDnAvF2QAvF0jnErQhuCMiZBaQifBci4AXQg9AIg8AAQjjAAjOhzg"); 
var mask_graphics_53 = new cjs.Graphics().p("AlcNyQkMh/iOkIICLhKQB1DaDeBpQDeBpDxguQEyg7CwkCQCwkDg7kwQg6kxkDiwQkCiwkwA7Qj4AvirC9QiqC9gVD8IidgOQAakwDOjkQDNjlEsg5QC0gjC0AnQCtAlCUBkQE4DVBHFyQBGFwjUE5QhkCTiUBjQiZBmi1AiQhaAShYAAQjFAAi6hZg"); 
var mask_graphics_54 = new cjs.Graphics().p("AknOJQkUhuiej+ICFhTQCDDSDkBbQDkBbDug9QEuhOCfkNQCfkNhNkrQhOkukNifQkNifksBNQj0A/ifDIQidDHgGD6IidgDQAGkvDAjxQC+jxEohMQCzguC0AbQCwAbCZBaQFFDABeFtQBeFrjAFGQhcCZiMBsQiSBvi0AuQh0AehzAAQioAAikhCg"); 
var mask_graphics_55 = new cjs.Graphics().p("AjyOdQkZhcivj0ICBhbQCQDJDpBNQDnBNDshNQEohgCOkXQCOkWhhkmQhgkpkWiOQkXiNkmBgQjwBOiSDRQiRDRALD6IieAGQgMkuCwj9QCvj8EihfQCwg5C1AQQCxAPCfBRQFRCrB0FnQB0FkirFRQhRCfiGB0QiLB5iwA5QiOAuiNAAQiMAAiOgvg"); 
var mask_graphics_56 = new cjs.Graphics().p("Ai7OuQkfhLi9joIB6hjQCdDADtA+QDsA+DmhcQEihyB8kfQB8kfhzkfQhykikfh8Qkfh8kfByQjrBdiFDaQiDDZAaD6IicAQQggktCgkHQCekIEdhwQCshEC1AEQCyAFCkBGQFaCWCLFfQCKFciVFbQhICjh+B9QiDCBisBEQilBBipAAQhxAAh1geg"); 
var mask_graphics_57 = new cjs.Graphics().p("AiDO7Qkjg4jLjcIB0hrQCoC2DxAvQDvAvDghqQEaiEBqkmQBqkniFkXQiFkakmhqQkmhqkYCFQjkBrh2DiQh2DhAqD3IibAaQgzkrCPkQQCOkREUiCQCohOC1gIQCygGCoA8QFjB/CgFWQChFSiAFkQg9Coh2CEQh7CJinBPQi7BYjFAAQhWAAhbgSg"); 
var mask_graphics_58 = new cjs.Graphics().p("AhKPFQkmgmjYjPIBshxQC0CrDzAfQDxAgDah4QERiWBXksQBXkqiWkRQiWkRkshXQkqhXkRCWQjeB5hoDpQhnDoA6D0IiZAkQhGknB9kZQB9kZEMiTQCihZC3gTQCugSCsAyQFqBpC2FKQC1FKhpFpQgyCrhuCMQhyCQiiBZQjPByjjAAQg6AAg/gIg"); 
var mask_graphics_59 = new cjs.Graphics().p("AgQPLQkogTjljBIBlh4QC+CfD1AQQDzARDRiFQEHinBEkxQBEkvinkHQinkHkxhEQkvhEkHCmQjVCIhZDvQhYDsBJDyIiXAtQhYkkBrkeQBrkhECijQCchkC1geQCtgdCvAnQFwBSDKE/QDKE9hSFvQgnCuhlCTQhpCXicBjQjhCOkDAAQggAAgfgCg"); 
var mask_graphics_60 = new cjs.Graphics().p("AAoPOQkngBjxiyIBeh+QDHCTD0ABQD1ABDJiSQD8i3Axk1QAwkzi3j8Qi3j8k0gxQkzgwj8C3QjMCUhKD0QhJDxBXDtIiTA3QhrkeBaklQBYkmD3i0QCWhsCzgqQCrgoCwAcQF1A7DeExQDdEwg7F0QgcCwhbCYQhfCdiWBtQjwCvkmAAIgFAAg"); 
var mask_graphics_61 = new cjs.Graphics().p("AnAM8IBWiEQDQCGDzgOQD1gPC/ieQDwjGAdk4QAek1jHjwQjHjwk3gdQk1gejwDHQjCChg7D4Qg6D1BnDnIiQBAQh8kXBHkpQBFksDsjCQCOh2Cwg1QCqgzCwARQF4AjDwEjQDwEigjF2QgRCyhSCeQhUCjiPB1QjnC/koASQgdABgdAAQkFAAjjiSg"); 
var mask_graphics_62 = new cjs.Graphics().p("AmONaIBNiJQDYB5DygeQDzgeC1iqQDjjVAKk5QAKk2jWjjQjVjjk4gKQk3gKjjDVQi4CtgrD8QgqD4B1DgIiMBJQiNkPA0ktQAzkvDejRQCHh/CthAQCmg9CxAFQF5AMECETQECETgMF3QgGCzhHCiQhLCoiGB/QjbDNknAkQg6AHg5AAQjlAAjRh1g"); 
var mask_graphics_63 = new cjs.Graphics().p("AlbN0IBEiNQDgBrDvgtQDxguCqi0QDVjjgKk5QgKk2jjjVQjjjWk4AKQk3AKjVDjQitC4gbD+QgaD6CDDYIiHBSQiekFAhkwQAfkyDRjfQB/iGCohLQCihHCxgGQF5gMETECQESECANF3QAFCzg9CmQhACth/CHQjNDakkA2QhWAQhVAAQjGAAi+hbg"); 
var mask_graphics_64 = new cjs.Graphics().p("AkmOMIA7iSQDmBdDrg8QDug8Cei/QDHjwgdk2Qgek3jwjGQjwjHk1AeQk3AdjHDwQihDCgLD9QgKD+CQDPIiBBaQivj6AOk0QAMkxDDjrQB2iPCjhVQCdhRCygRQF2gkEiDwQEiDwAlF5QAQCvgzCqQg0Cwh2CPQi/DnkgBIQhyAdhvAAQiqAAiohEg"); 
var mask_graphics_65 = new cjs.Graphics().p("AjwOgIAyiVQDpBODphLQDqhLCSjJQC3j8gxkyQgxk1j8i3Qj8i3kzAxQk0Axi3D8QiVDMAFD9QAGD+CdDGIh8BhQi9jvgGkzQgHkyCzj3QBtiVCdhfQCYhcCxgcQFzg7ExDeQEwDdA8F1QAbCugoCtQgpCzhtCWQiwDykbBbQiKAsiLAAQiOAAiRgwg"); 
var mask_graphics_66 = new cjs.Graphics().p("Ai5OxIApiYQDtA/DkhZQDlhaCFjRQCnkHhEkvQhFkxkHinQkHinkvBEQkxBEinEHQiHDVAVD9QAWD8CpC8Ih2BpQjMjigZkzQgakwCkkCQBjicCXhpQCShlCugnQFuhSE/DKQE+DKBSFwQAnCtgdCvQgeC1hjCcQihD9kVBsQihA/inAAQhzAAh4gfg"); 
var mask_graphics_67 = new cjs.Graphics().p("AiBO+IAfiaQDxAwDfhoQDehnB3jaQCWkRhXkqQhXkskRiWQkRiWkqBXQksBXiWERQh6DeAlD6QAlD7C1CxIhvBwQjajVgskxQgtkuCTkMQBZiiCQhxQCMhuCrgyQFohqFLC2QFKC1BqFrQAxCsgSCuQgTC3hZCiQiQEHkNB9Qi4BWjDAAQhZAAhdgTg"); 
var mask_graphics_68 = new cjs.Graphics().p("AhIPIIAVicQD0AhDXh2QDYh1BpjgQCFkahqkkQhqkmkaiFQkaiFkkBqQkmBqiEEaQhsDkA1D4QA1D4C/ClIhnB3QjnjHg/ktQhBkrCCkUQBPinCJh7QCEh2Cog9QFhiAFVChQFVCgCAFjQA8CogGCwQgIC3hOCoQiAEPkFCOQjLBvjiAAQg9AAhBgJg"); 
var mask_graphics_69 = new cjs.Graphics().p("AgOPOIALidQD1ASDQiDQDPiDBbjmQBzkih8kdQh8kfkihyQkhhzkdB8QkfB8hzEiQhdDoBFD2QBED1DJCZIhfB9Qjzi5hSkoQhUkoBxkaQBEisCBiDQB9h+CjhIQFZiWFeCLQFeCLCXFaQBGCkAFCwQAEC4hECrQhvEXj7CeQjeCMkCAAQgjAAgggDg"); 
var mask_graphics_70 = new cjs.Graphics().p("AApPRIACieQD3ACDHiPQDHiQBNjsQBgkoiOkUQiOkXkohgQkmhgkXCNQkWCOhgEpQhODuBTDxQBUDvDSCMIhXCDQj+iphlkiQhlkiBekhQA5iwB4iLQB1iGCfhRQFQirFlB0QFmB0CsFRQBQCfAQCxQAQC1g5CwQhdEdjxCtQjuCsknAAIgHAAg"); 
var mask_graphics_71 = new cjs.Graphics().p("ABbMzQD3gOC9icQC+ibA+jwQBNksifkNQifkNkuhOQkrhNkNCfQkOCfhNEuQg/DyBjDsQBiDpDbB/IhPCIQkIiYh3kcQh3kbBMkmQAuizBviTQBsiMCZhcQFFjAFrBeQFtBeDBFFQBaCaAbCvQAbC0guCzQhKEijmC8QjlC8krARg"); 
var mask_graphics_72 = new cjs.Graphics().p("ACKMxQD2gdC0inQCzioAvjzQA6kwiwkCQivkDkyg6Qkwg7kDCwQkCCwg7EyQgvD2BxDkQBxDjDiBxIhGCNQkRiIiJkUQiJkTA6kqQAii2BmiYQBjiUCThkQE5jVFwBHQFyBHDVE4QBkCUAlCtQAnCygjC1Qg4EnjaDKQjYDKkqAkg"); 
var mask_graphics_73 = new cjs.Graphics().p("AC6MvQDzgtCpiyQCoiyAgj2QAnkzjAj3QjAj3k1gnQkzgnj3C/Qj3DAgnE1QgfD4B/DdQB/DcDpBiIg9CRQkah2iZkLQiakKAmktQAXi4BdieQBZiaCNhtQEqjoF0AvQF2AwDoEqQBtCNAwCrQAyCvgXC3QgmEqjMDXQjMDYkmA2g"); 
var mask_graphics_74 = new cjs.Graphics().p("ADpMrQDwg8Cdi9QCdi8AQj3QATk1jPjrQjOjqk3gUQk1gTjqDOQjrDPgTE1QgQD8CNDUQCMDUDvBTIg0CVQkghliqkAQirkAATkxQAMi3BSikQBQifCFh2QEbj6F3AYQF3AYD7EbQB1CGA8CnQA8CugLC2QgTEsi/DjQi9DkkjBJg"); 
var mask_graphics_75 = new cjs.Graphics().p("AqgJ5Qi6j1AAkxQAAi3BIipQBFikB+h+QELkLF3AAQF5AAELELQB+B+BGCkQBHCpAAC3QAAEriwDwQivDvkdBbIgviXQDshKCRjGQCRjGAAj4QAAk2jdjdQjdjdk4AAQk1AAjdDdQjdDdAAE2QAAD8CaDLQCZDKDzBFIgqCXQkmhSi6j1g"); 
var mask_graphics_76 = new cjs.Graphics().p("Ap7KeQjJjogUkxQgLi3A9itQA7inB1iGQD6kcF4gXQF2gYEcD6QCFB2BQCfQBSCkAMC3QASErigD6QigD6kXBsIg4iTQDnhaCEjOQCEjPgPj3QgUk1jqjPQjrjPk3AUQk1ATjODrQjPDqAUE1QAPD8CnDBQCmDAD3A1IghCaQkrg/jIjqg"); 
var mask_graphics_77 = new cjs.Graphics().p("ApULDQjYjbgmkvQgXi4AyiuQAwirBtiNQDokrF2gvQFzgvErDnQCNBuBZCZQBcCfAYC4QAlEniQEDQiQEEkQB9IhBiPQDhhnB3jXQB3jXggj0Qgnk1j3i/Qj3jAkzAnQk1Ani/D3QjAD3AnEzQAgD7CyC2QCyC1D6AlIgXCcQkugsjXjdg"); 
var mask_graphics_78 = new cjs.Graphics().p("AorLoQjkjOg6ksQgii2AmixQAmiuBkiUQDUk4FyhGQFwhHE5DUQCTBlBjCTQBmCZAjC2QA4EkiAEMQh/EMkHCOIhLiKQDah2BqjeQBpjdgvjyQg6kykDivQkCiwkwA6QkyA7iwECQivEDA6EwQAvD4C+CqQC8CqD8AVIgNCdQkwgZjljOg"); 
var mask_graphics_79 = new cjs.Graphics().p("An/MLQjxi/hMkoQguizAbi0QAbivBbiaQDAlFFtheQFrhdFFDAQCaBbBrCNQBwCSAuCzQBKEghuEUQhuETj+CfIhTiGQDSiDBbjkQBbjkg+juQhNktkNifQkNigksBOQkuBNifENQifENBOEsQA+D1DICeQDHCeD7AFIgECeQkvgHjxi/g"); 
var mask_graphics_80 = new cjs.Graphics().p("AnQMtQj9ivhekjQg6iwAQi1QAQixBQifQCslQFmh1QFkh0FRCrQCfBRB1CGQB4CLA5CwQBdEbhdEaQhdEajzCuIhciAQDKiQBNjqQBMjphMjpQhhkpkWiOQkXiNkmBgQkoBgiOEXQiOEUBgEoQBODwDSCSQDQCRD7gLIAGCeIgpABQkXAAjrikg"); 
var mask_graphics_81 = new cjs.Graphics().p("AmgNLQkHiehxkdQhEisAFi3QAEiwBHikQCVlaFfiLQFciKFbCVQCkBIB9B+QCACDBECsQBvEUhMEgQhKEfjoC9Ihjh6QDAidA9jtQA+juhbjkQhzkikfh8Qkeh8kgBzQkiByh8EfQh8EdBzEiQBdDqDaCFQDZCDD5gaIAQCcQgyAGgyAAQj1AAjbiGg"); 
var mask_graphics_82 = new cjs.Graphics().p("AltNnQkRiOiCkUQhPiogHi3QgHiwA8ioQCAljFVigQFTihFjCAQCoA9CFB2QCIB7BPCnQCAEPg5EhQg5EkjbDLIhrh0QC2ioAujxQAvjvhpjgQiFkakmhqQkmhqkYCFQkaCFhqEmQhpEkCEEaQBsDkDiB2QDhB2D3gqIAaCbQhPANhNAAQjXAAjIhpg"); 
var mask_graphics_83 = new cjs.Graphics().p("Ak5OAQkZh9iUkMQhZiigTi3QgRiuAxisQBplqFLi2QFKi1FpBpQCrAyCMBuQCQByBZCiQCQEGgnElQgmEmjODYIhyhsQCri0AgjzQAfjxh3jaQiWkRkshXQkqhXkRCWQkRCWhYEsQhXEqCWERQB6DeDpBoQDoBnD0g6IAjCZQhqAZhoAAQi5AAi0hQg"); 
var mask_graphics_84 = new cjs.Graphics().p("AkEOVQkghrikkCQhjicgei1QgdivAmitQBTlwE+jKQE+jKFvBSQCuAoCSBkQCXBpBjCcQChD9gUEmQgUEojADmIh5hmQCgi+AQj0QAQjziFjSQinkHkxhEQkvhEkHCnQkHCnhEExQhEEvCnEHQCHDVDvBZQDsBYDyhIIAtCWQiDAoiDAAQieAAieg7g"); 
var mask_graphics_85 = new cjs.Graphics().p("AjNOnQknhYizj4QhtiVgqizQgnitAbivQA7l0ExjeQExjdFzA6QCwAdCZBbQCdBfBtCVQCwDzgCEnQgBEoixDxIh/hdQCTjIABj1QABjziSjJQi3j8k0gxQkzgxj8C3Qj8C3gxE1QgxEzC3D8QCVDMD0BKQDxBJDshYIA3CUQibA6ieAAQiDAAiGgpg"); 
var mask_graphics_86 = new cjs.Graphics().p("AiWO2QkrhGjDjsQh2iOg0iwQgziqAQiwQAkl4EijwQEijwF3AjQCxARCeBSQCjBVB2COQC/DnAREmQASEpiiD7IiEhWQCGjQgPj1QgOjziei/QjHjwk3gdQk1gdjwDGQjwDHgeE3QgdE1DGDwQChDDD5A6QD1A6DnhnIA/CQQixBPi6AAQhoAAhtgZg"); 
var mask_graphics_87 = new cjs.Graphics().p("AhdPBQkwgzjRjfQh+iHhAisQg9inAFiyQAMl3ETkCQESkCF4ALQCyAGCjBIQCoBKB+CHQDNDbAkEmQAkEliSEFIiJhNQB5jYgejyQgejzipi1QjWjjk4gKQk2gKjkDVQjjDWgJE2QgKE4DVDjQCtC4D7ArQD4AqDhh0IBICLQjGBojXAAQhNAAhRgOg"); 
var mask_graphics_88 = new cjs.Graphics().p("AgkPIQkygfjfjRQiHh/hKioQhIiigGizQgMl3ECkTQECkSF4gNQCygFCnA9QCsBACHB+QDbDOA2EkQA2EhiBEOIiOhEQBrjggtjvQgtjxi1iqQjjjVk4AKQk3AKjVDjQjVDjAKE2QAKE5DjDVQC4CtD9AaQD7AbDYiDIBRCHQjYCDj3AAQgzAAgygGg"); 
var mask_graphics_89 = new cjs.Graphics().p("AATPMQkxgMjsjDQiOh2hVijQhSidgRiyQgjl2DwkiQDwkiF4gkQCwgRCqAzQCwA1COB1QDnDABJEgQBJEdhxEVIiRg7QBcjlg8jsQg8jui/ieQjwjHk1AeQk3AdjHDwQjGDwAdE1QAdE3DwDHQDDChD9ALQD9AKDQiQIBZCCQjoChkaAAIgrgBg"); 
var mask_graphics_90 = new cjs.Graphics().p("AncMgQiWhthfidQhbiYgcixQg8lyDekxQDdkxF2g8QCugbCtAoQCzApCVBtQDzCwBaEbQBbEYheEcIiWgyQBPjrhLjnQhMjqjIiSQj8i3kzAxQk0Axi4D8Qi3D8AxEzQAxE0D8C4QDMCUD9gFQD+gGDGicIBiB7QjvC+k0AGIgWAAQkkAAjuitg"); 
var mask_graphics_91 = new cjs.Graphics().p("AmtM/QichjhoiXQhliSgniuQhTluDKk/QDKk+FxhSQCsgnCvAdQC1AeCcBjQD+ChBrEUQBtEThNEhIiYgpQBAjvhajjQhajkjRiFQkHinkvBEQkxBFinEHQinEHBEEvQBFExEHCnQDVCHD8gVQD9gWC8ipIBpB2QjjDMkyAZQgrAEgpAAQkAAAjfiOg"); 
var mask_graphics_92 = new cjs.Graphics().p("Al7NcQiihZhyiQQhuiMgyirQhplpC2lKQC1lKFrhqQCrgxCvARQC3ATCiBZQEGCRB9ENQB+ENg6EjIibgfQAxjwhojfQhojejZh4QkRiWkqBXQksBYiWERQiXERBYEqQBXEsERCWQDdB6D6gmQD7glCxi0IBxBuQjWDakwAtQhIAKhFAAQjgAAjNhwg"); 
var mask_graphics_93 = new cjs.Graphics().p("AlIN1QinhPh7iIQh2iFg9ioQiAljChlTQCglVFkiAQCog8CvAHQC4AHCnBPQEPB/COEFQCOEFgoEmIicgVQAhjzh1jYQh2jXjghqQkaiEkkBpQkmBqiFEaQiEEYBqEmQBqEmEZCFQDlBrD3g1QD5g1Cli/IB3BnQjIDnksBAQhkAVhhAAQjCAAi5hXg"); 
var mask_graphics_94 = new cjs.Graphics().p("AkTOLQishEiDiBQh+h8hHikQiWlaCLldQCKleFbiXQCkhGCvgFQC4gECsBEQEXBvCdD7QCfD7gVEpIidgMQARj1iDjPQiDjQjmhbQkihzkcB8QkfB8hzEiQhzEfB8EfQB9EfEhBzQDpBdD2hFQD0hECZjJIB9BfQi4DzkpBTQh9Ajh8AAQilAAikhBg"); 
var mask_graphics_95 = new cjs.Graphics().p("AjdOeQivg5iLh4QiGh1hSifQirlQB1llQB0lmFQisQCghQCwgQQC1gQCwA5QEdBdCuDxQCtDxgCEpIidgCQACj1iQjHQiQjHjrhNQknhgkWCOQkWCOhhEoQhgEmCOEXQCOEWEoBgQDuBODxhTQDwhUCMjSICDBXQipD+kjBlQiWA0iXAAQiKAAiMgtg"); 
var mask_graphics_96 = new cjs.Graphics().p("AilOtQizguiShvQiNhshbiZQjAlFBdlrQBeltFFjBQCahaCvgbQC0gbCzAuQEjBKC8DmQC8DlAREpIieAIQgNj1ici9Qici+jwg+QkshNkNCfQkNCfhNEuQhOErCgENQCfEOEtBNQDzA/DrhjQDqhiB+jbICJBPQiZEIkcB3QitBJiyAAQhvAAhzgeg"); 
var mask_graphics_97 = new cjs.Graphics().p("AhqO5Qi2giiZhmQiThjhliTQjUk5BHlwQBGlyE4jVQCUhjCugmQCxgnC2AjQEmA4DLDaQDKDYAjEqIicASQgdj2ioi0Qinizj0guQkvg7kDCwQkCCwg7EyQg6EwCvECQCwEDEyA6QD2AvDlhxQDjhxBwjiICNBGQiHERkUCJQjCBgjPAAQhUAAhYgRg"); 
var mask_graphics_98 = new cjs.Graphics().p("AguPCQi3gXifhcQiZhahuiMQjnkrAvl0QAvl1EqjoQCOhtCrgxQCwgyC2AYQEpAlDYDNQDXDLA2EnIibAcQgsj0izipQiyioj2gfQkzgnj3C/Qj3DAgnE1QgnEzDAD3QC/D3E1AnQD5AgDdiAQDbh/BijpICRA+Qh2EZkKCZQjVB8jtAAQg7AAg7gIg"); 
var mask_graphics_99 = new cjs.Graphics().p("AAQPHQi3gMikhSQifhPh2iGQj6kbAYl4QAXl2Ebj6QCHh2Cng7QCtg9C3AMQErATDkC+QDkC+BIEiIiZAmQg7jwi9idQi9idj3gQQk1gUjqDPQjrDPgTE1QgUE3DPDqQDPDqE0AUQD8AQDViNQDTiNBUjuICUA0QhkEgkBCqQjmCZkNAAQgfAAgegCg"); 
var mask_graphics_100 = new cjs.Graphics().p("AkOOBQijhFh/h+QkLkMAAl5QAAl2ELkLQB/h/CjhFQCphHC3AAQErAADuCxQDuCxBbEdIiSAsQhKjsjHiRQjHiRj4AAQk1AAjdDdQjdDdAAE1QAAE4DdDdQDdDdE1AAQEEAAC6h9QDDiDBDjuICWAyQhREfjsCgQjkCbk5gBQi3AAiphHg"); 

this.timeline.addTween(cjs.Tween.get(mask).to({graphics:mask_graphics_0,x:95.4,y:96.9}).wait(1).to({graphics:mask_graphics_1,x:96.1,y:96.8}).wait(1).to({graphics:mask_graphics_2,x:96.6,y:96.8}).wait(1).to({graphics:mask_graphics_3,x:96.9,y:96.7}).wait(1).to({graphics:mask_graphics_4,x:97.1,y:96.7}).wait(1).to({graphics:mask_graphics_5,x:97.1,y:96.6}).wait(1).to({graphics:mask_graphics_6,x:97.1,y:96.6}).wait(1).to({graphics:mask_graphics_7,x:97,y:96.5}).wait(1).to({graphics:mask_graphics_8,x:97,y:96.5}).wait(1).to({graphics:mask_graphics_9,x:97,y:96.4}).wait(1).to({graphics:mask_graphics_10,x:97,y:96.4}).wait(1).to({graphics:mask_graphics_11,x:96.9,y:96.3}).wait(1).to({graphics:mask_graphics_12,x:96.9,y:96.3}).wait(1).to({graphics:mask_graphics_13,x:96.8,y:96.3}).wait(1).to({graphics:mask_graphics_14,x:96.7,y:96.3}).wait(1).to({graphics:mask_graphics_15,x:96.7,y:96.3}).wait(1).to({graphics:mask_graphics_16,x:96.7,y:96.3}).wait(1).to({graphics:mask_graphics_17,x:96.6,y:96.3}).wait(1).to({graphics:mask_graphics_18,x:96.6,y:96.3}).wait(1).to({graphics:mask_graphics_19,x:96.6,y:96.2}).wait(1).to({graphics:mask_graphics_20,x:96.5,y:96.2}).wait(1).to({graphics:mask_graphics_21,x:96.5,y:96.2}).wait(1).to({graphics:mask_graphics_22,x:96.4,y:96.1}).wait(1).to({graphics:mask_graphics_23,x:96.4,y:96.1}).wait(1).to({graphics:mask_graphics_24,x:96.3,y:96.1}).wait(1).to({graphics:mask_graphics_25,x:96.2,y:96.1}).wait(1).to({graphics:mask_graphics_26,x:96.2,y:96.1}).wait(1).to({graphics:mask_graphics_27,x:96.1,y:96.1}).wait(1).to({graphics:mask_graphics_28,x:96.1,y:96.1}).wait(1).to({graphics:mask_graphics_29,x:96,y:96.2}).wait(1).to({graphics:mask_graphics_30,x:96,y:96.2}).wait(1).to({graphics:mask_graphics_31,x:95.9,y:96.2}).wait(1).to({graphics:mask_graphics_32,x:95.9,y:96.3}).wait(1).to({graphics:mask_graphics_33,x:95.8,y:96.3}).wait(1).to({graphics:mask_graphics_34,x:95.8,y:96.3}).wait(1).to({graphics:mask_graphics_35,x:95.7,y:96.3}).wait(1).to({graphics:mask_graphics_36,x:95.7,y:96.3}).wait(1).to({graphics:mask_graphics_37,x:95.7,y:96.3}).wait(1).to({graphics:mask_graphics_38,x:95.6,y:96.3}).wait(1).to({graphics:mask_graphics_39,x:95.6,y:96.3}).wait(1).to({graphics:mask_graphics_40,x:95.6,y:96.4}).wait(1).to({graphics:mask_graphics_41,x:95.6,y:96.4}).wait(1).to({graphics:mask_graphics_42,x:95.6,y:96.5}).wait(1).to({graphics:mask_graphics_43,x:95.6,y:96.5}).wait(1).to({graphics:mask_graphics_44,x:95.6,y:96.6}).wait(1).to({graphics:mask_graphics_45,x:95.6,y:96.7}).wait(1).to({graphics:mask_graphics_46,x:95.5,y:96.7}).wait(1).to({graphics:mask_graphics_47,x:95.5,y:96.8}).wait(1).to({graphics:mask_graphics_48,x:95.4,y:96.8}).wait(1).to({graphics:mask_graphics_49,x:95.4,y:96.9}).wait(1).to({graphics:mask_graphics_50,x:95.4,y:96.9}).wait(1).to({graphics:mask_graphics_51,x:95.4,y:97}).wait(1).to({graphics:mask_graphics_52,x:95.4,y:97}).wait(1).to({graphics:mask_graphics_53,x:95.5,y:97.1}).wait(1).to({graphics:mask_graphics_54,x:95.5,y:97.2}).wait(1).to({graphics:mask_graphics_55,x:95.6,y:97.2}).wait(1).to({graphics:mask_graphics_56,x:95.6,y:97.3}).wait(1).to({graphics:mask_graphics_57,x:95.6,y:97.3}).wait(1).to({graphics:mask_graphics_58,x:95.6,y:97.4}).wait(1).to({graphics:mask_graphics_59,x:95.6,y:97.4}).wait(1).to({graphics:mask_graphics_60,x:95.6,y:97.4}).wait(1).to({graphics:mask_graphics_61,x:95.6,y:97.5}).wait(1).to({graphics:mask_graphics_62,x:95.6,y:97.5}).wait(1).to({graphics:mask_graphics_63,x:95.7,y:97.6}).wait(1).to({graphics:mask_graphics_64,x:95.7,y:97.6}).wait(1).to({graphics:mask_graphics_65,x:95.7,y:97.7}).wait(1).to({graphics:mask_graphics_66,x:95.8,y:97.7}).wait(1).to({graphics:mask_graphics_67,x:95.8,y:97.7}).wait(1).to({graphics:mask_graphics_68,x:95.9,y:97.7}).wait(1).to({graphics:mask_graphics_69,x:95.9,y:97.7}).wait(1).to({graphics:mask_graphics_70,x:96,y:97.7}).wait(1).to({graphics:mask_graphics_71,x:96.1,y:97.7}).wait(1).to({graphics:mask_graphics_72,x:96.1,y:97.4}).wait(1).to({graphics:mask_graphics_73,x:96.2,y:97}).wait(1).to({graphics:mask_graphics_74,x:96.2,y:96.4}).wait(1).to({graphics:mask_graphics_75,x:96.3,y:96.1}).wait(1).to({graphics:mask_graphics_76,x:96.3,y:96.7}).wait(1).to({graphics:mask_graphics_77,x:96.4,y:97.3}).wait(1).to({graphics:mask_graphics_78,x:96.5,y:97.6}).wait(1).to({graphics:mask_graphics_79,x:96.5,y:97.7}).wait(1).to({graphics:mask_graphics_80,x:96.6,y:97.7}).wait(1).to({graphics:mask_graphics_81,x:96.6,y:97.7}).wait(1).to({graphics:mask_graphics_82,x:96.7,y:97.7}).wait(1).to({graphics:mask_graphics_83,x:96.7,y:97.7}).wait(1).to({graphics:mask_graphics_84,x:96.7,y:97.7}).wait(1).to({graphics:mask_graphics_85,x:96.8,y:97.6}).wait(1).to({graphics:mask_graphics_86,x:96.8,y:97.6}).wait(1).to({graphics:mask_graphics_87,x:96.9,y:97.5}).wait(1).to({graphics:mask_graphics_88,x:96.9,y:97.4}).wait(1).to({graphics:mask_graphics_89,x:97,y:97.4}).wait(1).to({graphics:mask_graphics_90,x:97,y:97.3}).wait(1).to({graphics:mask_graphics_91,x:97,y:97.3}).wait(1).to({graphics:mask_graphics_92,x:97.1,y:97.3}).wait(1).to({graphics:mask_graphics_93,x:97.1,y:97.3}).wait(1).to({graphics:mask_graphics_94,x:97.1,y:97.2}).wait(1).to({graphics:mask_graphics_95,x:97.1,y:97.2}).wait(1).to({graphics:mask_graphics_96,x:97,y:97.1}).wait(1).to({graphics:mask_graphics_97,x:96.8,y:97.1}).wait(1).to({graphics:mask_graphics_98,x:96.4,y:97}).wait(1).to({graphics:mask_graphics_99,x:95.8,y:96.9}).wait(1).to({graphics:mask_graphics_100,x:94.8,y:96.9}).wait(1)); 

// circle 
this.shape_4 = new cjs.Shape(); 
this.shape_4.graphics.f("#FFFFFF").s().p("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"); 
this.shape_4.setTransform(102.5,102.5); 

this.shape_4.mask = mask; 

this.timeline.addTween(cjs.Tween.get(this.shape_4).wait(101)); 

// airplane 
this.instance = new lib.Tween2("synched",0); 
this.instance.parent = this; 
this.instance.setTransform(101.4,102.8,0.628,0.628,0,0,0,-131.8,0.7); 

this.timeline.addTween(cjs.Tween.get(this.instance).to({rotation:-360},100).wait(1)); 

// bckgrnd circle 
this.movieClip_1 = new lib.Symbol1(); 
this.movieClip_1.parent = this; 
this.movieClip_1.setTransform(102.5,102.5); 

this.instance_1 = new lib.bckgrndcircle(); 
this.instance_1.parent = this; 
this.instance_1.setTransform(102.5,102.5,1,1,0,0,0,100.3,100.3); 
new cjs.ButtonHelper(this.instance_1, 0, 1, 1); 

this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.movieClip_1}]}).to({state:[{t:this.instance_1}]},100).wait(1)); 

}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(104.7,104.7,200.6,200.6);

})(lib = lib||{}, images = images||{}, createjs = createjs||{}, ss = ss||{});
var lib, images, createjs, ss;


it mthrfkn WORKED, ya’ll - crazy - Cropper is the man !

https://ehornet73.wixsite.com/erichorneportfolio/animations