diff --git a/TMP/COZe-Layout-PDF/path2173.png b/TMP/COZe-Layout-PDF/path2173.png new file mode 100644 index 0000000..71d98a6 Binary files /dev/null and b/TMP/COZe-Layout-PDF/path2173.png differ diff --git a/TMP/loader_anim.zip b/TMP/loader_anim.zip new file mode 100644 index 0000000..4026963 Binary files /dev/null and b/TMP/loader_anim.zip differ diff --git a/TMP/loader_anim/loader_anim/.DS_Store b/TMP/loader_anim/loader_anim/.DS_Store new file mode 100644 index 0000000..9e0ec01 Binary files /dev/null and b/TMP/loader_anim/loader_anim/.DS_Store differ diff --git a/TMP/loader_anim/loader_anim/countUp-jquery.js b/TMP/loader_anim/loader_anim/countUp-jquery.js new file mode 100755 index 0000000..57f5629 --- /dev/null +++ b/TMP/loader_anim/loader_anim/countUp-jquery.js @@ -0,0 +1,39 @@ +(function($) { + + $.fn.countup = function(params) { + // make sure dependency is present + if (typeof CountUp !== 'function') { + console.error('countUp.js is a required dependency of countUp-jquery.js.'); + return; + } + + var defaults = { + startVal: 0, + decimals: 0, + duration: 2, + }; + + if (typeof params === 'number') { + defaults.endVal = params; + } + else if (typeof params === 'object') { + $.extend(defaults, params); + } + else { + console.error('countUp-jquery requires its argument to be either an object or number'); + return; + } + + this.each(function(i, elem) { + var countUp = new CountUp(elem, defaults.startVal, defaults.endVal, defaults.decimals, defaults.duration, defaults.options); + + countUp.start(); + }); + + + + return this; + + }; + +}(jQuery)); \ No newline at end of file diff --git a/TMP/loader_anim/loader_anim/countUp.js b/TMP/loader_anim/loader_anim/countUp.js new file mode 100755 index 0000000..2e66bc5 --- /dev/null +++ b/TMP/loader_anim/loader_anim/countUp.js @@ -0,0 +1,246 @@ +/* + + countUp.js + by @inorganik + +*/ + +// target = id of html element or var of previously selected html element where counting occurs +// startVal = the value you want to begin at +// endVal = the value you want to arrive at +// decimals = number of decimal places, default 0 +// duration = duration of animation in seconds, default 2 +// options = optional object of options (see below) + +var CountUp = function(target, startVal, endVal, decimals, duration, options) { + + var self = this; + self.version = function () { return '1.9.3'; }; + + // default options + self.options = { + useEasing: true, // toggle easing + useGrouping: true, // 1,000,000 vs 1000000 + separator: ',', // character to use as a separator + decimal: '.', // character to use as a decimal + easingFn: easeOutExpo, // optional custom easing function, default is Robert Penner's easeOutExpo + formattingFn: formatNumber, // optional custom formatting function, default is formatNumber above + prefix: '', // optional text before the result + suffix: '', // optional text after the result + numerals: [] // optionally pass an array of custom numerals for 0-9 + }; + + // extend default options with passed options object + if (options && typeof options === 'object') { + for (var key in self.options) { + if (options.hasOwnProperty(key) && options[key] !== null) { + self.options[key] = options[key]; + } + } + } + + if (self.options.separator === '') { + self.options.useGrouping = false; + } + else { + // ensure the separator is a string (formatNumber assumes this) + self.options.separator = '' + self.options.separator; + } + + // make sure requestAnimationFrame and cancelAnimationFrame are defined + // polyfill for browsers without native support + // by Opera engineer Erik Möller + var lastTime = 0; + var vendors = ['webkit', 'moz', 'ms', 'o']; + for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { + window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame']; + window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame'] || window[vendors[x]+'CancelRequestAnimationFrame']; + } + if (!window.requestAnimationFrame) { + window.requestAnimationFrame = function(callback, element) { + var currTime = new Date().getTime(); + var timeToCall = Math.max(0, 16 - (currTime - lastTime)); + var id = window.setTimeout(function() { callback(currTime + timeToCall); }, timeToCall); + lastTime = currTime + timeToCall; + return id; + }; + } + if (!window.cancelAnimationFrame) { + window.cancelAnimationFrame = function(id) { + clearTimeout(id); + }; + } + + function formatNumber(num) { + var neg = (num < 0), + x, x1, x2, x3, i, len; + num = Math.abs(num).toFixed(self.decimals); + num += ''; + x = num.split('.'); + x1 = x[0]; + x2 = x.length > 1 ? self.options.decimal + x[1] : ''; + if (self.options.useGrouping) { + x3 = ''; + for (i = 0, len = x1.length; i < len; ++i) { + if (i !== 0 && ((i % 3) === 0)) { + x3 = self.options.separator + x3; + } + x3 = x1[len - i - 1] + x3; + } + x1 = x3; + } + // optional numeral substitution + if (self.options.numerals.length) { + x1 = x1.replace(/[0-9]/g, function(w) { + return self.options.numerals[+w]; + }) + x2 = x2.replace(/[0-9]/g, function(w) { + return self.options.numerals[+w]; + }) + } + return (neg ? '-' : '') + self.options.prefix + x1 + x2 + self.options.suffix; + } + // Robert Penner's easeOutExpo + function easeOutExpo(t, b, c, d) { + return c * (-Math.pow(2, -10 * t / d) + 1) * 1024 / 1023 + b; + } + function ensureNumber(n) { + return (typeof n === 'number' && !isNaN(n)); + } + + self.initialize = function() { + if (self.initialized) return true; + + self.error = ''; + self.d = (typeof target === 'string') ? document.getElementById(target) : target; + if (!self.d) { + self.error = '[CountUp] target is null or undefined' + return false; + } + self.startVal = Number(startVal); + self.endVal = Number(endVal); + // error checks + if (ensureNumber(self.startVal) && ensureNumber(self.endVal)) { + self.decimals = Math.max(0, decimals || 0); + self.dec = Math.pow(10, self.decimals); + self.duration = Number(duration) * 1000 || 2000; + self.countDown = (self.startVal > self.endVal); + self.frameVal = self.startVal; + self.initialized = true; + return true; + } + else { + self.error = '[CountUp] startVal ('+startVal+') or endVal ('+endVal+') is not a number'; + return false; + } + }; + + // Print value to target + self.printValue = function(value) { + var result = self.options.formattingFn(value); + + if (self.d.tagName === 'INPUT') { + this.d.value = result; + } + else if (self.d.tagName === 'text' || self.d.tagName === 'tspan') { + this.d.textContent = result; + } + else { + this.d.innerHTML = result; + } + }; + + self.count = function(timestamp) { + + if (!self.startTime) { self.startTime = timestamp; } + + self.timestamp = timestamp; + var progress = timestamp - self.startTime; + self.remaining = self.duration - progress; + + // to ease or not to ease + if (self.options.useEasing) { + if (self.countDown) { + self.frameVal = self.startVal - self.options.easingFn(progress, 0, self.startVal - self.endVal, self.duration); + } else { + self.frameVal = self.options.easingFn(progress, self.startVal, self.endVal - self.startVal, self.duration); + } + } else { + if (self.countDown) { + self.frameVal = self.startVal - ((self.startVal - self.endVal) * (progress / self.duration)); + } else { + self.frameVal = self.startVal + (self.endVal - self.startVal) * (progress / self.duration); + } + } + + // don't go past endVal since progress can exceed duration in the last frame + if (self.countDown) { + self.frameVal = (self.frameVal < self.endVal) ? self.endVal : self.frameVal; + } else { + self.frameVal = (self.frameVal > self.endVal) ? self.endVal : self.frameVal; + } + + // decimal + self.frameVal = Math.round(self.frameVal*self.dec)/self.dec; + + // format and print value + self.printValue(self.frameVal); + + // whether to continue + if (progress < self.duration) { + self.rAF = requestAnimationFrame(self.count); + } else { + if (self.callback) self.callback(); + } + }; + // start your animation + self.start = function(callback) { + if (!self.initialize()) return; + self.callback = callback; + self.rAF = requestAnimationFrame(self.count); + }; + // toggles pause/resume animation + self.pauseResume = function() { + if (!self.paused) { + self.paused = true; + cancelAnimationFrame(self.rAF); + } else { + self.paused = false; + delete self.startTime; + self.duration = self.remaining; + self.startVal = self.frameVal; + requestAnimationFrame(self.count); + } + }; + // reset to startVal so animation can be run again + self.reset = function() { + self.paused = false; + delete self.startTime; + self.initialized = false; + if (self.initialize()) { + cancelAnimationFrame(self.rAF); + self.printValue(self.startVal); + } + }; + // pass a new endVal and start animation + self.update = function (newEndVal) { + if (!self.initialize()) return; + newEndVal = Number(newEndVal); + if (!ensureNumber(newEndVal)) { + self.error = '[CountUp] update() - new endVal is not a number: '+newEndVal; + return; + } + self.error = ''; + if (newEndVal === self.frameVal) return; + cancelAnimationFrame(self.rAF); + self.paused = false; + delete self.startTime; + self.startVal = self.frameVal; + self.endVal = newEndVal; + self.countDown = (self.startVal > self.endVal); + self.rAF = requestAnimationFrame(self.count); + }; + + // format startVal on initialization + if (self.initialize()) self.printValue(self.startVal); +}; diff --git a/TMP/loader_anim/loader_anim/loader.svg b/TMP/loader_anim/loader_anim/loader.svg new file mode 100644 index 0000000..83e110e --- /dev/null +++ b/TMP/loader_anim/loader_anim/loader.svg @@ -0,0 +1,321 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TMP/loader_anim/loader_anim/test.html b/TMP/loader_anim/loader_anim/test.html new file mode 100644 index 0000000..2cb207c --- /dev/null +++ b/TMP/loader_anim/loader_anim/test.html @@ -0,0 +1,61 @@ + + + + + + + + + +
+ +
+
0
+ +
+ +
+ + + + + diff --git a/css/styles.css b/css/styles.css index b0275a9..546459e 100644 --- a/css/styles.css +++ b/css/styles.css @@ -14569,7 +14569,7 @@ a:hover { padding: 10px; } -/* line 97, global.scss */ +/* line 96, global.scss */ #dropLoading { display: none; position: fixed; @@ -14580,30 +14580,68 @@ a:hover { background: rgba(0, 0, 0, 0.8); overflow: hidden; } -/* line 106, global.scss */ -#dropLoading #animation_container { - position: absolute; - height: 300px; - width: 300px; +/* line 107, global.scss */ +#dropLoading .box { + position: fixed; + height: 220px; + width: 220px; top: 50%; left: 50%; transform: translate(-50%, -50%); } /* line 115, global.scss */ -#dropLoading #countdown { +#dropLoading .box div { position: fixed; - height: 30px; - line-height: 30px; - width: 50px; - z-index: 9999; - top: calc(50% + 30px); + top: 50%; left: 50%; transform: translate(-50%, -50%); - text-align: center; - font-size: 1.125rem; + animation: fade 7s linear 0s 1 normal; +} +/* line 123, global.scss */ +#dropLoading .box .anim { + animation: pop-up 7s ease-in 0s 1 normal; +} +/* line 127, global.scss */ +#dropLoading .box .count { + color: white; +} +/* line 130, global.scss */ +#dropLoading .box .text { + width: 100vw; color: white; + text-align: center; + font-size: 0.625rem; + top: calc(50% + 140px); } +@keyframes pop-up { + 0% { + transform: scale(0); + } + 10% { + transform: scale(1); + } + 95% { + transform: scale(1); + } + 100% { + transform: scale(0); + } +} +@keyframes fade { + 0% { + opacity: 0; + } + 10% { + opacity: 1; + } + 95% { + opacity: 1; + } + 100% { + opacity: 0; + } +} /* line 3, forms.scss */ input, button { border: none; @@ -15074,9 +15112,10 @@ header .container .row .menu ul li.active a:hover, header .container .row .menu top: 145px; left: 12px; height: 371px; - width: 222px; + width: 223px; + overflow: hidden; } -/* line 47, sections/plans.scss */ +/* line 48, sections/plans.scss */ .plans .phone .content .cloud { display: none; position: relative; @@ -15087,71 +15126,108 @@ header .container .row .menu ul li.active a:hover, header .container .row .menu margin: 10px 0; border-radius: 8px; } -/* line 57, sections/plans.scss */ +/* line 58, sections/plans.scss */ +.plans .phone .content .cloud img { + width: 100%; + padding: 5px; + cursor: pointer; +} +/* line 64, sections/plans.scss */ .plans .phone .content .cloud.left { left: 15px; background: #f6e7ea; border: 1px solid #c8bcbe; } -/* line 61, sections/plans.scss */ +/* line 68, sections/plans.scss */ .plans .phone .content .cloud.left:before { content: ''; - border: solid 11px transparent; + border: solid 8px transparent; border-right-color: #c8bcbe; position: absolute; left: 0; top: 50%; transform: translate(-100%, -50%); } -/* line 70, sections/plans.scss */ +/* line 77, sections/plans.scss */ .plans .phone .content .cloud.left:after { content: ''; - border: solid 10px transparent; + border: solid 7px transparent; border-right-color: #f6e7ea; position: absolute; left: 0; top: 50%; transform: translate(-100%, -50%); } -/* line 81, sections/plans.scss */ +/* line 88, sections/plans.scss */ .plans .phone .content .cloud.right { left: calc(20% - 13px); background: #d4eeed; border: 1px solid #b0c8c6; } -/* line 85, sections/plans.scss */ +/* line 92, sections/plans.scss */ .plans .phone .content .cloud.right:before { content: ''; - border: solid 11px transparent; + border: solid 8px transparent; border-left-color: #b0c8c6; position: absolute; right: 0; top: 50%; transform: translate(100%, -50%); } -/* line 94, sections/plans.scss */ +/* line 101, sections/plans.scss */ .plans .phone .content .cloud.right:after { content: ''; - border: solid 10px transparent; + border: solid 7px transparent; border-left-color: #d4eeed; position: absolute; right: 0; top: 50%; transform: translate(100%, -50%); } -/* line 105, sections/plans.scss */ +/* line 112, sections/plans.scss */ .plans .phone .content .cloud.empty { width: 100%; text-align: center; padding: 0; } -/* line 114, sections/plans.scss */ +/* line 120, sections/plans.scss */ +.plans .phone .content .video { + display: none; + position: absolute; + top: 0; + left: 0; + height: 371px; + width: 223px; + background: black; +} +/* line 128, sections/plans.scss */ +.plans .phone .content .video .video-close { + position: absolute; + top: 0; + right: 3px; + height: 20px; + width: 20px; + cursor: pointer; +} +/* line 136, sections/plans.scss */ +.plans .phone .content .video .video-close:after { + content: '\f00d'; + font-family: "FontAwesome"; + font-size: 1.25rem; + color: white; +} +/* line 143, sections/plans.scss */ +.plans .phone .content .video video { + height: 371px; + width: 223px; +} +/* line 150, sections/plans.scss */ .plans .phone .input { position: absolute; top: 516px; left: 12px; height: 42px; - width: 222px; + width: 223px; border-radius: 0 0 26px 26px; overflow: hidden; } diff --git a/images/loader.svg b/images/loader.svg new file mode 100644 index 0000000..e536e39 --- /dev/null +++ b/images/loader.svg @@ -0,0 +1,257 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/loader2.svg b/images/loader2.svg new file mode 100644 index 0000000..e536e39 --- /dev/null +++ b/images/loader2.svg @@ -0,0 +1,257 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/video.png b/images/video.png new file mode 100644 index 0000000..79e914c Binary files /dev/null and b/images/video.png differ diff --git a/index.php b/index.php index bb4a3c8..29e02b0 100755 --- a/index.php +++ b/index.php @@ -47,14 +47,14 @@
-
- -
+
+
0
+ +
...
-
- - + + diff --git a/js/compatibility.js b/js/compatibility.js index 6ab9b43..ada990e 100644 --- a/js/compatibility.js +++ b/js/compatibility.js @@ -18,13 +18,15 @@ $(document).ready(()=>{ confirm.on('click', ()=>{ - loadingInit() + loading.find('.text').text('Personalizzazione della formazione in corso ...') loading.fadeIn() + timeout_trigger() + setTimeout(()=>{ loading.fadeOut(()=>{ window.location='plans' }) - },7000) + },6500) }) diff --git a/js/loading.js b/js/loading.js deleted file mode 100644 index 143852e..0000000 --- a/js/loading.js +++ /dev/null @@ -1,1060 +0,0 @@ -(function (cjs, an) { - -var p; // shortcut to reference prototypes -var lib={};var ss={};var img={}; -lib.ssMetadata = []; - - - -function mc_symbol_clone() { - var clone = this._cloneProps(new this.constructor(this.mode, this.startPosition, this.loop)); - clone.gotoAndStop(this.currentFrame); - clone.paused = this.paused; - clone.framerate = this.framerate; - return clone; -} - -function getMCSymbolPrototype(symbol, nominalBounds, frameBounds) { - var prototype = cjs.extend(symbol, cjs.MovieClip); - prototype.clone = mc_symbol_clone; - prototype.nominalBounds = nominalBounds; - prototype.frameBounds = frameBounds; - return prototype; - } - - -(lib.Ruota04 = function(mode,startPosition,loop) { - this.initialize(mode,startPosition,loop,{}); - - // Livello_1 - this.shape = new cjs.Shape(); - this.shape.graphics.f("#A2352A").s().p("ApOcVIAagzQEXBcEqAAQF5AAFZiRQFNiOEBkAQDJjJCDj8QCHkBAxkdIA5ADQgyEoiLELQiIEFjQDQQkJEJlXCRQljCWmFAAQk2AAklhigA05VHQkJkIiRlYQiWliAAmFQAAmECWljQCRlXEJkIQEIkJFXiRQFjiWGEAAQE3AAEmBhIgbA0QkZhckpAAQl4AAlZCRQlNCNkAEAQkBEBiNFOQiRFYAAF4QAAF5CRFZQCNFNEBEAQBcBdBrBQIgbAyQhwhThkhkg"); - this.shape.setTransform(-1.3,0,0.832,0.832); - - this.shape_1 = new cjs.Shape(); - this.shape_1.graphics.f("#A2352A").s().p("AyhbUIAYg4IBbAmIgXA4gA0/aFIAdg2IBXAuIgdA2gA3hYgIAigzIBTA3IghAzgAWYDdIAJhjIA8AGIgIBigAWjAyIAAhiIA+AAIAABigAWWjoIA9gGIAJBjIg8AGgAV1mhIA8gMIAUBiIg8AMgAVCpSIA7gSIAdBfIg6ASgAUErxIA5gYIAmBcIg4AXgASxuWIA1gdIAvBYIg1AdgARMwzIAzgjIA3BTIgzAigAPZzEIAvgnIA/BMIgvAogAOG0cIAAAAIgkgjIAsgsIBGBHIgrArgALW23IAogwIBMA/IgmAwgAI94jIAhgzIBTA3IghAzgAGc58IAdg2IBXAuIgcA2gAD/7BIAYg4IBbAmIgYA4g"); - this.shape_1.setTransform(33.9,-0.2,0.832,0.832); - - this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_1},{t:this.shape}]}).wait(1)); - -}).prototype = getMCSymbolPrototype(lib.Ruota04, new cjs.Rectangle(-159.1,-158.9,318.3,317.9), null); - - -(lib.Ruota03 = function(mode,startPosition,loop) { - this.initialize(mode,startPosition,loop,{}); - - // Livello_1 - this.shape = new cjs.Shape(); - this.shape.graphics.f("#93EEE5").s().p("Aq2ZtQlAiIj3j3Qj3j3iIlAQiMlMAAlrIBbAAQAAFZCFE6QCBEwDqDrQDrDqEwCBQE6CFFYAAQFZAAE6iFQEwiBDrjqQDqjrCBkwQCFk6AAlZQAAlXiFk7QiBkwjqjqQjrjrkwiAQk6iFlZAAIAAhcQFrAAFMCNQFACHD3D3QD3D3CIFBQCMFLAAFqQAAFriMFMQiIFAj3D3Qj3D3lACIQlMCMlrAAQlqAAlMiMg"); - this.shape.setTransform(-1.2,0,0.832,0.832,0,0,0,-1.5,0); - - this.timeline.addTween(cjs.Tween.get(this.shape).wait(1)); - - // Livello_2 - this.shape_1 = new cjs.Shape(); - this.shape_1.graphics.f("rgba(53,140,255,0)").s().p("AuqR+QndmFg+pkQg9pjGFndQGFncJlg+QJig9HdGFQHcGGA9JjQA+JjmFHdQmFHcpkA+QhUAIhQAAQoAAAmblQg"); - this.shape_1.setTransform(-1.2,0); - - this.timeline.addTween(cjs.Tween.get(this.shape_1).wait(1)); - -}).prototype = getMCSymbolPrototype(lib.Ruota03, new cjs.Rectangle(-149.8,-148.6,298.3,297.2), null); - - -(lib.Ruota02 = function(mode,startPosition,loop) { - this.initialize(mode,startPosition,loop,{}); - - // Livello_1 - this.shape = new cjs.Shape(); - this.shape.graphics.f("#A2352A").s().p("ALPWIQEMiSC8jtQC2jkBSkaQBTkagdkhQgekuiSkMIAAgBQiTkLjsi8Qjli2kahSQkahTkhAdQktAekMCSIgBAAQkMCTi8DsQi1DlhTEZQhTEaAdEiQAeEtCSEMIh6BCQigklghlIQgfk9Bak0QBbk0DGj6QDOkDEligIAQgIQEiiaFFgfQE4gdEwBZQE0BaD6DHQEDDOCfElIAJAQIAAAAQCaEiAfFEQAdE5hZEvQhfFDjID3QjHD3koChg"); - this.shape.setTransform(-2.1,10,0.815,0.838,0,0,0,-3.1,11.2); - - this.timeline.addTween(cjs.Tween.get(this.shape).wait(1)); - - // Livello_2 - this.shape_1 = new cjs.Shape(); - this.shape_1.graphics.f("rgba(255,255,153,0)").s().p("AiqVbQorhIlWnFQlWnFBHo3QBHo4G6lfQG7leIpBIQIrBJFWHFQFWHFhHI3QhGI4m7FfQluEim7AAQhcAAhfgNg"); - this.shape_1.setTransform(0.6,8.8); - - this.timeline.addTween(cjs.Tween.get(this.shape_1).wait(1)); - -}).prototype = getMCSymbolPrototype(lib.Ruota02, new cjs.Rectangle(-134.5,-129.6,270.3,276.8), null); - - -(lib.ruota_01 = function(mode,startPosition,loop) { - this.initialize(mode,startPosition,loop,{}); - - // Livello_1 - this.shape = new cjs.Shape(); - this.shape.graphics.f("#93EEE5").s().p("AgaAHIABgQIAzADIgBAQIgzgDg"); - this.shape.setTransform(7.7,-164.1,0.832,0.832); - - this.shape_1 = new cjs.Shape(); - this.shape_1.graphics.f("#93EEE5").s().p("AgagCIAGgQIAvAVIgHAPg"); - this.shape_1.setTransform(67.6,-149.6,0.832,0.832); - - this.shape_2 = new cjs.Shape(); - this.shape_2.graphics.f("#93EEE5").s().p("AgaAEIADgQQAXAEAbAFIgDAQg"); - this.shape_2.setTransform(28.2,-161.8,0.832,0.832); - - this.shape_3 = new cjs.Shape(); - this.shape_3.graphics.f("#93EEE5").s().p("AgaAFIACgQIAzAHIgDAQg"); - this.shape_3.setTransform(23.1,-162.6,0.832,0.832); - - this.shape_4 = new cjs.Shape(); - this.shape_4.graphics.f("#93EEE5").s().p("AgaACIADgPIAyAMIgEAPg"); - this.shape_4.setTransform(38.3,-159.6,0.832,0.832); - - this.shape_5 = new cjs.Shape(); - this.shape_5.graphics.f("#93EEE5").s().p("AgbABIAFgPIAxAOIgEAPg"); - this.shape_5.setTransform(43.4,-158.4,0.832,0.832); - - this.shape_6 = new cjs.Shape(); - this.shape_6.graphics.f("#93EEE5").s().p("AgaADIADgQIAyALIgEAPg"); - this.shape_6.setTransform(33.3,-160.8,0.832,0.832); - - this.shape_7 = new cjs.Shape(); - this.shape_7.graphics.f("#93EEE5").s().p("AgbAAIAGgQIAwAQIgGARIgwgRg"); - this.shape_7.setTransform(53.2,-155.3,0.832,0.832); - - this.shape_8 = new cjs.Shape(); - this.shape_8.graphics.f("#93EEE5").s().p("AgagBIAGgQIAvATIgHAQIgugTg"); - this.shape_8.setTransform(62.9,-151.7,0.832,0.832); - - this.shape_9 = new cjs.Shape(); - this.shape_9.graphics.f("#93EEE5").s().p("AgbAAIAHgQIAvARIgGAQg"); - this.shape_9.setTransform(58.1,-153.6,0.832,0.832); - - this.shape_10 = new cjs.Shape(); - this.shape_10.graphics.f("#93EEE5").s().p("AgaAHIABgRIAzAFIgBAQg"); - this.shape_10.setTransform(12.9,-163.7,0.832,0.832); - - this.shape_11 = new cjs.Shape(); - this.shape_11.graphics.f("#93EEE5").s().p("AgbAAIAFgPIAyAPIgGAQg"); - this.shape_11.setTransform(48.3,-156.9,0.832,0.832); - - this.shape_12 = new cjs.Shape(); - this.shape_12.graphics.f("#93EEE5").s().p("AgaAGIACgQIAzAFIgCAQg"); - this.shape_12.setTransform(18,-163.2,0.832,0.832); - - this.shape_13 = new cjs.Shape(); - this.shape_13.graphics.f("#93EEE5").s().p("AgagBIAygMIADAPIgxAMg"); - this.shape_13.setTransform(-38.4,-159.6,0.832,0.832); - - this.shape_14 = new cjs.Shape(); - this.shape_14.graphics.f("#93EEE5").s().p("AgSATIAWgtIAPAIIgXAtg"); - this.shape_14.setTransform(-145.3,-76.7,0.832,0.832); - - this.shape_15 = new cjs.Shape(); - this.shape_15.graphics.f("#93EEE5").s().p("AgSAUIAWguIAPAIIgWAtg"); - this.shape_15.setTransform(-147.6,-72.1,0.832,0.832); - - this.shape_16 = new cjs.Shape(); - this.shape_16.graphics.f("#93EEE5").s().p("AgSAUIAVguIAPAHIgUAug"); - this.shape_16.setTransform(-149.8,-67.4,0.832,0.832); - - this.shape_17 = new cjs.Shape(); - this.shape_17.graphics.f("#93EEE5").s().p("AgRAVIATgwIAQAHIgTAvg"); - this.shape_17.setTransform(-151.8,-62.7,0.832,0.832); - - this.shape_18 = new cjs.Shape(); - this.shape_18.graphics.f("#93EEE5").s().p("AgQAWIARgwIAQAGIgRAvg"); - this.shape_18.setTransform(-153.7,-57.9,0.832,0.832); - - this.shape_19 = new cjs.Shape(); - this.shape_19.graphics.f("#93EEE5").s().p("AgQAWIARgxIAQAHIgRAvg"); - this.shape_19.setTransform(-155.5,-53,0.832,0.832); - - this.shape_20 = new cjs.Shape(); - this.shape_20.graphics.f("#93EEE5").s().p("AgTATIAZgtIAOAJIgYAsg"); - this.shape_20.setTransform(-142.8,-81.2,0.832,0.832); - - this.shape_21 = new cjs.Shape(); - this.shape_21.graphics.f("#93EEE5").s().p("AgWAQIAfgpIANAKIgdApg"); - this.shape_21.setTransform(-131.5,-98.5,0.832,0.832); - - this.shape_22 = new cjs.Shape(); - this.shape_22.graphics.f("#93EEE5").s().p("AgWAPIAggoIANALIggAog"); - this.shape_22.setTransform(-128.3,-102.6,0.832,0.832); - - this.shape_23 = new cjs.Shape(); - this.shape_23.graphics.f("#93EEE5").s().p("AgUASIAagsIAPAJIgaArg"); - this.shape_23.setTransform(-140.2,-85.7,0.832,0.832); - - this.shape_24 = new cjs.Shape(); - this.shape_24.graphics.f("#93EEE5").s().p("AgVARIAdgqIAOAKIgdApg"); - this.shape_24.setTransform(-134.5,-94.3,0.832,0.832); - - this.shape_25 = new cjs.Shape(); - this.shape_25.graphics.f("#93EEE5").s().p("AgUASIAbgrIAOAJIgbArg"); - this.shape_25.setTransform(-137.4,-90.1,0.832,0.832); - - this.shape_26 = new cjs.Shape(); - this.shape_26.graphics.f("#93EEE5").s().p("AgKAZIAFgzIAQACIgFAzg"); - this.shape_26.setTransform(-163.3,-17.8,0.832,0.832); - - this.shape_27 = new cjs.Shape(); - this.shape_27.graphics.f("#93EEE5").s().p("AgJAaIACgzIARABIgDAyg"); - this.shape_27.setTransform(-164.1,-7.6,0.832,0.832); - - this.shape_28 = new cjs.Shape(); - this.shape_28.graphics.f("#93EEE5").s().p("AgIAaIABgzIAQAAIgBAzg"); - this.shape_28.setTransform(-164.3,-2.4,0.832,0.832); - - this.shape_29 = new cjs.Shape(); - this.shape_29.graphics.f("#93EEE5").s().p("AgIgZIAQAAIABAzIgQAAIgBgzg"); - this.shape_29.setTransform(-164.3,2.8,0.832,0.832); - - this.shape_30 = new cjs.Shape(); - this.shape_30.graphics.f("#93EEE5").s().p("AgKAaIAEg0IAQACIgDAzg"); - this.shape_30.setTransform(-163.8,-12.7,0.832,0.832); - - this.shape_31 = new cjs.Shape(); - this.shape_31.graphics.f("#93EEE5").s().p("AgJgZIAQAAIADAyIgQACg"); - this.shape_31.setTransform(-164.1,7.9,0.832,0.832); - - this.shape_32 = new cjs.Shape(); - this.shape_32.graphics.f("#93EEE5").s().p("AgOAXIANgxIAQAEQgHAWgHAbg"); - this.shape_32.setTransform(-158.5,-43.2,0.832,0.832); - - this.shape_33 = new cjs.Shape(); - this.shape_33.graphics.f("#93EEE5").s().p("AgPAWIAPgwIAQAFIgQAxg"); - this.shape_33.setTransform(-157.1,-48.1,0.832,0.832); - - this.shape_34 = new cjs.Shape(); - this.shape_34.graphics.f("#93EEE5").s().p("AgOAYIANgyIAQAEIgNAxg"); - this.shape_34.setTransform(-159.8,-38.2,0.832,0.832); - - this.shape_35 = new cjs.Shape(); - this.shape_35.graphics.f("#93EEE5").s().p("AgMAYIAJgyIAQADIgJAyg"); - this.shape_35.setTransform(-161.9,-28.1,0.832,0.832); - - this.shape_36 = new cjs.Shape(); - this.shape_36.graphics.f("#93EEE5").s().p("AgMAYIAKgyIAQAEIgLAxg"); - this.shape_36.setTransform(-160.9,-33.1,0.832,0.832); - - this.shape_37 = new cjs.Shape(); - this.shape_37.graphics.f("#93EEE5").s().p("AgLAZIAIgzIAPACIgHAzg"); - this.shape_37.setTransform(-162.7,-23,0.832,0.832); - - this.shape_38 = new cjs.Shape(); - this.shape_38.graphics.f("#93EEE5").s().p("AgXAPIAhgoIAOAMIghAmg"); - this.shape_38.setTransform(-125.1,-106.6,0.832,0.832); - - this.shape_39 = new cjs.Shape(); - this.shape_39.graphics.f("#93EEE5").s().p("AgaAGIAtgZIAIAOIgsAZg"); - this.shape_39.setTransform(-81.5,-142.6,0.832,0.832); - - this.shape_40 = new cjs.Shape(); - this.shape_40.graphics.f("#93EEE5").s().p("AgagCIAygLIADAQIgxALg"); - this.shape_40.setTransform(-33.4,-160.8,0.832,0.832); - - this.shape_41 = new cjs.Shape(); - this.shape_41.graphics.f("#93EEE5").s().p("AgbACIAwgTIAGAQIgvATg"); - this.shape_41.setTransform(-63,-151.7,0.832,0.832); - - this.shape_42 = new cjs.Shape(); - this.shape_42.graphics.f("#93EEE5").s().p("AgaAAIAwgPIAGAPIgxAQg"); - this.shape_42.setTransform(-48.4,-156.9,0.832,0.832); - - this.shape_43 = new cjs.Shape(); - this.shape_43.graphics.f("#93EEE5").s().p("AgbAAIAxgQIAFAQIgvARg"); - this.shape_43.setTransform(-53.3,-155.3,0.832,0.832); - - this.shape_44 = new cjs.Shape(); - this.shape_44.graphics.f("#93EEE5").s().p("AgaABIAwgRIAFAQIgvARg"); - this.shape_44.setTransform(-58.2,-153.6,0.832,0.832); - - this.shape_45 = new cjs.Shape(); - this.shape_45.graphics.f("#93EEE5").s().p("AgaAAIAxgOIAEAPIgxAOg"); - this.shape_45.setTransform(-43.4,-158.4,0.832,0.832); - - this.shape_46 = new cjs.Shape(); - this.shape_46.graphics.f("#93EEE5").s().p("AgagDIAzgJIACAQIgyAJg"); - this.shape_46.setTransform(-28.3,-161.8,0.832,0.832); - - this.shape_47 = new cjs.Shape(); - this.shape_47.graphics.f("#93EEE5").s().p("AgXANIAiglIANALIgiAmg"); - this.shape_47.setTransform(-121.6,-110.4,0.832,0.832); - - this.shape_48 = new cjs.Shape(); - this.shape_48.graphics.f("#93EEE5").s().p("AgagGIA0gDIAAAQIgzADg"); - this.shape_48.setTransform(-7.8,-164.1,0.832,0.832); - - this.shape_49 = new cjs.Shape(); - this.shape_49.graphics.f("#93EEE5").s().p("AgagEIAzgHIACAQIgyAHg"); - this.shape_49.setTransform(-23.2,-162.6,0.832,0.832); - - this.shape_50 = new cjs.Shape(); - this.shape_50.graphics.f("#93EEE5").s().p("AgagFIAzgFIACAQIgzAFg"); - this.shape_50.setTransform(-18.1,-163.2,0.832,0.832); - - this.shape_51 = new cjs.Shape(); - this.shape_51.graphics.f("#93EEE5").s().p("AgagFIAzgFIABARIgyAEg"); - this.shape_51.setTransform(-13,-163.7,0.832,0.832); - - this.shape_52 = new cjs.Shape(); - this.shape_52.graphics.f("#93EEE5").s().p("AgZgHIAzgBIAAAQIgzABg"); - this.shape_52.setTransform(-2.6,-164.2,0.832,0.832); - - this.shape_53 = new cjs.Shape(); - this.shape_53.graphics.f("#93EEE5").s().p("AgZAKIAoggIALANIgoAgg"); - this.shape_53.setTransform(-102.8,-128.1,0.832,0.832); - - this.shape_54 = new cjs.Shape(); - this.shape_54.graphics.f("#93EEE5").s().p("AgYALIAnghIAKANIgmAgg"); - this.shape_54.setTransform(-106.8,-124.8,0.832,0.832); - - this.shape_55 = new cjs.Shape(); - this.shape_55.graphics.f("#93EEE5").s().p("AgXAMIAkgjIALAMIgkAjg"); - this.shape_55.setTransform(-114.4,-117.9,0.832,0.832); - - this.shape_56 = new cjs.Shape(); - this.shape_56.graphics.f("#93EEE5").s().p("AgXANIAjglIAMAMIgjAlg"); - this.shape_56.setTransform(-118.1,-114.2,0.832,0.832); - - this.shape_57 = new cjs.Shape(); - this.shape_57.graphics.f("#93EEE5").s().p("AgZAJIApgeIAKANIgoAfg"); - this.shape_57.setTransform(-98.7,-131.3,0.832,0.832); - - this.shape_58 = new cjs.Shape(); - this.shape_58.graphics.f("#93EEE5").s().p("AgYALIAmgiIALANIglAig"); - this.shape_58.setTransform(-110.7,-121.4,0.832,0.832); - - this.shape_59 = new cjs.Shape(); - this.shape_59.graphics.f("#93EEE5").s().p("AgaAEIAugWIAHAPIgtAWg"); - this.shape_59.setTransform(-72.4,-147.4,0.832,0.832); - - this.shape_60 = new cjs.Shape(); - this.shape_60.graphics.f("#93EEE5").s().p("AgaAFIAtgYIAIAPIgtAYg"); - this.shape_60.setTransform(-77,-145.1,0.832,0.832); - - this.shape_61 = new cjs.Shape(); - this.shape_61.graphics.f("#93EEE5").s().p("AgaADIAugVIAHAQIguAUg"); - this.shape_61.setTransform(-67.7,-149.6,0.832,0.832); - - this.shape_62 = new cjs.Shape(); - this.shape_62.graphics.f("#93EEE5").s().p("AgZAHIAqgbIAJAOIgqAbg"); - this.shape_62.setTransform(-90.3,-137.2,0.832,0.832); - - this.shape_63 = new cjs.Shape(); - this.shape_63.graphics.f("#93EEE5").s().p("AgZAJIApgeIAKAPIgpAcg"); - this.shape_63.setTransform(-94.6,-134.3,0.832,0.832); - - this.shape_64 = new cjs.Shape(); - this.shape_64.graphics.f("#93EEE5").s().p("AgaAHIAsgbIAJAPIgsAag"); - this.shape_64.setTransform(-85.9,-140,0.832,0.832); - - this.shape_65 = new cjs.Shape(); - this.shape_65.graphics.f("#93EEE5").s().p("AgZAIIAAgQIAzABIgBAQg"); - this.shape_65.setTransform(2.6,-164.2,0.832,0.832); - - this.shape_66 = new cjs.Shape(); - this.shape_66.graphics.f("#93EEE5").s().p("AgZgIIALgOIAoAgIgLANg"); - this.shape_66.setTransform(-102.7,128.2,0.832,0.832); - - this.shape_67 = new cjs.Shape(); - this.shape_67.graphics.f("#93EEE5").s().p("AgagDIAygJIADAQQgaAFgYAEg"); - this.shape_67.setTransform(28.2,161.8,0.832,0.832); - - this.shape_68 = new cjs.Shape(); - this.shape_68.graphics.f("#93EEE5").s().p("AgagCIAxgLIAEAQIgyAKg"); - this.shape_68.setTransform(33.2,160.8,0.832,0.832); - - this.shape_69 = new cjs.Shape(); - this.shape_69.graphics.f("#93EEE5").s().p("AgbgBQAZgFAZgIIAEAQIgxANg"); - this.shape_69.setTransform(43.3,158.4,0.832,0.832); - - this.shape_70 = new cjs.Shape(); - this.shape_70.graphics.f("#93EEE5").s().p("AgagBIAxgNIAEAQIgxAMg"); - this.shape_70.setTransform(38.3,159.7,0.832,0.832); - - this.shape_71 = new cjs.Shape(); - this.shape_71.graphics.f("#93EEE5").s().p("AgagGIAzgDIACAPIg0AFg"); - this.shape_71.setTransform(12.8,163.7,0.832,0.832); - - this.shape_72 = new cjs.Shape(); - this.shape_72.graphics.f("#93EEE5").s().p("AgagFIAzgFIACAQIgzAFg"); - this.shape_72.setTransform(18,163.2,0.832,0.832); - - this.shape_73 = new cjs.Shape(); - this.shape_73.graphics.f("#93EEE5").s().p("AgagEIAygHIADAPIgzAIg"); - this.shape_73.setTransform(23.1,162.6,0.832,0.832); - - this.shape_74 = new cjs.Shape(); - this.shape_74.graphics.f("#93EEE5").s().p("AgaABIAvgRIAGAQIgwARg"); - this.shape_74.setTransform(58,153.6,0.832,0.832); - - this.shape_75 = new cjs.Shape(); - this.shape_75.graphics.f("#93EEE5").s().p("AgaAEIAtgWIAIAPIguAWg"); - this.shape_75.setTransform(72.2,147.5,0.832,0.832); - - this.shape_76 = new cjs.Shape(); - this.shape_76.graphics.f("#93EEE5").s().p("AgaADIAugUIAHAPIgvAUg"); - this.shape_76.setTransform(67.5,149.7,0.832,0.832); - - this.shape_77 = new cjs.Shape(); - this.shape_77.graphics.f("#93EEE5").s().p("AgaAEIAtgXIAIAPIgtAYg"); - this.shape_77.setTransform(76.8,145.1,0.832,0.832); - - this.shape_78 = new cjs.Shape(); - this.shape_78.graphics.f("#93EEE5").s().p("AgbAAIAxgPIAFAPIgwAQg"); - this.shape_78.setTransform(48.2,156.9,0.832,0.832); - - this.shape_79 = new cjs.Shape(); - this.shape_79.graphics.f("#93EEE5").s().p("AgaAAIAwgQIAFAQIgwARg"); - this.shape_79.setTransform(53.1,155.3,0.832,0.832); - - this.shape_80 = new cjs.Shape(); - this.shape_80.graphics.f("#93EEE5").s().p("AgZgHIAygCIABAQIgzADg"); - this.shape_80.setTransform(7.7,164.1,0.832,0.832); - - this.shape_81 = new cjs.Shape(); - this.shape_81.graphics.f("#93EEE5").s().p("AgaACIAugTIAHAQIgvATg"); - this.shape_81.setTransform(62.8,151.7,0.832,0.832); - - this.shape_82 = new cjs.Shape(); - this.shape_82.graphics.f("#93EEE5").s().p("AgZAGIABgPIAzADIgBARg"); - this.shape_82.setTransform(-12.9,163.7,0.832,0.832); - - this.shape_83 = new cjs.Shape(); - this.shape_83.graphics.f("#93EEE5").s().p("AgaACIAEgQIAxANIgEAQIgxgNg"); - this.shape_83.setTransform(-43.3,158.4,0.832,0.832); - - this.shape_84 = new cjs.Shape(); - this.shape_84.graphics.f("#93EEE5").s().p("AgaAAIAGgQIAvAQIgFARg"); - this.shape_84.setTransform(-53.2,155.3,0.832,0.832); - - this.shape_85 = new cjs.Shape(); - this.shape_85.graphics.f("#93EEE5").s().p("AgaAAIAFgPIAwAPIgEAQg"); - this.shape_85.setTransform(-48.3,156.9,0.832,0.832); - - this.shape_86 = new cjs.Shape(); - this.shape_86.graphics.f("#93EEE5").s().p("AgaAAIAGgQIAvARIgGAQg"); - this.shape_86.setTransform(-58,153.6,0.832,0.832); - - this.shape_87 = new cjs.Shape(); - this.shape_87.graphics.f("#93EEE5").s().p("AgagBIAHgQIAuATIgGAQg"); - this.shape_87.setTransform(-62.9,151.7,0.832,0.832); - - this.shape_88 = new cjs.Shape(); - this.shape_88.graphics.f("#93EEE5").s().p("AgagDIAIgPIAtAVIgHAQg"); - this.shape_88.setTransform(-72.3,147.5,0.832,0.832); - - this.shape_89 = new cjs.Shape(); - this.shape_89.graphics.f("#93EEE5").s().p("AgagCIAHgPIAuAUIgGAPg"); - this.shape_89.setTransform(-67.6,149.7,0.832,0.832); - - this.shape_90 = new cjs.Shape(); - this.shape_90.graphics.f("#93EEE5").s().p("AgaACIAEgQIAxANIgEAPg"); - this.shape_90.setTransform(-38.4,159.7,0.832,0.832); - - this.shape_91 = new cjs.Shape(); - this.shape_91.graphics.f("#93EEE5").s().p("AgaAFIAsgYIAJAPIgtAYg"); - this.shape_91.setTransform(81.3,142.6,0.832,0.832); - - this.shape_92 = new cjs.Shape(); - this.shape_92.graphics.f("#93EEE5").s().p("AgagEIAJgPIAsAYIgIAPg"); - this.shape_92.setTransform(-76.8,145.1,0.832,0.832); - - this.shape_93 = new cjs.Shape(); - this.shape_93.graphics.f("#93EEE5").s().p("AgZAIIAAgQIAzABIAAAQg"); - this.shape_93.setTransform(-2.6,164.2,0.832,0.832); - - this.shape_94 = new cjs.Shape(); - this.shape_94.graphics.f("#93EEE5").s().p("AgaAEIADgPIAyAHIgCAQg"); - this.shape_94.setTransform(-23.2,162.6,0.832,0.832); - - this.shape_95 = new cjs.Shape(); - this.shape_95.graphics.f("#93EEE5").s().p("AgaADIADgQIAyALIgDAPg"); - this.shape_95.setTransform(-33.3,160.8,0.832,0.832); - - this.shape_96 = new cjs.Shape(); - this.shape_96.graphics.f("#93EEE5").s().p("AgaAGIACgQIAzAFIgCAQg"); - this.shape_96.setTransform(-18.1,163.2,0.832,0.832); - - this.shape_97 = new cjs.Shape(); - this.shape_97.graphics.f("#93EEE5").s().p("AgZgHIAygBIABAQIgzABg"); - this.shape_97.setTransform(2.6,164.2,0.832,0.832); - - this.shape_98 = new cjs.Shape(); - this.shape_98.graphics.f("#93EEE5").s().p("AgaAEIADgQIAyAJIgDAQIgygJg"); - this.shape_98.setTransform(-28.3,161.8,0.832,0.832); - - this.shape_99 = new cjs.Shape(); - this.shape_99.graphics.f("#93EEE5").s().p("AgZAHIABgQIAyADIAAAQIgzgDg"); - this.shape_99.setTransform(-7.8,164.1,0.832,0.832); - - this.shape_100 = new cjs.Shape(); - this.shape_100.graphics.f("#93EEE5").s().p("AgQAVIARgvIAQAFIgRAwg"); - this.shape_100.setTransform(153.5,58.2,0.832,0.832); - - this.shape_101 = new cjs.Shape(); - this.shape_101.graphics.f("#93EEE5").s().p("AgOAXIAOgxIAPAEIgOAxg"); - this.shape_101.setTransform(158.3,43.5,0.832,0.832); - - this.shape_102 = new cjs.Shape(); - this.shape_102.graphics.f("#93EEE5").s().p("AgPAWIAPgwIAQAEIgQAyg"); - this.shape_102.setTransform(156.9,48.4,0.832,0.832); - - this.shape_103 = new cjs.Shape(); - this.shape_103.graphics.f("#93EEE5").s().p("AgQAWIAQgwIAQAFIgQAwg"); - this.shape_103.setTransform(155.3,53.3,0.832,0.832); - - this.shape_104 = new cjs.Shape(); - this.shape_104.graphics.f("#93EEE5").s().p("AgRAVIATgvIAQAGIgTAvg"); - this.shape_104.setTransform(151.6,63,0.832,0.832); - - this.shape_105 = new cjs.Shape(); - this.shape_105.graphics.f("#93EEE5").s().p("AgaAGQAVgLAWgPIAKAPIgsAag"); - this.shape_105.setTransform(85.7,140,0.832,0.832); - - this.shape_106 = new cjs.Shape(); - this.shape_106.graphics.f("#93EEE5").s().p("AgSAUIAVguIAPAHIgUAug"); - this.shape_106.setTransform(149.6,67.7,0.832,0.832); - - this.shape_107 = new cjs.Shape(); - this.shape_107.graphics.f("#93EEE5").s().p("AgKAZIAFgyIAQABIgFAyg"); - this.shape_107.setTransform(163.7,13.1,0.832,0.832); - - this.shape_108 = new cjs.Shape(); - this.shape_108.graphics.f("#93EEE5").s().p("AgJAZIADgyIAQAAIgDA0g"); - this.shape_108.setTransform(164,7.9,0.832,0.832); - - this.shape_109 = new cjs.Shape(); - this.shape_109.graphics.f("#93EEE5").s().p("AgSATIAWgtIAQAIIgYAtg"); - this.shape_109.setTransform(145,77,0.832,0.832); - - this.shape_110 = new cjs.Shape(); - this.shape_110.graphics.f("#93EEE5").s().p("AgIAaIABgzIAQAAIgBAzg"); - this.shape_110.setTransform(164.2,2.8,0.832,0.832); - - this.shape_111 = new cjs.Shape(); - this.shape_111.graphics.f("#93EEE5").s().p("AgLAZIAGgzIARACIgHAzg"); - this.shape_111.setTransform(163.2,18.2,0.832,0.832); - - this.shape_112 = new cjs.Shape(); - this.shape_112.graphics.f("#93EEE5").s().p("AgNAXIAMgxIAPAEIgMAxg"); - this.shape_112.setTransform(159.6,38.5,0.832,0.832); - - this.shape_113 = new cjs.Shape(); - this.shape_113.graphics.f("#93EEE5").s().p("AgNAYIALgyIAQADIgLAyg"); - this.shape_113.setTransform(160.7,33.4,0.832,0.832); - - this.shape_114 = new cjs.Shape(); - this.shape_114.graphics.f("#93EEE5").s().p("AgMAYIAJgyIAQADQgEAbgFAXg"); - this.shape_114.setTransform(161.7,28.4,0.832,0.832); - - this.shape_115 = new cjs.Shape(); - this.shape_115.graphics.f("#93EEE5").s().p("AgLAYIAHgyIAQACIgHAzg"); - this.shape_115.setTransform(162.6,23.3,0.832,0.832); - - this.shape_116 = new cjs.Shape(); - this.shape_116.graphics.f("#93EEE5").s().p("AgSATQAKgSAMgbIAPAHIgWAug"); - this.shape_116.setTransform(147.4,72.4,0.832,0.832); - - this.shape_117 = new cjs.Shape(); - this.shape_117.graphics.f("#93EEE5").s().p("AgYAKIAmggIALANIgmAgg"); - this.shape_117.setTransform(106.6,124.9,0.832,0.832); - - this.shape_118 = new cjs.Shape(); - this.shape_118.graphics.f("#93EEE5").s().p("AgYAMIAkgjIANAMIglAjg"); - this.shape_118.setTransform(114.2,118,0.832,0.832); - - this.shape_119 = new cjs.Shape(); - this.shape_119.graphics.f("#93EEE5").s().p("AgYALIAlgiIAMANIgmAig"); - this.shape_119.setTransform(110.4,121.5,0.832,0.832); - - this.shape_120 = new cjs.Shape(); - this.shape_120.graphics.f("#93EEE5").s().p("AgYAJIAngfIAKANIgnAgg"); - this.shape_120.setTransform(102.6,128.2,0.832,0.832); - - this.shape_121 = new cjs.Shape(); - this.shape_121.graphics.f("#93EEE5").s().p("AgaAHIArgbIAJANIgqAcg"); - this.shape_121.setTransform(90.1,137.3,0.832,0.832); - - this.shape_122 = new cjs.Shape(); - this.shape_122.graphics.f("#93EEE5").s().p("AgZAIIApgdIAKANIgpAeg"); - this.shape_122.setTransform(98.5,131.4,0.832,0.832); - - this.shape_123 = new cjs.Shape(); - this.shape_123.graphics.f("#93EEE5").s().p("AgZAIIApgdIAKAOIgqAdg"); - this.shape_123.setTransform(94.3,134.4,0.832,0.832); - - this.shape_124 = new cjs.Shape(); - this.shape_124.graphics.f("#93EEE5").s().p("AgagDIAHgPIAuAWIgIAPQgSgKgbgMg"); - this.shape_124.setTransform(72.3,-147.4,0.832,0.832); - - this.shape_125 = new cjs.Shape(); - this.shape_125.graphics.f("#93EEE5").s().p("AgVARIAcgqIAOAJIgbArg"); - this.shape_125.setTransform(137.2,90.3,0.832,0.832); - - this.shape_126 = new cjs.Shape(); - this.shape_126.graphics.f("#93EEE5").s().p("AgVAQIAdgpIAOAJIgdAqg"); - this.shape_126.setTransform(134.3,94.5,0.832,0.832); - - this.shape_127 = new cjs.Shape(); - this.shape_127.graphics.f("#93EEE5").s().p("AgUARIAagrIAPAJIgaAsg"); - this.shape_127.setTransform(140,85.9,0.832,0.832); - - this.shape_128 = new cjs.Shape(); - this.shape_128.graphics.f("#93EEE5").s().p("AgXAOIAigmIANAMIgjAlg"); - this.shape_128.setTransform(121.4,110.6,0.832,0.832); - - this.shape_129 = new cjs.Shape(); - this.shape_129.graphics.f("#93EEE5").s().p("AgTASIAYgsIAPAIIgZAtg"); - this.shape_129.setTransform(142.6,81.5,0.832,0.832); - - this.shape_130 = new cjs.Shape(); - this.shape_130.graphics.f("#93EEE5").s().p("AgXANIAjglIAMAMIgjAlg"); - this.shape_130.setTransform(117.9,114.4,0.832,0.832); - - this.shape_131 = new cjs.Shape(); - this.shape_131.graphics.f("#93EEE5").s().p("AgWAOIAfgmIAOAKIggAog"); - this.shape_131.setTransform(128.1,102.8,0.832,0.832); - - this.shape_132 = new cjs.Shape(); - this.shape_132.graphics.f("#93EEE5").s().p("AgWAOIAggmIAOALIgiAmg"); - this.shape_132.setTransform(124.8,106.8,0.832,0.832); - - this.shape_133 = new cjs.Shape(); - this.shape_133.graphics.f("#93EEE5").s().p("AgVAPIAdgoIAPAKIgfApg"); - this.shape_133.setTransform(131.2,98.7,0.832,0.832); - - this.shape_134 = new cjs.Shape(); - this.shape_134.graphics.f("#93EEE5").s().p("AgQgUIAQgGIARAwIgQAFg"); - this.shape_134.setTransform(153.6,-57.9,0.832,0.832); - - this.shape_135 = new cjs.Shape(); - this.shape_135.graphics.f("#93EEE5").s().p("AgRgTIAPgHIAVAuIgRAHg"); - this.shape_135.setTransform(149.7,-67.4,0.832,0.832); - - this.shape_136 = new cjs.Shape(); - this.shape_136.graphics.f("#93EEE5").s().p("AgKgYIAQgCIAFAzIgQACg"); - this.shape_136.setTransform(163.2,-17.8,0.832,0.832); - - this.shape_137 = new cjs.Shape(); - this.shape_137.graphics.f("#93EEE5").s().p("AgSgSIAPgIIAWAuIgPAHg"); - this.shape_137.setTransform(147.5,-72.1,0.832,0.832); - - this.shape_138 = new cjs.Shape(); - this.shape_138.graphics.f("#93EEE5").s().p("AgTgSIAPgIIAYAtIgQAIg"); - this.shape_138.setTransform(145.2,-76.7,0.832,0.832); - - this.shape_139 = new cjs.Shape(); - this.shape_139.graphics.f("#93EEE5").s().p("AgVgPIAPgKIAcArIgPAJQgNgYgPgSg"); - this.shape_139.setTransform(137.3,-90.1,0.832,0.832); - - this.shape_140 = new cjs.Shape(); - this.shape_140.graphics.f("#93EEE5").s().p("AgTgRIAOgJIAZAtIgPAIg"); - this.shape_140.setTransform(142.7,-81.2,0.832,0.832); - - this.shape_141 = new cjs.Shape(); - this.shape_141.graphics.f("#93EEE5").s().p("AgUgRIAOgJIAbAsIgPAJg"); - this.shape_141.setTransform(140.1,-85.7,0.832,0.832); - - this.shape_142 = new cjs.Shape(); - this.shape_142.graphics.f("#93EEE5").s().p("AgMgXIAQgDIAJAyIgQADg"); - this.shape_142.setTransform(161.8,-28.1,0.832,0.832); - - this.shape_143 = new cjs.Shape(); - this.shape_143.graphics.f("#93EEE5").s().p("AgLgYIAQgCIAHAzIgQACg"); - this.shape_143.setTransform(162.6,-23,0.832,0.832); - - this.shape_144 = new cjs.Shape(); - this.shape_144.graphics.f("#93EEE5").s().p("AgQgUIAQgHIARAxIgRAFg"); - this.shape_144.setTransform(155.4,-53,0.832,0.832); - - this.shape_145 = new cjs.Shape(); - this.shape_145.graphics.f("#93EEE5").s().p("AgNgWIAQgEIALAyIgQADIgLgxg"); - this.shape_145.setTransform(160.8,-33.1,0.832,0.832); - - this.shape_146 = new cjs.Shape(); - this.shape_146.graphics.f("#93EEE5").s().p("AgPgVIAPgFIAQAwIgQAGg"); - this.shape_146.setTransform(157,-48.1,0.832,0.832); - - this.shape_147 = new cjs.Shape(); - this.shape_147.graphics.f("#93EEE5").s().p("AgOgWIAPgEIAOAxIgPAEg"); - this.shape_147.setTransform(158.4,-43.2,0.832,0.832); - - this.shape_148 = new cjs.Shape(); - this.shape_148.graphics.f("#93EEE5").s().p("AgNgWIAPgEIAMAyIgPADg"); - this.shape_148.setTransform(159.7,-38.2,0.832,0.832); - - this.shape_149 = new cjs.Shape(); - this.shape_149.graphics.f("#93EEE5").s().p("AgRgUIAQgHIATAwIgQAGg"); - this.shape_149.setTransform(151.7,-62.7,0.832,0.832); - - this.shape_150 = new cjs.Shape(); - this.shape_150.graphics.f("#93EEE5").s().p("AgZgJIALgNIAoAfIgLAOg"); - this.shape_150.setTransform(102.8,-128.1,0.832,0.832); - - this.shape_151 = new cjs.Shape(); - this.shape_151.graphics.f("#93EEE5").s().p("AgZgHIAJgOIAqAdIgKAOg"); - this.shape_151.setTransform(94.5,-134.3,0.832,0.832); - - this.shape_152 = new cjs.Shape(); - this.shape_152.graphics.f("#93EEE5").s().p("AgZgIIAKgNIApAeIgLAOg"); - this.shape_152.setTransform(98.7,-131.3,0.832,0.832); - - this.shape_153 = new cjs.Shape(); - this.shape_153.graphics.f("#93EEE5").s().p("AgVgPIAOgKIAdAqIgOAJIgdgpg"); - this.shape_153.setTransform(134.4,-94.3,0.832,0.832); - - this.shape_154 = new cjs.Shape(); - this.shape_154.graphics.f("#93EEE5").s().p("AgagFIAJgPIAsAaIgKAPg"); - this.shape_154.setTransform(85.9,-140,0.832,0.832); - - this.shape_155 = new cjs.Shape(); - this.shape_155.graphics.f("#93EEE5").s().p("AgagDIAIgQIAtAYIgIAPg"); - this.shape_155.setTransform(76.9,-145.1,0.832,0.832); - - this.shape_156 = new cjs.Shape(); - this.shape_156.graphics.f("#93EEE5").s().p("AgagEIAJgPIAsAZIgJAOg"); - this.shape_156.setTransform(81.4,-142.6,0.832,0.832); - - this.shape_157 = new cjs.Shape(); - this.shape_157.graphics.f("#93EEE5").s().p("AgZgGIAJgPIAqAdIgJANg"); - this.shape_157.setTransform(90.2,-137.2,0.832,0.832); - - this.shape_158 = new cjs.Shape(); - this.shape_158.graphics.f("#93EEE5").s().p("AgWgNIAMgMIAiAoIgOAKg"); - this.shape_158.setTransform(125,-106.6,0.832,0.832); - - this.shape_159 = new cjs.Shape(); - this.shape_159.graphics.f("#93EEE5").s().p("AgYgJIALgNIAmAgIgLAOg"); - this.shape_159.setTransform(106.7,-124.8,0.832,0.832); - - this.shape_160 = new cjs.Shape(); - this.shape_160.graphics.f("#93EEE5").s().p("AgVgPIANgKIAeApIgNAKg"); - this.shape_160.setTransform(131.4,-98.5,0.832,0.832); - - this.shape_161 = new cjs.Shape(); - this.shape_161.graphics.f("#93EEE5").s().p("AgWgOIANgLIAgAoIgOALg"); - this.shape_161.setTransform(128.2,-102.6,0.832,0.832); - - this.shape_162 = new cjs.Shape(); - this.shape_162.graphics.f("#93EEE5").s().p("AgYgKIALgNIAmAiIgMANg"); - this.shape_162.setTransform(110.6,-121.4,0.832,0.832); - - this.shape_163 = new cjs.Shape(); - this.shape_163.graphics.f("#93EEE5").s().p("AgagFIAJgOIAsAYIgIAPg"); - this.shape_163.setTransform(-81.4,142.7,0.832,0.832); - - this.shape_164 = new cjs.Shape(); - this.shape_164.graphics.f("#93EEE5").s().p("AgXgNIANgLIAiAlIgNAMg"); - this.shape_164.setTransform(121.5,-110.4,0.832,0.832); - - this.shape_165 = new cjs.Shape(); - this.shape_165.graphics.f("#93EEE5").s().p("AgYgLIAMgMIAlAjIgNAMg"); - this.shape_165.setTransform(114.4,-117.9,0.832,0.832); - - this.shape_166 = new cjs.Shape(); - this.shape_166.graphics.f("#93EEE5").s().p("AgXgMIAMgMIAjAlIgMAMg"); - this.shape_166.setTransform(118,-114.2,0.832,0.832); - - this.shape_167 = new cjs.Shape(); - this.shape_167.graphics.f("#93EEE5").s().p("AgXgMIANgMIAiAmIgNALg"); - this.shape_167.setTransform(-121.5,110.6,0.832,0.832); - - this.shape_168 = new cjs.Shape(); - this.shape_168.graphics.f("#93EEE5").s().p("AgTgSIAPgIIAYAsIgOAJg"); - this.shape_168.setTransform(-142.6,81.5,0.832,0.832); - - this.shape_169 = new cjs.Shape(); - this.shape_169.graphics.f("#93EEE5").s().p("AgWgOIANgKIAgAmIgMALg"); - this.shape_169.setTransform(-124.9,106.8,0.832,0.832); - - this.shape_170 = new cjs.Shape(); - this.shape_170.graphics.f("#93EEE5").s().p("AgVgPIANgKIAeAoIgNALg"); - this.shape_170.setTransform(-131.3,98.7,0.832,0.832); - - this.shape_171 = new cjs.Shape(); - this.shape_171.graphics.f("#93EEE5").s().p("AgVgQIAOgJIAdApIgOAKIgdgqg"); - this.shape_171.setTransform(-134.3,94.5,0.832,0.832); - - this.shape_172 = new cjs.Shape(); - this.shape_172.graphics.f("#93EEE5").s().p("AgUgRIAPgJIAaArIgPAJg"); - this.shape_172.setTransform(-140,85.9,0.832,0.832); - - this.shape_173 = new cjs.Shape(); - this.shape_173.graphics.f("#93EEE5").s().p("AgUgQIAOgJQANAXAPASIgPALg"); - this.shape_173.setTransform(-137.2,90.3,0.832,0.832); - - this.shape_174 = new cjs.Shape(); - this.shape_174.graphics.f("#93EEE5").s().p("AgWgOIANgLIAgAoIgNALg"); - this.shape_174.setTransform(-128.2,102.8,0.832,0.832); - - this.shape_175 = new cjs.Shape(); - this.shape_175.graphics.f("#93EEE5").s().p("AgagGIAKgOIAqAbIgJAOg"); - this.shape_175.setTransform(-90.2,137.3,0.832,0.832); - - this.shape_176 = new cjs.Shape(); - this.shape_176.graphics.f("#93EEE5").s().p("AgZgHIAKgOIApAdIgJAOIgqgdg"); - this.shape_176.setTransform(-94.4,134.4,0.832,0.832); - - this.shape_177 = new cjs.Shape(); - this.shape_177.graphics.f("#93EEE5").s().p("AgXgMIAMgMIAjAlIgMAMg"); - this.shape_177.setTransform(-117.9,114.4,0.832,0.832); - - this.shape_178 = new cjs.Shape(); - this.shape_178.graphics.f("#93EEE5").s().p("AgagFIAKgPIArAaIgJAPg"); - this.shape_178.setTransform(-85.8,140.1,0.832,0.832); - - this.shape_179 = new cjs.Shape(); - this.shape_179.graphics.f("#93EEE5").s().p("AgZgIIALgNIAoAdIgKAPg"); - this.shape_179.setTransform(-98.6,131.4,0.832,0.832); - - this.shape_180 = new cjs.Shape(); - this.shape_180.graphics.f("#93EEE5").s().p("AgYgLIAMgMIAlAjIgMAMIglgjg"); - this.shape_180.setTransform(-114.3,118,0.832,0.832); - - this.shape_181 = new cjs.Shape(); - this.shape_181.graphics.f("#93EEE5").s().p("AgYgLIAMgMIAlAiIgLANg"); - this.shape_181.setTransform(-110.5,121.5,0.832,0.832); - - this.shape_182 = new cjs.Shape(); - this.shape_182.graphics.f("#93EEE5").s().p("AgYgJIALgOIAmAhIgLAOg"); - this.shape_182.setTransform(-106.7,124.9,0.832,0.832); - - this.shape_183 = new cjs.Shape(); - this.shape_183.graphics.f("#93EEE5").s().p("AgKgYIARgBIAEAyIgQABg"); - this.shape_183.setTransform(-163.8,13.1,0.832,0.832); - - this.shape_184 = new cjs.Shape(); - this.shape_184.graphics.f("#93EEE5").s().p("AgKgYIAQgCIAFAzIgPACQgEgbgCgYg"); - this.shape_184.setTransform(-163.3,18.2,0.832,0.832); - - this.shape_185 = new cjs.Shape(); - this.shape_185.graphics.f("#93EEE5").s().p("AgLgYIAQgCIAHAyIgQADIgHgzg"); - this.shape_185.setTransform(-162.6,23.3,0.832,0.832); - - this.shape_186 = new cjs.Shape(); - this.shape_186.graphics.f("#93EEE5").s().p("AgMgXIAQgDIAJAyIgQADg"); - this.shape_186.setTransform(-161.8,28.4,0.832,0.832); - - this.shape_187 = new cjs.Shape(); - this.shape_187.graphics.f("#93EEE5").s().p("AgHAaIgBgzIAQAAIABAzg"); - this.shape_187.setTransform(164.2,-2.4,0.832,0.832); - - this.shape_188 = new cjs.Shape(); - this.shape_188.graphics.f("#93EEE5").s().p("AgJgYIARgBIACAzIgQAAIgDgyg"); - this.shape_188.setTransform(164,-7.6,0.832,0.832); - - this.shape_189 = new cjs.Shape(); - this.shape_189.graphics.f("#93EEE5").s().p("AgNgXIAQgDIALAyIgQADg"); - this.shape_189.setTransform(-160.8,33.4,0.832,0.832); - - this.shape_190 = new cjs.Shape(); - this.shape_190.graphics.f("#93EEE5").s().p("AgKgYIARgCIADA0IgQABg"); - this.shape_190.setTransform(163.7,-12.7,0.832,0.832); - - this.shape_191 = new cjs.Shape(); - this.shape_191.graphics.f("#93EEE5").s().p("AgPgWIAQgEIAPAwIgQAGg"); - this.shape_191.setTransform(-157,48.4,0.832,0.832); - - this.shape_192 = new cjs.Shape(); - this.shape_192.graphics.f("#93EEE5").s().p("AgSgUIARgGIATAuIgPAHg"); - this.shape_192.setTransform(-149.7,67.7,0.832,0.832); - - this.shape_193 = new cjs.Shape(); - this.shape_193.graphics.f("#93EEE5").s().p("AgNgWIAPgEIANAxIgQAEg"); - this.shape_193.setTransform(-159.7,38.5,0.832,0.832); - - this.shape_194 = new cjs.Shape(); - this.shape_194.graphics.f("#93EEE5").s().p("AgSgTIAPgHIAWAtIgPAIg"); - this.shape_194.setTransform(-147.5,72.4,0.832,0.832); - - this.shape_195 = new cjs.Shape(); - this.shape_195.graphics.f("#93EEE5").s().p("AgRgUIAQgGIATAuIgQAHg"); - this.shape_195.setTransform(-151.7,63,0.832,0.832); - - this.shape_196 = new cjs.Shape(); - this.shape_196.graphics.f("#93EEE5").s().p("AgQgVIAQgFIARAvIgQAGg"); - this.shape_196.setTransform(-153.6,58.2,0.832,0.832); - - this.shape_197 = new cjs.Shape(); - this.shape_197.graphics.f("#93EEE5").s().p("AgOgWIAPgEIAOAxIgPAEg"); - this.shape_197.setTransform(-158.4,43.5,0.832,0.832); - - this.shape_198 = new cjs.Shape(); - this.shape_198.graphics.f("#93EEE5").s().p("AgQgVIAQgFIARAwIgRAFg"); - this.shape_198.setTransform(-155.4,53.3,0.832,0.832); - - this.shape_199 = new cjs.Shape(); - this.shape_199.graphics.f("#93EEE5").s().p("AgTgSIAQgIQAJAWAOAXIgPAIg"); - this.shape_199.setTransform(-145.1,77,0.832,0.832); - - this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_199},{t:this.shape_198},{t:this.shape_197},{t:this.shape_196},{t:this.shape_195},{t:this.shape_194},{t:this.shape_193},{t:this.shape_192},{t:this.shape_191},{t:this.shape_190},{t:this.shape_189},{t:this.shape_188},{t:this.shape_187},{t:this.shape_186},{t:this.shape_185},{t:this.shape_184},{t:this.shape_183},{t:this.shape_182},{t:this.shape_181},{t:this.shape_180},{t:this.shape_179},{t:this.shape_178},{t:this.shape_177},{t:this.shape_176},{t:this.shape_175},{t:this.shape_174},{t:this.shape_173},{t:this.shape_172},{t:this.shape_171},{t:this.shape_170},{t:this.shape_169},{t:this.shape_168},{t:this.shape_167},{t:this.shape_166},{t:this.shape_165},{t:this.shape_164},{t:this.shape_163},{t:this.shape_162},{t:this.shape_161},{t:this.shape_160},{t:this.shape_159},{t:this.shape_158},{t:this.shape_157},{t:this.shape_156},{t:this.shape_155},{t:this.shape_154},{t:this.shape_153},{t:this.shape_152},{t:this.shape_151},{t:this.shape_150},{t:this.shape_149},{t:this.shape_148},{t:this.shape_147},{t:this.shape_146},{t:this.shape_145},{t:this.shape_144},{t:this.shape_143},{t:this.shape_142},{t:this.shape_141},{t:this.shape_140},{t:this.shape_139},{t:this.shape_138},{t:this.shape_137},{t:this.shape_136},{t:this.shape_135},{t:this.shape_134},{t:this.shape_133},{t:this.shape_132},{t:this.shape_131},{t:this.shape_130},{t:this.shape_129},{t:this.shape_128},{t:this.shape_127},{t:this.shape_126},{t:this.shape_125},{t:this.shape_124},{t:this.shape_123},{t:this.shape_122},{t:this.shape_121},{t:this.shape_120},{t:this.shape_119},{t:this.shape_118},{t:this.shape_117},{t:this.shape_116},{t:this.shape_115},{t:this.shape_114},{t:this.shape_113},{t:this.shape_112},{t:this.shape_111},{t:this.shape_110},{t:this.shape_109},{t:this.shape_108},{t:this.shape_107},{t:this.shape_106},{t:this.shape_105},{t:this.shape_104},{t:this.shape_103},{t:this.shape_102},{t:this.shape_101},{t:this.shape_100},{t:this.shape_99},{t:this.shape_98},{t:this.shape_97},{t:this.shape_96},{t:this.shape_95},{t:this.shape_94},{t:this.shape_93},{t:this.shape_92},{t:this.shape_91},{t:this.shape_90},{t:this.shape_89},{t:this.shape_88},{t:this.shape_87},{t:this.shape_86},{t:this.shape_85},{t:this.shape_84},{t:this.shape_83},{t:this.shape_82},{t:this.shape_81},{t:this.shape_80},{t:this.shape_79},{t:this.shape_78},{t:this.shape_77},{t:this.shape_76},{t:this.shape_75},{t:this.shape_74},{t:this.shape_73},{t:this.shape_72},{t:this.shape_71},{t:this.shape_70},{t:this.shape_69},{t:this.shape_68},{t:this.shape_67},{t:this.shape_66},{t:this.shape_65},{t:this.shape_64},{t:this.shape_63},{t:this.shape_62},{t:this.shape_61},{t:this.shape_60},{t:this.shape_59},{t:this.shape_58},{t:this.shape_57},{t:this.shape_56},{t:this.shape_55},{t:this.shape_54},{t:this.shape_53},{t:this.shape_52},{t:this.shape_51},{t:this.shape_50},{t:this.shape_49},{t:this.shape_48},{t:this.shape_47},{t:this.shape_46},{t:this.shape_45},{t:this.shape_44},{t:this.shape_43},{t:this.shape_42},{t:this.shape_41},{t:this.shape_40},{t:this.shape_39},{t:this.shape_38},{t:this.shape_37},{t:this.shape_36},{t:this.shape_35},{t:this.shape_34},{t:this.shape_33},{t:this.shape_32},{t:this.shape_31},{t:this.shape_30},{t:this.shape_29},{t:this.shape_28},{t:this.shape_27},{t:this.shape_26},{t:this.shape_25},{t:this.shape_24},{t:this.shape_23},{t:this.shape_22},{t:this.shape_21},{t:this.shape_20},{t:this.shape_19},{t:this.shape_18},{t:this.shape_17},{t:this.shape_16},{t:this.shape_15},{t:this.shape_14},{t:this.shape_13},{t:this.shape_12},{t:this.shape_11},{t:this.shape_10},{t:this.shape_9},{t:this.shape_8},{t:this.shape_7},{t:this.shape_6},{t:this.shape_5},{t:this.shape_4},{t:this.shape_3},{t:this.shape_2},{t:this.shape_1},{t:this.shape}]}).wait(1)); - -}).prototype = getMCSymbolPrototype(lib.ruota_01, new cjs.Rectangle(-165,-164.9,330,329.9), null); - - -// stage content: -(lib.Animazione_Demo01 = function(mode,startPosition,loop) { -if (loop == null) { loop = false; }this.initialize(mode,startPosition,loop,{}); - - // Livello_4 - this.instance = new lib.Ruota04(); - this.instance.parent = this; - this.instance.setTransform(275,200.5,0.1,0.1); - - this.timeline.addTween(cjs.Tween.get(this.instance).wait(1).to({scaleX:0.2,scaleY:0.2,rotation:-4.9},0).wait(1).to({scaleX:0.3,scaleY:0.3,rotation:-9.9},0).wait(1).to({scaleX:0.4,scaleY:0.4,rotation:-14.8},0).wait(1).to({scaleX:0.5,scaleY:0.5,rotation:-19.7},0).wait(1).to({scaleX:0.6,scaleY:0.6,rotation:-24.7},0).wait(1).to({scaleX:0.7,scaleY:0.7,rotation:-29.6},0).wait(1).to({scaleX:0.8,scaleY:0.8,rotation:-34.5},0).wait(1).to({scaleX:0.9,scaleY:0.9,rotation:-39.5},0).wait(1).to({scaleX:1,scaleY:1,rotation:-44.4},0).wait(1).to({scaleX:1.1,scaleY:1.1,rotation:-49.3},0).wait(1).to({scaleX:1.07,scaleY:1.07,rotation:-54.2},0).wait(1).to({scaleX:1.03,scaleY:1.03,rotation:-59.2},0).wait(1).to({scaleX:1,scaleY:1,rotation:-64.1},0).wait(1).to({rotation:-69},0).wait(1).to({rotation:-74},0).wait(1).to({rotation:-78.9},0).wait(1).to({rotation:-83.8},0).wait(1).to({rotation:-88.8},0).wait(1).to({rotation:-93.7},0).wait(1).to({rotation:-98.6},0).wait(1).to({rotation:-103.6},0).wait(1).to({rotation:-108.5,y:200.4},0).wait(1).to({rotation:-113.4},0).wait(1).to({rotation:-118.4},0).wait(1).to({rotation:-123.3},0).wait(1).to({rotation:-128.2},0).wait(1).to({rotation:-133.2},0).wait(1).to({rotation:-138.1},0).wait(1).to({rotation:-143},0).wait(1).to({rotation:-147.9},0).wait(1).to({rotation:-152.9},0).wait(1).to({rotation:-157.8},0).wait(1).to({rotation:-162.7},0).wait(1).to({rotation:-167.7},0).wait(1).to({rotation:-172.6},0).wait(1).to({rotation:-177.5},0).wait(1).to({rotation:-182.5},0).wait(1).to({rotation:-187.4},0).wait(1).to({rotation:-192.3},0).wait(1).to({rotation:-197.3},0).wait(1).to({rotation:-202.2},0).wait(1).to({rotation:-207.1},0).wait(1).to({rotation:-212.1},0).wait(1).to({rotation:-217},0).wait(1).to({rotation:-221.9},0).wait(1).to({rotation:-226.8},0).wait(1).to({rotation:-231.8},0).wait(1).to({rotation:-236.7},0).wait(1).to({rotation:-241.6},0).wait(1).to({rotation:-246.6},0).wait(1).to({rotation:-251.5},0).wait(1).to({rotation:-256.4},0).wait(1).to({rotation:-261.4},0).wait(1).to({rotation:-266.3},0).wait(1).to({rotation:-271.2},0).wait(1).to({rotation:-276.2},0).wait(1).to({rotation:-281.1},0).wait(1).to({rotation:-286},0).wait(1).to({rotation:-291},0).wait(1).to({rotation:-295.9},0).wait(1).to({rotation:-300.8},0).wait(1).to({rotation:-305.8},0).wait(1).to({rotation:-310.7},0).wait(1).to({rotation:-315.6},0).wait(1).to({rotation:-320.5},0).wait(1).to({rotation:-325.5,y:200.3},0).wait(1).to({rotation:-330.4},0).wait(1).to({rotation:-335.3},0).wait(1).to({rotation:-340.3},0).wait(1).to({rotation:-345.2},0).wait(1).to({rotation:-350.1},0).wait(1).to({rotation:-355.1},0).wait(1).to({rotation:-360},0).wait(1).to({rotation:-364.9},0).wait(1).to({rotation:-369.9},0).wait(1).to({rotation:-374.8},0).wait(1).to({rotation:-379.7},0).wait(1).to({rotation:-384.7},0).wait(1).to({rotation:-389.6},0).wait(1).to({rotation:-394.5},0).wait(1).to({rotation:-399.5},0).wait(1).to({rotation:-404.4},0).wait(1).to({rotation:-409.3},0).wait(1).to({rotation:-414.2},0).wait(1).to({rotation:-419.2},0).wait(1).to({rotation:-424.1},0).wait(1).to({rotation:-429},0).wait(1).to({rotation:-434},0).wait(1).to({rotation:-438.9},0).wait(1).to({rotation:-443.8},0).wait(1).to({rotation:-448.8},0).wait(1).to({rotation:-453.7},0).wait(1).to({rotation:-458.6},0).wait(1).to({rotation:-463.6},0).wait(1).to({rotation:-468.5},0).wait(1).to({rotation:-473.4},0).wait(1).to({rotation:-478.4},0).wait(1).to({rotation:-483.3},0).wait(1).to({rotation:-488.2},0).wait(1).to({rotation:-493.2},0).wait(1).to({rotation:-498.1},0).wait(1).to({rotation:-503},0).wait(1).to({rotation:-507.9},0).wait(1).to({rotation:-512.9},0).wait(1).to({rotation:-517.8},0).wait(1).to({rotation:-522.7},0).wait(1).to({rotation:-527.7},0).wait(1).to({rotation:-532.6},0).wait(1).to({rotation:-537.5},0).wait(1).to({rotation:-542.5,y:200.2},0).wait(1).to({rotation:-547.4},0).wait(1).to({rotation:-552.3},0).wait(1).to({rotation:-557.3},0).wait(1).to({rotation:-562.2},0).wait(1).to({rotation:-567.1},0).wait(1).to({rotation:-572.1},0).wait(1).to({rotation:-577},0).wait(1).to({rotation:-581.9},0).wait(1).to({rotation:-586.8},0).wait(1).to({rotation:-591.8},0).wait(1).to({rotation:-596.7},0).wait(1).to({rotation:-601.6},0).wait(1).to({rotation:-606.6},0).wait(1).to({rotation:-611.5},0).wait(1).to({rotation:-616.4},0).wait(1).to({rotation:-621.4},0).wait(1).to({rotation:-626.3},0).wait(1).to({rotation:-631.2},0).wait(1).to({rotation:-636.2},0).wait(1).to({rotation:-641.1},0).wait(1).to({rotation:-646},0).wait(1).to({rotation:-651},0).wait(1).to({rotation:-655.9},0).wait(1).to({rotation:-660.8},0).wait(1).to({rotation:-665.8},0).wait(1).to({rotation:-670.7},0).wait(1).to({rotation:-675.6},0).wait(1).to({rotation:-680.5},0).wait(1).to({rotation:-685.5},0).wait(1).to({rotation:-690.4},0).wait(1).to({rotation:-695.3},0).wait(1).to({rotation:-700.3},0).wait(1).to({rotation:-705.2},0).wait(1).to({rotation:-710.1},0).wait(1).to({rotation:-715.1},0).wait(1).to({rotation:-720},0).wait(1).to({rotation:-724.9},0).wait(1).to({rotation:-729.9},0).wait(1).to({rotation:-734.8},0).wait(1).to({rotation:-739.7},0).wait(1).to({rotation:-744.7},0).wait(1).to({rotation:-749.6},0).wait(1).to({rotation:-754.5},0).wait(1).to({rotation:-759.5,y:200.1},0).wait(1).to({rotation:-764.4},0).wait(1).to({rotation:-769.3},0).wait(1).to({rotation:-774.2},0).wait(1).to({rotation:-779.2},0).wait(1).to({rotation:-784.1},0).wait(1).to({rotation:-789},0).wait(1).to({rotation:-794},0).wait(1).to({rotation:-798.9},0).wait(1).to({rotation:-803.8},0).wait(1).to({rotation:-808.8},0).wait(1).to({rotation:-813.7},0).wait(1).to({rotation:-818.6},0).wait(1).to({rotation:-823.6},0).wait(1).to({rotation:-828.5},0).wait(1).to({rotation:-833.4},0).wait(1).to({rotation:-838.4},0).wait(1).to({rotation:-843.3},0).wait(1).to({rotation:-848.2},0).wait(1).to({rotation:-853.2},0).wait(1).to({rotation:-858.1},0).wait(1).to({rotation:-863},0).wait(1).to({rotation:-867.9},0).wait(1).to({rotation:-872.9},0).wait(1).to({rotation:-877.8},0).wait(1).to({rotation:-882.7},0).wait(1).to({rotation:-887.7},0).wait(1).to({rotation:-892.6},0).wait(1).to({rotation:-897.5},0).wait(1).to({rotation:-902.5},0).wait(1).to({rotation:-907.4},0).wait(1).to({rotation:-912.3},0).wait(1).to({rotation:-917.3},0).wait(1).to({rotation:-922.2},0).wait(1).to({rotation:-927.1},0).wait(1).to({rotation:-932.1},0).wait(1).to({rotation:-937},0).wait(1).to({rotation:-941.9},0).wait(1).to({rotation:-946.8},0).wait(1).to({rotation:-951.8},0).wait(1).to({rotation:-956.7},0).wait(1).to({rotation:-961.6},0).wait(1).to({rotation:-966.6},0).wait(1).to({rotation:-971.5},0).wait(1).to({rotation:-976.4,y:200},0).wait(1).to({rotation:-981.4},0).wait(1).to({rotation:-986.3},0).wait(1).to({rotation:-991.2},0).wait(1).to({rotation:-996.2},0).wait(1).to({rotation:-1001.1},0).wait(1).to({rotation:-1006},0).wait(1).to({rotation:-1011},0).wait(1).to({rotation:-1015.9},0).wait(1).to({rotation:-1020.8},0).wait(1).to({rotation:-1025.8},0).wait(1).to({rotation:-1030.7},0).wait(1).to({rotation:-1035.6},0).wait(1).to({rotation:-1040.5},0).wait(1).to({scaleX:0.88,scaleY:0.88,rotation:-1045.5},0).wait(1).to({scaleX:0.75,scaleY:0.75,rotation:-1050.4},0).wait(1).to({scaleX:0.63,scaleY:0.63,rotation:-1055.3},0).wait(1).to({scaleX:0.5,scaleY:0.5,rotation:-1060.3},0).wait(1).to({scaleX:0.38,scaleY:0.38,rotation:-1065.2},0).wait(1).to({scaleX:0.25,scaleY:0.25,rotation:-1070.1},0).wait(1).to({scaleX:0.13,scaleY:0.13,rotation:-1075.1},0).wait(1).to({scaleX:0,scaleY:0,rotation:-1080},0).wait(1)); - - // Livello_2 - this.instance_1 = new lib.Ruota02(); - this.instance_1.parent = this; - this.instance_1.setTransform(274.6,200.4,0.1,0.098,0,0,0,0,8.2); - - this.timeline.addTween(cjs.Tween.get(this.instance_1).wait(1).to({regX:0.6,regY:8.8,scaleX:0.2,scaleY:0.2,rotation:-4.9,x:274.7,y:200.5},0).wait(1).to({scaleX:0.3,scaleY:0.29,rotation:-9.9,x:274.8},0).wait(1).to({scaleX:0.4,scaleY:0.39,rotation:-14.8,x:274.9,y:200.6},0).wait(1).to({scaleX:0.5,scaleY:0.49,rotation:-19.7,x:275},0).wait(1).to({scaleX:0.6,scaleY:0.59,rotation:-24.7,x:275.1},0).wait(1).to({scaleX:0.7,scaleY:0.68,rotation:-29.6},0).wait(1).to({scaleX:0.8,scaleY:0.78,rotation:-34.5,x:275.3,y:200.5},0).wait(1).to({scaleX:0.9,scaleY:0.88,rotation:-39.5,y:200.4},0).wait(1).to({scaleX:1,scaleY:0.98,rotation:-44.4,x:275.5},0).wait(1).to({scaleX:1.1,scaleY:1.07,rotation:-49.3,y:200.3},0).wait(1).to({scaleX:1.07,scaleY:1.04,rotation:-54.2},0).wait(1).to({scaleX:1.03,scaleY:1.01,rotation:-59.2,x:275.4,y:200.2},0).wait(1).to({scaleX:1,scaleY:0.98,rotation:-64.1,y:200.1},0).wait(1).to({rotation:-69,x:275.3,y:200},0).wait(1).to({rotation:-74,y:199.9},0).wait(1).to({rotation:-78.9},0).wait(1).to({rotation:-83.8,x:275.2,y:199.8},0).wait(1).to({rotation:-88.8},0).wait(1).to({rotation:-93.7,x:275.1},0).wait(1).to({rotation:-98.6,y:199.7},0).wait(1).to({rotation:-103.6,x:275},0).wait(1).to({rotation:-108.5,y:199.6},0).wait(1).to({rotation:-113.4,x:274.9},0).wait(1).to({rotation:-118.4,x:274.8},0).wait(1).to({rotation:-123.3},0).wait(1).to({rotation:-128.2,x:274.7},0).wait(1).to({rotation:-133.2,x:274.6,y:199.5},0).wait(1).to({rotation:-138.1,y:199.6},0).wait(1).to({rotation:-143,x:274.4},0).wait(1).to({rotation:-147.9},0).wait(1).to({rotation:-152.9,x:274.3},0).wait(1).to({rotation:-157.8},0).wait(1).to({rotation:-162.7,x:274.2},0).wait(1).to({rotation:-167.7,x:274.1,y:199.7},0).wait(1).to({rotation:-172.6},0).wait(1).to({rotation:-177.5,x:274},0).wait(1).to({rotation:-182.5,y:199.8},0).wait(1).to({rotation:-187.4,x:273.9,y:199.9},0).wait(1).to({rotation:-192.3,y:200},0).wait(1).to({rotation:-197.3},0).wait(1).to({rotation:-202.2,x:273.8,y:200.1},0).wait(1).to({rotation:-207.1},0).wait(1).to({rotation:-212.1,y:200.2},0).wait(1).to({rotation:-217,y:200.3},0).wait(1).to({rotation:-221.9,x:273.7,y:200.4},0).wait(1).to({rotation:-226.8,x:273.8},0).wait(1).to({rotation:-231.8,y:200.5},0).wait(1).to({rotation:-236.7,x:273.7,y:200.6},0).wait(1).to({rotation:-241.6,x:273.8,y:200.7},0).wait(1).to({rotation:-246.6},0).wait(1).to({rotation:-251.5},0).wait(1).to({rotation:-256.4,x:273.9,y:200.9},0).wait(1).to({rotation:-261.4},0).wait(1).to({rotation:-266.3,x:274,y:201},0).wait(1).to({rotation:-271.2},0).wait(1).to({rotation:-276.2,x:274.1},0).wait(1).to({rotation:-281.1,y:201.1},0).wait(1).to({rotation:-286,x:274.2},0).wait(1).to({rotation:-291,x:274.3},0).wait(1).to({rotation:-295.9,y:201.2},0).wait(1).to({rotation:-300.8,x:274.4},0).wait(1).to({rotation:-305.8,x:274.5},0).wait(1).to({rotation:-310.7,x:274.6},0).wait(1).to({rotation:-315.6},0).wait(1).to({rotation:-320.5,x:274.7,y:201.3},0).wait(1).to({rotation:-325.5,x:274.8},0).wait(1).to({rotation:-330.4,y:201.2},0).wait(1).to({rotation:-335.3,x:274.9},0).wait(1).to({rotation:-340.3,x:275},0).wait(1).to({rotation:-345.2,y:201.1},0).wait(1).to({rotation:-350.1,x:275.1},0).wait(1).to({rotation:-355.1,y:201},0).wait(1).to({rotation:-360,x:275.2},0).wait(1).to({rotation:-364.9,x:275.3,y:200.9},0).wait(1).to({rotation:-369.9},0).wait(1).to({rotation:-374.8,x:275.4,y:200.8},0).wait(1).to({rotation:-379.7,x:275.3},0).wait(1).to({rotation:-384.7,x:275.4,y:200.7},0).wait(1).to({rotation:-389.6,y:200.6},0).wait(1).to({rotation:-394.5},0).wait(1).to({rotation:-399.5,y:200.5},0).wait(1).to({rotation:-404.4,x:275.5,y:200.4},0).wait(1).to({rotation:-409.3,x:275.4,y:200.3},0).wait(1).to({rotation:-414.2,y:200.2},0).wait(1).to({rotation:-419.2},0).wait(1).to({rotation:-424.1,y:200.1},0).wait(1).to({rotation:-429,x:275.3,y:200},0).wait(1).to({rotation:-434,y:199.9},0).wait(1).to({rotation:-438.9},0).wait(1).to({rotation:-443.8,x:275.2,y:199.8},0).wait(1).to({rotation:-448.8},0).wait(1).to({rotation:-453.7,x:275.1},0).wait(1).to({rotation:-458.6,y:199.7},0).wait(1).to({rotation:-463.6,x:275},0).wait(1).to({rotation:-468.5,y:199.6},0).wait(1).to({rotation:-473.4,x:274.9},0).wait(1).to({rotation:-478.4,x:274.8},0).wait(1).to({rotation:-483.3},0).wait(1).to({rotation:-488.2,x:274.7},0).wait(1).to({rotation:-493.2,x:274.6,y:199.5},0).wait(1).to({rotation:-498.1,y:199.6},0).wait(1).to({rotation:-503,x:274.4},0).wait(1).to({rotation:-507.9},0).wait(1).to({rotation:-512.9,x:274.3},0).wait(1).to({rotation:-517.8},0).wait(1).to({rotation:-522.7,x:274.2},0).wait(1).to({rotation:-527.7,x:274.1,y:199.7},0).wait(1).to({rotation:-532.6},0).wait(1).to({rotation:-537.5,x:274},0).wait(1).to({rotation:-542.5,y:199.8},0).wait(1).to({rotation:-547.4,x:273.9,y:199.9},0).wait(1).to({rotation:-552.3,y:200},0).wait(1).to({rotation:-557.3},0).wait(1).to({rotation:-562.2,x:273.8,y:200.1},0).wait(1).to({rotation:-567.1},0).wait(1).to({rotation:-572.1,y:200.2},0).wait(1).to({rotation:-577,y:200.3},0).wait(1).to({rotation:-581.9,x:273.7,y:200.4},0).wait(1).to({rotation:-586.8,x:273.8},0).wait(1).to({rotation:-591.8,y:200.5},0).wait(1).to({rotation:-596.7,x:273.7,y:200.6},0).wait(1).to({rotation:-601.6,x:273.8,y:200.7},0).wait(1).to({rotation:-606.6},0).wait(1).to({rotation:-611.5},0).wait(1).to({rotation:-616.4,x:273.9,y:200.9},0).wait(1).to({rotation:-621.4},0).wait(1).to({rotation:-626.3,x:274,y:201},0).wait(1).to({rotation:-631.2},0).wait(1).to({rotation:-636.2,x:274.1},0).wait(1).to({rotation:-641.1,y:201.1},0).wait(1).to({rotation:-646,x:274.2},0).wait(1).to({rotation:-651,x:274.3},0).wait(1).to({rotation:-655.9,y:201.2},0).wait(1).to({rotation:-660.8,x:274.4},0).wait(1).to({rotation:-665.8,x:274.5},0).wait(1).to({rotation:-670.7,x:274.6},0).wait(1).to({rotation:-675.6},0).wait(1).to({rotation:-680.5,x:274.7,y:201.3},0).wait(1).to({rotation:-685.5,x:274.8},0).wait(1).to({rotation:-690.4,y:201.2},0).wait(1).to({rotation:-695.3,x:274.9},0).wait(1).to({rotation:-700.3,x:275},0).wait(1).to({rotation:-705.2,y:201.1},0).wait(1).to({rotation:-710.1,x:275.1},0).wait(1).to({rotation:-715.1,y:201},0).wait(1).to({rotation:-720,x:275.2},0).wait(1).to({rotation:-724.9,x:275.3,y:200.9},0).wait(1).to({rotation:-729.9},0).wait(1).to({rotation:-734.8,x:275.4,y:200.8},0).wait(1).to({rotation:-739.7,x:275.3},0).wait(1).to({rotation:-744.7,x:275.4,y:200.7},0).wait(1).to({rotation:-749.6,y:200.6},0).wait(1).to({rotation:-754.5},0).wait(1).to({rotation:-759.5,y:200.5},0).wait(1).to({rotation:-764.4,x:275.5,y:200.4},0).wait(1).to({rotation:-769.3,x:275.4,y:200.3},0).wait(1).to({rotation:-774.2,y:200.2},0).wait(1).to({rotation:-779.2},0).wait(1).to({rotation:-784.1,y:200.1},0).wait(1).to({rotation:-789,x:275.3,y:200},0).wait(1).to({rotation:-794,y:199.9},0).wait(1).to({rotation:-798.9},0).wait(1).to({rotation:-803.8,x:275.2,y:199.8},0).wait(1).to({rotation:-808.8},0).wait(1).to({rotation:-813.7,x:275.1},0).wait(1).to({rotation:-818.6,y:199.7},0).wait(1).to({rotation:-823.6,x:275},0).wait(1).to({rotation:-828.5,y:199.6},0).wait(1).to({rotation:-833.4,x:274.9},0).wait(1).to({rotation:-838.4,x:274.8},0).wait(1).to({rotation:-843.3},0).wait(1).to({rotation:-848.2,x:274.7},0).wait(1).to({rotation:-853.2,x:274.6,y:199.5},0).wait(1).to({rotation:-858.1,y:199.6},0).wait(1).to({rotation:-863,x:274.4},0).wait(1).to({rotation:-867.9},0).wait(1).to({rotation:-872.9,x:274.3},0).wait(1).to({rotation:-877.8},0).wait(1).to({rotation:-882.7,x:274.2},0).wait(1).to({rotation:-887.7,x:274.1,y:199.7},0).wait(1).to({rotation:-892.6},0).wait(1).to({rotation:-897.5,x:274},0).wait(1).to({rotation:-902.5,y:199.8},0).wait(1).to({rotation:-907.4,x:273.9,y:199.9},0).wait(1).to({rotation:-912.3,y:200},0).wait(1).to({rotation:-917.3},0).wait(1).to({rotation:-922.2,x:273.8,y:200.1},0).wait(1).to({rotation:-927.1},0).wait(1).to({rotation:-932.1,y:200.2},0).wait(1).to({rotation:-937,y:200.3},0).wait(1).to({rotation:-941.9,x:273.7,y:200.4},0).wait(1).to({rotation:-946.8,x:273.8},0).wait(1).to({rotation:-951.8,y:200.5},0).wait(1).to({rotation:-956.7,x:273.7,y:200.6},0).wait(1).to({rotation:-961.6,x:273.8,y:200.7},0).wait(1).to({rotation:-966.6},0).wait(1).to({rotation:-971.5},0).wait(1).to({rotation:-976.4,x:273.9,y:200.9},0).wait(1).to({rotation:-981.4},0).wait(1).to({rotation:-986.3,x:274,y:201},0).wait(1).to({rotation:-991.2},0).wait(1).to({rotation:-996.2,x:274.1},0).wait(1).to({rotation:-1001.1,y:201.1},0).wait(1).to({rotation:-1006,x:274.2},0).wait(1).to({rotation:-1011,x:274.3},0).wait(1).to({rotation:-1015.9,y:201.2},0).wait(1).to({rotation:-1020.8,x:274.4},0).wait(1).to({rotation:-1025.8,x:274.5},0).wait(1).to({rotation:-1030.7,x:274.6},0).wait(1).to({rotation:-1035.6},0).wait(1).to({rotation:-1040.5,x:274.7,y:201.3},0).wait(1).to({scaleX:0.88,scaleY:0.85,rotation:-1045.5,x:274.8,y:201.1},0).wait(1).to({scaleX:0.75,scaleY:0.73,rotation:-1050.4,y:201},0).wait(1).to({scaleX:0.63,scaleY:0.61,rotation:-1055.3,y:200.9},0).wait(1).to({scaleX:0.5,scaleY:0.49,rotation:-1060.3,y:200.8},0).wait(1).to({scaleX:0.38,scaleY:0.37,rotation:-1065.2,y:200.6},0).wait(1).to({scaleX:0.25,scaleY:0.25,rotation:-1070.1,x:274.7},0).wait(1).to({scaleX:0.13,scaleY:0.12,rotation:-1075.1,y:200.5},0).wait(1).to({scaleX:0,scaleY:0,rotation:-1080,x:274.6,y:200.4},0).wait(1)); - - // Livello_6 - this.instance_2 = new lib.Ruota03(); - this.instance_2.parent = this; - this.instance_2.setTransform(275,200,0.1,0.1); - - this.timeline.addTween(cjs.Tween.get(this.instance_2).wait(1).to({regX:-0.6,scaleX:0.2,scaleY:0.2,rotation:3.3,x:274.9},0).wait(1).to({scaleX:0.3,scaleY:0.3,rotation:6.6,x:274.8},0).wait(1).to({scaleX:0.4,scaleY:0.4,rotation:9.9},0).wait(1).to({scaleX:0.5,scaleY:0.5,rotation:13.2,x:274.7},0).wait(1).to({scaleX:0.6,scaleY:0.6,rotation:16.4,y:199.9},0).wait(1).to({scaleX:0.7,scaleY:0.7,rotation:19.7,x:274.6},0).wait(1).to({scaleX:0.8,scaleY:0.8,rotation:23,y:199.8},0).wait(1).to({scaleX:0.9,scaleY:0.9,rotation:26.3,x:274.5},0).wait(1).to({scaleX:1,scaleY:1,rotation:29.6,y:199.7},0).wait(1).to({scaleX:1.1,scaleY:1.1,rotation:32.9},0).wait(1).to({scaleX:1.07,scaleY:1.07,rotation:36.2,y:199.6},0).wait(1).to({scaleX:1.03,scaleY:1.03,rotation:39.5},0).wait(1).to({scaleX:1,scaleY:1,rotation:42.7,x:274.6},0).wait(1).to({rotation:46},0).wait(1).to({rotation:49.3},0).wait(1).to({rotation:52.6,x:274.7,y:199.5},0).wait(1).to({rotation:55.9},0).wait(1).to({rotation:59.2},0).wait(1).to({rotation:62.5},0).wait(1).to({rotation:65.8,x:274.8},0).wait(1).to({rotation:69},0).wait(1).to({rotation:72.3},0).wait(1).to({rotation:75.6,x:274.9,y:199.4},0).wait(1).to({rotation:78.9},0).wait(1).to({rotation:82.2},0).wait(1).to({rotation:85.5,x:275},0).wait(1).to({rotation:88.8},0).wait(1).to({rotation:92.1},0).wait(1).to({rotation:95.3,x:275.1},0).wait(1).to({rotation:98.6},0).wait(1).to({rotation:101.9},0).wait(1).to({rotation:105.2,x:275.2},0).wait(1).to({rotation:108.5,y:199.5},0).wait(1).to({rotation:111.8},0).wait(1).to({rotation:115.1,x:275.3},0).wait(1).to({rotation:118.4},0).wait(1).to({rotation:121.6},0).wait(1).to({rotation:124.9,x:275.4},0).wait(1).to({rotation:128.2,y:199.6},0).wait(1).to({rotation:131.5},0).wait(1).to({rotation:134.8},0).wait(1).to({rotation:138.1,x:275.5},0).wait(1).to({rotation:141.4,y:199.7},0).wait(1).to({rotation:144.7},0).wait(1).to({rotation:147.9},0).wait(1).to({rotation:151.2,x:275.6},0).wait(1).to({rotation:154.5,y:199.8},0).wait(1).to({rotation:157.8},0).wait(1).to({rotation:161.1},0).wait(1).to({rotation:164.4,y:199.9},0).wait(1).to({rotation:167.7},0).wait(1).to({rotation:171},0).wait(1).to({rotation:174.2,y:200},0).wait(1).to({rotation:177.5},0).wait(1).to({rotation:180.8},0).wait(1).to({rotation:184.1,y:200.1},0).wait(1).to({rotation:187.4},0).wait(1).to({rotation:190.7},0).wait(1).to({rotation:194,y:200.2},0).wait(1).to({rotation:197.3},0).wait(1).to({rotation:200.5},0).wait(1).to({rotation:203.8,y:200.3},0).wait(1).to({rotation:207.1},0).wait(1).to({rotation:210.4,x:275.5},0).wait(1).to({rotation:213.7,y:200.4},0).wait(1).to({rotation:217},0).wait(1).to({rotation:220.3},0).wait(1).to({rotation:223.6},0).wait(1).to({rotation:226.8,x:275.4,y:200.5},0).wait(1).to({rotation:230.1},0).wait(1).to({rotation:233.4},0).wait(1).to({rotation:236.7},0).wait(1).to({rotation:240,x:275.3},0).wait(1).to({rotation:243.3,y:200.6},0).wait(1).to({rotation:246.6},0).wait(1).to({rotation:249.9,x:275.2},0).wait(1).to({rotation:253.2},0).wait(1).to({rotation:256.4},0).wait(1).to({rotation:259.7,x:275.1},0).wait(1).to({rotation:263},0).wait(1).to({rotation:266.3},0).wait(1).to({rotation:269.6,x:275},0).wait(1).to({rotation:272.9},0).wait(1).to({rotation:276.2},0).wait(1).to({rotation:279.5,x:274.9},0).wait(1).to({rotation:282.7},0).wait(1).to({rotation:286},0).wait(1).to({rotation:289.3,x:274.8},0).wait(1).to({rotation:292.6},0).wait(1).to({rotation:295.9},0).wait(1).to({rotation:299.2,x:274.7,y:200.5},0).wait(1).to({rotation:302.5},0).wait(1).to({rotation:305.8},0).wait(1).to({rotation:309,x:274.6},0).wait(1).to({rotation:312.3},0).wait(1).to({rotation:315.6,y:200.4},0).wait(1).to({rotation:318.9},0).wait(1).to({rotation:322.2},0).wait(1).to({rotation:325.5,x:274.5},0).wait(1).to({rotation:328.8,y:200.3},0).wait(1).to({rotation:332.1},0).wait(1).to({rotation:335.3},0).wait(1).to({rotation:338.6,y:200.2},0).wait(1).to({rotation:341.9},0).wait(1).to({rotation:345.2,x:274.4},0).wait(1).to({rotation:348.5,y:200.1},0).wait(1).to({rotation:351.8},0).wait(1).to({rotation:355.1},0).wait(1).to({rotation:358.4,y:200},0).wait(1).to({rotation:361.6},0).wait(1).to({rotation:364.9},0).wait(1).to({rotation:368.2,y:199.9},0).wait(1).to({rotation:371.5},0).wait(1).to({rotation:374.8},0).wait(1).to({rotation:378.1,x:274.5,y:199.8},0).wait(1).to({rotation:381.4},0).wait(1).to({rotation:384.7},0).wait(1).to({rotation:387.9,y:199.7},0).wait(1).to({rotation:391.2},0).wait(1).to({rotation:394.5},0).wait(1).to({rotation:397.8,x:274.6},0).wait(1).to({rotation:401.1,y:199.6},0).wait(1).to({rotation:404.4},0).wait(1).to({rotation:407.7},0).wait(1).to({rotation:411},0).wait(1).to({rotation:414.2,x:274.7,y:199.5},0).wait(1).to({rotation:417.5},0).wait(1).to({rotation:420.8},0).wait(1).to({rotation:424.1,x:274.8},0).wait(1).to({rotation:427.4},0).wait(1).to({rotation:430.7},0).wait(1).to({rotation:434,x:274.9,y:199.4},0).wait(1).to({rotation:437.3},0).wait(1).to({rotation:440.5},0).wait(1).to({rotation:443.8,x:275},0).wait(1).to({rotation:447.1},0).wait(1).to({rotation:450.4},0).wait(1).to({rotation:453.7,x:275.1},0).wait(1).to({rotation:457},0).wait(1).to({rotation:460.3},0).wait(1).to({rotation:463.6,x:275.2},0).wait(1).to({rotation:466.8,y:199.5},0).wait(1).to({rotation:470.1},0).wait(1).to({rotation:473.4,x:275.3},0).wait(1).to({rotation:476.7},0).wait(1).to({rotation:480},0).wait(1).to({rotation:483.3,x:275.4},0).wait(1).to({rotation:486.6},0).wait(1).to({rotation:489.9,y:199.6},0).wait(1).to({rotation:493.2},0).wait(1).to({rotation:496.4,x:275.5},0).wait(1).to({rotation:499.7},0).wait(1).to({rotation:503,y:199.7},0).wait(1).to({rotation:506.3},0).wait(1).to({rotation:509.6},0).wait(1).to({rotation:512.9,x:275.6,y:199.8},0).wait(1).to({rotation:516.2},0).wait(1).to({rotation:519.5},0).wait(1).to({rotation:522.7},0).wait(1).to({rotation:526,y:199.9},0).wait(1).to({rotation:529.3},0).wait(1).to({rotation:532.6},0).wait(1).to({rotation:535.9,y:200},0).wait(1).to({rotation:539.2},0).wait(1).to({rotation:542.5,y:200.1},0).wait(1).to({rotation:545.8},0).wait(1).to({rotation:549},0).wait(1).to({rotation:552.3,y:200.2},0).wait(1).to({rotation:555.6},0).wait(1).to({rotation:558.9},0).wait(1).to({rotation:562.2,y:200.3},0).wait(1).to({rotation:565.5},0).wait(1).to({rotation:568.8},0).wait(1).to({rotation:572.1,x:275.5},0).wait(1).to({rotation:575.3,y:200.4},0).wait(1).to({rotation:578.6},0).wait(1).to({rotation:581.9},0).wait(1).to({rotation:585.2,x:275.4,y:200.5},0).wait(1).to({rotation:588.5},0).wait(1).to({rotation:591.8},0).wait(1).to({rotation:595.1},0).wait(1).to({rotation:598.4,x:275.3},0).wait(1).to({rotation:601.6,y:200.6},0).wait(1).to({rotation:604.9},0).wait(1).to({rotation:608.2,x:275.2},0).wait(1).to({rotation:611.5},0).wait(1).to({rotation:614.8},0).wait(1).to({rotation:618.1,x:275.1},0).wait(1).to({rotation:621.4},0).wait(1).to({rotation:624.7},0).wait(1).to({rotation:627.9,x:275},0).wait(1).to({rotation:631.2},0).wait(1).to({rotation:634.5},0).wait(1).to({rotation:637.8,x:274.9},0).wait(1).to({rotation:641.1},0).wait(1).to({rotation:644.4},0).wait(1).to({rotation:647.7,x:274.8},0).wait(1).to({rotation:651},0).wait(1).to({rotation:654.2},0).wait(1).to({rotation:657.5,x:274.7},0).wait(1).to({rotation:660.8,y:200.5},0).wait(1).to({rotation:664.1},0).wait(1).to({rotation:667.4},0).wait(1).to({rotation:670.7,x:274.6},0).wait(1).to({rotation:674},0).wait(1).to({rotation:677.3,y:200.4},0).wait(1).to({rotation:680.5},0).wait(1).to({rotation:683.8,x:274.5},0).wait(1).to({rotation:687.1},0).wait(1).to({rotation:690.4,y:200.3},0).wait(1).to({rotation:693.7},0).wait(1).to({scaleX:0.88,scaleY:0.88,rotation:697,y:200.2},0).wait(1).to({scaleX:0.75,scaleY:0.75,rotation:700.3,x:274.6},0).wait(1).to({scaleX:0.63,scaleY:0.63,rotation:703.6,x:274.7,y:200.1},0).wait(1).to({scaleX:0.5,scaleY:0.5,rotation:706.8},0).wait(1).to({scaleX:0.38,scaleY:0.38,rotation:710.1,x:274.8},0).wait(1).to({scaleX:0.25,scaleY:0.25,rotation:713.4,x:274.9,y:200},0).wait(1).to({scaleX:0.13,scaleY:0.13,rotation:716.7},0).wait(1).to({scaleX:0,scaleY:0,rotation:720,x:275},0).wait(1)); - - // Livello 1 - this.instance_3 = new lib.ruota_01(); - this.instance_3.parent = this; - this.instance_3.setTransform(275,200,0.05,0.05); - - this.timeline.addTween(cjs.Tween.get(this.instance_3).wait(1).to({scaleX:0.16,scaleY:0.16,rotation:1.6},0).wait(1).to({scaleX:0.26,scaleY:0.26,rotation:3.3},0).wait(1).to({scaleX:0.37,scaleY:0.37,rotation:4.9},0).wait(1).to({scaleX:0.47,scaleY:0.47,rotation:6.6},0).wait(1).to({scaleX:0.57,scaleY:0.57,rotation:8.2},0).wait(1).to({scaleX:0.68,scaleY:0.68,rotation:9.9},0).wait(1).to({scaleX:0.79,scaleY:0.79,rotation:11.5},0).wait(1).to({scaleX:0.89,scaleY:0.89,rotation:13.2},0).wait(1).to({scaleX:1,scaleY:1,rotation:14.8},0).wait(1).to({scaleX:1.1,scaleY:1.1,rotation:16.4},0).wait(1).to({scaleX:1.07,scaleY:1.07,rotation:18.1},0).wait(1).to({scaleX:1.03,scaleY:1.03,rotation:19.7},0).wait(1).to({scaleX:1,scaleY:1,rotation:21.4},0).wait(1).to({rotation:23},0).wait(1).to({rotation:24.7},0).wait(1).to({rotation:26.3},0).wait(1).to({rotation:27.9},0).wait(1).to({rotation:29.6},0).wait(1).to({rotation:31.2},0).wait(1).to({rotation:32.9},0).wait(1).to({rotation:34.5},0).wait(1).to({rotation:36.2},0).wait(1).to({rotation:37.8},0).wait(1).to({rotation:39.5},0).wait(1).to({rotation:41.1},0).wait(1).to({rotation:42.7},0).wait(1).to({rotation:44.4},0).wait(1).to({rotation:46},0).wait(1).to({rotation:47.7},0).wait(1).to({rotation:49.3},0).wait(1).to({rotation:51},0).wait(1).to({rotation:52.6},0).wait(1).to({rotation:54.2},0).wait(1).to({rotation:55.9},0).wait(1).to({rotation:57.5},0).wait(1).to({rotation:59.2},0).wait(1).to({rotation:60.8},0).wait(1).to({rotation:62.5},0).wait(1).to({rotation:64.1},0).wait(1).to({rotation:65.8},0).wait(1).to({rotation:67.4},0).wait(1).to({rotation:69},0).wait(1).to({rotation:70.7},0).wait(1).to({rotation:72.3},0).wait(1).to({rotation:74},0).wait(1).to({rotation:75.6},0).wait(1).to({rotation:77.3},0).wait(1).to({rotation:78.9},0).wait(1).to({rotation:80.5},0).wait(1).to({rotation:82.2},0).wait(1).to({rotation:83.8},0).wait(1).to({rotation:85.5},0).wait(1).to({rotation:87.1},0).wait(1).to({rotation:88.8},0).wait(1).to({rotation:90.4},0).wait(1).to({rotation:92.1},0).wait(1).to({rotation:93.7},0).wait(1).to({rotation:95.3},0).wait(1).to({rotation:97},0).wait(1).to({rotation:98.6},0).wait(1).to({rotation:100.3},0).wait(1).to({rotation:101.9},0).wait(1).to({rotation:103.6},0).wait(1).to({rotation:105.2},0).wait(1).to({rotation:106.8},0).wait(1).to({rotation:108.5},0).wait(1).to({rotation:110.1},0).wait(1).to({rotation:111.8},0).wait(1).to({rotation:113.4},0).wait(1).to({rotation:115.1},0).wait(1).to({rotation:116.7},0).wait(1).to({rotation:118.4},0).wait(1).to({rotation:120},0).wait(1).to({rotation:121.6},0).wait(1).to({rotation:123.3},0).wait(1).to({rotation:124.9},0).wait(1).to({rotation:126.6},0).wait(1).to({rotation:128.2},0).wait(1).to({rotation:129.9},0).wait(1).to({rotation:131.5},0).wait(1).to({rotation:133.2},0).wait(1).to({rotation:134.8},0).wait(1).to({rotation:136.4},0).wait(1).to({rotation:138.1},0).wait(1).to({rotation:139.7},0).wait(1).to({rotation:141.4},0).wait(1).to({rotation:143},0).wait(1).to({rotation:144.7},0).wait(1).to({rotation:146.3},0).wait(1).to({rotation:147.9},0).wait(1).to({rotation:149.6},0).wait(1).to({rotation:151.2},0).wait(1).to({rotation:152.9},0).wait(1).to({rotation:154.5},0).wait(1).to({rotation:156.2},0).wait(1).to({rotation:157.8},0).wait(1).to({rotation:159.5},0).wait(1).to({rotation:161.1},0).wait(1).to({rotation:162.7},0).wait(1).to({rotation:164.4},0).wait(1).to({rotation:166},0).wait(1).to({rotation:167.7},0).wait(1).to({rotation:169.3},0).wait(1).to({rotation:171},0).wait(1).to({rotation:172.6},0).wait(1).to({rotation:174.2},0).wait(1).to({rotation:175.9},0).wait(1).to({rotation:177.5},0).wait(1).to({rotation:179.2},0).wait(1).to({rotation:180.8},0).wait(1).to({rotation:182.5},0).wait(1).to({rotation:184.1},0).wait(1).to({rotation:185.8},0).wait(1).to({rotation:187.4},0).wait(1).to({rotation:189},0).wait(1).to({rotation:190.7},0).wait(1).to({rotation:192.3},0).wait(1).to({rotation:194},0).wait(1).to({rotation:195.6},0).wait(1).to({rotation:197.3},0).wait(1).to({rotation:198.9},0).wait(1).to({rotation:200.5},0).wait(1).to({rotation:202.2},0).wait(1).to({rotation:203.8},0).wait(1).to({rotation:205.5},0).wait(1).to({rotation:207.1},0).wait(1).to({rotation:208.8},0).wait(1).to({rotation:210.4},0).wait(1).to({rotation:212.1},0).wait(1).to({rotation:213.7},0).wait(1).to({rotation:215.3},0).wait(1).to({rotation:217},0).wait(1).to({rotation:218.6},0).wait(1).to({rotation:220.3},0).wait(1).to({rotation:221.9},0).wait(1).to({rotation:223.6},0).wait(1).to({rotation:225.2},0).wait(1).to({rotation:226.8},0).wait(1).to({rotation:228.5},0).wait(1).to({rotation:230.1},0).wait(1).to({rotation:231.8},0).wait(1).to({rotation:233.4},0).wait(1).to({rotation:235.1},0).wait(1).to({rotation:236.7},0).wait(1).to({rotation:238.4},0).wait(1).to({rotation:240},0).wait(1).to({rotation:241.6},0).wait(1).to({rotation:243.3},0).wait(1).to({rotation:244.9},0).wait(1).to({rotation:246.6},0).wait(1).to({rotation:248.2},0).wait(1).to({rotation:249.9},0).wait(1).to({rotation:251.5},0).wait(1).to({rotation:253.2},0).wait(1).to({rotation:254.8},0).wait(1).to({rotation:256.4},0).wait(1).to({rotation:258.1},0).wait(1).to({rotation:259.7},0).wait(1).to({rotation:261.4},0).wait(1).to({rotation:263},0).wait(1).to({rotation:264.7},0).wait(1).to({rotation:266.3},0).wait(1).to({rotation:267.9},0).wait(1).to({rotation:269.6},0).wait(1).to({rotation:271.2},0).wait(1).to({rotation:272.9},0).wait(1).to({rotation:274.5},0).wait(1).to({rotation:276.2},0).wait(1).to({rotation:277.8},0).wait(1).to({rotation:279.5},0).wait(1).to({rotation:281.1},0).wait(1).to({rotation:282.7},0).wait(1).to({rotation:284.4},0).wait(1).to({rotation:286},0).wait(1).to({rotation:287.7},0).wait(1).to({rotation:289.3},0).wait(1).to({rotation:291},0).wait(1).to({rotation:292.6},0).wait(1).to({rotation:294.2},0).wait(1).to({rotation:295.9},0).wait(1).to({rotation:297.5},0).wait(1).to({rotation:299.2},0).wait(1).to({rotation:300.8},0).wait(1).to({rotation:302.5},0).wait(1).to({rotation:304.1},0).wait(1).to({rotation:305.8},0).wait(1).to({rotation:307.4},0).wait(1).to({rotation:309},0).wait(1).to({rotation:310.7},0).wait(1).to({rotation:312.3},0).wait(1).to({rotation:314},0).wait(1).to({rotation:315.6},0).wait(1).to({rotation:317.3},0).wait(1).to({rotation:318.9},0).wait(1).to({rotation:320.5},0).wait(1).to({rotation:322.2},0).wait(1).to({rotation:323.8},0).wait(1).to({rotation:325.5},0).wait(1).to({rotation:327.1},0).wait(1).to({rotation:328.8},0).wait(1).to({rotation:330.4},0).wait(1).to({rotation:332.1},0).wait(1).to({rotation:333.7},0).wait(1).to({rotation:335.3},0).wait(1).to({rotation:337},0).wait(1).to({rotation:338.6},0).wait(1).to({rotation:340.3},0).wait(1).to({rotation:341.9},0).wait(1).to({rotation:343.6},0).wait(1).to({rotation:345.2},0).wait(1).to({rotation:346.8},0).wait(1).to({scaleX:0.88,scaleY:0.88,rotation:348.5},0).wait(1).to({scaleX:0.75,scaleY:0.75,rotation:350.1},0).wait(1).to({scaleX:0.63,scaleY:0.63,rotation:351.8},0).wait(1).to({scaleX:0.5,scaleY:0.5,rotation:353.4},0).wait(1).to({scaleX:0.38,scaleY:0.38,rotation:355.1},0).wait(1).to({scaleX:0.25,scaleY:0.25,rotation:356.7},0).wait(1).to({scaleX:0.13,scaleY:0.13,rotation:358.4},0).wait(1).to({scaleX:0,scaleY:0,rotation:360},0).wait(1)); - -}).prototype = p = new cjs.MovieClip(); -p.nominalBounds = new cjs.Rectangle(534.1,384.6,31.8,31.8); -// library properties: -lib.properties = { - id: 'DEA3758371204728AF19D581B3B48069', - width: 550, - height: 400, - fps: 30, - color: "#000000", - opacity: 0.00, - manifest: [], - preloads: [] -}; - - - -// bootstrap callback support: - -(lib.Stage = function(canvas) { - createjs.Stage.call(this, canvas); -}).prototype = p = new createjs.Stage(); - -p.setAutoPlay = function(autoPlay) { - this.tickEnabled = autoPlay; -} -p.play = function() { this.tickEnabled = true; this.getChildAt(0).gotoAndPlay(this.getTimelinePosition()) } -p.stop = function(ms) { if(ms) this.seek(ms); this.tickEnabled = false; } -p.seek = function(ms) { this.tickEnabled = true; this.getChildAt(0).gotoAndStop(lib.properties.fps * ms / 1000); } -p.getDuration = function() { return this.getChildAt(0).totalFrames / lib.properties.fps * 1000; } - -p.getTimelinePosition = function() { return this.getChildAt(0).currentFrame / lib.properties.fps * 1000; } - -an.bootcompsLoaded = an.bootcompsLoaded || []; -if(!an.bootstrapListeners) { - an.bootstrapListeners=[]; -} - -an.bootstrapCallback=function(fnCallback) { - an.bootstrapListeners.push(fnCallback); - if(an.bootcompsLoaded.length > 0) { - for(var i=0; i{ @@ -33,22 +35,26 @@ function drop(ev) { confirm.on('click', ()=>{ + const module = $('#'+data) + if(once){ - loadingInit() + + loading.find('.text').text('Analisi di compatibilità del modulo in corso ...') overlay.fadeOut() loading.fadeIn() - - setTimeout(()=>{ - const module = $('#'+data) + timeout_trigger() + + if(target.find('.modules-container').length){ + target.find('.modules-container').append('
'+module.text()+'
') + }else{ + $('.modules-container').append('
'+module.text()+'
') + } - loading.fadeOut() + setTimeout(()=>{ - if(target.find('.modules-container').length){ - target.find('.modules-container').append('
'+module.text()+'
') - }else{ - $('.modules-container').append('
'+module.text()+'
') - } - },700) + loading.fadeOut() + window.location = 'compatibility' + },6500) once = false } diff --git a/js/plans.js b/js/plans.js index 6370960..984f3c6 100644 --- a/js/plans.js +++ b/js/plans.js @@ -2,7 +2,10 @@ $(document).ready(()=>{ const plans = $('.plans') + const phones = plans.find('.phone') const clouds = plans.find('.cloud') + const videoOpener = plans.find('.video-opener') + const delay = 1000 let timer = 0 @@ -11,19 +14,71 @@ $(document).ready(()=>{ const el = $(elem) timer = index*delay - if(el.hasClass('empty')){ + if(el.hasClass('empty') || el.hasClass('hidden')){ timer -= delay } + + if(!el.hasClass('hidden')){ + setTimeout(()=>{ + if(!el.hasClass('empty')){ + $('#notify1')[0].play() + } + el.fadeIn(500) + },timer) + } + }) + }, delay) + + + phones.each((index, phone)=>{ + + const content = $(phone).find('.content') + const actions = content.find('.button') + const firstChild = content.find('.cloud').first() + + actions.each((index, button)=>{ + + const action = $(button) + + action.on('click', (e)=>{ + + const elem = $(e.currentTarget) + const show = $('#' + elem.data('cloud')) + let offset = 0 + + $('#notify1')[0].play() + + show.fadeIn(400,()=>{ + offset = show.offset().top - content.offset().top - 20 + firstChild.animate({'margin-top': '-' + offset},400) + }) - setTimeout(()=>{ - if(!el.hasClass('empty')){ - $('#notify1')[0].play() - } - el.fadeIn(500) - },timer) + }) + + }) + + }) + + videoOpener.on('click', (e)=>{ + + const elem = $(e.currentTarget) + const show = $('#' + elem.data('video')) + const video = show.find('video') + const close = show.find('.video-close') + + show.fadeIn() + video.get(0).play() + + close.on('click', (e)=>{ + const elem = $(e.currentTarget) + const video = elem.siblings('video') + + video.get(0).pause() + elem.parent().fadeOut() }) - },delay) + + }) }) diff --git a/js/scripts.js b/js/scripts.js index 8b13789..610152b 100644 --- a/js/scripts.js +++ b/js/scripts.js @@ -1 +1,17 @@ + +let counter = 0 + +function timeout_trigger(){ + + counter++ + + $('#dropLoading .count').text(counter + "%") + if(counter != 100) { + setTimeout('timeout_trigger()', 50) + }else{ + counter = 0 + } + +} + diff --git a/plans.php b/plans.php index 14a62a9..9d65b03 100755 --- a/plans.php +++ b/plans.php @@ -20,7 +20,18 @@ Il modulo "differenze culturali" è disponibile.
- + +
+ + + +
+
+
@@ -33,11 +44,16 @@
Venditore
- Ciao Sara!
+ Ciao Sarah!
Il modulo "differenze culturali" è disponibile.
- + +
+ +
diff --git a/scripts/compatibility.php b/scripts/compatibility.php index 6d94806..881d4e6 100644 --- a/scripts/compatibility.php +++ b/scripts/compatibility.php @@ -1,3 +1,2 @@ - - + diff --git a/scripts/modules.php b/scripts/modules.php index 509788b..eaf34bf 100644 --- a/scripts/modules.php +++ b/scripts/modules.php @@ -1,4 +1,3 @@ - - + diff --git a/scss/.sass-cache/132087705a52dd1d0e0e4a761ce2b1b521d0d802/global.scssc b/scss/.sass-cache/132087705a52dd1d0e0e4a761ce2b1b521d0d802/global.scssc index 239356b..ee03753 100644 Binary files a/scss/.sass-cache/132087705a52dd1d0e0e4a761ce2b1b521d0d802/global.scssc and b/scss/.sass-cache/132087705a52dd1d0e0e4a761ce2b1b521d0d802/global.scssc differ diff --git a/scss/global.scss b/scss/global.scss index fa13ba9..7d8f000 100644 --- a/scss/global.scss +++ b/scss/global.scss @@ -93,7 +93,6 @@ a{ - #dropLoading{ display: none; position: fixed; @@ -103,26 +102,54 @@ a{ width: 100%; background: rgba(0,0,0,0.8); overflow: hidden; - #animation_container{ - position: absolute; - height: 300px; - width: 300px; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - - } - #countdown{ + + + .box{ position: fixed; - height: 30px; - line-height: 30px; - width: 50px; - z-index: 9999; - top: calc(50% + 30px); + height: 220px; + width: 220px; + top: 50%; left: 50%; transform: translate(-50%, -50%); - text-align: center; - font-size: $font-18; - color: white; + + div{ + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + animation: fade 7s linear 0s 1 normal; + } + + .anim { + animation: pop-up 7s ease-in 0s 1 normal; + } + + .count{ + color: white; + } + .text { + width: 100vw; + color: white; + text-align: center; + font-size: $font-10; + top: calc(50% + 140px); + } + + } } + + + +@keyframes pop-up{ + 0% {transform: scale(0);} + 10% {transform: scale(1);} + 95% {transform: scale(1);} + 100% {transform: scale(0);} +} +@keyframes fade{ + 0% {opacity: 0;} + 10% {opacity: 1;} + 95% {opacity: 1;} + 100% {opacity: 0;} +} diff --git a/scss/sections/plans.scss b/scss/sections/plans.scss index 02d2777..1fd65b8 100644 --- a/scss/sections/plans.scss +++ b/scss/sections/plans.scss @@ -42,7 +42,8 @@ top: 145px; left: 12px; height: 371px; - width: 222px; + width: 223px; + overflow: hidden; .cloud{ display: none; @@ -54,13 +55,19 @@ margin: 10px 0; border-radius: 8px; + img{ + width: 100%; + padding: 5px; + cursor: pointer; + } + &.left{ left: 15px; background: $pink; border: 1px solid $dark-pink; &:before{ content: ''; - border: solid 11px transparent; + border: solid 8px transparent; border-right-color: $dark-pink; position: absolute; left: 0; @@ -69,7 +76,7 @@ } &:after{ content: ''; - border: solid 10px transparent; + border: solid 7px transparent; border-right-color: $pink; position: absolute; left: 0; @@ -84,7 +91,7 @@ border: 1px solid $dark-azure; &:before{ content: ''; - border: solid 11px transparent; + border: solid 8px transparent; border-left-color: $dark-azure; position: absolute; right: 0; @@ -93,7 +100,7 @@ } &:after{ content: ''; - border: solid 10px transparent; + border: solid 7px transparent; border-left-color: $azure; position: absolute; right: 0; @@ -109,6 +116,35 @@ } } + + .video{ + display: none; + position: absolute; + top: 0; + left:0; + height: 371px; + width: 223px; + background: black; + .video-close{ + position: absolute; + top: 0; + right: 3px; + height: 20px; + width: 20px; + cursor: pointer; + + &:after{ + content: '\f00d'; + font-family: $icon; + font-size: $font-20; + color: white; + } + } + video{ + height: 371px; + width: 223px; + } + } } .input{ @@ -116,7 +152,7 @@ top: 516px; left: 12px; height: 42px; - width: 222px; + width: 223px; border-radius: 0 0 26px 26px; overflow: hidden; }