Combined Code
frame 1 {
function diferencia() {
difex = Math.abs(xini - _xmouse);
difey = Math.abs(yini - _ymouse);
var v2 = new flash.filters.BlurFilter(difex * 2, difey * 2, 1);
var v1 = new Array();
v1.push(v2);
carrega.filters = v1;
xini = _xmouse;
yini = _ymouse;
}
Mouse.hide();
var escuchador = new Object();
var xini = _xmouse;
var yini = _ymouse;
escuchador.onMouseMove = function () {
diferencia();
};
Mouse.addListener(escuchador);
startDrag('carrega', true);
stop();
carrega.onEnterFrame = function () {
_root.caucula = Math.floor((getBytesLoaded() / getBytesTotal()) * 100);
_root.carrega.pct.text = _root.caucula + '%';
if (caucula >= 100) {
_root._alpha -= 5;
if (_root._alpha <= 0) {
_root.gotoAndPlay(2);
delete carrega.onEnterFrame;
}
}
};
}
movieClip 3 {
}
// unknown tag 88 length 67
movieClip 6 {
}
movieClip 9 {
}
movieClip 17 __Packages.com.greensock.core.TweenCore {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.core) {
_global.com.greensock.core = new Object();
}
if (!_global.com.greensock.core.TweenCore) {
var v1 = function (duration, vars) {
this.vars = vars || {};
this.cachedTotalDuration = duration || 0;
this.cachedDuration = this.cachedTotalDuration;
this._delay = Number(this.vars.delay) || 0;
this.cachedTimeScale = this.vars.timeScale || 1;
this.active = Boolean(duration == 0 && this._delay == 0 && this.vars.immediateRender != false);
this.cachedTime = 0;
this.cachedTotalTime = 0;
this.data = this.vars.data;
this.cachedReversed = false;
this.cachedPaused = this.cachedReversed;
this.cacheIsDirty = this.cachedReversed;
this.initted = this.cachedReversed;
this.gc = this.cachedReversed;
this._rawPrevTime = -1;
if (!com.greensock.core.TweenCore._classInitted) {
if (com.greensock.TweenLite.rootFrame == undefined && com.greensock.TweenLite.initClass != undefined) {
com.greensock.TweenLite.initClass();
com.greensock.core.TweenCore._classInitted = true;
} else {
return undefined;
}
}
var v2 = this.vars.timeline instanceof com.greensock.core.SimpleTimeline ? this.vars.timeline : ((this.vars.useFrames == true) ? com.greensock.TweenLite.rootFramesTimeline : com.greensock.TweenLite.rootTimeline);
v2.insert(this, v2.cachedTotalTime);
if (this.vars.reversed) {
this.cachedReversed = true;
}
if (this.vars.paused) {
this.__set__paused(true);
}
};
com.greensock.core.TweenCore = v1;
var v2 = v1.prototype;
v2.play = function () {
this.__set__reversed(false);
this.__set__paused(false);
};
v2.pause = function () {
this.__set__paused(true);
};
v2.resume = function () {
this.__set__paused(false);
};
v2.restart = function (includeDelay, suppressEvents) {
this.__set__reversed(false);
this.__set__paused(false);
this.setTotalTime(includeDelay ? -this._delay : 0, Boolean(suppressEvents != false));
};
v2.reverse = function (forceResume) {
this.__set__reversed(true);
if (forceResume != false) {
this.__set__paused(false);
} else {
if (this.gc) {
this.setEnabled(true, false);
}
}
};
v2.renderTime = function (time, suppressEvents, force) {};
v2.complete = function (skipRender, suppressEvents) {
if (!skipRender) {
this.renderTime(this.__get__totalDuration(), suppressEvents, false);
return undefined;
}
if (this.timeline.autoRemoveChildren) {
this.setEnabled(false, false);
} else {
this.active = false;
}
if (!suppressEvents) {
if (this.vars.onComplete && this.cachedTotalTime >= this.cachedTotalDuration && !this.cachedReversed) {
this.vars.onComplete.apply(this.vars.onCompleteScope, this.vars.onCompleteParams);
} else {
if (this.cachedReversed && this.cachedTotalTime == 0 && this.vars.onReverseComplete) {
this.vars.onReverseComplete.apply(this.vars.onReverseCompleteScope, this.vars.onReverseCompleteParams);
}
}
}
};
v2.invalidate = function () {};
v2.setEnabled = function (enabled, ignoreTimeline) {
this.gc = !enabled;
if (enabled) {
this.active = Boolean(!this.cachedPaused && this.cachedTotalTime > 0 && this.cachedTotalTime < this.cachedTotalDuration);
if (ignoreTimeline != true && this.cachedOrphan) {
this.timeline.insert(this, this.cachedStartTime - this._delay);
}
return false;
}
this.active = false;
if (ignoreTimeline != true && !this.cachedOrphan) {
this.timeline.remove(this, true);
}
return false;
};
v2.kill = function () {
this.setEnabled(false, false);
};
v2.setDirtyCache = function (includeSelf) {
var v2 = (includeSelf != false) ? this : this.timeline;
while (v2) {
v2.cacheIsDirty = true;
v2 = v2.timeline;
}
};
v2.setTotalTime = function (time, suppressEvents) {
if (this.timeline) {
var v3 = this.cachedPaused ? this.cachedPauseTime : this.timeline.cachedTotalTime;
if (this.cachedReversed) {
var v4 = this.cacheIsDirty ? this.__get__totalDuration() : this.cachedTotalDuration;
this.cachedStartTime = v3 - (v4 - time) / this.cachedTimeScale;
} else {
this.cachedStartTime = v3 - time / this.cachedTimeScale;
}
if (!this.timeline.cacheIsDirty) {
this.setDirtyCache(false);
}
if (this.cachedTotalTime != time) {
this.renderTime(time, suppressEvents, false);
}
}
};
v2.__get__delay = function () {
return this._delay;
};
v2.__set__delay = function (n) {
this.startTime += n - this._delay;
this._delay = n;
return this.__get__delay();
};
v2.__get__duration = function () {
return this.cachedDuration;
};
v2.__set__duration = function (n) {
var v2 = n / this.cachedDuration;
this.cachedTotalDuration = n;
this.cachedDuration = this.cachedTotalDuration;
this.setDirtyCache(true);
if (this.active && !this.cachedPaused && n != 0) {
this.setTotalTime(this.cachedTotalTime * v2, true);
}
return this.__get__duration();
};
v2.__get__totalDuration = function () {
return this.cachedTotalDuration;
};
v2.__set__totalDuration = function (n) {
this.__set__duration(n);
return this.__get__totalDuration();
};
v2.__get__currentTime = function () {
return this.cachedTime;
};
v2.__set__currentTime = function (n) {
this.setTotalTime(n, false);
return this.__get__currentTime();
};
v2.__get__totalTime = function () {
return this.cachedTotalTime;
};
v2.__set__totalTime = function (n) {
this.setTotalTime(n, false);
return this.__get__totalTime();
};
v2.__get__startTime = function () {
return this.cachedStartTime;
};
v2.__set__startTime = function (n) {
if (this.timeline != undefined && (n != this.cachedStartTime || this.gc)) {
this.timeline.insert(this, n - this._delay);
} else {
this.cachedStartTime = n;
}
return this.__get__startTime();
};
v2.__get__reversed = function () {
return this.cachedReversed;
};
v2.__set__reversed = function (b) {
if (b != this.cachedReversed) {
this.cachedReversed = b;
this.setTotalTime(this.cachedTotalTime, true);
}
return this.__get__reversed();
};
v2.__get__paused = function () {
return this.cachedPaused;
};
v2.__set__paused = function (b) {
if (b != this.cachedPaused && this.timeline) {
if (b) {
this.cachedPauseTime = this.timeline.rawTime;
} else {
this.cachedStartTime += this.timeline.__get__rawTime() - this.cachedPauseTime;
this.cachedPauseTime = NaN;
this.setDirtyCache(false);
}
this.cachedPaused = b;
this.active = Boolean(!this.cachedPaused && this.cachedTotalTime > 0 && this.cachedTotalTime < this.cachedTotalDuration);
}
if (!b && this.gc) {
this.setEnabled(true, false);
}
return this.__get__paused();
};
v1.version = 1.693;
v2.addProperty('currentTime', v2.__get__currentTime, v2.__set__currentTime);
v2.addProperty('delay', v2.__get__delay, v2.__set__delay);
v2.addProperty('duration', v2.__get__duration, v2.__set__duration);
v2.addProperty('paused', v2.__get__paused, v2.__set__paused);
v2.addProperty('reversed', v2.__get__reversed, v2.__set__reversed);
v2.addProperty('startTime', v2.__get__startTime, v2.__set__startTime);
v2.addProperty('totalDuration', v2.__get__totalDuration, v2.__set__totalDuration);
v2.addProperty('totalTime', v2.__get__totalTime, v2.__set__totalTime);
ASSetPropFlags(com.greensock.core.TweenCore.prototype, null, 1);
}
#endinitclip
}
movieClip 18 __Packages.com.greensock.core.SimpleTimeline {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.core) {
_global.com.greensock.core = new Object();
}
if (!_global.com.greensock.core.SimpleTimeline) {
var v1 = function (vars) {
super(0, vars);
};
com.greensock.core.SimpleTimeline = v1;
com.greensock.core.SimpleTimeline extends com.greensock.core.TweenCore;
var v2 = v1.prototype;
v2.insert = function (tween, time) {
if (time == undefined) {
time = 0;
}
var v3 = tween.timeline;
if (!tween.cachedOrphan && v3) {
v3.remove(tween, true);
}
tween.timeline = this;
tween.cachedStartTime = Number(time) + tween.__get__delay();
if (tween.gc) {
tween.setEnabled(true, true);
}
if (tween.cachedPaused && v3 != this) {
tween.cachedPauseTime = tween.cachedStartTime + (this.__get__rawTime() - tween.cachedStartTime) / tween.cachedTimeScale;
}
if (this._lastChild) {
this._lastChild.nextNode = tween;
tween.prevNode = this._lastChild;
this._lastChild = tween;
tween.nextNode = undefined;
tween.cachedOrphan = false;
return tween;
}
this._firstChild = tween;
tween.prevNode = this._lastChild;
this._lastChild = tween;
tween.nextNode = undefined;
tween.cachedOrphan = false;
return tween;
};
v2.remove = function (tween, skipDisable) {
if (tween.cachedOrphan) {
return undefined;
} else {
if (skipDisable != true) {
tween.setEnabled(false, true);
}
}
if (tween.nextNode) {
tween.nextNode.prevNode = tween.prevNode;
} else {
if (this._lastChild == tween) {
this._lastChild = tween.prevNode;
}
}
if (tween.prevNode) {
tween.prevNode.nextNode = tween.nextNode;
} else {
if (this._firstChild == tween) {
this._firstChild = tween.nextNode;
}
}
tween.cachedOrphan = true;
};
v2.renderTime = function (time, suppressEvents, force) {
var v2 = this._firstChild;
var v4;
var v5;
this.cachedTotalTime = time;
this.cachedTime = time;
while (v2) {
v5 = v2.nextNode;
if (v2.active || time >= v2.cachedStartTime && !v2.cachedPaused && !v2.gc) {
if (!v2.cachedReversed) {
v2.renderTime((time - v2.cachedStartTime) * v2.cachedTimeScale, suppressEvents, false);
} else {
v4 = v2.cacheIsDirty ? v2.__get__totalDuration() : v2.cachedTotalDuration;
v2.renderTime(v4 - (time - v2.cachedStartTime) * v2.cachedTimeScale, suppressEvents, false);
}
}
v2 = v5;
}
};
v2.__get__rawTime = function () {
return this.cachedTotalTime;
};
v2.addProperty('rawTime', v2.__get__rawTime, function () {});
ASSetPropFlags(com.greensock.core.SimpleTimeline.prototype, null, 1);
}
#endinitclip
}
movieClip 19 __Packages.com.greensock.TweenLite {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.TweenLite) {
var v1 = function (target, duration, vars) {
super(duration, vars);
if (com.greensock.TweenLite._timingClip.onEnterFrame != com.greensock.TweenLite.updateAll) {
com.greensock.TweenLite.jumpStart(_root);
}
this.ratio = 0;
this.target = target;
this._targetID = com.greensock.TweenLite.getID(target, true);
if (this.vars.timeScale != undefined && this.target instanceof com.greensock.core.TweenCore) {
this.cachedTimeScale = 1;
}
this.propTweenLookup = {};
this._ease = com.greensock.TweenLite.defaultEase;
this._overwrite = (vars.overwrite == undefined || !com.greensock.TweenLite.overwriteManager.enabled && vars.overwrite > 1) ? com.greensock.TweenLite.overwriteManager.mode : Number(vars.overwrite);
var v5 = com.greensock.TweenLite.masterList[this._targetID].tweens;
if (v5.length == 0) {
v5[0] = this;
} else {
if (this._overwrite == 1) {
var v4 = v5.length;
while (--v4 > -1) {
if (!v5[v4].gc) {
v5[v4].setEnabled(false, false);
}
}
com.greensock.TweenLite.masterList[this._targetID].tweens = [this];
} else {
v5[v5.length] = this;
}
}
if (this.active || this.vars.immediateRender) {
this.renderTime(0, false, true);
}
};
com.greensock.TweenLite = v1;
com.greensock.TweenLite extends com.greensock.core.TweenCore;
var v2 = v1.prototype;
v1.initClass = function () {
com.greensock.TweenLite.rootFrame = 0;
com.greensock.TweenLite.rootTimeline = new com.greensock.core.SimpleTimeline(null);
com.greensock.TweenLite.rootFramesTimeline = new com.greensock.core.SimpleTimeline(null);
com.greensock.TweenLite.rootFramesTimeline.autoRemoveChildren = true;
com.greensock.TweenLite.rootTimeline.autoRemoveChildren = com.greensock.TweenLite.rootFramesTimeline.autoRemoveChildren;
com.greensock.TweenLite.rootTimeline.cachedStartTime = getTimer() * 0.001;
com.greensock.TweenLite.rootFramesTimeline.cachedTotalTime = 0;
com.greensock.TweenLite.rootTimeline.cachedTotalTime = 0;
com.greensock.TweenLite.rootFramesTimeline.cachedStartTime = com.greensock.TweenLite.rootFrame;
if (com.greensock.TweenLite.overwriteManager == undefined) {
com.greensock.TweenLite.overwriteManager = {'mode': 1, 'enabled': false};
}
com.greensock.TweenLite.jumpStart(_root);
};
v2.init = function () {
if (this.vars.onInit) {
this.vars.onInit.apply(null, this.vars.onInitParams);
}
var v2;
var v5;
var v3;
var v6;
var v7;
if (typeof this.vars.ease == 'function') {
this._ease = this.vars.ease;
}
if (this.vars.easeParams != undefined) {
this.vars.proxiedEase = this._ease;
this._ease = this.easeProxy;
}
this.cachedPT1 = undefined;
this.propTweenLookup = {};
for (v2 in this.vars) {
if (com.greensock.TweenLite._reservedProps[v2] && !(v2 == 'timeScale' && this.target instanceof com.greensock.core.TweenCore)) {
} else {
if (com.greensock.TweenLite.plugins[v2] && v3.onInitTween(this.target, this.vars[v2], this)) {
this.cachedPT1 = new com.greensock.core.PropTween(v3, 'changeFactor', 0, 1, (v3.overwriteProps.length == 1) ? v3.overwriteProps[0] : '_MULTIPLE_', true, this.cachedPT1);
if (this.cachedPT1.name == '_MULTIPLE_') {
v5 = v3.overwriteProps.length;
while (--v5 > -1) {
this.propTweenLookup[v3.overwriteProps[v5]] = this.cachedPT1;
}
} else {
this.propTweenLookup[this.cachedPT1.name] = this.cachedPT1;
}
if (v3.priority) {
this.cachedPT1.priority = v3.priority;
v6 = true;
}
if (v3.onDisable || v3.onEnable) {
this._notifyPluginsOfEnabled = true;
}
this._hasPlugins = true;
} else {
this.cachedPT1 = new com.greensock.core.PropTween(this.target, v2, Number(this.target[v2]), (typeof this.vars[v2] == 'number') ? Number(this.vars[v2]) - this.target[v2] : Number(this.vars[v2]), v2, false, this.cachedPT1);
this.propTweenLookup[v2] = this.cachedPT1;
}
}
}
if (v6) {
com.greensock.TweenLite.onPluginEvent('onInitAllProps', this);
}
if (this.vars.runBackwards) {
var v4 = this.cachedPT1;
while (v4) {
v4.start += v4.change;
v4.change = -v4.change;
v4 = v4.nextNode;
}
}
this._hasUpdate = Boolean(typeof this.vars.onUpdate == 'function');
if (this._overwrittenProps) {
this.killVars(this._overwrittenProps);
if (this.cachedPT1 == undefined) {
this.setEnabled(false, false);
}
}
if (this._overwrite > 1 && this.cachedPT1 && v7 && v7.length > 1) {
if (com.greensock.TweenLite.overwriteManager.manageOverwrites(this, this.propTweenLookup, v7, this._overwrite)) {
this.init();
}
}
this.initted = true;
};
v2.renderTime = function (time, suppressEvents, force) {
var v4;
var v5 = this.cachedTime;
if (time >= this.cachedDuration) {
this.cachedTime = this.cachedDuration;
this.cachedTotalTime = this.cachedTime;
this.ratio = 1;
v4 = !this.cachedReversed;
if (this.cachedDuration == 0) {
if ((time == 0 || this._rawPrevTime < 0) && this._rawPrevTime != time) {
force = true;
}
this._rawPrevTime = time;
}
} else {
if (time <= 0) {
this.ratio = 0;
this.cachedTime = 0;
this.cachedTotalTime = 0;
if (time < 0) {
this.active = false;
if (this.cachedDuration == 0) {
if (this._rawPrevTime >= 0) {
force = true;
v4 = true;
}
this._rawPrevTime = time;
}
}
if (this.cachedReversed && v5 != 0) {
v4 = true;
}
} else {
this.cachedTime = time;
this.cachedTotalTime = this.cachedTime;
this.ratio = this._ease(time, 0, 1, this.cachedDuration);
}
}
if (this.cachedTime == v5 && !force) {
return undefined;
} else {
if (!this.initted) {
this.init();
if (!v4 && this.cachedTime) {
this.ratio = this._ease(this.cachedTime, 0, 1, this.cachedDuration);
}
}
}
if (!this.active && !this.cachedPaused) {
this.active = true;
}
if (v5 == 0 && this.vars.onStart && (this.cachedTime != 0 || this.cachedDuration == 0) && !suppressEvents) {
this.vars.onStart.apply(this.vars.onStartScope, this.vars.onStartParams);
}
var v2 = this.cachedPT1;
while (v2) {
v2.target[v2.property] = v2.start + this.ratio * v2.change;
v2 = v2.nextNode;
}
if (this._hasUpdate && !suppressEvents) {
this.vars.onUpdate.apply(this.vars.onUpdateScope, this.vars.onUpdateParams);
}
if (v4 && !this.gc) {
if (this._hasPlugins && this.cachedPT1) {
com.greensock.TweenLite.onPluginEvent('onComplete', this);
}
this.complete(true, suppressEvents);
}
};
v2.killVars = function (vars, permanent) {
if (this._overwrittenProps == undefined) {
this._overwrittenProps = {};
}
var v3;
var v2;
var v5;
for (v3 in vars) {
if (this.propTweenLookup[v3]) {
v2 = this.propTweenLookup[v3];
if (v2.isPlugin && v2.name == '_MULTIPLE_') {
v2.target.killProps(vars);
if (v2.target.overwriteProps.length == 0) {
v2.name = '';
}
if (v3 != v2.target.propName || v2.name == '') {
delete this.propTweenLookup[v3];
}
}
if (v2.name != '_MULTIPLE_') {
if (v2.nextNode) {
v2.nextNode.prevNode = v2.prevNode;
}
if (v2.prevNode) {
v2.prevNode.nextNode = v2.nextNode;
} else {
if (this.cachedPT1 == v2) {
this.cachedPT1 = v2.nextNode;
}
}
if (v2.isPlugin && v2.target.onDisable) {
v2.target.onDisable();
if (v2.target.activeDisable) {
v5 = true;
}
}
delete this.propTweenLookup[v3];
}
}
if (permanent != false && vars != this._overwrittenProps) {
this._overwrittenProps[v3] = 1;
}
}
return v5;
};
v2.invalidate = function () {
if (this._notifyPluginsOfEnabled) {
com.greensock.TweenLite.onPluginEvent('onDisable', this);
}
this.cachedPT1 = undefined;
this._overwrittenProps = undefined;
this._notifyPluginsOfEnabled = false;
this.active = this._notifyPluginsOfEnabled;
this.initted = this._notifyPluginsOfEnabled;
this._hasUpdate = this._notifyPluginsOfEnabled;
this.propTweenLookup = {};
};
v2.setEnabled = function (enabled, ignoreTimeline) {
if (enabled && this.gc) {
var v4 = com.greensock.TweenLite.masterList[this._targetID].tweens;
if (v4) {
var v3 = v4.length;
v4[v3] = this;
while (--v3 > -1) {
if (v4[v3] == this) {
v4.splice(v3, 1);
}
}
} else {
com.greensock.TweenLite.masterList[this._targetID] = {'target': this.target, 'tweens': [this]};
}
}
super.setEnabled(enabled, ignoreTimeline);
if (this._notifyPluginsOfEnabled && this.cachedPT1) {
return com.greensock.TweenLite.onPluginEvent(enabled ? 'onEnable' : 'onDisable', this);
}
return false;
};
v2.easeProxy = function (t, b, c, d) {
return this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams));
};
v1.to = function (target, duration, vars) {
return new com.greensock.TweenLite(target, duration, vars);
};
v1.from = function (target, duration, vars) {
vars.runBackwards = true;
if (vars.immediateRender != false) {
vars.immediateRender = true;
}
return new com.greensock.TweenLite(target, duration, vars);
};
v1.delayedCall = function (delay, onComplete, onCompleteParams, onCompleteScope, useFrames) {
return new com.greensock.TweenLite(onComplete, 0, {'delay': delay, 'onComplete': onComplete, 'onCompleteParams': onCompleteParams, 'onCompleteScope': onCompleteScope, 'immediateRender': false, 'useFrames': useFrames, 'overwrite': 0});
};
v1.updateAll = function () {
com.greensock.TweenLite.rootTimeline.renderTime((getTimer() * 0.001 - com.greensock.TweenLite.rootTimeline.cachedStartTime) * com.greensock.TweenLite.rootTimeline.cachedTimeScale, false, false);
++com.greensock.TweenLite.rootFrame;
com.greensock.TweenLite.rootFramesTimeline.renderTime((com.greensock.TweenLite.rootFrame - com.greensock.TweenLite.rootFramesTimeline.cachedStartTime) * com.greensock.TweenLite.rootFramesTimeline.cachedTimeScale, false, false);
if (!(com.greensock.TweenLite.rootFrame % 60)) {
var v3 = com.greensock.TweenLite.masterList;
var v2;
var v1;
for (var v4 in v3) {
v1 = v3[v4].tweens;
v2 = v1.length;
while (--v2 > -1) {
if (v1[v2].gc) {
v1.splice(v2, 1);
}
}
if (v1.length == 0) {
delete v3[v4];
}
}
}
};
v1.killTweensOf = function (target, complete, vars) {
var v6 = com.greensock.TweenLite.getID(target, true);
var v4 = com.greensock.TweenLite.masterList[v6].tweens;
var v3;
var v1;
if (v4 != undefined) {
v3 = v4.length;
while (--v3 > -1) {
v1 = v4[v3];
if (!v1.gc) {
if (complete == true) {
v1.complete(false, false);
}
if (vars != undefined) {
v1.killVars(vars);
}
if (vars == undefined || v1.cachedPT1 == undefined && v1.initted) {
v1.setEnabled(false, false);
}
}
}
if (vars == undefined) {
delete com.greensock.TweenLite.masterList[v6];
}
}
};
v1.getID = function (target, lookup) {
var v2;
if (lookup) {
var v1 = com.greensock.TweenLite.masterList;
if (typeof target == 'movieclip') {
if (v1[String(target)] != undefined) {
return String(target);
} else {
v2 = String(target);
com.greensock.TweenLite.masterList[v2] = {'target': target, 'tweens': []};
return v2;
}
++com.greensock.TweenLite._cnt;
v2 = 't' + com.greensock.TweenLite._cnt;
com.greensock.TweenLite.masterList[v2] = {'target': target, 'tweens': []};
return v2;
}
for (var v3 in v1) {
if (v1[v3].target == target) {
return v3;
}
}
}
++com.greensock.TweenLite._cnt;
v2 = 't' + com.greensock.TweenLite._cnt;
com.greensock.TweenLite.masterList[v2] = {'target': target, 'tweens': []};
return v2;
};
v1.easeOut = function (t, b, c, d) {
t /= d;
return -1 * t * (t - 2);
};
v1.findSubloadedSWF = function (mc) {
for (var v3 in mc) {
if (typeof mc[v3] == 'movieclip') {
if (mc[v3]._url != _root._url && mc[v3].getBytesLoaded() != undefined) {
return mc[v3];
} else {
if (com.greensock.TweenLite.findSubloadedSWF(mc[v3]) != undefined) {
return com.greensock.TweenLite.findSubloadedSWF(mc[v3]);
}
}
}
}
return undefined;
};
v1.jumpStart = function (root) {
if (com.greensock.TweenLite._timingClip != undefined) {
com.greensock.TweenLite._timingClip.removeMovieClip();
}
var v2 = (root.getBytesLoaded() == undefined) ? com.greensock.TweenLite.findSubloadedSWF(root) : root;
var v1 = 999;
while (v2.getInstanceAtDepth(v1) != undefined) {
++v1;
}
com.greensock.TweenLite._timingClip = v2.createEmptyMovieClip('__tweenLite' + ((String(com.greensock.TweenLite.version)).split('.')).join('_'), v1);
com.greensock.TweenLite._timingClip.onEnterFrame = com.greensock.TweenLite.updateAll;
com.greensock.TweenLite.to({}, 0, {});
com.greensock.TweenLite.rootTimeline.cachedTotalTime = (getTimer() * 0.001 - com.greensock.TweenLite.rootTimeline.cachedStartTime) * com.greensock.TweenLite.rootTimeline.cachedTimeScale;
com.greensock.TweenLite.rootTimeline.cachedTime = com.greensock.TweenLite.rootTimeline.cachedTotalTime;
};
v1.version = 11.693;
v1.plugins = {};
v1.killDelayedCallsTo = com.greensock.TweenLite.killTweensOf;
v1.defaultEase = com.greensock.TweenLite.easeOut;
v1.masterList = {};
v1._cnt = -16000;
v1._reservedProps = {'ease': 1, 'delay': 1, 'overwrite': 1, 'onComplete': 1, 'onCompleteParams': 1, 'useFrames': 1, 'runBackwards': 1, 'startAt': 1, 'onUpdate': 1, 'onUpdateParams': 1, 'onStart': 1, 'onStartParams': 1, 'onReverseComplete': 1, 'onReverseCompleteParams': 1, 'onRepeat': 1, 'onRepeatParams': 1, 'proxiedEase': 1, 'easeParams': 1, 'yoyo': 1, 'onCompleteListener': 1, 'onUpdateListener': 1, 'onStartListener': 1, 'orientToBezier': 1, 'timeScale': 1, 'immediateRender': 1, 'repeat': 1, 'repeatDelay': 1, 'timeline': 1, 'data': 1, 'paused': 1};
ASSetPropFlags(com.greensock.TweenLite.prototype, null, 1);
}
#endinitclip
}
movieClip 20 __Packages.com.greensock.core.PropTween {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.core) {
_global.com.greensock.core = new Object();
}
if (!_global.com.greensock.core.PropTween) {
var v1 = function (target, property, start, change, name, isPlugin, nextNode, priority) {
this.target = target;
this.property = property;
this.start = start;
this.change = change;
this.name = name;
this.isPlugin = isPlugin;
if (nextNode) {
nextNode.prevNode = this;
this.nextNode = nextNode;
}
this.priority = priority || 0;
};
com.greensock.core.PropTween = v1;
var v2 = v1.prototype;
ASSetPropFlags(com.greensock.core.PropTween.prototype, null, 1);
}
#endinitclip
}
movieClip 21 __Packages.com.greensock.plugins.TweenPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.TweenPlugin) {
var v1 = function () {
this._tweens = [];
this._changeFactor = 0;
};
com.greensock.plugins.TweenPlugin = v1;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this.addTween(target, this.propName, target[this.propName], value, this.propName);
return true;
};
v2.addTween = function (object, propName, start, end, overwriteProp) {
if (end != undefined) {
var v3 = (typeof end == 'number') ? Number(end) - start : Number(end);
if (v3 != 0) {
this._tweens[this._tweens.length] = new com.greensock.core.PropTween(object, propName, start, v3, overwriteProp || propName);
}
}
};
v2.updateTweens = function (changeFactor) {
var v3 = this._tweens.length;
var v2;
if (this.round) {
var v4;
while (--v3 > -1) {
v2 = this._tweens[v3];
v4 = v2.start + v2.change * changeFactor;
if (v4 > 0) {
v2.target[v2.property] = v4 + 0.5 >> 0;
} else {
v2.target[v2.property] = v4 - 0.5 >> 0;
}
}
} else {
while (--v3 > -1) {
v2 = this._tweens[v3];
v2.target[v2.property] = v2.start + v2.change * changeFactor;
}
}
};
v2.__get__changeFactor = function () {
return this._changeFactor;
};
v2.__set__changeFactor = function (n) {
this.updateTweens(n);
this._changeFactor = n;
return this.__get__changeFactor();
};
v2.killProps = function (lookup) {
var v2 = this.overwriteProps.length;
while (--v2 > -1) {
if (lookup[this.overwriteProps[v2]]) {
this.overwriteProps.splice(v2, 1);
}
}
v2 = this._tweens.length;
while (--v2 > -1) {
if (lookup[this._tweens[v2].name]) {
this._tweens.splice(v2, 1);
}
}
};
v1.onTweenEvent = function (type, tween) {
var v1 = tween.cachedPT1;
var v5;
if (type == 'onInitAllProps') {
var v3 = [];
var v2 = 0;
while (v1) {
v3[v2++] = v1;
v1 = v1.nextNode;
}
v3.sortOn('priority', Array.NUMERIC | Array.DESCENDING);
while (--v2 > -1) {
v3[v2].nextNode = v3[v2 + 1];
v3[v2].prevNode = v3[v2 - 1];
}
tween.cachedPT1 = v3[0];
v1 = tween.cachedPT1;
}
while (v1) {
if (v1.isPlugin && v1.target[type]) {
if (v1.target.activeDisable) {
v5 = true;
}
v1.target[type]();
}
v1 = v1.nextNode;
}
return v5;
};
v1.activate = function (plugins) {
com.greensock.TweenLite.onPluginEvent = com.greensock.plugins.TweenPlugin.onTweenEvent;
var v1 = plugins.length;
var v3;
while (v1--) {
if (plugins[v1].API == 1) {
v3 = new plugins[v1]();
com.greensock.TweenLite.plugins[v3.propName] = plugins[v1];
}
}
return true;
};
v1.VERSION = 1.4;
v1.API = 1;
v2.priority = 0;
v2.addProperty('changeFactor', v2.__get__changeFactor, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.TweenPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 22 __Packages.com.greensock.plugins.VisiblePlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.VisiblePlugin) {
var v1 = function () {
super();
this.propName = '_visible';
this.overwriteProps = ['_visible'];
};
com.greensock.plugins.VisiblePlugin = v1;
com.greensock.plugins.VisiblePlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._tween = tween;
this._initVal = Boolean(this._target._visible);
this._visible = Boolean(value);
return true;
};
v2.__set__changeFactor = function (n) {
if (n == 1 && (this._tween.cachedDuration == this._tween.cachedTime || this._tween.cachedTime == 0)) {
this._target._visible = this._visible;
} else {
this._target._visible = this._initVal;
}
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.VisiblePlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 23 __Packages.com.greensock.plugins.AutoAlphaPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.AutoAlphaPlugin) {
var v1 = function () {
super();
this.propName = 'autoAlpha';
this.overwriteProps = ['_alpha', '_visible'];
};
com.greensock.plugins.AutoAlphaPlugin = v1;
com.greensock.plugins.AutoAlphaPlugin extends com.greensock.plugins.VisiblePlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this.addTween(target, '_alpha', target._alpha, value, '_alpha');
return true;
};
v2.killProps = function (lookup) {
super.killProps(lookup);
this._ignoreVisible = Boolean(lookup._visible != undefined);
};
v2.__set__changeFactor = function (n) {
this.updateTweens(n);
if (!this._ignoreVisible) {
this._target._visible = Boolean(this._target._alpha != 0);
}
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.AutoAlphaPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 24 __Packages.com.greensock.plugins.EndArrayPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.EndArrayPlugin) {
var v1 = function () {
super();
this.propName = 'endArray';
this.overwriteProps = ['endArray'];
this._info = [];
};
com.greensock.plugins.EndArrayPlugin = v1;
com.greensock.plugins.EndArrayPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (!(target instanceof Array) || !(value instanceof Array)) {
return false;
}
this.init([target][0], [value][0]);
return true;
};
v2.init = function (start, end) {
this._a = start;
var v2 = end.length;
while (v2--) {
if (start[v2] != end[v2] && start[v2] != undefined) {
this._info[this._info.length] = new com.greensock.plugins.helpers.ArrayTweenInfo(v2, this._a[v2], end[v2] - this._a[v2]);
}
}
};
v2.__set__changeFactor = function (n) {
var v3 = this._info.length;
var v2;
if (this.round) {
while (v3--) {
v2 = this._info[v3];
this._a[v2.index] = Math.round(v2.start + v2.change * n);
}
} else {
while (v3--) {
v2 = this._info[v3];
this._a[v2.index] = v2.start + v2.change * n;
}
}
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.EndArrayPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 25 __Packages.com.greensock.plugins.helpers.ArrayTweenInfo {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.helpers) {
_global.com.greensock.plugins.helpers = new Object();
}
if (!_global.com.greensock.plugins.helpers.ArrayTweenInfo) {
var v1 = function (index, start, change) {
this.index = index;
this.start = start;
this.change = change;
};
com.greensock.plugins.helpers.ArrayTweenInfo = v1;
var v2 = v1.prototype;
ASSetPropFlags(com.greensock.plugins.helpers.ArrayTweenInfo.prototype, null, 1);
}
#endinitclip
}
movieClip 26 __Packages.com.greensock.plugins.FramePlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.FramePlugin) {
var v1 = function () {
super();
this.propName = 'frame';
this.overwriteProps = ['frame'];
this.round = true;
};
com.greensock.plugins.FramePlugin = v1;
com.greensock.plugins.FramePlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (typeof target != 'movieclip' || isNaN(value)) {
return false;
}
this._target = MovieClip(target);
this.frame = this._target._currentframe;
this.addTween(this, 'frame', this.frame, value, 'frame');
return true;
};
v2.__set__changeFactor = function (n) {
this.updateTweens(n);
this._target.gotoAndStop(this.frame);
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.FramePlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 27 __Packages.com.greensock.plugins.TintPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.TintPlugin) {
var v1 = function () {
super();
this.propName = 'tint';
this.overwriteProps = ['tint'];
};
com.greensock.plugins.TintPlugin = v1;
com.greensock.plugins.TintPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (typeof target != 'movieclip' && !(target instanceof TextField)) {
return false;
}
var v2 = (tween.vars._alpha != undefined) ? tween.vars._alpha : ((tween.vars.autoAlpha != undefined) ? tween.vars.autoAlpha : target._alpha);
var v4 = Number(value);
if (!(value == null || tween.vars.removeTint == true)) {
var v6 = {'rb': v4 >> 16, 'gb': v4 >> 8 & 255, 'bb': v4 & 255, 'ra': 0, 'ga': 0, 'ba': 0, 'aa': v2};
this.init(target, v6);
return true;
}
var v6 = {'rb': 0, 'gb': 0, 'bb': 0, 'ab': 0, 'ra': v2, 'ga': v2, 'ba': v2, 'aa': v2};
this.init(target, v6);
return true;
};
v2.init = function (target, end) {
this._color = new Color(target);
var v3 = this._color.getTransform();
var v6;
var v2;
for (v2 in end) {
if (v3[v2] != end[v2]) {
this._tweens[this._tweens.length] = new com.greensock.core.PropTween(v3, v2, v3[v2], end[v2] - v3[v2], 'tint', false);
}
}
};
v2.__set__changeFactor = function (n) {
var v4 = this._color.getTransform();
var v3 = this._tweens.length;
var v2;
while (v3--) {
v2 = this._tweens[v3];
v4[v2.property] = v2.start + v2.change * n;
}
this._color.setTransform(v4);
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.TintPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 28 __Packages.com.greensock.plugins.RemoveTintPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.RemoveTintPlugin) {
var v1 = function () {
super();
this.propName = 'removeTint';
};
com.greensock.plugins.RemoveTintPlugin = v1;
com.greensock.plugins.RemoveTintPlugin extends com.greensock.plugins.TintPlugin;
var v2 = v1.prototype;
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.RemoveTintPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 29 __Packages.com.greensock.plugins.VolumePlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.VolumePlugin) {
var v1 = function () {
super();
this.propName = 'volume';
this.overwriteProps = ['volume'];
};
com.greensock.plugins.VolumePlugin = v1;
com.greensock.plugins.VolumePlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (isNaN(value) || typeof target != 'movieclip' && !(target instanceof Sound)) {
return false;
}
if (typeof target != 'movieclip') {
this._sound = Sound(target);
this.volume = this._sound.getVolume();
this.addTween(this, 'volume', this.volume, value, 'volume');
return true;
}
this._sound = new Sound(target);
this.volume = this._sound.getVolume();
this.addTween(this, 'volume', this.volume, value, 'volume');
return true;
};
v2.__set__changeFactor = function (n) {
this.updateTweens(n);
this._sound.setVolume(this.volume);
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.VolumePlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 30 __Packages.com.greensock.plugins.FilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.FilterPlugin) {
var v1 = function () {
super();
};
com.greensock.plugins.FilterPlugin = v1;
com.greensock.plugins.FilterPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.initFilter = function (props, defaultFilter, propNames) {
var v6 = this._target.filters;
var v2;
var v3;
var v5;
var v7 = props instanceof flash.filters.BitmapFilter ? {} : props;
this._index = -1;
if (v7.index != undefined) {
this._index = v7.index;
} else {
v3 = v6.length;
while (v3--) {
if (v6[v3] instanceof this._type) {
this._index = v3;
break;
}
}
}
if (this._index == -1 || v6[this._index] == undefined || v7.addFilter == true) {
this._index = (v7.index != undefined) ? v7.index : v6.length;
v6[this._index] = defaultFilter;
this._target.filters = v6;
}
this._filter = v6[this._index];
if (v7.remove == true) {
this._remove = true;
this.onComplete = this.onCompleteTween;
}
v3 = propNames.length;
while (v3--) {
v2 = propNames[v3];
if (props[v2] != undefined && this._filter[v2] != props[v2]) {
if (v2 == 'color' || v2 == 'highlightColor' || v2 == 'shadowColor') {
v5 = new com.greensock.plugins.HexColorsPlugin();
v5.initColor(this._filter, v2, this._filter[v2], props[v2]);
this._tweens[this._tweens.length] = new com.greensock.core.PropTween(v5, 'changeFactor', 0, 1, this.propName);
} else {
if (v2 == 'quality' || v2 == 'inner' || v2 == 'knockout' || v2 == 'hideObject') {
this._filter[v2] = props[v2];
} else {
this.addTween(this._filter, v2, this._filter[v2], props[v2], this.propName);
}
}
}
}
};
v2.onCompleteTween = function () {
if (this._remove) {
var v3 = this._target.filters;
if (!(v3[this._index] instanceof this._type)) {
var v2 = v3.length;
while (v2--) {
if (v3[v2] instanceof this._type) {
v3.splice(v2, 1);
break;
}
}
} else {
v3.splice(this._index, 1);
}
this._target.filters = v3;
}
};
v2.__set__changeFactor = function (n) {
var v2 = this._tweens.length;
var v3;
var v4 = this._target.filters;
while (v2--) {
v3 = this._tweens[v2];
v3.target[v3.property] = v3.start + v3.change * n;
}
if (!(v4[this._index] instanceof this._type)) {
this._index = v4.length;
v2 = this._index;
while (v2--) {
if (v4[v2] instanceof this._type) {
this._index = v2;
break;
}
}
}
v4[this._index] = this._filter;
this._target.filters = v4;
return this.__get__changeFactor();
};
v1.VERSION = 2.03;
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.FilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 31 __Packages.com.greensock.plugins.HexColorsPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.HexColorsPlugin) {
var v1 = function () {
super();
this.propName = 'hexColors';
this.overwriteProps = [];
this._colors = [];
};
com.greensock.plugins.HexColorsPlugin = v1;
com.greensock.plugins.HexColorsPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
for (var v4 in value) {
this.initColor(target, v4, Number(target[v4]), Number(value[v4]));
}
return true;
};
v2.initColor = function (target, propName, start, end) {
if (start != end) {
var v3 = start >> 16;
var v5 = start >> 8 & 255;
var v2 = start & 255;
this._colors[this._colors.length] = [target, propName, v3, (end >> 16) - v3, v5, (end >> 8 & 255) - v5, v2, (end & 255) - v2];
this.overwriteProps[this.overwriteProps.length] = propName;
}
};
v2.killProps = function (lookup) {
var v3 = this._colors.length;
while (v3--) {
if (lookup[this._colors[v3][1]] != undefined) {
this._colors.splice(v3, 1);
}
}
super.killProps(lookup);
};
v2.__set__changeFactor = function (n) {
var v4 = this._colors.length;
var v2;
while (v4--) {
v2 = this._colors[v4];
v2[0][v2[1]] = v2[2] + n * v2[3] << 16 | v2[4] + n * v2[5] << 8 | v2[6] + n * v2[7];
}
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.HexColorsPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 32 __Packages.com.greensock.plugins.BevelFilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.BevelFilterPlugin) {
var v1 = function () {
super();
this.propName = 'bevelFilter';
this.overwriteProps = ['bevelFilter'];
};
com.greensock.plugins.BevelFilterPlugin = v1;
com.greensock.plugins.BevelFilterPlugin extends com.greensock.plugins.FilterPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._type = flash.filters.BevelFilter;
this.initFilter(value, new flash.filters.BevelFilter(0, 0, 16777215, 0.5, 0, 0.5, 2, 2, 0, value.quality || 2), com.greensock.plugins.BevelFilterPlugin._propNames);
return true;
};
v1.API = 1;
v1._propNames = ['distance', 'angle', 'highlightColor', 'highlightAlpha', 'shadowColor', 'shadowAlpha', 'blurX', 'blurY', 'strength', 'quality'];
ASSetPropFlags(com.greensock.plugins.BevelFilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 33 __Packages.com.greensock.plugins.BezierPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.BezierPlugin) {
var v1 = function () {
super();
this.propName = 'bezier';
this.overwriteProps = [];
this._future = {};
};
com.greensock.plugins.BezierPlugin = v1;
com.greensock.plugins.BezierPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (!(value instanceof Array)) {
return false;
}
this.init(tween, [value][0], false);
return true;
};
v2.init = function (tween, beziers, through) {
this._target = tween.target;
var v7 = tween.vars;
if (v7.orientToBezier == true) {
this._orientData = [['_x', '_y', '_rotation', 0, 0.01]];
this._orient = true;
} else {
if (v7.orientToBezier instanceof Array) {
this._orientData = v7.orientToBezier;
this._orient = true;
}
}
var v3 = {};
var v4;
var v2;
var v8;
v4 = 0;
while (v4 < beziers.length) {
for (v2 in beziers[v4]) {
if (v3[v2] == undefined) {
v3[v2] = [tween.target[v2]];
}
if (typeof beziers[v4][v2] == 'number') {
v3[v2].push(beziers[v4][v2]);
} else {
v3[v2].push(tween.target[v2] + Number(beziers[v4][v2]));
}
}
++v4;
}
for (v2 in v3) {
this.overwriteProps[this.overwriteProps.length] = v2;
if (v7[v2] != undefined) {
if (typeof v7[v2] == 'number') {
v3[v2].push(v7[v2]);
} else {
v3[v2].push(tween.target[v2] + Number(v7[v2]));
}
v8 = {};
v8[v2] = true;
tween.killVars(v8, false);
delete v7[v2];
}
}
this._beziers = com.greensock.plugins.BezierPlugin.parseBeziers(v3, through);
};
v1.parseBeziers = function (props, through) {
var v2;
var v1;
var v3;
var v4;
var v6 = {};
if (through == true) {
for (v4 in props) {
v1 = props[v4];
v3 = [];
v6[v4] = v3;
if (v1.length > 2) {
v3[v3.length] = [v1[0], v1[1] - (v1[2] - v1[0]) / 4, v1[1]];
v2 = 1;
while (v2 < v1.length - 1) {
v3[v3.length] = [v1[v2], v1[v2] + (v1[v2] - v3[v2 - 1][1]), v1[v2 + 1]];
++v2;
}
} else {
v3[v3.length] = [v1[0], (v1[0] + v1[1]) / 2, v1[1]];
}
}
return v6;
}
for (v4 in props) {
v1 = props[v4];
v3 = [];
v6[v4] = v3;
if (v1.length > 3) {
v3[v3.length] = [v1[0], v1[1], (v1[1] + v1[2]) / 2];
v2 = 2;
while (v2 < v1.length - 2) {
v3[v3.length] = [v3[v2 - 2][2], v1[v2], (v1[v2] + v1[v2 + 1]) / 2];
++v2;
}
v3[v3.length] = [v3[v3.length - 1][2], v1[v1.length - 2], v1[v1.length - 1]];
} else {
if (v1.length == 3) {
v3[v3.length] = [v1[0], v1[1], v1[2]];
} else {
if (v1.length == 2) {
v3[v3.length] = [v1[0], (v1[0] + v1[1]) / 2, v1[1]];
}
}
}
}
return v6;
};
v2.killProps = function (lookup) {
for (var v4 in this._beziers) {
if (lookup[v4] != undefined) {
delete this._beziers[v4];
}
}
super.killProps(lookup);
};
v2.__set__changeFactor = function (n) {
var v3;
var v5;
var v4;
var v6;
var v7;
var v15;
var v16;
if (n == 1) {
for (v5 in this._beziers) {
v3 = this._beziers[v5].length - 1;
this._target[v5] = this._beziers[v5][v3][2];
}
} else {
for (v5 in this._beziers) {
v7 = this._beziers[v5].length;
if (n < 0) {
v3 = 0;
} else {
if (n >= 1) {
v3 = v7 - 1;
} else {
v3 = v7 * n >> 0;
}
}
v6 = (n - v3 * (1 / v7)) * v7;
v4 = this._beziers[v5][v3];
if (this.round) {
this._target[v5] = Math.round(v4[0] + v6 * (2 * (1 - v6) * (v4[1] - v4[0]) + v6 * (v4[2] - v4[0])));
} else {
this._target[v5] = v4[0] + v6 * (2 * (1 - v6) * (v4[1] - v4[0]) + v6 * (v4[2] - v4[0]));
}
}
}
if (this._orient == true) {
v3 = this._orientData.length;
var v9 = {};
var v11;
var v10;
var v2;
var v12;
while (v3-- > 0) {
v2 = this._orientData[v3];
v9[v2[0]] = this._target[v2[0]];
v9[v2[1]] = this._target[v2[1]];
}
var v13 = this._target;
var v14 = this.round;
this._target = this._future;
this.round = false;
this._orient = false;
v3 = this._orientData.length;
while (v3-- > 0) {
v2 = this._orientData[v3];
this.__set__changeFactor(n + (v2[4] || 0.01));
v12 = v2[3] || 0;
v11 = this._future[v2[0]] - v9[v2[0]];
v10 = this._future[v2[1]] - v9[v2[1]];
v13[v2[2]] = Math.atan2(v10, v11) * com.greensock.plugins.BezierPlugin._RAD2DEG + v12;
}
this._target = v13;
this.round = v14;
this._orient = true;
}
return this.__get__changeFactor();
};
v1.API = 1;
v1._RAD2DEG = 57.29577951308232;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.BezierPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 34 __Packages.com.greensock.plugins.BezierThroughPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.BezierThroughPlugin) {
var v1 = function () {
super();
this.propName = 'bezierThrough';
};
com.greensock.plugins.BezierThroughPlugin = v1;
com.greensock.plugins.BezierThroughPlugin extends com.greensock.plugins.BezierPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (!(value instanceof Array)) {
return false;
}
this.init(tween, [value][0], true);
return true;
};
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.BezierThroughPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 35 __Packages.com.greensock.plugins.BlurFilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.BlurFilterPlugin) {
var v1 = function () {
super();
this.propName = 'blurFilter';
this.overwriteProps = ['blurFilter'];
};
com.greensock.plugins.BlurFilterPlugin = v1;
com.greensock.plugins.BlurFilterPlugin extends com.greensock.plugins.FilterPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._type = flash.filters.BlurFilter;
this.initFilter(value, new flash.filters.BlurFilter(0, 0, value.quality || 2), com.greensock.plugins.BlurFilterPlugin._propNames);
return true;
};
v1.API = 1;
v1._propNames = ['blurX', 'blurY', 'quality'];
ASSetPropFlags(com.greensock.plugins.BlurFilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 36 __Packages.com.greensock.plugins.ColorMatrixFilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.ColorMatrixFilterPlugin) {
var v1 = function () {
super();
this.propName = 'colorMatrixFilter';
this.overwriteProps = ['colorMatrixFilter'];
};
com.greensock.plugins.ColorMatrixFilterPlugin = v1;
com.greensock.plugins.ColorMatrixFilterPlugin extends com.greensock.plugins.FilterPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._type = flash.filters.ColorMatrixFilter;
var v3 = value;
this.initFilter({'remove': value.remove, 'index': value.index, 'addFilter': value.addFilter}, new flash.filters.ColorMatrixFilter(com.greensock.plugins.ColorMatrixFilterPlugin._idMatrix.slice()), com.greensock.plugins.ColorMatrixFilterPlugin._propNames);
this._matrix = (flash.filters.ColorMatrixFilter(this._filter)).matrix;
var v2 = [];
if (v3.matrix != undefined && v3.matrix instanceof Array) {
v2 = v3.matrix;
this._matrixTween = new com.greensock.plugins.EndArrayPlugin();
this._matrixTween.init(this._matrix, v2);
return true;
}
if (v3.relative == true) {
v2 = this._matrix.slice();
} else {
v2 = com.greensock.plugins.ColorMatrixFilterPlugin._idMatrix.slice();
}
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.setBrightness(v2, v3.brightness);
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.setContrast(v2, v3.contrast);
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.setHue(v2, v3.hue);
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.setSaturation(v2, v3.saturation);
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.setThreshold(v2, v3.threshold);
if (!isNaN(v3.colorize)) {
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.colorize(v2, v3.colorize, v3.amount);
}
this._matrixTween = new com.greensock.plugins.EndArrayPlugin();
this._matrixTween.init(this._matrix, v2);
return true;
};
v2.__set__changeFactor = function (n) {
this._matrixTween.__set__changeFactor(n);
(flash.filters.ColorMatrixFilter(this._filter)).matrix = this._matrix;
super.__set__changeFactor(n);
return this.__get__changeFactor();
};
v1.colorize = function (m, color, amount) {
if (isNaN(color)) {
return m;
var v3 = (color >> 16 & 255) / 255;
var v5 = (color >> 8 & 255) / 255;
var v2 = (color & 255) / 255;
var v4 = 1 - amount;
var v7 = [v4 + amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, v4 + amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, v4 + amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, 0, 0, 0, 1, 0];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v7, m);
}
if (isNaN(amount)) {
amount = 1;
}
var v3 = (color >> 16 & 255) / 255;
var v5 = (color >> 8 & 255) / 255;
var v2 = (color & 255) / 255;
var v4 = 1 - amount;
var v7 = [v4 + amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, v4 + amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, v4 + amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, 0, 0, 0, 1, 0];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v7, m);
};
v1.setThreshold = function (m, n) {
if (isNaN(n)) {
return m;
}
var v2 = [com.greensock.plugins.ColorMatrixFilterPlugin._lumR * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumG * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumB * 256, 0, -256 * n, com.greensock.plugins.ColorMatrixFilterPlugin._lumR * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumG * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumB * 256, 0, -256 * n, com.greensock.plugins.ColorMatrixFilterPlugin._lumR * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumG * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumB * 256, 0, -256 * n, 0, 0, 0, 1, 0];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v2, m);
};
v1.setHue = function (m, n) {
if (isNaN(n)) {
return m;
}
n *= 0.0174532925199433;
var v1 = Math.cos(n);
var v2 = Math.sin(n);
var v4 = [com.greensock.plugins.ColorMatrixFilterPlugin._lumR + v1 * (1 - com.greensock.plugins.ColorMatrixFilterPlugin._lumR) + v2 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumR, com.greensock.plugins.ColorMatrixFilterPlugin._lumG + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumG + v2 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumG, com.greensock.plugins.ColorMatrixFilterPlugin._lumB + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumB + v2 * (1 - com.greensock.plugins.ColorMatrixFilterPlugin._lumB), 0, 0, com.greensock.plugins.ColorMatrixFilterPlugin._lumR + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumR + v2 * 0.143, com.greensock.plugins.ColorMatrixFilterPlugin._lumG + v1 * (1 - com.greensock.plugins.ColorMatrixFilterPlugin._lumG) + v2 * 0.14, com.greensock.plugins.ColorMatrixFilterPlugin._lumB + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumB + v2 * -0.283, 0, 0, com.greensock.plugins.ColorMatrixFilterPlugin._lumR + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumR + v2 * -(1 - com.greensock.plugins.ColorMatrixFilterPlugin._lumR), com.greensock.plugins.ColorMatrixFilterPlugin._lumG + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumG + v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, com.greensock.plugins.ColorMatrixFilterPlugin._lumB + v1 * (1 - com.greensock.plugins.ColorMatrixFilterPlugin._lumB) + v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v4, m);
};
v1.setBrightness = function (m, n) {
if (isNaN(n)) {
return m;
}
n = n * 100 - 100;
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix([1, 0, 0, 0, n, 0, 1, 0, 0, n, 0, 0, 1, 0, n, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1], m);
};
v1.setSaturation = function (m, n) {
if (isNaN(n)) {
return m;
}
var v4 = 1 - n;
var v2 = v4 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR;
var v5 = v4 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG;
var v1 = v4 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB;
var v6 = [v2 + n, v5, v1, 0, 0, v2, v5 + n, v1, 0, 0, v2, v5, v1 + n, 0, 0, 0, 0, 0, 1, 0];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v6, m);
};
v1.setContrast = function (m, n) {
if (isNaN(n)) {
return m;
}
n += 0.01;
var v2 = [n, 0, 0, 0, 128 * (1 - n), 0, n, 0, 0, 128 * (1 - n), 0, 0, n, 0, 128 * (1 - n), 0, 0, 0, 1, 0];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v2, m);
};
v1.applyMatrix = function (m, m2) {
if (!(m instanceof Array) || !(m2 instanceof Array)) {
return m2;
}
var v7 = [];
var v2 = 0;
var v5 = 0;
var v6;
var v1;
v6 = 0;
while (v6 < 4) {
v1 = 0;
while (v1 < 5) {
if (v1 == 4) {
v5 = m[v2 + 4];
} else {
v5 = 0;
}
v7[v2 + v1] = m[v2] * m2[v1] + m[v2 + 1] * m2[v1 + 5] + m[v2 + 2] * m2[v1 + 10] + m[v2 + 3] * m2[v1 + 15] + v5;
++v1;
}
v2 += 5;
++v6;
}
return v7;
};
v1.API = 1;
v1._propNames = [];
v1._idMatrix = [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0];
v1._lumR = 0.212671;
v1._lumG = 0.71516;
v1._lumB = 0.072169;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.ColorMatrixFilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 37 __Packages.com.greensock.plugins.ColorTransformPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.ColorTransformPlugin) {
var v1 = function () {
super();
this.propName = 'colorTransform';
};
com.greensock.plugins.ColorTransformPlugin = v1;
com.greensock.plugins.ColorTransformPlugin extends com.greensock.plugins.TintPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (typeof target != 'movieclip' && !(target instanceof TextField)) {
return false;
}
var v7 = new Color(target);
var v2 = v7.getTransform();
if (value.redMultiplier != undefined) {
v2.ra = value.redMultiplier * 100;
}
if (value.greenMultiplier != undefined) {
v2.ga = value.greenMultiplier * 100;
}
if (value.blueMultiplier != undefined) {
v2.ba = value.blueMultiplier * 100;
}
if (value.alphaMultiplier != undefined) {
v2.aa = value.alphaMultiplier * 100;
}
if (value.redOffset != undefined) {
v2.rb = value.redOffset;
}
if (value.greenOffset != undefined) {
v2.gb = value.greenOffset;
}
if (value.blueOffset != undefined) {
v2.bb = value.blueOffset;
}
if (value.alphaOffset != undefined) {
v2.ab = value.alphaOffset;
}
if (!isNaN(value.tint) || !isNaN(value.color)) {
var v4 = !isNaN(value.tint) ? value.tint : value.color;
if (v4 != null) {
v2.rb = Number(v4) >> 16;
v2.gb = Number(v4) >> 8 & 255;
v2.bb = Number(v4) & 255;
v2.ra = 0;
v2.ga = 0;
v2.ba = 0;
}
}
if (!isNaN(value.tintAmount)) {
var v5 = value.tintAmount / (1 - (v2.ra + v2.ga + v2.ba) / 300);
v2.rb *= v5;
v2.gb *= v5;
v2.bb *= v5;
v2.ba = (1 - value.tintAmount) * 100;
v2.ga = v2.ba;
v2.ra = v2.ba;
} else {
if (!isNaN(value.exposure)) {
v2.bb = 255 * (value.exposure - 1);
v2.gb = v2.bb;
v2.rb = v2.bb;
v2.ba = 100;
v2.ga = 100;
v2.ra = 100;
} else {
if (!isNaN(value.brightness)) {
v2.bb = Math.max(0, (value.brightness - 1) * 255);
v2.gb = v2.bb;
v2.rb = v2.bb;
v2.ba = (1 - Math.abs(value.brightness - 1)) * 100;
v2.ga = v2.ba;
v2.ra = v2.ba;
}
}
}
if (tween.vars._alpha != undefined && value.alphaMultiplier == undefined) {
v2.aa = tween.vars._alpha;
tween.killVars({'_alpha': 1});
}
this.init(target, v2);
return true;
};
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.ColorTransformPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 38 __Packages.com.greensock.plugins.DropShadowFilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.DropShadowFilterPlugin) {
var v1 = function () {
super();
this.propName = 'dropShadowFilter';
this.overwriteProps = ['dropShadowFilter'];
};
com.greensock.plugins.DropShadowFilterPlugin = v1;
com.greensock.plugins.DropShadowFilterPlugin extends com.greensock.plugins.FilterPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._type = flash.filters.DropShadowFilter;
this.initFilter(value, new flash.filters.DropShadowFilter(0, 45, 0, 0, 0, 0, 1, value.quality || 2, value.inner, value.knockout, value.hideObject), com.greensock.plugins.DropShadowFilterPlugin._propNames);
return true;
};
v1.API = 1;
v1._propNames = ['distance', 'angle', 'color', 'alpha', 'blurX', 'blurY', 'strength', 'quality', 'inner', 'knockout', 'hideObject'];
ASSetPropFlags(com.greensock.plugins.DropShadowFilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 39 __Packages.com.greensock.plugins.FrameLabelPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.FrameLabelPlugin) {
var v1 = function () {
super();
this.propName = 'frameLabel';
};
com.greensock.plugins.FrameLabelPlugin = v1;
com.greensock.plugins.FrameLabelPlugin extends com.greensock.plugins.FramePlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (typeof tween.target != 'movieclip') {
return false;
}
this._target = MovieClip(target);
this.frame = this._target._currentframe;
var v2 = this._target.duplicateMovieClip('__frameLabelPluginTempMC', this._target._parent.getNextHighestDepth());
v2.gotoAndStop(value);
var v3 = v2._currentframe;
v2.removeMovieClip();
if (this.frame != v3) {
this.addTween(this, 'frame', this.frame, v3, 'frame');
}
return true;
};
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.FrameLabelPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 40 __Packages.com.greensock.plugins.GlowFilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.GlowFilterPlugin) {
var v1 = function () {
super();
this.propName = 'glowFilter';
this.overwriteProps = ['glowFilter'];
};
com.greensock.plugins.GlowFilterPlugin = v1;
com.greensock.plugins.GlowFilterPlugin extends com.greensock.plugins.FilterPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._type = flash.filters.GlowFilter;
this.initFilter(value, new flash.filters.GlowFilter(16777215, 0, 0, 0, value.strength || 1, value.quality || 2, value.inner, value.knockout), com.greensock.plugins.GlowFilterPlugin._propNames);
return true;
};
v1.API = 1;
v1._propNames = ['color', 'alpha', 'blurX', 'blurY', 'strength', 'quality', 'inner', 'knockout'];
ASSetPropFlags(com.greensock.plugins.GlowFilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 41 __Packages.com.greensock.plugins.RoundPropsPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.RoundPropsPlugin) {
var v1 = function () {
super();
this.propName = 'roundProps';
this.overwriteProps = ['roundProps'];
this.round = true;
this.priority = -1;
this.onInitAllProps = this._initAllProps;
};
com.greensock.plugins.RoundPropsPlugin = v1;
com.greensock.plugins.RoundPropsPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._tween = tween;
var v2 = value;
this.overwriteProps = this.overwriteProps.concat(v2);
return true;
};
v2._initAllProps = function () {
var v3;
var v4;
var v6 = this._tween.vars.roundProps;
var v2;
var v5 = v6.length;
while (--v5 > -1) {
v3 = v6[v5];
v2 = this._tween.cachedPT1;
while (v2) {
if (v2.name == v3) {
if (v2.isPlugin) {
v2.target.round = true;
} else {
this.add(v2.target, v3, v2.start, v2.change);
this._removePropTween(v2);
this._tween.propTweenLookup[v3] = this._tween.propTweenLookup.roundProps;
}
} else {
if (v2.isPlugin && v2.name == '_MULTIPLE_' && !v2.target.round) {
v4 = ' ' + v2.target.overwriteProps.join(' ') + ' ';
if (v4.indexOf(' ' + v3 + ' ') != -1) {
v2.target.round = true;
}
}
}
v2 = v2.nextNode;
}
}
};
v2._removePropTween = function (propTween) {
if (propTween.nextNode) {
propTween.nextNode.prevNode = propTween.prevNode;
}
if (propTween.prevNode) {
propTween.prevNode.nextNode = propTween.nextNode;
} else {
if (this._tween.cachedPT1 == propTween) {
this._tween.cachedPT1 = propTween.nextNode;
}
}
if (propTween.isPlugin && propTween.target.onDisable) {
propTween.target.onDisable();
}
};
v2.add = function (object, propName, start, change) {
this.addTween(object, propName, start, start + change, propName);
this.overwriteProps[this.overwriteProps.length] = propName;
};
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.RoundPropsPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 42 __Packages.com.greensock.plugins.ShortRotationPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.ShortRotationPlugin) {
var v1 = function () {
super();
this.propName = 'shortRotation';
this.overwriteProps = [];
};
com.greensock.plugins.ShortRotationPlugin = v1;
com.greensock.plugins.ShortRotationPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (typeof value == 'number') {
return false;
}
var v4 = Boolean(value.useRadians == true);
for (var v5 in value) {
if (v5 != 'useRadians') {
this.initRotation(target, v5, target[v5], (typeof value[v5] == 'number') ? Number(value[v5]) : target[v5] + Number(value[v5]), v4);
}
}
return true;
};
v2.initRotation = function (target, propName, start, end, useRadians) {
var v3 = useRadians ? 6.283185307179586 : 360;
var v2 = (end - start) % v3;
if (v2 != v2 % v3 / 2) {
v2 = v2 < 0 ? v2 + v3 : v2 - v3;
}
this.addTween(target, propName, start, start + v2, propName);
this.overwriteProps[this.overwriteProps.length] = propName;
};
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.ShortRotationPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 43 __Packages.com.greensock.OverwriteManager {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.OverwriteManager) {
var v1 = function () {};
com.greensock.OverwriteManager = v1;
var v2 = v1.prototype;
v1.init = function (defaultMode) {
if (com.greensock.TweenLite.version < 11.6) {
trace('Warning: Your TweenLite class needs to be updated to work with OverwriteManager (or you may need to clear your ASO files). Please download and install the latest version from http://www.tweenlite.com.');
}
com.greensock.TweenLite.overwriteManager = com.greensock.OverwriteManager;
if (defaultMode != undefined) {
com.greensock.OverwriteManager.mode = defaultMode;
com.greensock.OverwriteManager.enabled = true;
return com.greensock.OverwriteManager.mode;
}
com.greensock.OverwriteManager.mode = 2;
com.greensock.OverwriteManager.enabled = true;
return com.greensock.OverwriteManager.mode;
};
v1.manageOverwrites = function (tween, props, targetTweens, mode) {
var v3;
var v10;
var v1;
if (mode >= 4) {
var v17 = targetTweens.length;
v3 = 0;
while (v3 < v17) {
v1 = targetTweens[v3];
if (v1 != tween) {
if (v1.setEnabled(false, false)) {
v10 = true;
}
} else {
if (mode == 5) {
break;
}
}
++v3;
}
return v10;
}
var v5 = tween.cachedStartTime + 1.0e-010;
var v9 = [];
var v13 = [];
var v15 = 0;
var v12 = 0;
v3 = targetTweens.length;
while (--v3 > -1) {
v1 = targetTweens[v3];
if (v1 == tween || v1.gc || !v1.initted && v5 - v1.cachedStartTime <= 2.0e-010) {
} else {
if (v1.timeline != tween.timeline) {
if (!com.greensock.OverwriteManager.getGlobalPaused(v1)) {
v13[v15++] = v1;
}
} else {
if (v1.cachedStartTime <= v5 && v1.cachedStartTime + v1.__get__totalDuration() + 1.0e-010 > v5 && !v1.cachedPaused && !(tween.cachedDuration == 0 && v5 - v1.cachedStartTime <= 2.0e-010)) {
v9[v12++] = v1;
}
}
}
}
if (v15 != 0) {
var v6 = tween.cachedTimeScale;
var v7 = v5;
var v4;
var v11;
var v2;
v2 = tween.timeline;
while (v2) {
v6 *= v2.cachedTimeScale;
v7 += v2.cachedStartTime;
v2 = v2.timeline;
}
v5 = v6 * v7;
v3 = v15;
while (--v3 > -1) {
v4 = v13[v3];
v6 = v4.cachedTimeScale;
v7 = v4.cachedStartTime;
v2 = v4.timeline;
while (v2) {
v6 *= v2.cachedTimeScale;
v7 += v2.cachedStartTime;
v2 = v2.timeline;
}
v11 = v6 * v7;
if (v11 <= v5 && (v11 + v4.__get__totalDuration() * v6 + 1.0e-010 > v5 || v4.cachedDuration == 0)) {
v9[v12++] = v4;
}
}
}
if (v12 == 0) {
return v10;
}
v3 = v12;
if (mode == 2) {
while (--v3 > -1) {
v1 = v9[v3];
if (v1.killVars(props)) {
v10 = true;
}
if (v1.cachedPT1 == undefined && v1.initted) {
v1.setEnabled(false, false);
}
}
return v10;
}
while (--v3 > -1) {
if (v9[v3].setEnabled(false, false)) {
v10 = true;
}
}
return v10;
};
v1.getGlobalPaused = function (tween) {
while (tween) {
if (tween.cachedPaused) {
return true;
}
tween = tween.timeline;
}
return false;
};
v1.version = 6.1;
v1.NONE = 0;
v1.ALL_IMMEDIATE = 1;
v1.AUTO = 2;
v1.CONCURRENT = 3;
v1.ALL_ONSTART = 4;
v1.PREEXISTING = 5;
ASSetPropFlags(com.greensock.OverwriteManager.prototype, null, 1);
}
#endinitclip
}
movieClip 44 __Packages.com.greensock.TweenMax {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.TweenMax) {
var v1 = function (target, duration, vars) {
super(target, duration, vars);
if (com.greensock.TweenLite.version < 11.2) {
trace('TweenMax warning: Please update your TweenLite class or try deleting your ASO files. TweenMax requires a more recent version. Download updates at http://www.TweenMax.com.');
}
this._cyclesComplete = 0;
this.yoyo = Boolean(this.vars.yoyo);
this._repeat = this.vars.repeat || 0;
this._repeatDelay = this.vars.repeatDelay || 0;
this.cacheIsDirty = true;
if (this.vars.timeScale != undefined && !(this.target instanceof com.greensock.core.TweenCore)) {
this.cachedTimeScale = this.vars.timeScale;
}
};
com.greensock.TweenMax = v1;
com.greensock.TweenMax extends com.greensock.TweenLite;
var v2 = v1.prototype;
v2.init = function () {
if (this.vars.startAt) {
this.vars.startAt.overwrite = 0;
this.vars.startAt.immediateRender = true;
var v3 = new com.greensock.TweenMax(this.target, 0, this.vars.startAt);
}
super.init();
};
v2.invalidate = function () {
this.yoyo = Boolean(this.vars.yoyo);
this._repeat = this.vars.repeat || 0;
this._repeatDelay = this.vars.repeatDelay || 0;
this.setDirtyCache(true);
super.invalidate();
};
v2.updateTo = function (vars, resetDuration) {
var v7 = this.ratio;
if (resetDuration && this.timeline != undefined && this.cachedStartTime < this.timeline.cachedTime) {
this.cachedStartTime = this.timeline.cachedTime;
this.setDirtyCache(false);
if (this.gc) {
this.setEnabled(true, false);
} else {
this.timeline.insert(this, this.cachedStartTime - this._delay);
}
}
for (var v6 in vars) {
this.vars[v6] = vars[v6];
}
if (this.initted) {
if (resetDuration) {
this.initted = false;
} else {
if (this._notifyPluginsOfEnabled && this.cachedPT1) {
com.greensock.TweenLite.onPluginEvent('onDisable', this);
}
if (this.cachedTime / this.cachedDuration > 0.998) {
var v8 = this.cachedTime;
this.renderTime(0, true, false);
this.initted = false;
this.renderTime(v8, true, false);
} else {
if (this.cachedTime > 0) {
this.initted = false;
this.init();
var v5 = 1 / (1 - v7);
var v2 = this.cachedPT1;
var v3;
while (v2) {
v3 = v2.start + v2.change;
v2.change *= v5;
v2.start = v3 - v2.change;
v2 = v2.nextNode;
}
}
}
}
}
};
v2.setDestination = function (property, value, adjustStartValues) {
var v2 = {};
v2[property] = value;
this.updateTo(v2, Boolean(adjustStartValues != false));
};
v2.killProperties = function (names) {
var v3 = {};
var v2 = names.length;
while (--v2 > -1) {
v3[names[v2]] = true;
}
this.killVars(v3);
};
v2.renderTime = function (time, suppressEvents, force) {
var v9 = this.cacheIsDirty ? this.__get__totalDuration() : this.cachedTotalDuration;
var v7 = this.cachedTotalTime;
var v5;
var v11;
var v6;
if (time >= v9) {
this.cachedTotalTime = v9;
this.cachedTime = this.cachedDuration;
this.ratio = 1;
v5 = !this.cachedReversed;
if (this.cachedDuration == 0) {
if ((time == 0 || this._rawPrevTime < 0) && this._rawPrevTime != time) {
force = true;
}
this._rawPrevTime = time;
}
} else {
if (time <= 0) {
if (time < 0) {
this.active = false;
if (this.cachedDuration == 0) {
if (this._rawPrevTime >= 0) {
force = true;
v5 = true;
}
this._rawPrevTime = time;
}
} else {
if (time == 0 && !this.initted) {
force = true;
}
}
this.ratio = 0;
this.cachedTime = 0;
this.cachedTotalTime = 0;
if (this.cachedReversed && v7 != 0) {
v5 = true;
}
} else {
this.cachedTime = time;
this.cachedTotalTime = this.cachedTime;
v6 = true;
}
}
if (this._repeat != 0) {
var v4 = this.cachedDuration + this._repeatDelay;
var v12 = this._cyclesComplete;
this._cyclesComplete = this.cachedTotalTime / v4 >> 0;
if (this._cyclesComplete == this.cachedTotalTime / v4) {
--this._cyclesComplete;
}
if (v12 != this._cyclesComplete) {
v11 = true;
}
if (v5) {
if (this.yoyo && this._repeat % 2) {
this.ratio = 0;
this.cachedTime = 0;
}
} else {
if (time > 0) {
this.cachedTime = (this.cachedTotalTime / v4 - this._cyclesComplete) * v4;
if (this.yoyo && this._cyclesComplete % 2) {
this.cachedTime = this.cachedDuration - this.cachedTime;
} else {
if (this.cachedTime >= this.cachedDuration) {
this.cachedTime = this.cachedDuration;
this.ratio = 1;
v6 = false;
}
}
if (this.cachedTime <= 0) {
this.ratio = 0;
this.cachedTime = 0;
v6 = false;
}
} else {
this._cyclesComplete = 0;
}
}
}
if (v7 == this.cachedTotalTime && !force) {
return undefined;
} else {
if (!this.initted) {
this.init();
}
}
if (!this.active && !this.cachedPaused) {
this.active = true;
}
if (v6) {
this.ratio = this._ease(this.cachedTime, 0, 1, this.cachedDuration);
}
if (v7 == 0 && this.vars.onStart && (this.cachedTotalTime != 0 || this.cachedDuration == 0) && !suppressEvents) {
this.vars.onStart.apply(this.vars.onStartScope, this.vars.onStartParams);
}
var v2 = this.cachedPT1;
while (v2) {
v2.target[v2.property] = v2.start + this.ratio * v2.change;
v2 = v2.nextNode;
}
if (this._hasUpdate && !suppressEvents) {
this.vars.onUpdate.apply(this.vars.onUpdateScope, this.vars.onUpdateParams);
}
if (v11 && !suppressEvents && !this.gc) {
if (this.vars.onRepeat) {
this.vars.onRepeat.apply(this.vars.onRepeatScope, this.vars.onRepeatParams);
}
}
if (v5 && !this.gc) {
if (this._hasPlugins && this.cachedPT1) {
com.greensock.TweenLite.onPluginEvent('onComplete', this);
}
this.complete(true, suppressEvents);
}
};
v1.to = function (target, duration, vars) {
return new com.greensock.TweenMax(target, duration, vars);
};
v1.from = function (target, duration, vars) {
vars.runBackwards = true;
if (vars.immediateRender != false) {
vars.immediateRender = true;
}
return new com.greensock.TweenMax(target, duration, vars);
};
v1.fromTo = function (target, duration, fromVars, toVars) {
toVars.startAt = fromVars;
if (fromVars.immediateRender) {
toVars.immediateRender = true;
}
return new com.greensock.TweenMax(target, duration, toVars);
};
v1.allTo = function (targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) {
var v2;
var v3;
var v1;
if (stagger == undefined) {
stagger = 0;
}
var v7 = targets.length;
var v6 = [];
var v5 = vars.delay || 0;
var onCompleteProxy = vars.onComplete;
var onCompleteParamsProxy = vars.onCompleteParams;
var onCompleteScopeProxy = vars.onCompleteScope;
var v9 = v7 - 1;
v2 = 0;
while (v2 < v7) {
v3 = {};
for (v1 in vars) {
v3[v1] = vars[v1];
}
v3.delay = v5;
if (v2 == v9 && onCompleteAll != undefined) {
v3.onComplete = function () {
if (onCompleteProxy != undefined) {
onCompleteProxy.apply(onCompleteScopeProxy, onCompleteParamsProxy);
}
onCompleteAll.apply(onCompleteAllScope, onCompleteAllParams);
};
}
v6[v2] = new com.greensock.TweenMax(targets[v2], duration, v3);
v5 += stagger;
++v2;
}
return v6;
};
v1.allFrom = function (targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) {
vars.runBackwards = true;
if (vars.immediateRender != false) {
vars.immediateRender = true;
}
return com.greensock.TweenMax.allTo(targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope);
};
v1.allFromTo = function (targets, duration, fromVars, toVars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) {
toVars.startAt = fromVars;
if (fromVars.immediateRender) {
toVars.immediateRender = true;
}
return com.greensock.TweenMax.allTo(targets, duration, toVars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope);
};
v1.delayedCall = function (delay, onComplete, onCompleteParams, onCompleteScope, useFrames) {
return new com.greensock.TweenMax(onComplete, 0, {'delay': delay, 'onComplete': onComplete, 'onCompleteParams': onCompleteParams, 'onCompleteScope': onCompleteScope, 'immediateRender': false, 'useFrames': useFrames, 'overwrite': 0});
};
v1.getTweensOf = function (target) {
var v2 = com.greensock.TweenLite.masterList[target].tweens;
var v3 = [];
if (v2) {
var v1 = v2.length;
while (--v1 > -1) {
if (!v2[v1].gc) {
v3[v3.length] = v2[v1];
}
}
}
return v3;
};
v1.isTweening = function (target) {
var v3 = com.greensock.TweenMax.getTweensOf(target);
var v2 = v3.length;
var v1;
while (--v2 > -1) {
v1 = v3[v2];
if (v1.active || v1.cachedStartTime == v1.timeline.cachedTime && v1.timeline.active) {
return true;
}
}
return false;
};
v1.getAllTweens = function () {
var v5 = com.greensock.TweenLite.masterList;
var v4 = 0;
var v3 = [];
var v2;
var v1;
for (var v6 in v5) {
v2 = v5[v6].tweens;
v1 = v2.length;
while (--v1 > -1) {
if (!v2[v1].gc) {
v3[v4++] = v2[v1];
}
}
}
return v3;
};
v1.killAll = function (complete, tweens, delayedCalls) {
if (tweens == undefined) {
tweens = true;
}
if (delayedCalls == undefined) {
delayedCalls = true;
}
var v2 = com.greensock.TweenMax.getAllTweens();
var v3;
var v1 = v2.length;
while (--v1 > -1) {
v3 = v2[v1].target == v2[v1].vars.onComplete;
if (v3 == delayedCalls || v3 != tweens) {
if (complete == true) {
v2[v1].complete(false, false);
} else {
v2[v1].setEnabled(false, false);
}
}
}
};
v1.killChildTweensOf = function (parent, complete) {
var v3 = com.greensock.TweenMax.getAllTweens();
var v4;
var v1;
var v2 = v3.length;
while (--v2 > -1) {
v4 = v3[v2].target;
if (v4 instanceof MovieClip) {
v1 = v4._parent;
while (v1) {
if (v1 == parent) {
if (complete == true) {
v3[v2].complete(false, false);
} else {
v3[v2].setEnabled(false, false);
}
}
v1 = v1._parent;
}
}
}
};
v1.pauseAll = function (tweens, delayedCalls) {
com.greensock.TweenMax.changePause(true, tweens, delayedCalls);
};
v1.resumeAll = function (tweens, delayedCalls) {
com.greensock.TweenMax.changePause(false, tweens, delayedCalls);
};
v1.changePause = function (pause, tweens, delayedCalls) {
if (tweens == undefined) {
tweens = true;
}
if (delayedCalls == undefined) {
delayedCalls = true;
}
var v2 = com.greensock.TweenMax.getAllTweens();
var v3;
var v1 = v2.length;
while (--v1 > -1) {
v3 = Boolean(v2[v1].target == v2[v1].vars.onComplete);
if (v3 == delayedCalls || v3 != tweens) {
v2[v1].paused = pause;
}
}
};
v2.__get__currentProgress = function () {
return this.cachedTime / this.__get__duration();
};
v2.__set__currentProgress = function (n) {
if (this._cyclesComplete == 0) {
this.setTotalTime(this.__get__duration() * n, false);
} else {
this.setTotalTime(this.__get__duration() * n + this._cyclesComplete * this.cachedDuration, false);
}
return this.__get__currentProgress();
};
v2.__get__totalProgress = function () {
return this.cachedTotalTime / this.__get__totalDuration();
};
v2.__set__totalProgress = function (n) {
this.setTotalTime(this.__get__totalDuration() * n, false);
return this.__get__totalProgress();
};
v2.__get__currentTime = function () {
return this.cachedTime;
};
v2.__set__currentTime = function (n) {
if (this._cyclesComplete == 0) {
} else {
if (this.yoyo && this._cyclesComplete % 2 == 1) {
n = this.__get__duration() - n + this._cyclesComplete * (this.cachedDuration + this._repeatDelay);
} else {
n += this._cyclesComplete * (this.__get__duration() + this._repeatDelay);
}
}
this.setTotalTime(n, false);
return this.__get__currentTime();
};
v2.__get__totalDuration = function () {
if (this.cacheIsDirty) {
this.cachedTotalDuration = (this._repeat == -1) ? 999999999999.0 : this.cachedDuration * (this._repeat + 1) + this._repeatDelay * this._repeat;
this.cacheIsDirty = false;
}
return this.cachedTotalDuration;
};
v2.__set__totalDuration = function (n) {
if (this._repeat == -1) {
return undefined;
}
this.__set__duration((n - this._repeat * this._repeatDelay) / (this._repeat + 1));
return this.__get__totalDuration();
};
v2.__get__timeScale = function () {
return this.cachedTimeScale;
};
v2.__set__timeScale = function (n) {
if (n == 0) {
n = 0.0001;
}
var v3 = (this.cachedPauseTime || this.cachedPauseTime == 0) ? this.cachedPauseTime : this.timeline.cachedTotalTime;
this.cachedStartTime = v3 - (v3 - this.cachedStartTime) * this.cachedTimeScale / n;
this.cachedTimeScale = n;
this.setDirtyCache(false);
return this.__get__timeScale();
};
v2.__get__repeat = function () {
return this._repeat;
};
v2.__set__repeat = function (n) {
this._repeat = n;
this.setDirtyCache(true);
return this.__get__repeat();
};
v2.__get__repeatDelay = function () {
return this._repeatDelay;
};
v2.__set__repeatDelay = function (n) {
this._repeatDelay = n;
this.setDirtyCache(true);
return this.__get__repeatDelay();
};
v1.__get__globalTimeScale = function () {
return (com.greensock.TweenLite.rootTimeline == undefined) ? 1 : com.greensock.TweenLite.rootTimeline.cachedTimeScale;
};
v1.__set__globalTimeScale = function (n) {
if (n == 0) {
n = 0.0001;
}
if (com.greensock.TweenLite.rootTimeline == undefined) {
com.greensock.TweenLite.to({}, 0, {});
}
var v1 = com.greensock.TweenLite.rootTimeline;
var v2 = getTimer() * 0.001;
v1.cachedStartTime = v2 - (v2 - v1.cachedStartTime) * v1.cachedTimeScale / n;
v1 = com.greensock.TweenLite.rootFramesTimeline;
v2 = com.greensock.TweenLite.rootFrame;
v1.cachedStartTime = v2 - (v2 - v1.cachedStartTime) * v1.cachedTimeScale / n;
com.greensock.TweenLite.rootTimeline.cachedTimeScale = n;
com.greensock.TweenLite.rootFramesTimeline.cachedTimeScale = com.greensock.TweenLite.rootTimeline.cachedTimeScale;
return com.greensock.TweenMax.__get__globalTimeScale();
};
v1.version = 11.693;
v1._activatedPlugins = com.greensock.plugins.TweenPlugin.activate([com.greensock.plugins.AutoAlphaPlugin, com.greensock.plugins.EndArrayPlugin, com.greensock.plugins.FramePlugin, com.greensock.plugins.RemoveTintPlugin, com.greensock.plugins.TintPlugin, com.greensock.plugins.VisiblePlugin, com.greensock.plugins.VolumePlugin, com.greensock.plugins.BevelFilterPlugin, com.greensock.plugins.BezierPlugin, com.greensock.plugins.BezierThroughPlugin, com.greensock.plugins.BlurFilterPlugin, com.greensock.plugins.ColorMatrixFilterPlugin, com.greensock.plugins.ColorTransformPlugin, com.greensock.plugins.DropShadowFilterPlugin, com.greensock.plugins.FrameLabelPlugin, com.greensock.plugins.GlowFilterPlugin, com.greensock.plugins.HexColorsPlugin, com.greensock.plugins.RoundPropsPlugin, com.greensock.plugins.ShortRotationPlugin, {}]);
v1._overwriteMode = com.greensock.OverwriteManager.enabled ? com.greensock.OverwriteManager.mode : com.greensock.OverwriteManager.init(2);
v1.killTweensOf = com.greensock.TweenLite.killTweensOf;
v1.killDelayedCallsTo = com.greensock.TweenLite.killTweensOf;
v2.addProperty('currentProgress', v2.__get__currentProgress, v2.__set__currentProgress);
v2.addProperty('currentTime', v2.__get__currentTime, v2.__set__currentTime);
v1.addProperty('globalTimeScale', v1.__get__globalTimeScale, v1.__set__globalTimeScale);
v2.addProperty('repeat', v2.__get__repeat, v2.__set__repeat);
v2.addProperty('repeatDelay', v2.__get__repeatDelay, v2.__set__repeatDelay);
v2.addProperty('timeScale', v2.__get__timeScale, v2.__set__timeScale);
v2.addProperty('totalDuration', v2.__get__totalDuration, v2.__set__totalDuration);
v2.addProperty('totalProgress', v2.__get__totalProgress, v2.__set__totalProgress);
ASSetPropFlags(com.greensock.TweenMax.prototype, null, 1);
}
#endinitclip
}
frame 2 {
com.greensock.plugins.TweenPlugin.activate([com.greensock.plugins.VolumePlugin]);
Mouse.show();
onEnterFrame = function () {
_root._alpha += 10;
if (_root._alpha >= 100) {
delete this.onEnterFrame;
}
};
sound = new Sound(this);
var sound = new Sound();
sound.attachSound('sfx');
sound.start(0, 99999999);
var soundOn = false;
sound_btn.onRelease = function () {
soundOn = !soundOn;
com.greensock.TweenMax.to(sound, 2, {'volume': int(soundOn)});
sound_btn.gotoAndStop(int(soundOn) + 1);
};
stop();
}
movieClip 10 {
}
movieClip 14 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
button 16 {
on (release) {
getURL('http://www.furaffinity.net/user/washa/', '_blank');
}
}