STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228072
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/38447101?noj=FRM38447101-29DC" width="1" height="1"></div>

tessas shopping spree.swf

This is the info page for
Flash #109609

(Click the ID number above for more basic data on this flash file.)


Text
Play More
Dressup Games

Free Games For
Your Website

send a  screenshot?

ActionScript [AS3]

Section 1
//JSON (com.adobe.serialization.json.JSON) package com.adobe.serialization.json { public class JSON { public static function decode(_arg1:String){ var _local2:JSONDecoder = new JSONDecoder(_arg1); return (_local2.getValue()); } public static function encode(_arg1:Object):String{ var _local2:JSONEncoder = new JSONEncoder(_arg1); return (_local2.getString()); } } }//package com.adobe.serialization.json
Section 2
//JSONDecoder (com.adobe.serialization.json.JSONDecoder) package com.adobe.serialization.json { public class JSONDecoder { private var value; private var tokenizer:JSONTokenizer; private var token:JSONToken; public function JSONDecoder(_arg1:String){ this.tokenizer = new JSONTokenizer(_arg1); this.nextToken(); this.value = this.parseValue(); } private function parseObject():Object{ var _local2:String; var _local1:Object = new Object(); this.nextToken(); if (this.token.type == JSONTokenType.RIGHT_BRACE){ return (_local1); }; while (true) { if (this.token.type == JSONTokenType.STRING){ _local2 = String(this.token.value); this.nextToken(); if (this.token.type == JSONTokenType.COLON){ this.nextToken(); _local1[_local2] = this.parseValue(); this.nextToken(); if (this.token.type == JSONTokenType.RIGHT_BRACE){ return (_local1); }; if (this.token.type == JSONTokenType.COMMA){ this.nextToken(); } else { this.tokenizer.parseError(("Expecting } or , but found " + this.token.value)); }; } else { this.tokenizer.parseError(("Expecting : but found " + this.token.value)); }; } else { this.tokenizer.parseError(("Expecting string but found " + this.token.value)); }; }; return (null); } private function parseValue():Object{ if (this.token == null){ this.tokenizer.parseError("Unexpected end of input"); }; switch (this.token.type){ case JSONTokenType.LEFT_BRACE: return (this.parseObject()); case JSONTokenType.LEFT_BRACKET: return (this.parseArray()); case JSONTokenType.STRING: case JSONTokenType.NUMBER: case JSONTokenType.TRUE: case JSONTokenType.FALSE: case JSONTokenType.NULL: return (this.token.value); default: this.tokenizer.parseError(("Unexpected " + this.token.value)); }; return (null); } private function nextToken():JSONToken{ return ((this.token = this.tokenizer.getNextToken())); } public function getValue(){ return (this.value); } private function parseArray():Array{ var _local1:Array = new Array(); this.nextToken(); if (this.token.type == JSONTokenType.RIGHT_BRACKET){ return (_local1); }; while (true) { _local1.push(this.parseValue()); this.nextToken(); if (this.token.type == JSONTokenType.RIGHT_BRACKET){ return (_local1); }; if (this.token.type == JSONTokenType.COMMA){ this.nextToken(); } else { this.tokenizer.parseError(("Expecting ] or , but found " + this.token.value)); }; }; return (null); } } }//package com.adobe.serialization.json
Section 3
//JSONEncoder (com.adobe.serialization.json.JSONEncoder) package com.adobe.serialization.json { import flash.utils.*; public class JSONEncoder { private var jsonString:String; public function JSONEncoder(_arg1){ this.jsonString = this.convertToString(_arg1); } private function escapeString(_arg1:String):String{ var _local3:String; var _local6:String; var _local7:String; var _local2 = ""; var _local4:Number = _arg1.length; var _local5:int; while (_local5 < _local4) { _local3 = _arg1.charAt(_local5); switch (_local3){ case "\"": _local2 = (_local2 + "\\\""); break; case "\\": _local2 = (_local2 + "\\\\"); break; case "\b": _local2 = (_local2 + "\\b"); break; case "\f": _local2 = (_local2 + "\\f"); break; case "\n": _local2 = (_local2 + "\\n"); break; case "\r": _local2 = (_local2 + "\\r"); break; case "\t": _local2 = (_local2 + "\\t"); break; default: if (_local3 < " "){ _local6 = _local3.charCodeAt(0).toString(16); _local7 = ((_local6.length == 2)) ? "00" : "000"; _local2 = (_local2 + (("\\u" + _local7) + _local6)); } else { _local2 = (_local2 + _local3); }; }; _local5++; }; return ((("\"" + _local2) + "\"")); } private function arrayToString(_arg1:Array):String{ var _local2 = ""; var _local3:int; while (_local3 < _arg1.length) { if (_local2.length > 0){ _local2 = (_local2 + ","); }; _local2 = (_local2 + this.convertToString(_arg1[_local3])); _local3++; }; return ((("[" + _local2) + "]")); } public function getString():String{ return (this.jsonString); } private function objectToString(_arg1:Object):String{ var value:Object; var key:String; var v:XML; var o = _arg1; var s = ""; var classInfo:XML = describeType(o); if (classInfo.@name.toString() == "Object"){ for (key in o) { value = o[key]; if ((value is Function)){ } else { if (s.length > 0){ s = (s + ","); }; s = (s + ((this.escapeString(key) + ":") + this.convertToString(value))); }; }; } else { for each (v in classInfo..*.(((name() == "variable")) || ((name() == "accessor")))) { if (s.length > 0){ s = (s + ","); }; s = (s + ((this.escapeString(v.@name.toString()) + ":") + this.convertToString(o[v.@name]))); }; }; return ((("{" + s) + "}")); } private function convertToString(_arg1):String{ if ((_arg1 is String)){ return (this.escapeString((_arg1 as String))); }; if ((_arg1 is Number)){ return ((isFinite((_arg1 as Number))) ? _arg1.toString() : "null"); } else { if ((_arg1 is Boolean)){ return ((_arg1) ? "true" : "false"); } else { if ((_arg1 is Array)){ return (this.arrayToString((_arg1 as Array))); }; if ((((_arg1 is Object)) && (!((_arg1 == null))))){ return (this.objectToString(_arg1)); }; }; }; return ("null"); } } }//package com.adobe.serialization.json
Section 4
//JSONParseError (com.adobe.serialization.json.JSONParseError) package com.adobe.serialization.json { public class JSONParseError extends Error { private var _location:int; private var _text:String; public function JSONParseError(_arg1:String="", _arg2:int=0, _arg3:String=""){ super(_arg1); name = "JSONParseError"; this._location = _arg2; this._text = _arg3; } public function get location():int{ return (this._location); } public function get text():String{ return (this._text); } } }//package com.adobe.serialization.json
Section 5
//JSONToken (com.adobe.serialization.json.JSONToken) package com.adobe.serialization.json { public class JSONToken { private var _value:Object; private var _type:int; public function JSONToken(_arg1:int=-1, _arg2:Object=null){ this._type = _arg1; this._value = _arg2; } public function get value():Object{ return (this._value); } public function get type():int{ return (this._type); } public function set type(_arg1:int):void{ this._type = _arg1; } public function set value(_arg1:Object):void{ this._value = _arg1; } } }//package com.adobe.serialization.json
Section 6
//JSONTokenizer (com.adobe.serialization.json.JSONTokenizer) package com.adobe.serialization.json { public class JSONTokenizer { private var loc:int; private var ch:String; private var obj:Object; private var jsonString:String; public function JSONTokenizer(_arg1:String){ this.jsonString = _arg1; this.loc = 0; this.nextChar(); } private function skipComments():void{ if (this.ch == "/"){ this.nextChar(); switch (this.ch){ case "/": do { this.nextChar(); } while (((!((this.ch == "\n"))) && (!((this.ch == ""))))); this.nextChar(); break; case "*": this.nextChar(); while (true) { if (this.ch == "*"){ this.nextChar(); if (this.ch == "/"){ this.nextChar(); break; }; } else { this.nextChar(); }; if (this.ch == ""){ this.parseError("Multi-line comment not closed"); }; }; break; default: this.parseError((("Unexpected " + this.ch) + " encountered (expecting '/' or '*' )")); }; }; } private function isDigit(_arg1:String):Boolean{ return ((((_arg1 >= "0")) && ((_arg1 <= "9")))); } private function readString():JSONToken{ var _local3:String; var _local4:int; var _local1:JSONToken = new JSONToken(); _local1.type = JSONTokenType.STRING; var _local2 = ""; this.nextChar(); while (((!((this.ch == "\""))) && (!((this.ch == ""))))) { if (this.ch == "\\"){ this.nextChar(); switch (this.ch){ case "\"": _local2 = (_local2 + "\""); break; case "/": _local2 = (_local2 + "/"); break; case "\\": _local2 = (_local2 + "\\"); break; case "b": _local2 = (_local2 + "\b"); break; case "f": _local2 = (_local2 + "\f"); break; case "n": _local2 = (_local2 + "\n"); break; case "r": _local2 = (_local2 + "\r"); break; case "t": _local2 = (_local2 + "\t"); break; case "u": _local3 = ""; _local4 = 0; while (_local4 < 4) { if (!this.isHexDigit(this.nextChar())){ this.parseError((" Excepted a hex digit, but found: " + this.ch)); }; _local3 = (_local3 + this.ch); _local4++; }; _local2 = (_local2 + String.fromCharCode(parseInt(_local3, 16))); break; default: _local2 = (_local2 + ("\\" + this.ch)); }; } else { _local2 = (_local2 + this.ch); }; this.nextChar(); }; if (this.ch == ""){ this.parseError("Unterminated string literal"); }; this.nextChar(); _local1.value = _local2; return (_local1); } private function nextChar():String{ return ((this.ch = this.jsonString.charAt(this.loc++))); } public function getNextToken():JSONToken{ var _local2:String; var _local3:String; var _local4:String; var _local1:JSONToken = new JSONToken(); this.skipIgnored(); switch (this.ch){ case "{": _local1.type = JSONTokenType.LEFT_BRACE; _local1.value = "{"; this.nextChar(); break; case "}": _local1.type = JSONTokenType.RIGHT_BRACE; _local1.value = "}"; this.nextChar(); break; case "[": _local1.type = JSONTokenType.LEFT_BRACKET; _local1.value = "["; this.nextChar(); break; case "]": _local1.type = JSONTokenType.RIGHT_BRACKET; _local1.value = "]"; this.nextChar(); break; case ",": _local1.type = JSONTokenType.COMMA; _local1.value = ","; this.nextChar(); break; case ":": _local1.type = JSONTokenType.COLON; _local1.value = ":"; this.nextChar(); break; case "t": _local2 = ((("t" + this.nextChar()) + this.nextChar()) + this.nextChar()); if (_local2 == "true"){ _local1.type = JSONTokenType.TRUE; _local1.value = true; this.nextChar(); } else { this.parseError(("Expecting 'true' but found " + _local2)); }; break; case "f": _local3 = (((("f" + this.nextChar()) + this.nextChar()) + this.nextChar()) + this.nextChar()); if (_local3 == "false"){ _local1.type = JSONTokenType.FALSE; _local1.value = false; this.nextChar(); } else { this.parseError(("Expecting 'false' but found " + _local3)); }; break; case "n": _local4 = ((("n" + this.nextChar()) + this.nextChar()) + this.nextChar()); if (_local4 == "null"){ _local1.type = JSONTokenType.NULL; _local1.value = null; this.nextChar(); } else { this.parseError(("Expecting 'null' but found " + _local4)); }; break; case "\"": _local1 = this.readString(); break; default: if (((this.isDigit(this.ch)) || ((this.ch == "-")))){ _local1 = this.readNumber(); } else { if (this.ch == ""){ return (null); }; this.parseError((("Unexpected " + this.ch) + " encountered")); }; }; return (_local1); } private function skipWhite():void{ while (this.isWhiteSpace(this.ch)) { this.nextChar(); }; } public function parseError(_arg1:String):void{ throw (new JSONParseError(_arg1, this.loc, this.jsonString)); } private function isWhiteSpace(_arg1:String):Boolean{ return ((((((((_arg1 == " ")) || ((_arg1 == "\t")))) || ((_arg1 == "\n")))) || ((_arg1 == "\r")))); } private function skipIgnored():void{ var _local1:int; do { _local1 = this.loc; this.skipWhite(); this.skipComments(); } while (_local1 != this.loc); } private function isHexDigit(_arg1:String):Boolean{ var _local2:String = _arg1.toUpperCase(); return (((this.isDigit(_arg1)) || ((((_local2 >= "A")) && ((_local2 <= "F")))))); } private function readNumber():JSONToken{ var _local1:JSONToken = new JSONToken(); _local1.type = JSONTokenType.NUMBER; var _local2 = ""; if (this.ch == "-"){ _local2 = (_local2 + "-"); this.nextChar(); }; if (!this.isDigit(this.ch)){ this.parseError("Expecting a digit"); }; if (this.ch == "0"){ _local2 = (_local2 + this.ch); this.nextChar(); if (this.isDigit(this.ch)){ this.parseError("A digit cannot immediately follow 0"); }; } else { while (this.isDigit(this.ch)) { _local2 = (_local2 + this.ch); this.nextChar(); }; }; if (this.ch == "."){ _local2 = (_local2 + "."); this.nextChar(); if (!this.isDigit(this.ch)){ this.parseError("Expecting a digit"); }; while (this.isDigit(this.ch)) { _local2 = (_local2 + this.ch); this.nextChar(); }; }; if ((((this.ch == "e")) || ((this.ch == "E")))){ _local2 = (_local2 + "e"); this.nextChar(); if ((((this.ch == "+")) || ((this.ch == "-")))){ _local2 = (_local2 + this.ch); this.nextChar(); }; if (!this.isDigit(this.ch)){ this.parseError("Scientific notation number needs exponent value"); }; while (this.isDigit(this.ch)) { _local2 = (_local2 + this.ch); this.nextChar(); }; }; var _local3:Number = Number(_local2); if (((isFinite(_local3)) && (!(isNaN(_local3))))){ _local1.value = _local3; return (_local1); }; this.parseError((("Number " + _local3) + " is not valid!")); return (null); } } }//package com.adobe.serialization.json
Section 7
//JSONTokenType (com.adobe.serialization.json.JSONTokenType) package com.adobe.serialization.json { public class JSONTokenType { public static const NUMBER:int = 11; public static const FALSE:int = 8; public static const RIGHT_BRACKET:int = 4; public static const NULL:int = 9; public static const TRUE:int = 7; public static const RIGHT_BRACE:int = 2; public static const UNKNOWN:int = -1; public static const COMMA:int = 0; public static const LEFT_BRACKET:int = 3; public static const STRING:int = 10; public static const LEFT_BRACE:int = 1; public static const COLON:int = 6; } }//package com.adobe.serialization.json
Section 8
//APIEvent (com.girlgames.dressup.api.APIEvent) package com.girlgames.dressup.api { import flash.events.*; public class APIEvent extends Event { public var actionType:String; public function APIEvent(_arg1:String, _arg2:String){ this.actionType = _arg2; super(_arg1); } } }//package com.girlgames.dressup.api
Section 9
//ApiUI (com.girlgames.dressup.api.ApiUI) package com.girlgames.dressup.api { import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; public class ApiUI { private var stateSaver:StateSaver; private var signupMessage:SignUpMessageMc; private var messageWin:ErrorMessageMc; private var selectScreen:SelectScreenShotMc; private var placement:Object; private var saveBtn:MButton; private var selectSreenWin:SelectScreenWin; private var game:DressupGame; private var content:ApiMovieClip; public function ApiUI(_arg1:Stage, _arg2:DressupGame, _arg3:StateSaver, _arg4:Object=null, _arg5:MovieClip=null){ MousePointer.init(_arg1); this.stateSaver = _arg3; this.placement = _arg4; this.game = _arg2; if (_arg5){ this.content = (_arg5 as ApiMovieClip); } else { this.content = new ApiMovieClip(); this.game.addChild(this.content); }; this.saveBtn = new MButton(this.content.saveBtn); this.saveBtn.addActionListener(this.onSave1); if (!this.content.stage){ this.content.addEventListener(Event.ADDED_TO_STAGE, this.onUIAdedToStage); } else { this.content.stage.addEventListener(MouseEvent.MOUSE_DOWN, this.onStageMouseDown); }; this.messageWin = new ErrorMessageMc(); this.messageWin.addEventListener(MouseEvent.MOUSE_DOWN, this.blockMouse); this.messageWin.yesBtn.addEventListener(MouseEvent.CLICK, this.onStageMouseDown); this.signupMessage = new SignUpMessageMc(); this.signupMessage.addEventListener(MouseEvent.MOUSE_DOWN, this.blockMouse); this.signupMessage.noBtn.addEventListener(MouseEvent.CLICK, this.onStageMouseDown); this.signupMessage.yesBtn.addEventListener(MouseEvent.CLICK, this.onSignUP); this.selectScreen = new SelectScreenShotMc(); this.selectScreen.addEventListener(MouseEvent.MOUSE_DOWN, this.blockMouse); this.selectScreen.noBtn.addEventListener(MouseEvent.CLICK, this.onScreenNo); this.selectScreen.yesBtn.addEventListener(MouseEvent.CLICK, this.onScreenYes); _arg2.addEventListener(DressupGame.EDIT_EVENT, this.onEdit); this.stateSaver.addEventListener(StateSaver.ACTION_COMPLTE, this.onActionComplete); this.selectSreenWin = new SelectScreenWin(this.game); this.selectSreenWin.saveBtn.addActionListener(this.onSave); this.selectSreenWin.visible = false; this.saveBtn.enabled = false; if (this.placement){ if (this.placement.pl){ switch (this.placement.pl){ case "tl": this.content.x = 0; this.content.y = 0; break; case "tr": this.content.x = (this.game.WIDTH - this.content.width); this.content.y = 0; break; case "bl": this.content.x = 0; this.content.y = (this.game.HEIGHT - this.content.height); break; case "br": this.content.x = (this.game.WIDTH - this.content.width); this.content.y = (this.game.HEIGHT - this.content.height); break; default: throw (new Error("bad placement format, see docs!!!")); }; } else { if (((parseFloat(this.placement.x)) && (parseFloat(this.placement.y)))){ this.content.x = parseFloat(this.placement.x); this.content.y = parseFloat(this.placement.y); } else { throw (new Error("bad placement format, see docs!!!")); }; }; } else { this.content.x = (this.game.WIDTH - this.content.width); this.content.y = (this.game.HEIGHT - this.content.height); }; } private function onSave(_arg1:Event=null):void{ this.content.visible = true; this.selectSreenWin.visible = false; if (this.stateSaver.mode != StateSaver.MODE_USER){ this.showSignupMessage(); } else { this.saveBtn.enabled = false; this.stateSaver.sendCommand(StateSaver.STORE_DATA); }; } private function onEdit(_arg1:Event):void{ if (!this.saveBtn.enabled){ this.saveBtn.enabled = true; }; } private function onScreenNo(_arg1:MouseEvent):void{ this.selectScreen.visible = false; this.stateSaver.screenShot = null; this.onSave(); } private function onActionComplete(_arg1:APIEvent):void{ this.stateSaver.console.print(_arg1.actionType); var _local2 = ""; if (this.stateSaver.error == "1"){ if (!this.stateSaver.errorDescription){ _local2 = this.stateSaver.dafaultErrorMessage; } else { _local2 = this.stateSaver.errorDescription; }; this.showMessage(_local2); return; }; if (this.game.edited){ this.saveBtn.enabled = true; }; _local2 = this.stateSaver.successDescription; this.stateSaver.console.print(_local2); if (_local2){ this.showMessage(_local2); }; } private function showMessage(_arg1:String):void{ var _local2:Stage = this.content.stage; _local2.addChild(this.messageWin); this.messageWin.x = ((_local2.stageWidth - this.messageWin.width) / 2); this.messageWin.y = ((_local2.stageHeight - this.messageWin.height) / 2); this.messageWin.visible = true; this.messageWin.msgtxt.text = _arg1; } private function showSreenMsg():void{ var _local1:Stage = this.content.stage; _local1.addChild(this.selectScreen); this.selectScreen.x = ((_local1.stageWidth - this.selectScreen.width) / 2); this.selectScreen.y = ((_local1.stageHeight - this.selectScreen.height) / 2); this.selectScreen.visible = true; } private function blockMouse(_arg1:MouseEvent):void{ _arg1.stopPropagation(); _arg1.stopImmediatePropagation(); } private function showSignupMessage():void{ var _local1:Stage = this.content.stage; _local1.addChild(this.signupMessage); this.signupMessage.x = ((_local1.stageWidth - this.signupMessage.width) / 2); this.signupMessage.y = ((_local1.stageHeight - this.signupMessage.height) / 2); this.signupMessage.visible = true; } private function showSelectionWindow():void{ this.selectScreen.visible = false; var _local1:Stage = this.content.stage; _local1.addChild(this.selectSreenWin); this.selectSreenWin.visible = true; this.content.visible = false; } private function onStageMouseDown(_arg1:MouseEvent):void{ if (this.selectSreenWin.visible){ return; }; if (this.messageWin.visible){ this.messageWin.visible = false; }; if (this.signupMessage.visible){ this.signupMessage.visible = false; }; if (this.selectScreen){ this.selectScreen.visible = false; }; this.selectSreenWin.visible = false; } private function onUIAdedToStage(_arg1:Event):void{ this.content.removeEventListener(Event.ADDED_TO_STAGE, this.onUIAdedToStage); } private function onSignUP(_arg1:MouseEvent):void{ this.stateSaver.navigateSignUp(); } private function onSave1(_arg1:Event):void{ this.showSreenMsg(); } private function onScreenYes(_arg1:MouseEvent):void{ this.showSelectionWindow(); } } }//package com.girlgames.dressup.api
Section 10
//EventSender (com.girlgames.dressup.api.EventSender) package com.girlgames.dressup.api { public class EventSender { private var _listeners:Array; private var _type:Class; public function EventSender(_arg1:Class=null){ this._listeners = []; super(); this._type = _arg1; } public function sendEvent(_arg1:Object=null):void{ var _local3:Function; if ((((this._type == null)) || ((_arg1 is this._type)))){ if (arguments.length == 0){ for each (_local3 in this._listeners) { _local3(); }; } else { for each (_local3 in this._listeners) { _local3(_arg1); }; }; } else { throw (new TypeError("The eventObject has incorrect event type!")); }; } public function addListener(_arg1:Function):void{ if (!this.hasListener(_arg1)){ this._listeners.push(_arg1); } else { throw (new Error("List already contain such listener")); }; } public function setListener(_arg1:Function):void{ this._listeners = [_arg1]; } public function removeListener(_arg1:Function):void{ if (this.hasListener(_arg1)){ this._listeners.splice(this._listeners.indexOf(_arg1), 1); } else { throw (new Error("List doesn't contain such listener")); }; } public function removeListeners():void{ this._listeners = []; } public function hasListeners():Boolean{ return ((this._listeners.length > 0)); } public function hasListener(_arg1:Function):Boolean{ return ((this._listeners.indexOf(_arg1) >= 0)); } } }//package com.girlgames.dressup.api
Section 11
//JPEGEncoder (com.girlgames.dressup.api.JPEGEncoder) package com.girlgames.dressup.api { import flash.display.*; import flash.utils.*; public class JPEGEncoder { private var fdtbl_UV:Array; private var std_ac_chrominance_values:Array; private var std_dc_chrominance_values:Array; private var ZigZag:Array; private var YDC_HT:Array; private var YAC_HT:Array; private var bytenew:int;// = 0 private var fdtbl_Y:Array; private var std_ac_chrominance_nrcodes:Array; private var DU:Array; private var std_ac_luminance_values:Array; private var std_dc_chrominance_nrcodes:Array; private var UVTable:Array; private var YDU:Array; private var UDU:Array; private var byteout:ByteArray; private var UVAC_HT:Array; private var UVDC_HT:Array; private var bytepos:int;// = 7 private var VDU:Array; private var std_ac_luminance_nrcodes:Array; private var std_dc_luminance_values:Array; private var YTable:Array; private var std_dc_luminance_nrcodes:Array; private var bitcode:Array; private var category:Array; public function JPEGEncoder(_arg1:Number=50):void{ this.ZigZag = [0, 1, 5, 6, 14, 15, 27, 28, 2, 4, 7, 13, 16, 26, 29, 42, 3, 8, 12, 17, 25, 30, 41, 43, 9, 11, 18, 24, 31, 40, 44, 53, 10, 19, 23, 32, 39, 45, 52, 54, 20, 22, 33, 38, 46, 51, 55, 60, 21, 34, 37, 47, 50, 56, 59, 61, 35, 36, 48, 49, 57, 58, 62, 63]; this.YTable = new Array(64); this.UVTable = new Array(64); this.fdtbl_Y = new Array(64); this.fdtbl_UV = new Array(64); this.std_dc_luminance_nrcodes = [0, 0, 1, 5, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0]; this.std_dc_luminance_values = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]; this.std_ac_luminance_nrcodes = [0, 0, 2, 1, 3, 3, 2, 4, 3, 5, 5, 4, 4, 0, 0, 1, 125]; this.std_ac_luminance_values = [1, 2, 3, 0, 4, 17, 5, 18, 33, 49, 65, 6, 19, 81, 97, 7, 34, 113, 20, 50, 129, 145, 161, 8, 35, 66, 177, 193, 21, 82, 209, 240, 36, 51, 98, 114, 130, 9, 10, 22, 23, 24, 25, 26, 37, 38, 39, 40, 41, 42, 52, 53, 54, 55, 56, 57, 58, 67, 68, 69, 70, 71, 72, 73, 74, 83, 84, 85, 86, 87, 88, 89, 90, 99, 100, 101, 102, 103, 104, 105, 106, 115, 116, 117, 118, 119, 120, 121, 122, 131, 132, 133, 134, 135, 136, 137, 138, 146, 147, 148, 149, 150, 151, 152, 153, 154, 162, 163, 164, 165, 166, 167, 168, 169, 170, 178, 179, 180, 181, 182, 183, 184, 185, 186, 194, 195, 196, 197, 198, 199, 200, 201, 202, 210, 211, 212, 213, 214, 215, 216, 217, 218, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250]; this.std_dc_chrominance_nrcodes = [0, 0, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0]; this.std_dc_chrominance_values = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]; this.std_ac_chrominance_nrcodes = [0, 0, 2, 1, 2, 4, 4, 3, 4, 7, 5, 4, 4, 0, 1, 2, 119]; this.std_ac_chrominance_values = [0, 1, 2, 3, 17, 4, 5, 33, 49, 6, 18, 65, 81, 7, 97, 113, 19, 34, 50, 129, 8, 20, 66, 145, 161, 177, 193, 9, 35, 51, 82, 240, 21, 98, 114, 209, 10, 22, 36, 52, 225, 37, 241, 23, 24, 25, 26, 38, 39, 40, 41, 42, 53, 54, 55, 56, 57, 58, 67, 68, 69, 70, 71, 72, 73, 74, 83, 84, 85, 86, 87, 88, 89, 90, 99, 100, 101, 102, 103, 104, 105, 106, 115, 116, 117, 118, 119, 120, 121, 122, 130, 131, 132, 133, 134, 135, 136, 137, 138, 146, 147, 148, 149, 150, 151, 152, 153, 154, 162, 163, 164, 165, 166, 167, 168, 169, 170, 178, 179, 180, 181, 182, 183, 184, 185, 186, 194, 195, 196, 197, 198, 199, 200, 201, 202, 210, 211, 212, 213, 214, 215, 216, 217, 218, 226, 227, 228, 229, 230, 231, 232, 233, 234, 242, 243, 244, 245, 246, 247, 248, 249, 250]; this.bitcode = new Array(0xFFFF); this.category = new Array(0xFFFF); this.DU = new Array(64); this.YDU = new Array(64); this.UDU = new Array(64); this.VDU = new Array(64); super(); if (_arg1 <= 0){ _arg1 = 1; }; if (_arg1 > 100){ _arg1 = 100; }; var _local2:int; if (_arg1 < 50){ _local2 = int((5000 / _arg1)); } else { _local2 = int((200 - (_arg1 * 2))); }; this.initHuffmanTbl(); this.initCategoryNumber(); this.initQuantTables(_local2); } private function initHuffmanTbl():void{ this.YDC_HT = this.computeHuffmanTbl(this.std_dc_luminance_nrcodes, this.std_dc_luminance_values); this.UVDC_HT = this.computeHuffmanTbl(this.std_dc_chrominance_nrcodes, this.std_dc_chrominance_values); this.YAC_HT = this.computeHuffmanTbl(this.std_ac_luminance_nrcodes, this.std_ac_luminance_values); this.UVAC_HT = this.computeHuffmanTbl(this.std_ac_chrominance_nrcodes, this.std_ac_chrominance_values); } private function RGB2YUV(_arg1:BitmapData, _arg2:int, _arg3:int):void{ var _local6:int; var _local7:uint; var _local8:Number; var _local9:Number; var _local10:Number; var _local4:int; var _local5:int; while (_local5 < 8) { _local6 = 0; while (_local6 < 8) { _local7 = _arg1.getPixel32((_arg2 + _local6), (_arg3 + _local5)); _local8 = Number(((_local7 >> 16) & 0xFF)); _local9 = Number(((_local7 >> 8) & 0xFF)); _local10 = Number((_local7 & 0xFF)); this.YDU[_local4] = ((((0.299 * _local8) + (0.587 * _local9)) + (0.114 * _local10)) - 128); this.UDU[_local4] = (((-0.16874 * _local8) + (-0.33126 * _local9)) + (0.5 * _local10)); this.VDU[_local4] = (((0.5 * _local8) + (-0.41869 * _local9)) + (-0.08131 * _local10)); _local4++; _local6++; }; _local5++; }; } private function writeBits(_arg1:BitString):void{ var _local2:int = _arg1.val; var _local3:int = (_arg1.len - 1); while (_local3 >= 0) { if ((_local2 & uint((1 << _local3)))){ this.bytenew = (this.bytenew | uint((1 << this.bytepos))); }; _local3--; this.bytepos--; if (this.bytepos < 0){ if (this.bytenew == 0xFF){ this.writeByte(0xFF); this.writeByte(0); } else { this.writeByte(this.bytenew); }; this.bytepos = 7; this.bytenew = 0; }; }; } private function writeWord(_arg1:int):void{ this.writeByte(((_arg1 >> 8) & 0xFF)); this.writeByte((_arg1 & 0xFF)); } private function writeByte(_arg1:int):void{ this.byteout.writeByte(_arg1); } private function writeDHT():void{ var _local1:int; this.writeWord(65476); this.writeWord(418); this.writeByte(0); _local1 = 0; while (_local1 < 16) { this.writeByte(this.std_dc_luminance_nrcodes[(_local1 + 1)]); _local1++; }; _local1 = 0; while (_local1 <= 11) { this.writeByte(this.std_dc_luminance_values[_local1]); _local1++; }; this.writeByte(16); _local1 = 0; while (_local1 < 16) { this.writeByte(this.std_ac_luminance_nrcodes[(_local1 + 1)]); _local1++; }; _local1 = 0; while (_local1 <= 161) { this.writeByte(this.std_ac_luminance_values[_local1]); _local1++; }; this.writeByte(1); _local1 = 0; while (_local1 < 16) { this.writeByte(this.std_dc_chrominance_nrcodes[(_local1 + 1)]); _local1++; }; _local1 = 0; while (_local1 <= 11) { this.writeByte(this.std_dc_chrominance_values[_local1]); _local1++; }; this.writeByte(17); _local1 = 0; while (_local1 < 16) { this.writeByte(this.std_ac_chrominance_nrcodes[(_local1 + 1)]); _local1++; }; _local1 = 0; while (_local1 <= 161) { this.writeByte(this.std_ac_chrominance_values[_local1]); _local1++; }; } public function encode(_arg1:BitmapData):ByteArray{ var _local6:int; var _local7:BitString; this.byteout = new ByteArray(); this.bytenew = 0; this.bytepos = 7; this.writeWord(65496); this.writeAPP0(); this.writeDQT(); this.writeSOF0(_arg1.width, _arg1.height); this.writeDHT(); this.writeSOS(); var _local2:Number = 0; var _local3:Number = 0; var _local4:Number = 0; this.bytenew = 0; this.bytepos = 7; var _local5:int; while (_local5 < _arg1.height) { _local6 = 0; while (_local6 < _arg1.width) { this.RGB2YUV(_arg1, _local6, _local5); _local2 = this.processDU(this.YDU, this.fdtbl_Y, _local2, this.YDC_HT, this.YAC_HT); _local3 = this.processDU(this.UDU, this.fdtbl_UV, _local3, this.UVDC_HT, this.UVAC_HT); _local4 = this.processDU(this.VDU, this.fdtbl_UV, _local4, this.UVDC_HT, this.UVAC_HT); _local6 = (_local6 + 8); }; _local5 = (_local5 + 8); }; if (this.bytepos >= 0){ _local7 = new BitString(); _local7.len = (this.bytepos + 1); _local7.val = ((1 << (this.bytepos + 1)) - 1); this.writeBits(_local7); }; this.writeWord(65497); return (this.byteout); } private function initCategoryNumber():void{ var _local3:int; var _local1 = 1; var _local2 = 2; var _local4 = 1; while (_local4 <= 15) { _local3 = _local1; while (_local3 < _local2) { this.category[(32767 + _local3)] = _local4; this.bitcode[(32767 + _local3)] = new BitString(); this.bitcode[(32767 + _local3)].len = _local4; this.bitcode[(32767 + _local3)].val = _local3; _local3++; }; _local3 = -((_local2 - 1)); while (_local3 <= -(_local1)) { this.category[(32767 + _local3)] = _local4; this.bitcode[(32767 + _local3)] = new BitString(); this.bitcode[(32767 + _local3)].len = _local4; this.bitcode[(32767 + _local3)].val = ((_local2 - 1) + _local3); _local3++; }; _local1 = (_local1 << 1); _local2 = (_local2 << 1); _local4++; }; } private function writeDQT():void{ var _local1:int; this.writeWord(65499); this.writeWord(132); this.writeByte(0); _local1 = 0; while (_local1 < 64) { this.writeByte(this.YTable[_local1]); _local1++; }; this.writeByte(1); _local1 = 0; while (_local1 < 64) { this.writeByte(this.UVTable[_local1]); _local1++; }; } private function writeAPP0():void{ this.writeWord(65504); this.writeWord(16); this.writeByte(74); this.writeByte(70); this.writeByte(73); this.writeByte(70); this.writeByte(0); this.writeByte(1); this.writeByte(1); this.writeByte(0); this.writeWord(1); this.writeWord(1); this.writeByte(0); this.writeByte(0); } private function writeSOS():void{ this.writeWord(65498); this.writeWord(12); this.writeByte(3); this.writeByte(1); this.writeByte(0); this.writeByte(2); this.writeByte(17); this.writeByte(3); this.writeByte(17); this.writeByte(0); this.writeByte(63); this.writeByte(0); } private function processDU(_arg1:Array, _arg2:Array, _arg3:Number, _arg4:Array, _arg5:Array):Number{ var _local8:int; var _local12:int; var _local13:int; var _local14:int; var _local6:BitString = _arg5[0]; var _local7:BitString = _arg5[240]; var _local9:Array = this.fDCTQuant(_arg1, _arg2); _local8 = 0; while (_local8 < 64) { this.DU[this.ZigZag[_local8]] = _local9[_local8]; _local8++; }; var _local10:int = (this.DU[0] - _arg3); _arg3 = this.DU[0]; if (_local10 == 0){ this.writeBits(_arg4[0]); } else { this.writeBits(_arg4[this.category[(32767 + _local10)]]); this.writeBits(this.bitcode[(32767 + _local10)]); }; var _local11 = 63; while ((((_local11 > 0)) && ((this.DU[_local11] == 0)))) { _local11--; }; if (_local11 == 0){ this.writeBits(_local6); return (_arg3); }; _local8 = 1; while (_local8 <= _local11) { _local12 = _local8; while ((((this.DU[_local8] == 0)) && ((_local8 <= _local11)))) { _local8++; }; _local13 = (_local8 - _local12); if (_local13 >= 16){ _local14 = 1; while (_local14 <= (_local13 / 16)) { this.writeBits(_local7); _local14++; }; _local13 = int((_local13 & 15)); }; this.writeBits(_arg5[((_local13 * 16) + this.category[(32767 + this.DU[_local8])])]); this.writeBits(this.bitcode[(32767 + this.DU[_local8])]); _local8++; }; if (_local11 != 63){ this.writeBits(_local6); }; return (_arg3); } private function initQuantTables(_arg1:int):void{ var _local2:int; var _local3:Number; var _local8:int; var _local4:Array = [16, 11, 10, 16, 24, 40, 51, 61, 12, 12, 14, 19, 26, 58, 60, 55, 14, 13, 16, 24, 40, 57, 69, 56, 14, 17, 22, 29, 51, 87, 80, 62, 18, 22, 37, 56, 68, 109, 103, 77, 24, 35, 55, 64, 81, 104, 113, 92, 49, 64, 78, 87, 103, 121, 120, 101, 72, 92, 95, 98, 112, 100, 103, 99]; _local2 = 0; while (_local2 < 64) { _local3 = Math.floor((((_local4[_local2] * _arg1) + 50) / 100)); if (_local3 < 1){ _local3 = 1; } else { if (_local3 > 0xFF){ _local3 = 0xFF; }; }; this.YTable[this.ZigZag[_local2]] = _local3; _local2++; }; var _local5:Array = [17, 18, 24, 47, 99, 99, 99, 99, 18, 21, 26, 66, 99, 99, 99, 99, 24, 26, 56, 99, 99, 99, 99, 99, 47, 66, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99]; _local2 = 0; while (_local2 < 64) { _local3 = Math.floor((((_local5[_local2] * _arg1) + 50) / 100)); if (_local3 < 1){ _local3 = 1; } else { if (_local3 > 0xFF){ _local3 = 0xFF; }; }; this.UVTable[this.ZigZag[_local2]] = _local3; _local2++; }; var _local6:Array = [1, 1.387039845, 1.306562965, 1.175875602, 1, 0.785694958, 0.5411961, 0.275899379]; _local2 = 0; var _local7:int; while (_local7 < 8) { _local8 = 0; while (_local8 < 8) { this.fdtbl_Y[_local2] = (1 / (((this.YTable[this.ZigZag[_local2]] * _local6[_local7]) * _local6[_local8]) * 8)); this.fdtbl_UV[_local2] = (1 / (((this.UVTable[this.ZigZag[_local2]] * _local6[_local7]) * _local6[_local8]) * 8)); _local2++; _local8++; }; _local7++; }; } private function writeSOF0(_arg1:int, _arg2:int):void{ this.writeWord(65472); this.writeWord(17); this.writeByte(8); this.writeWord(_arg2); this.writeWord(_arg1); this.writeByte(3); this.writeByte(1); this.writeByte(17); this.writeByte(0); this.writeByte(2); this.writeByte(17); this.writeByte(1); this.writeByte(3); this.writeByte(17); this.writeByte(1); } private function computeHuffmanTbl(_arg1:Array, _arg2:Array):Array{ var _local7:int; var _local3:int; var _local4:int; var _local5:Array = new Array(); var _local6 = 1; while (_local6 <= 16) { _local7 = 1; while (_local7 <= _arg1[_local6]) { _local5[_arg2[_local4]] = new BitString(); _local5[_arg2[_local4]].val = _local3; _local5[_arg2[_local4]].len = _local6; _local4++; _local3++; _local7++; }; _local3 = (_local3 * 2); _local6++; }; return (_local5); } private function fDCTQuant(_arg1:Array, _arg2:Array):Array{ var _local3:Number; var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Number; var _local9:Number; var _local10:Number; var _local11:Number; var _local12:Number; var _local13:Number; var _local14:Number; var _local15:Number; var _local16:Number; var _local17:Number; var _local18:Number; var _local19:Number; var _local20:Number; var _local21:Number; var _local22:int; var _local23:int; _local22 = 0; while (_local22 < 8) { _local3 = (_arg1[(_local23 + 0)] + _arg1[(_local23 + 7)]); _local10 = (_arg1[(_local23 + 0)] - _arg1[(_local23 + 7)]); _local4 = (_arg1[(_local23 + 1)] + _arg1[(_local23 + 6)]); _local9 = (_arg1[(_local23 + 1)] - _arg1[(_local23 + 6)]); _local5 = (_arg1[(_local23 + 2)] + _arg1[(_local23 + 5)]); _local8 = (_arg1[(_local23 + 2)] - _arg1[(_local23 + 5)]); _local6 = (_arg1[(_local23 + 3)] + _arg1[(_local23 + 4)]); _local7 = (_arg1[(_local23 + 3)] - _arg1[(_local23 + 4)]); _local11 = (_local3 + _local6); _local14 = (_local3 - _local6); _local12 = (_local4 + _local5); _local13 = (_local4 - _local5); _arg1[(_local23 + 0)] = (_local11 + _local12); _arg1[(_local23 + 4)] = (_local11 - _local12); _local15 = ((_local13 + _local14) * 0.707106781); _arg1[(_local23 + 2)] = (_local14 + _local15); _arg1[(_local23 + 6)] = (_local14 - _local15); _local11 = (_local7 + _local8); _local12 = (_local8 + _local9); _local13 = (_local9 + _local10); _local19 = ((_local11 - _local13) * 0.382683433); _local16 = ((0.5411961 * _local11) + _local19); _local18 = ((1.306562965 * _local13) + _local19); _local17 = (_local12 * 0.707106781); _local20 = (_local10 + _local17); _local21 = (_local10 - _local17); _arg1[(_local23 + 5)] = (_local21 + _local16); _arg1[(_local23 + 3)] = (_local21 - _local16); _arg1[(_local23 + 1)] = (_local20 + _local18); _arg1[(_local23 + 7)] = (_local20 - _local18); _local23 = (_local23 + 8); _local22++; }; _local23 = 0; _local22 = 0; while (_local22 < 8) { _local3 = (_arg1[(_local23 + 0)] + _arg1[(_local23 + 56)]); _local10 = (_arg1[(_local23 + 0)] - _arg1[(_local23 + 56)]); _local4 = (_arg1[(_local23 + 8)] + _arg1[(_local23 + 48)]); _local9 = (_arg1[(_local23 + 8)] - _arg1[(_local23 + 48)]); _local5 = (_arg1[(_local23 + 16)] + _arg1[(_local23 + 40)]); _local8 = (_arg1[(_local23 + 16)] - _arg1[(_local23 + 40)]); _local6 = (_arg1[(_local23 + 24)] + _arg1[(_local23 + 32)]); _local7 = (_arg1[(_local23 + 24)] - _arg1[(_local23 + 32)]); _local11 = (_local3 + _local6); _local14 = (_local3 - _local6); _local12 = (_local4 + _local5); _local13 = (_local4 - _local5); _arg1[(_local23 + 0)] = (_local11 + _local12); _arg1[(_local23 + 32)] = (_local11 - _local12); _local15 = ((_local13 + _local14) * 0.707106781); _arg1[(_local23 + 16)] = (_local14 + _local15); _arg1[(_local23 + 48)] = (_local14 - _local15); _local11 = (_local7 + _local8); _local12 = (_local8 + _local9); _local13 = (_local9 + _local10); _local19 = ((_local11 - _local13) * 0.382683433); _local16 = ((0.5411961 * _local11) + _local19); _local18 = ((1.306562965 * _local13) + _local19); _local17 = (_local12 * 0.707106781); _local20 = (_local10 + _local17); _local21 = (_local10 - _local17); _arg1[(_local23 + 40)] = (_local21 + _local16); _arg1[(_local23 + 24)] = (_local21 - _local16); _arg1[(_local23 + 8)] = (_local20 + _local18); _arg1[(_local23 + 56)] = (_local20 - _local18); _local23++; _local22++; }; _local22 = 0; while (_local22 < 64) { _arg1[_local22] = Math.round((_arg1[_local22] * _arg2[_local22])); _local22++; }; return (_arg1); } } }//package com.girlgames.dressup.api class BitString { public var val:int;// = 0 public var len:int;// = 0 private function BitString(){ } }
Section 12
//MButton (com.girlgames.dressup.api.MButton) package com.girlgames.dressup.api { import flash.events.*; import flash.display.*; import flash.text.*; public class MButton extends Sprite { public var textF:TextField; private var _enabled:Boolean;// = true public var hint:String; private var actionFunc:Function;// = null public var textFormat:TextFormat; private var pressed:Boolean;// = false public var content:MovieClip; public static const ACTION:String = "action"; public function MButton(_arg1:MovieClip){ this.content = _arg1; this.content.parent.addChild(this); addChild(this.content); this.x = this.content.x; this.y = this.content.y; this.content.x = 0; this.content.y = 0; this.content.gotoAndStop(1); addEventListener(MouseEvent.MOUSE_DOWN, this.onMouseDown); addEventListener(MouseEvent.ROLL_OVER, this.onMouseOver); addEventListener(MouseEvent.ROLL_OUT, this.onMouseOut); addEventListener(MouseEvent.MOUSE_UP, this.onMouseUp); } public function get enabled():Boolean{ return (this._enabled); } public function set enabled(_arg1:Boolean):void{ this._enabled = _arg1; if (_arg1){ this.content.gotoAndStop(1); } else { this.content.gotoAndStop(4); }; } public function addActionListener(_arg1:Function):void{ addEventListener(MButton.ACTION, _arg1); } private function onMouseDown(_arg1:MouseEvent):void{ if (!this._enabled){ return; }; this.content.gotoAndStop(3); this.pressed = true; } private function onMouseUp(_arg1:MouseEvent):void{ if (!this._enabled){ return; }; if (hitTestPoint(stage.mouseX, stage.mouseY)){ this.content.gotoAndStop(2); if (this.pressed){ this.onMouseClick(); }; } else { this.content.gotoAndStop(1); }; this.pressed = false; } private function onMouseOut(_arg1:MouseEvent):void{ if (!this._enabled){ return; }; this.content.gotoAndStop(1); } private function onMouseClick(_arg1:MouseEvent=null):void{ if (!this._enabled){ return; }; dispatchEvent(new Event(MButton.ACTION)); } public function removeActionListener(_arg1:Function):void{ removeEventListener(MButton.ACTION, _arg1); } private function onMouseOver(_arg1:MouseEvent):void{ if (!this._enabled){ return; }; this.content.gotoAndStop(2); } public function setEnabled(_arg1:Boolean):void{ this._enabled = _arg1; if (_arg1){ this.content.gotoAndStop(1); } else { this.content.gotoAndStop(4); }; } } }//package com.girlgames.dressup.api
Section 13
//MultipartFormDataEncoder (com.girlgames.dressup.api.MultipartFormDataEncoder) package com.girlgames.dressup.api { import flash.utils.*; public class MultipartFormDataEncoder { private var finished:Boolean; private var _boundary:String; private var _postData:ByteArray; public function MultipartFormDataEncoder(){ this._postData = new ByteArray(); this._postData.endian = Endian.BIG_ENDIAN; this._boundary = ""; var _local1:int; while (_local1 < 32) { this._boundary = (this._boundary + String.fromCharCode(int((97 + (Math.random() * 25))))); _local1++; }; } private function writeDoubleDash():void{ this._postData.writeShort(0x2D2D); } public function addParameter(_arg1:String, _arg2:Object):void{ if (_arg2 == null){ _arg2 = ""; }; this.writeBoundary(); this.writeLinebreak(); this.writeString((("Content-Disposition: form-data; name=\"" + _arg1) + "\"")); this.writeLinebreak(); this.writeLinebreak(); this._postData.writeUTFBytes(_arg2.toString()); this.writeLinebreak(); } public function get data():ByteArray{ if (!this.finished){ this.finish(); }; return (this._postData); } public function addParameters(_arg1:Object):void{ var _local2:String; for (_local2 in _arg1) { this.addParameter(_local2, _arg1[_local2]); }; } private function writeLinebreak():void{ this._postData.writeShort(3338); } private function writeString(_arg1:String):void{ var _local2:int; while (_local2 < _arg1.length) { this._postData.writeByte(_arg1.charCodeAt(_local2)); _local2++; }; } public function get boundary():String{ return (this._boundary); } private function writeBoundary():void{ var _local1:int = this._boundary.length; this.writeDoubleDash(); var _local2:int; while (_local2 < _local1) { this._postData.writeByte(this._boundary.charCodeAt(_local2)); _local2++; }; } private function finish():void{ this.writeBoundary(); this.writeDoubleDash(); } public function addFile(_arg1:String, _arg2:String, _arg3:ByteArray, _arg4:String="application/octet-stream"):void{ this.writeBoundary(); this.writeLinebreak(); this.writeString((("Content-Disposition: form-data; name=\"" + _arg1) + "\"; filename=\"")); this._postData.writeUTFBytes(_arg2); this.writeString("\""); this.writeLinebreak(); this.writeString(("Content-Type: " + _arg4)); this.writeLinebreak(); this.writeLinebreak(); this._postData.writeBytes(_arg3); this.writeLinebreak(); } } }//package com.girlgames.dressup.api
Section 14
//SelectionBox (com.girlgames.dressup.api.SelectionBox) package com.girlgames.dressup.api { import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; import flash.geom.*; public class SelectionBox { private var _content:McSelection; private var maxWidth:Number; private var minW:Number;// = 4 private var pointerLocked:Boolean;// = false private var _moveEvent:EventSender; public var ratio:Number; private var _bounds:Rectangle; private var isMove:Boolean;// = false private var _startMoveEvent:EventSender; private var maxHeight:Number; private var boxBg:Sprite; public var movePointer:McMovePointer; private var minH:Number;// = 4 private var _finishMoveEvent:EventSender; private var _markers:Array; public var screenRect:Rectangle; public static const MARGIN:int = 4; public static const MIN_SIZE:int = 2; public function SelectionBox(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number){ this._content = new McSelection(); this._markers = []; this._bounds = new Rectangle(0, 0, 0, 0); this._moveEvent = new EventSender(); this._startMoveEvent = new EventSender(); this._finishMoveEvent = new EventSender(); super(); this.maxWidth = _arg1; this.maxHeight = _arg2; this.minW = _arg3; this.minH = _arg4; this.movePointer = new McMovePointer(); this.createResizeMarker(this._content.mcBottomLeft, 1, 0, 1, 1, -45); this.createResizeMarker(this._content.mcBottomRight, 0, 0, 1, 1, 45); this.createResizeMarker(this._content.mcTopLeft, 1, 1, 1, 1, 45); this.createResizeMarker(this._content.mcTopRight, 0, 1, 1, 1, -45); this.boxBg = new Sprite(); this._content.addChild(this.boxBg); this.boxBg.x = MARGIN; this.boxBg.y = MARGIN; this.boxBg.addEventListener(MouseEvent.MOUSE_DOWN, this.onBgMouseDown); this.boxBg.addEventListener(MouseEvent.MOUSE_UP, this.onBgMouseUP); this.boxBg.addEventListener(MouseEvent.ROLL_OVER, this.onMouseRollOver); this.boxBg.addEventListener(MouseEvent.ROLL_OUT, this.onMouseRollOut); this.ratio = (_arg3 / _arg4); this.screenRect = new Rectangle(0, 0, _arg3, _arg4); } public function get content():McSelection{ return (this._content); } private function onBgMouseDown(_arg1:MouseEvent):void{ this.isMove = true; this._content.stage.addEventListener(MouseEvent.MOUSE_MOVE, this.onBgMouseMove); this._content.stage.addEventListener(MouseEvent.MOUSE_UP, this.onBgMouseUP); this._content.startDrag(); } public function stopMove():void{ var _local1:ResizeMarker; var _local2:Rectangle; for each (_local1 in this._markers) { _local1.stopMove(); }; if (this.isMove){ this._content.stage.removeEventListener(MouseEvent.MOUSE_MOVE, this.onBgMouseMove); this._content.stage.removeEventListener(MouseEvent.MOUSE_UP, this.onBgMouseUP); this._content.stopDrag(); _local2 = new Rectangle((this._content.x + MARGIN), (this._content.y + MARGIN), this._bounds.width, this._bounds.height); this.bounds = _local2; }; this.isMove = false; } public function get moveEvent():EventSender{ return (this._moveEvent); } private function onMouseRollOver(_arg1:MouseEvent):void{ if (!this.pointerLocked){ MousePointer.setIcon(this.movePointer); this.onLockPointer(true); }; } private function onBgMouseUP(_arg1:MouseEvent):void{ this.stopMove(); } public function get startMoveEvent():EventSender{ return (this._startMoveEvent); } private function createRotaionMarker(_arg1:Sprite):void{ } public function set visible(_arg1:Boolean):void{ this._content.visible = _arg1; } private function createResizeMarker(_arg1:Sprite, _arg2:int, _arg3:int, _arg4:int, _arg5:int, _arg6:int):void{ var _local7:ResizeMarker = new ResizeMarker(_arg1); _local7.pointer.rotation = _arg6; _local7.moveHandler = this.onMarkerMove; _local7.startMoveHandler = this._startMoveEvent.sendEvent; _local7.finishMoveHandler = this._finishMoveEvent.sendEvent; _local7.lockPointerHandler = this.onLockPointer; _local7.canMoveX = _arg2; _local7.canMoveY = _arg3; _local7.canSizeX = _arg4; _local7.canSizeY = _arg5; this._markers.push(_local7); } private function onLockPointer(_arg1:Boolean):void{ var _local2:ResizeMarker; for each (_local2 in this._markers) { _local2.pointerLocked = _arg1; }; this.pointerLocked = _arg1; } private function onMarkerMove(_arg1:ResizeMarker):void{ var _local2:Rectangle = this._bounds.clone(); _local2.x = (_local2.x + _arg1.moveX); _local2.y = (_local2.y + _arg1.moveY); _local2.width = (_local2.width + _arg1.sizeX); _local2.height = (_local2.height + _arg1.sizeY); _local2.width = Math.max(_local2.width, this.minW); _local2.height = Math.max(_local2.height, this.minH); this._moveEvent.sendEvent(_local2); } private function onMouseRollOut(_arg1:MouseEvent):void{ if (!this.isMove){ this.onLockPointer(false); MousePointer.resetIcon(); }; } public function get bounds():Rectangle{ return (this._bounds); } private function onBgMouseMove(_arg1:MouseEvent):void{ var _local2:Rectangle; if (this.isMove){ _local2 = new Rectangle((this._content.x + MARGIN), (this._content.y + MARGIN), this._bounds.width, this._bounds.height); this.moveEvent.sendEvent(_local2); }; } public function get finishMoveEvent():EventSender{ return (this._finishMoveEvent); } public function set bounds(_arg1:Rectangle):void{ this._bounds = _arg1; var _local2:Rectangle = this._bounds.clone(); _local2.left = (_local2.left - MARGIN); _local2.top = (_local2.top - MARGIN); _local2.right = (_local2.right + MARGIN); _local2.bottom = (_local2.bottom + MARGIN); this._content.x = _local2.x; this._content.y = _local2.y; this._content.mcRect.width = _local2.width; this._content.mcRect.height = _local2.height; this._content.mcBottomLeft.y = _local2.height; this._content.mcBottomRight.x = _local2.width; this._content.mcBottomRight.y = _local2.height; this._content.mcTopRight.x = _local2.width; this.boxBg.x = MARGIN; this.boxBg.y = MARGIN; this.boxBg.graphics.clear(); this.boxBg.graphics.beginFill(0xFFFFFF, 0); this.boxBg.graphics.drawRect(0, 0, this._bounds.width, this._bounds.height); this.boxBg.graphics.endFill(); } } }//package com.girlgames.dressup.api import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; class ResizeMarker { private var _content:Sprite; public var pointer:McResizePointer; public var canMoveX:int; public var canSizeX:int; public var canSizeY:int; private var _mouseX:int; private var _isMoving:Boolean;// = false public var lockPointerHandler:Function; public var sizeY:int; public var finishMoveHandler:Function; public var moveX:int; public var moveY:int; public var pointerLocked:Boolean;// = false private var _mouseY:int; public var sizeX:int; public var canMoveY:int; public var moveHandler:Function; public var startMoveHandler:Function; private function ResizeMarker(_arg1:Sprite){ this.pointer = new McResizePointer(); super(); this._content = _arg1; this._content.cacheAsBitmap = true; this._content.addEventListener(MouseEvent.MOUSE_DOWN, this.onMouseDown); this._content.addEventListener(MouseEvent.MOUSE_OVER, this.onMouseOver); this._content.addEventListener(MouseEvent.MOUSE_OUT, this.onMouseOut); this.pointer.cacheAsBitmap = true; } private function onMouseOver(_arg1:MouseEvent):void{ if (!this.pointerLocked){ MousePointer.setIcon(this.pointer); }; } private function onMouseMove(_arg1:MouseEvent):void{ if (!this._isMoving){ this._isMoving = true; this.startMoveHandler(); }; var _local2:int = (this._content.mouseX - this._mouseX); var _local3:int = (this._content.mouseY - this._mouseY); this.moveX = (this.canMoveX * _local2); this.moveY = (this.canMoveY * _local3); this.sizeX = ((this.canSizeX * _local2) * (this.canMoveX) ? -1 : 1); this.sizeY = ((this.canSizeY * _local3) * (this.canMoveY) ? -1 : 1); this.moveHandler(this); this._mouseX = this._content.mouseX; this._mouseY = this._content.mouseY; } public function stopMove():void{ if (this._isMoving){ this._isMoving = false; this.finishMoveHandler(); this._content.stage.removeEventListener(MouseEvent.MOUSE_MOVE, this.onMouseMove); this._content.stage.removeEventListener(MouseEvent.MOUSE_UP, this.onMouseUP); this.lockPointerHandler(false); if (!this._content.hitTestPoint(this._content.stage.mouseX, this._content.stage.mouseY)){ MousePointer.resetIcon(); }; }; } private function onMouseUP(_arg1:MouseEvent):void{ if (this._isMoving){ this._isMoving = false; this.finishMoveHandler(); }; this._content.stage.removeEventListener(MouseEvent.MOUSE_MOVE, this.onMouseMove); this._content.stage.removeEventListener(MouseEvent.MOUSE_UP, this.onMouseUP); this.lockPointerHandler(false); if (!this._content.hitTestPoint(this._content.stage.mouseX, this._content.stage.mouseY)){ MousePointer.resetIcon(); }; } private function onMouseDown(_arg1:MouseEvent):void{ this._mouseX = this._content.mouseX; this._mouseY = this._content.mouseY; this._content.stage.addEventListener(MouseEvent.MOUSE_MOVE, this.onMouseMove); this._content.stage.addEventListener(MouseEvent.MOUSE_UP, this.onMouseUP); this.lockPointerHandler(true); } private function onMouseOut(_arg1:MouseEvent):void{ if (!this.pointerLocked){ MousePointer.resetIcon(); }; } }
Section 15
//SelectScreenWin (com.girlgames.dressup.api.SelectScreenWin) package com.girlgames.dressup.api { import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; import flash.geom.*; public class SelectScreenWin extends Sprite { private var a:Number;// = 0.3 private var color:uint;// = 16764159 public var saveBtn:MButton; private var game:DressupGame; private var bw:Number;// = 250 private var selectionBox:SelectionBox; public function SelectScreenWin(_arg1:DressupGame){ this.game = _arg1; this.selectionBox = new SelectionBox(this.game.WIDTH, this.game.HEIGHT, StateSaver.instance.screenwidth, StateSaver.instance.screenheight); addChild(this.selectionBox.content); var _local2:Rectangle = new Rectangle(((this.game.WIDTH - this.bw) / 2), 100, this.bw, 600); this.selectionBox.moveEvent.setListener(this.onSelectionMove); this.selectionBox.finishMoveEvent.setListener(this.onBoxFinishMove); StateSaver.instance.stage.addEventListener(Event.MOUSE_LEAVE, this.onMouseLeave); this.onSelectionMove(_local2); var _local3:SaveBtnWinMc = new SaveBtnWinMc(); addChild(_local3); this.saveBtn = new MButton(_local3); this.saveBtn.x = ((this.game.WIDTH - this.saveBtn.width) / 2); this.saveBtn.y = ((this.game.HEIGHT - this.saveBtn.height) - 10); this.saveBtn.addActionListener(this.onSaveBtn); } private function onSaveBtn(_arg1:Event):void{ StateSaver.instance.createScreenShot(this.selectionBox.bounds); } private function onBoxFinishMove():void{ this.onSelectionMove(this.selectionBox.bounds); } private function onMouseLeave(_arg1:Event):void{ this.selectionBox.stopMove(); } private function onSelectionMove(_arg1:Rectangle):void{ if ((((((((this.game.stage.mouseX < 0)) || ((this.game.stage.mouseY < 0)))) || ((this.game.stage.mouseX > this.game.WIDTH)))) || ((this.game.stage.mouseY > this.game.HEIGHT)))){ this.selectionBox.stopMove(); }; graphics.clear(); if (_arg1.height > this.game.HEIGHT){ _arg1.height = this.game.HEIGHT; }; if (_arg1.y < 0){ _arg1.y = 0; }; var _local2:Rectangle = _arg1; var _local3:Rectangle = this.selectionBox.screenRect; var _local4:Number = (_arg1.width / _arg1.height); if (_local4 > 1){ _local3.height = _arg1.height; _local3.width = (_arg1.height * this.selectionBox.ratio); } else { _local3.width = _arg1.width; _local3.height = (_arg1.width / this.selectionBox.ratio); if (_local3.height > this.game.HEIGHT){ _local3.height = (this.game.HEIGHT - SelectionBox.MARGIN); _local3.width = (_local3.height * this.selectionBox.ratio); }; }; _local3.x = _arg1.x; _local3.y = _arg1.y; this.selectionBox.bounds = _local3; this.checkBounds(); } private function checkBounds():void{ var _local1:Rectangle = this.selectionBox.bounds.clone(); var _local2:int = SelectionBox.MARGIN; _local1.x = Math.max(_local1.x, _local2); _local1.y = Math.max(_local1.y, _local2); _local1.x = Math.min(_local1.x, Math.max((this.game.WIDTH - _local1.width), _local2)); _local1.y = Math.min(_local1.y, Math.max((this.game.HEIGHT - _local1.height), _local2)); _local1.width = Math.min(_local1.width, this.game.WIDTH); _local1.height = Math.min(_local1.height, this.game.HEIGHT); this.selectionBox.bounds = _local1; } } }//package com.girlgames.dressup.api
Section 16
//StateSaver (com.girlgames.dressup.api.StateSaver) package com.girlgames.dressup.api { import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; import flash.system.*; import flash.geom.*; import flash.utils.*; import flash.net.*; import gemslibe.debug.utils.*; import com.adobe.serialization.json.*; import flash.external.*; public class StateSaver extends EventDispatcher { private var actionRequest:URLLoader; public var serviceUrl:String;// = "" public var stage:Stage; public var screenShot:ByteArray; public var game:DressupGame; public var dataobj:Object; private var clipToSave:MovieClip; public var state:String;// = "default" public var screenheight:Number;// = 151 public var error:String;// = "" public var mode:String;// = "guest" public var data:String;// = "" private var qualityValue:Number;// = 80 public var owner:String;// = "no" private var requestObject; private var playerVersion:Number; private var timeOutId:int; public var action:String;// = "loaddata" public var dafaultErrorMessage:String;// = "Sorry, the service is unvailable at the moment, please try again later." public var domain:String;// = "" public var console:Console; public var screenwidth:Number;// = 196 public var regurl:String; public var timeout:Number;// = 20000 public var errorDescription:String;// = "" public var dataUrl:String;// = "" private var defaultSnapShotName:String;// = "snapshot.jpg" public var doload:String;// = "no" public var successDescription:String;// = "" private var playerVersionStr:String; public var serviceData:String; public static const LOAD_DATA:String = "loaddata"; public static const ACTION_COMPLTE:String = "action_complete"; public static const MODE_USER:String = "user"; public static const STORE_DATA:String = "storedata"; public static const INIT_EVENT:String = "saver_init_event"; public static const MODE_EXTRNAL:String = "external"; public static const OWNER_NO:String = "no"; public static const REG_DATA:String = "regdata"; public static const OWNER_YES:String = "yes"; public static const MODE_GUEST:String = "guest"; public static const version:String = "rev. 6"; public static var instance:StateSaver = new (StateSaver); ; public function StateSaver(){ this.dataobj = {}; super(); if (instance != null){ throw (new Error("An instance of StateSaver already exists.")); }; } public function navigateSignUp():void{ this.sendCommand(REG_DATA); } private function onActionTimeOut():void{ if (this.timeOutId){ clearTimeout(this.timeOutId); this.timeOutId = 0; }; this.actionRequest.close(); this.errorDescription = this.dafaultErrorMessage; this.error = "1"; dispatchEvent(new APIEvent(StateSaver.ACTION_COMPLTE, this.action)); } public function createScreenShot(_arg1:Rectangle):ByteArray{ var _local2:BitmapData = new BitmapData(this.game.WIDTH, this.game.HEIGHT); _local2.draw(this.game.character, null, null, null, null, true); var _local3:BitmapData = new BitmapData(_arg1.width, _arg1.height); _local3.copyPixels(_local2, _arg1, new Point()); var _local4:Bitmap = new Bitmap(_local3, "auto", true); var _local5:Number = (this.screenwidth / _arg1.width); var _local6:BitmapData = new BitmapData(this.screenwidth, this.screenheight, false); var _local7:Matrix = new Matrix(); _local7.scale(_local5, _local5); _local6.draw(_local4, _local7, null, null, null, true); var _local8:JPEGEncoder = new JPEGEncoder(90); var _local9:ByteArray = _local8.encode(_local6); _local2.dispose(); _local3.dispose(); _local6.dispose(); this.screenShot = _local9; return (_local9); } private function onLoaderComplete(_arg1:URLLoader, _arg2:String):void{ var obj:Object; var loader = _arg1; var $action = _arg2; this.console.print("loader complete"); if (this.timeOutId){ clearTimeout(this.timeOutId); this.timeOutId = 0; }; this.console.print(loader.data); try { obj = JSON.decode(loader.data); } catch(e:Error) { error = "1"; errorDescription = ("Error: " + e); dispatchEvent(new APIEvent(StateSaver.ACTION_COMPLTE, $action)); return; }; this.error = obj.error.toString(); if (obj.errordescription){ this.errorDescription = obj.errordescription; }; if (obj.successdescription){ this.successDescription = obj.successdescription; }; if (obj.dataobj){ this.dataobj = obj.dataobj; }; if (obj.servicedata){ this.serviceData = obj.servicedata; }; this.data = obj.data; this.dataUrl = obj.dataurl; if (this.data){ this.setState(this.data); }; dispatchEvent(new APIEvent(StateSaver.ACTION_COMPLTE, $action)); } public function sendCommand(_arg1:String):void{ var loader:URLLoader; var $action = _arg1; if (!this.serviceUrl){ return; }; this.error = ""; this.errorDescription = ""; this.successDescription = ""; this.dataUrl = ""; this.requestObject = new MultipartFormDataEncoder(); this.data = StateSaver.instance.getDataToStore(); this.console.print(("data=" + this.data)); switch ($action){ case LOAD_DATA: this.action = LOAD_DATA; this.addVariableToRequest("action", $action); if (this.serviceData){ this.addVariableToRequest("servicedata", this.serviceData); }; break; case STORE_DATA: this.action = STORE_DATA; this.addVariableToRequest("action", $action); if (this.serviceData){ this.addVariableToRequest("servicedata", this.serviceData); }; if (this.screenShot){ this.addVariableToRequest("screenshot", this.screenShot); }; this.addVariableToRequest("data", this.data); break; case REG_DATA: this.action = REG_DATA; this.addVariableToRequest("action", $action); if (this.serviceData){ this.addVariableToRequest("servicedata", this.serviceData); }; if (this.screenShot){ this.addVariableToRequest("screenshot", this.screenShot); }; this.addVariableToRequest("data", this.data); break; }; this.console.print(("SEND_ACTION=" + $action), this.serviceData); if (this.timeOutId){ clearTimeout(this.timeOutId); }; if (this.timeout){ this.timeOutId = setTimeout(this.onActionTimeOut, this.timeout); }; this.console.print(("timeOutId=" + this.timeOutId)); var req:URLRequest = new URLRequest(this.serviceUrl); req.method = URLRequestMethod.POST; if ((this.requestObject is URLVariables)){ req.data = this.requestObject; } else { if ((this.requestObject is MultipartFormDataEncoder)){ req.data = MultipartFormDataEncoder(this.requestObject).data; req.contentType = ("multipart/form-data; boundary=" + MultipartFormDataEncoder(this.requestObject).boundary); }; }; if ($action != REG_DATA){ loader = new URLLoader(req); this.actionRequest = loader; loader.addEventListener(Event.COMPLETE, function (_arg1:Event):void{ onLoaderComplete((_arg1.target as URLLoader), $action); }); loader.addEventListener(IOErrorEvent.IO_ERROR, function (_arg1:IOErrorEvent):void{ onLoaderError(_arg1, $action); }); this.actionRequest = loader; loader.load(req); } else { if (this.timeOutId){ clearTimeout(this.timeOutId); this.timeOutId = 0; }; req.url = this.regurl; navigateToURL(req, "_blank"); }; } public function getDomain():String{ var url:String; var str:String; var ind:int; try { url = String(ExternalInterface.call("function(){ var afk = document.location.href; return afk; }")); this.console.print(("domainExternal=" + url)); if (url.toString() == "null"){ return (this.stage.loaderInfo.loaderURL); }; return (url); } catch(e:Error) { str = e.toString(); console.print(str); ind = str.lastIndexOf("://"); if (ind >= 0){ console.print("domain found"); return (str.substring(ind)); }; }; return (this.stage.loaderInfo.loaderURL); } public function initialize(_arg1:Stage, _arg2:MovieClip, _arg3:DressupGame):void{ this.stage = _arg1; this.game = _arg3; this.console = new Console(this.stage, true); this.clipToSave = _arg2; this.playerVersionStr = Capabilities.version; this.playerVersion = Number(this.playerVersionStr.substring((this.playerVersionStr.indexOf(",") - 2), this.playerVersionStr.indexOf(","))); var _local4:String = this.getDomain(); var _local5:int = (_local4.indexOf("://") + 3); var _local6:int = _local4.indexOf("/", _local5); _local4 = _local4.substring(0, _local6); this.regurl = (_local4 + "/register.html"); this.parseFlashVars(); this.console.print(this.serviceData); this.action = StateSaver.LOAD_DATA; dispatchEvent(new Event(StateSaver.INIT_EVENT)); if (this.doload == "yes"){ if (this.data != ""){ this.setState(this.data); } else { this.sendCommand(StateSaver.LOAD_DATA); }; }; } private function setDomain(_arg1:String):void{ var _local2:int = (_arg1.indexOf("://") + 3); var _local3:int = _arg1.indexOf("/", _local2); this.domain = _arg1.substring(_local2, _local3); var _local4:Array = this.domain.split("."); if (_local4.length == 4){ this.domain = ((((_local4[1] + ".") + _local4[2]) + ".") + _local4[3]); } else { if (_local4.length == 3){ this.domain = ((_local4[1] + ".") + _local4[2]); } else { if (_local4.length == 2){ this.domain = ((_local4[0] + ".") + _local4[1]); }; }; }; this.domain = ((((this.domain.length > 0)) && ((this.domain.indexOf("file://") < 0)))) ? this.domain : "local"; } public function setState(_arg1:String):void{ var s:String; var ta2:Array; var clo:Clothes; var str = _arg1; if (!this.stage){ throw (new Error("StateSaver does not initialized")); }; this.game.editEventLocked = true; this.console.print(("SetState=" + str)); var ta:Array = str.split(";"); var clips:Array = new Array(); var i:int; while (i < ta.length) { ta2 = ta[i].split("="); clips[ta2[0]] = ta2[1]; i = (i + 1); }; for (s in clips) { if (!s){ } else { try { clo = this.game.getClothesByName(s); clo.setVisibleByName(clips[s]); } catch(e:Error) { }; }; }; this.game.editEventLocked = false; } private function parseFlashVars():void{ var keyStr:String; var valueStr:String; var paramObj:Object; try { paramObj = this.stage.loaderInfo.parameters; for (keyStr in paramObj) { valueStr = String(paramObj[keyStr]); if (keyStr == "serviceurl"){ this.serviceUrl = valueStr; } else { if (keyStr == "servicedata"){ this.serviceData = valueStr; } else { if (keyStr == "timeout"){ this.timeout = parseFloat(valueStr); } else { if (keyStr == "owner"){ this.owner = valueStr; } else { if (keyStr == "mode"){ this.mode = valueStr; } else { if (keyStr == "doload"){ this.doload = valueStr; } else { if (keyStr == "loaddata"){ this.data = valueStr; } else { if (keyStr == "regurl"){ this.regurl = valueStr; } else { if (keyStr == "screenheight"){ this.screenheight = parseFloat(valueStr); } else { if (keyStr == "screenwidth"){ this.screenwidth = parseFloat(valueStr); continue; }; }; }; }; }; }; }; }; }; }; }; } catch(error:Error) { trace(("error=" + error)); throw (new Error(("Problem with parsing vars: " + error))); }; } private function onLoaderError(_arg1:IOErrorEvent, _arg2:String):void{ this.console.print(_arg1); this.error = "1"; dispatchEvent(new APIEvent(StateSaver.ACTION_COMPLTE, _arg2)); } private function addVariableToRequest(_arg1:String, _arg2:Object):void{ var _local3:MultipartFormDataEncoder; if ((this.requestObject is URLVariables)){ this.requestObject[_arg1] = _arg2; } else { if ((this.requestObject is MultipartFormDataEncoder)){ _local3 = MultipartFormDataEncoder(this.requestObject); if (_arg1 == "screenshot"){ this.console.print("screeenAdedd"); _local3.addFile("screenshot", "screenshot.jpg", (_arg2 as ByteArray)); } else { _local3.addParameter(_arg1, _arg2); }; }; }; } public function getDataToStore():String{ var _local2:Clothes; if (!this.stage){ throw (new Error("StateSaver does not initialized")); }; var _local1 = ""; for each (_local2 in this.game.clothes) { trace(("current=" + _local2.currentVisible)); if (_local2.currentVisible){ _local1 = (_local1 + (((_local2.name + "=") + _local2.currentVisible.name) + ";")); }; }; this.console.print(("getDtataToStore=" + _local1)); return (_local1); } } }//package com.girlgames.dressup.api
Section 17
//Clothes (com.girlgames.dressup.Clothes) package com.girlgames.dressup { import flash.events.*; import flash.display.*; public class Clothes extends EventDispatcher { private var game:DressupGame; public var eventsLocked:Boolean;// = false private var clothes:Array; public var name:String; private var _useHandCursor:Boolean;// = true private var _defaultVisible:MovieClip; private var _buttonMode:Boolean;// = true private var _currentVisible:MovieClip; private var _currentVisibleIndex:int;// = -1 private var _canDisapear:Boolean;// = true public var content:MovieClip; public function Clothes(_arg1:MovieClip, _arg2:DressupGame, _arg3:Boolean=true, _arg4:Boolean=true, _arg5:Boolean=true){ var _local7:DisplayObject; this.clothes = new Array(); super(); this.content = _arg1; this.game = _arg2; this.name = _arg1.name; this._canDisapear = _arg3; this._useHandCursor = _arg4; this._buttonMode = _arg5; var _local6:int; while (_local6 < _arg1.numChildren) { _local7 = _arg1.getChildAt(_local6); if ((_local7 is MovieClip)){ MovieClip(_local7).useHandCursor = this._useHandCursor; MovieClip(_local7).buttonMode = this._buttonMode; _local7.visible = false; MovieClip(_local7).stop(); this.clothes.push(_local7); }; _local6++; }; if (this._canDisapear){ _local6 = 0; while (_local6 < this.clothes.length) { this.clothes[_local6].addEventListener(MouseEvent.CLICK, this.onChildClick); _local6++; }; }; } public function get currentVisible():MovieClip{ return (this._currentVisible); } public function set buttonMode(_arg1:Boolean):void{ var _local3:MovieClip; this._buttonMode = _arg1; this.content.useHandCursor = this._useHandCursor; var _local2:int; while (_local2 < this.clothes.length) { _local3 = this.clothes[_local2]; _local3.buttonMode = this._buttonMode; _local2++; }; } public function setPrevVisible(_arg1:Boolean=true):MovieClip{ if (this._currentVisibleIndex == -1){ this.setVisibleByIndex((this.clothes.length - 1), _arg1); return (this._currentVisible); }; if (!this._currentVisible){ this.setVisibleByIndex(this._currentVisibleIndex, _arg1); } else { if ((((this._currentVisibleIndex == 0)) && (this._canDisapear))){ this.turnOffCurrentVisible(); this._currentVisibleIndex = (this.clothes.length - 1); return (this._currentVisible); }; if ((((this._currentVisibleIndex == 0)) && (!(this._canDisapear)))){ this.setVisibleByIndex((this.clothes.length - 1), _arg1); return (this._currentVisible); }; this.setVisibleByIndex((this._currentVisibleIndex - 1), _arg1); }; return (this._currentVisible); } public function set currentVisibleIndex(_arg1:int):void{ this._currentVisibleIndex = _arg1; } public function get useHandCursor():Boolean{ return (this._useHandCursor); } private function onChildClick(_arg1:MouseEvent):void{ _arg1.currentTarget.visible = false; this._currentVisible = null; if (!this.eventsLocked){ this.game.dispatchEvent(new Event(DressupGame.EDIT_EVENT)); }; } public function setDefaultVisibleByName(_arg1:String):void{ this._defaultVisible = this.setVisibleByName(_arg1); } public function setVisibleByName(_arg1:String, _arg2:Boolean=true):MovieClip{ var _local3:MovieClip = this.content[_arg1]; if (!_local3){ throw (new Error("element not found")); }; this.setVisibleByInstance(_local3, _arg2); return (this._currentVisible); } public function setVisibleByInstance(_arg1:MovieClip, _arg2:Boolean=true):MovieClip{ if (this.clothes.indexOf(_arg1) < 0){ throw (new Error(((((_arg1.toString() + " ") + _arg1.name) + " not found in ") + this.name))); }; _arg1.visible = true; if (((_arg2) && (this._currentVisible))){ this._currentVisible.visible = false; }; this._currentVisible = _arg1; this._currentVisible.play(); this._currentVisible.visible = true; this._currentVisibleIndex = this.clothes.indexOf(_arg1); this.game.dispatchEvent(new Event(DressupGame.EDIT_EVENT)); return (this._currentVisible); } public function setDefaultVisibleByInstance(_arg1:MovieClip):void{ this._defaultVisible = this.setVisibleByInstance(_arg1); } public function turnOffCurrentVisible():void{ if (!this._canDisapear){ return; }; if (this._currentVisible){ this._currentVisible.visible = false; this._currentVisible.stop(); this._currentVisible = null; if (!this.eventsLocked){ this.game.dispatchEvent(new Event(DressupGame.EDIT_EVENT)); }; }; } public function set canDisapear(_arg1:Boolean):void{ var _local2:int; this._canDisapear = _arg1; if (this._canDisapear){ _local2 = 0; while (_local2 < this.clothes.length) { this.clothes[_local2].addEventListener(MouseEvent.CLICK, this.onChildClick); _local2++; }; } else { _local2 = 0; while (_local2 < this.clothes.length) { this.clothes[_local2].removeEventListener(MouseEvent.CLICK, this.onChildClick); _local2++; }; }; } public function turnOnLastVisible():MovieClip{ if (this._currentVisibleIndex >= 0){ this.setVisibleByIndex(this._currentVisibleIndex); }; return (this._currentVisible); } public function get canDisapear():Boolean{ return (this._canDisapear); } public function setVisibleByIndex(_arg1:int, _arg2:Boolean=true):MovieClip{ trace("setVisibleByIndex", _arg1); var _local3:MovieClip = this.clothes[_arg1]; if (((_arg2) && (this.currentVisible))){ this.currentVisible.visible = false; }; this._currentVisibleIndex = _arg1; _local3.visible = true; this._currentVisible = _local3; this._currentVisible.play(); if (!this.eventsLocked){ this.game.dispatchEvent(new Event(DressupGame.EDIT_EVENT)); }; return (this._currentVisible); } public function get currentVisibleIndex():int{ return (this._currentVisibleIndex); } public function get buttonMode():Boolean{ return (this._buttonMode); } public function get defaultVisible():MovieClip{ return (this._defaultVisible); } public function set useHandCursor(_arg1:Boolean):void{ var _local3:MovieClip; this._useHandCursor = _arg1; this.content.useHandCursor = this._useHandCursor; var _local2:int; while (_local2 < this.clothes.length) { _local3 = this.clothes[_local2]; _local3.useHandCursor = this._useHandCursor; _local2++; }; } public function setNextVisible(_arg1:Boolean=true):MovieClip{ trace(this._currentVisibleIndex); if (this._currentVisibleIndex == -1){ this.setVisibleByIndex(0, _arg1); return (this._currentVisible); }; if (!this._currentVisible){ this.setVisibleByIndex(this._currentVisibleIndex, _arg1); } else { if ((((this._currentVisibleIndex == (this.clothes.length - 1))) && (this._canDisapear))){ this.turnOffCurrentVisible(); this._currentVisibleIndex = 0; return (this._currentVisible); }; if ((((this._currentVisibleIndex == (this.clothes.length - 1))) && (!(this._canDisapear)))){ this.setVisibleByIndex(0, _arg1); return (this._currentVisible); }; this.setVisibleByIndex((this._currentVisibleIndex + 1), _arg1); }; return (this._currentVisible); } public function setDefaultVisibleFirstElement():void{ var _local1:DisplayObject = this.clothes[0]; this.setDefaultVisibleByInstance((_local1 as MovieClip)); } } }//package com.girlgames.dressup
Section 18
//DressupGame (com.girlgames.dressup.DressupGame) package com.girlgames.dressup { import flash.display.*; import com.girlgames.dressup.api.*; public class DressupGame extends Sprite { public var skipClips:Array; public var WIDTH:Number; public var HEIGHT:Number; public var clothes:Array; public var character:MovieClip; public var edited:Boolean;// = false private var _editEventLocked:Boolean;// = false public static const EDIT_EVENT:String = "dressup_edit_event"; public function DressupGame(_arg1:Number, _arg2:Number){ this.clothes = new Array(); this.skipClips = new Array(); super(); this.WIDTH = _arg1; this.HEIGHT = _arg2; } private function checkChildren(_arg1:MovieClip):void{ var _local3:DisplayObject; var _local2:int; while (_local2 < _arg1.numChildren) { _local3 = _arg1.getChildAt(_local2); if ((((_local3.name.indexOf("instance") >= 0)) && ((_local3 is MovieClip)))){ throw (new Error((("MovieClip: \"" + _arg1.name) + "\" , children have dynamic names"))); }; _local2++; }; } private function checkCharacter(_arg1:MovieClip):void{ var _local3:DisplayObject; var _local2:int; while (_local2 < _arg1.numChildren) { _local3 = _arg1.getChildAt(_local2); if (((((((_local3.name) && ((_local3.name.indexOf("instance") < 0)))) && ((_local3 is MovieClip)))) && ((this.skipClips.indexOf(_local3) < 0)))){ this.checkChildren((_local3 as MovieClip)); }; _local2++; }; } public function getClothesByName(_arg1:String):Clothes{ var _local2:Clothes = this.clothes[_arg1]; if (!_local2){ throw (new Error((("Clothes \"" + _arg1) + "\" not found"))); }; return (_local2); } public function initApi(_arg1:Stage, _arg2:Object=null, _arg3:MovieClip=null):void{ StateSaver.instance.initialize(_arg1, this.character, this); var _local4:ApiUI = new ApiUI(_arg1, this, StateSaver.instance, _arg2); } public function set editEventLocked(_arg1:Boolean):void{ var _local2:Clothes; this._editEventLocked = _arg1; for each (_local2 in this.clothes) { _local2.eventsLocked = this._editEventLocked; }; } public function addClothes(_arg1:Clothes):void{ this.clothes[_arg1.name] = _arg1; trace("clothe addd=", _arg1.name); } public function get editEventLocked():Boolean{ return (this._editEventLocked); } public function skipClip(... _args):void{ var _local2:MovieClip; for each (_local2 in _args) { this.skipClips.push(_local2); }; } public function init(_arg1:MovieClip):void{ this.character = _arg1; this.checkCharacter(this.character); } } }//package com.girlgames.dressup
Section 19
//MousePointer (com.girlgames.dressup.MousePointer) package com.girlgames.dressup { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.ui.*; public class MousePointer { private static var _list:Dictionary = new Dictionary(true); private static var _icon:MovieClip; private static var _stage:Stage; private static function update():void{ _icon.x = _stage.mouseX; _icon.y = _stage.mouseY; } private static function onSpriteDown(_arg1:MouseEvent):void{ var _local2:DisplayObject = DisplayObject(_arg1.currentTarget); if (_icon){ _icon.gotoAndStop(2); }; } private static function onSpriteOver(_arg1:MouseEvent):void{ var _local2:SpriteInfo = _list[_arg1.currentTarget]; setIconClass(_local2.iconClass, _local2.hideMouse); } public static function resetIcon():void{ if (_icon){ _stage.removeChild(_icon); _stage.removeEventListener(MouseEvent.MOUSE_MOVE, onMouseMove); _icon = null; }; Mouse.show(); } public static function registerObject(_arg1:DisplayObject, _arg2:Class, _arg3:Boolean=true):void{ var _local4:SpriteInfo = new SpriteInfo(); _local4.iconClass = _arg2; _local4.hideMouse = _arg3; _arg1.addEventListener(MouseEvent.MOUSE_OVER, onSpriteOver); _arg1.addEventListener(MouseEvent.MOUSE_OUT, onSpriteOut); _arg1.addEventListener(MouseEvent.MOUSE_DOWN, onSpriteDown); _arg1.addEventListener(MouseEvent.MOUSE_UP, onSpriteUp); if (_arg1.hitTestPoint(_stage.mouseX, _stage.mouseY, true)){ setIconClass(_local4.iconClass, _local4.hideMouse); }; _list[_arg1] = _local4; } public static function setIcon(_arg1:MovieClip, _arg2:Boolean=true):void{ resetIcon(); _icon = _arg1; _icon.mouseEnabled = false; _icon.mouseChildren = false; _icon.stop(); _stage.addChild(_icon); _stage.addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove); if (_arg2){ Mouse.hide(); }; update(); } private static function onSpriteUp(_arg1:MouseEvent):void{ var _local2:DisplayObject = DisplayObject(_arg1.currentTarget); if (_icon){ _icon.gotoAndStop(1); }; } private static function onMouseMove(_arg1:MouseEvent):void{ update(); _arg1.updateAfterEvent(); } private static function onSpriteOut(_arg1:MouseEvent):void{ resetIcon(); } public static function init(_arg1:Stage):void{ _stage = _arg1; } public static function unRegisterObject(_arg1:DisplayObject):void{ _arg1.removeEventListener(MouseEvent.MOUSE_OVER, onSpriteOver); _arg1.removeEventListener(MouseEvent.MOUSE_OUT, onSpriteOut); delete _list[_arg1]; } public static function set stage(_arg1:Stage):void{ _stage = _arg1; } public static function setIconClass(_arg1:Class, _arg2:Boolean=true):void{ var _local3:MovieClip = new (_arg1); setIcon(_local3, _arg2); } } }//package com.girlgames.dressup class SpriteInfo { public var hideMouse:Boolean; public var iconClass:Class; private function SpriteInfo(){ } }
Section 20
//ToolBar (gemslibe.debug.utils.console.ToolBar) package gemslibe.debug.utils.console { import flash.events.*; import flash.display.*; import flash.geom.*; import gemslibe.debug.utils.*; public class ToolBar extends Sprite { private var drag:Boolean;// = false private var bg:Sprite; private var console:Console; private var marker:Sprite; public function ToolBar(_arg1:Console){ this.bg = new Sprite(); this.marker = new Sprite(); super(); this.console = _arg1; addChild(this.bg); this.bg.graphics.beginFill(0, 0.9); this.bg.graphics.drawRect(0, 0, _arg1.stage.stageWidth, 10); this.bg.graphics.endFill(); this.marker.graphics.beginFill(0, 0.9); this.marker.graphics.drawRect(0, 0, _arg1.stage.stageWidth, 10); this.marker.graphics.endFill(); this.bg.addEventListener(MouseEvent.MOUSE_DOWN, this.onMouseDown); _arg1.stage.addEventListener(MouseEvent.MOUSE_UP, this.onMouseUp); } private function onMouseUp(_arg1:MouseEvent):void{ if (this.drag){ this.marker.stopDrag(); this.console.setHeight(this.marker.y); this.console.stage.removeChild(this.marker); }; this.drag = false; } private function onMouseDown(_arg1:MouseEvent):void{ this.marker.startDrag(false, new Rectangle(0, 0, 0, (this.console.stage.stageHeight - this.height))); this.console.stage.addChild(this.marker); this.marker.y = (this.console.stage.mouseY - this.mouseY); this.drag = true; } } }//package gemslibe.debug.utils.console
Section 21
//Console (gemslibe.debug.utils.Console) package gemslibe.debug.utils { import flash.events.*; import flash.display.*; import flash.system.*; import flash.geom.*; import flash.utils.*; import flash.text.*; import gemslibe.debug.utils.console.*; import flash.ui.*; import flash.profiler.*; public class Console extends Sprite { private var msk:Sprite; private var masked:Sprite; private var f2:TextFormat; private var f3:TextFormat; private var f1:TextFormat; private var bar:ToolBar; private var history:ArrayedQueue; private var functions:HashMap; private var linecount:int;// = 0 private var f_print:TextFormat; private var background:Sprite; private var fpsWin:FpsWin; private var historyID:int;// = 0 private var enabled:Boolean; private var input:TextField; private var console:TextField; private var shoeRedrawRegions:Boolean;// = false private var flashTraces:Boolean; private var fps:Boolean;// = false private var cHeight:Number;// = 120 private var numbering:TextField; public function Console(_arg1:Stage, _arg2:Boolean=false){ this.background = new Sprite(); this.msk = new Sprite(); this.masked = new Sprite(); this.console = new TextField(); this.input = new TextField(); this.numbering = new TextField(); this.f1 = new TextFormat(); this.f2 = new TextFormat(); this.f3 = new TextFormat(); this.f_print = new TextFormat(); this.functions = new HashMap(); this.history = new ArrayedQueue(2); super(); var _local3:Stage = _arg1; _local3.addEventListener(KeyboardEvent.KEY_DOWN, this.onKeyDown); _local3.addEventListener(Event.RESIZE, this.onResize); _local3.addChild(this); this.flashTraces = _arg2; this.disable(); this.addChild(this.background); this.addChild(this.input); this.addChild(this.masked); this.masked.addChild(this.console); this.masked.addChild(this.numbering); this.bar = new ToolBar(this); this.addChild(this.bar); this.setHeight(120); this.setUpTextfields(); this.redraw(); this.addEventListener(MouseEvent.MOUSE_WHEEL, this.onMouseWheel); this.print("Type \"-help\" for a list of available commands"); } public function enable():void{ this.visible = true; this.enabled = true; } private function scrollDown():void{ if ((this.console.y + this.console.height) > this.background.height){ this.console.y = (this.console.y - 56); this.numbering.y = (this.numbering.y - 56); }; } private function exec():void{ var _local1:Array = this.input.text.substr(2, this.input.text.length).split(" "); var _local2:String = _local1[0]; var _local3:String = _local1[1]; var _local4:String = _local1[2]; var _local5:String = _local1[3]; switch (_local2){ case "-c": case "-clear": this.console.text = ""; this.numbering.text = ""; this.linecount = 0; this.print("Type \"-help\" for a list of available commands"); break; case "-h": case "-help": this.write(); this.print(""); this.print(" Available Commands "); this.print("------------------------------------------------------------------------------------------------------------------------"); this.print(" -fps show fps and used memory"); this.print(" -sysmon enables system monitor for watching fps and used memory"); this.print(" -srr show redraw regions"); this.print(" -framerate [value] set frame rate"); this.print(" -help -h displays this information"); this.print(" -clear -c clears the list"); this.print(" -copy copyright"); this.print(" -sys gets system information"); this.print(""); this.print(" Use \"PageUp\" & \"PageDown\" on the keyboard to scroll the list"); this.print(""); break; case "-srr": this.shoeRedrawRegions = !(this.shoeRedrawRegions); showRedrawRegions(this.shoeRedrawRegions); break; case "-copy": this.write(); this.print("Copyright (c) 2009 GemsLibe inc. http://gemslibe.com"); break; case "-sys": this.write(); this.print(""); this.print(" System Information "); this.print("------------------------------------------------------------------------------------------------------------------------"); this.print((" Language: " + Capabilities.language)); this.print((" OS: " + Capabilities.os)); this.print((" Pixel aspect ratio: " + Capabilities.pixelAspectRatio)); this.print((" Player type: " + Capabilities.playerType)); this.print((" Screen DPI: " + Capabilities.screenDPI)); this.print((((" Screen resolution: " + Capabilities.screenResolutionX) + " x ") + Capabilities.screenResolutionY)); this.print((" Version: " + Capabilities.version)); this.print((" Debugger: " + Capabilities.isDebugger)); this.print(""); this.print(((" Memory usage: " + (System.totalMemory / 0x0400)) + " Kb")); this.print(""); break; case "-fps": this.showFps(); break; case "-sysmon": SystemMonitor.init(this); SystemMonitor.show(); break; case "-framerate": if (_local3){ this.stage.frameRate = parseFloat(_local3); }; break; default: this.write(); if (_local2 != ""){ if (this.functions.containsKey(_local2)){ if (!_local3){ var _local6 = this.functions; _local6[_local2](); } else { _local6 = this.functions; _local6[_local2](_local3.split(",")); }; } else { this.print((_local2 + ": command not recognized")); }; }; break; }; this.historyAdd(this.input.text); this.historyID = -1; this.input.text = "] "; this.update(); } public function setHeight(_arg1:Number):void{ this.cHeight = _arg1; this.bar.y = _arg1; this.scrollRect = new Rectangle(0, 0, stage.stageWidth, (_arg1 + this.bar.height)); this.redraw(); } public function register(_arg1:Function, _arg2:String):void{ this.functions.put(_arg2, _arg1); } public function print(... _args):void{ var _local3:String; var _local4:*; var _local5:int; var _local6:int; this.linecount++; this.numbering.appendText((this.linecount + "\n")); var _local2 = "] "; for each (_local4 in _args) { if (_local4 == null){ _local3 = "null"; } else { if (_local4 == undefined){ _local3 = "undefined"; } else { _local3 = _local4.toString(); }; }; _local2 = (_local2 + (_local3 + ", ")); }; _local2 = _local2.substring(0, (_local2.length - 2)); _local2 = (_local2 + "\n"); _local5 = this.console.length; _local6 = (_local5 + _local2.length); this.console.appendText(_local2); this.console.setTextFormat(this.f_print, _local5, _local6); this.update(); if (this.flashTraces){ trace(_args); }; } private function setUpTextfields():void{ this.f1.font = "_sans"; this.f1.color = 0xFCC000; this.f1.bold = true; this.f1.size = 11; this.input.type = "dynamic"; this.input.multiline = false; this.input.defaultTextFormat = this.f1; this.input.text = "] "; this.f2.font = "_sans"; this.f2.color = 8439036; this.f2.bold = false; this.f2.size = 11; this.console.type = "dynamic"; this.console.multiline = true; this.console.autoSize = TextFieldAutoSize.LEFT; this.console.defaultTextFormat = this.f2; this.console.setTextFormat(this.f2); this.f3.font = "_sans"; this.f3.color = 0x555555; this.f3.size = 11; this.f3.bold = false; this.f3.align = "right"; this.numbering.type = "dynamic"; this.numbering.selectable = false; this.numbering.multiline = true; this.numbering.autoSize = TextFieldAutoSize.RIGHT; this.numbering.defaultTextFormat = this.f3; this.numbering.x = 36; this.f_print.font = "_sans"; this.f_print.color = 0xCCCCCC; this.f_print.size = 11; this.f_print.bold = false; } private function showFps():void{ if (!this.fps){ this.fpsWin = new FpsWin(); stage.addChild(this.fpsWin); } else { this.fpsWin.destroy(); }; this.fps = !(this.fps); } public function unregister(_arg1):void{ if (getQualifiedSuperclassName(_arg1) == "Function"){ this.functions.remove(this.functions.getKey(_arg1)); } else { this.functions.remove(_arg1); }; } private function onKeyDown(_arg1:KeyboardEvent):void{ var _local2 = ""; if (_arg1.charCode != 0){ if (_arg1.ctrlKey){ _local2 = (_local2 + "CTRL + "); }; if (_arg1.altKey){ _local2 = (_local2 + "ALT + "); }; if (_arg1.shiftKey){ _local2 = (_local2 + "SHIFT + "); }; _local2 = (_local2 + _arg1.charCode.toString()); }; if (_arg1.keyCode == Keyboard.F2){ if (this.enabled){ this.disable(); } else { this.enable(); }; return; }; switch (_local2){ case "CTRL + SHIFT + 126": if (this.enabled){ this.disable(); } else { this.enable(); }; break; case "13": if (this.enabled){ this.exec(); }; break; case "8": if (((this.enabled) && ((this.input.text.length > 2)))){ this.input.text = this.input.text.substr(0, (this.input.text.length - 1)); }; break; case "27": if (this.enabled){ this.disable(); }; break; default: if (this.enabled){ if (_arg1.keyCode == 33){ this.scrollUp(); } else { if (_arg1.keyCode == 34){ this.scrollDown(); }; }; if (_arg1.keyCode == 38){ this.historyUp(); } else { if (_arg1.keyCode == 40){ this.historyDown(); }; }; this.input.appendText(String.fromCharCode(_arg1.charCode)); }; break; }; } private function scrollUp():void{ if ((this.console.y + 56) <= this.background.height){ this.console.y = (this.console.y + 56); this.numbering.y = (this.numbering.y + 56); }; } private function historyUp():void{ if (this.historyID < (this.history.size - 1)){ this.historyID++; this.input.text = this.history.getAt(((this.history.size - 1) - this.historyID)); }; } private function update():void{ var _local1:RegExp; var _local2:RegExp; if (this.console.numLines >= 1000){ _local1 = /(^]\s.*\s*)/g; this.console.text = this.console.text.replace(_local1, ""); _local2 = /(^.*\s*)/g; this.numbering.text = this.numbering.text.replace(_local2, ""); }; this.console.y = ((this.background.height - this.console.textHeight) - 22); this.numbering.y = ((this.background.height - this.numbering.textHeight) - 22); } private function historyDown():void{ if (this.historyID > 0){ this.historyID--; this.input.text = this.history.getAt(((this.history.size - 1) - this.historyID)); }; } private function write():void{ this.linecount++; this.numbering.appendText((this.linecount + "\n")); var _local1 = (this.input.text + "\n"); var _local2:int = this.console.length; var _local3:int = (_local2 + _local1.length); this.console.appendText(_local1); this.console.setTextFormat(this.f2, _local2, _local3); } public function disable():void{ this.visible = false; this.enabled = false; } private function historyAdd(_arg1:String):void{ if (this.history.size == (this.history.maxSize - 1)){ this.history.dequeue(); this.history.dispose(); this.history.enqueue(_arg1); } else { this.history.enqueue(_arg1); }; } private function onResize(_arg1:Event):void{ this.redraw(); } private function onMouseWheel(_arg1:MouseEvent):void{ if (_arg1.delta > 0){ this.scrollUp(); } else { this.scrollDown(); }; } private function redraw():void{ var w:Number = stage.stageWidth; var h:Number = stage.stageHeight; var _local2 = this.background.graphics; with (_local2) { clear(); beginFill(0, 0.8); drawRect(0, 0, w, cHeight); endFill(); beginFill(0, 1); drawRect(0, 0, 40, cHeight); endFill(); }; _local2 = this.msk.graphics; with (_local2) { clear(); beginFill(0, 0.9); drawRect(0, 4, w, cHeight); endFill(); }; this.input.width = (w - 52); this.input.height = 18; this.input.x = 46; this.input.y = (this.background.height - 20); this.console.width = (w - 52); this.console.x = 46; this.console.y = 0; this.console.cacheAsBitmap = false; this.numbering.y = 0; this.numbering.cacheAsBitmap = false; this.msk.cacheAsBitmap = false; this.masked.mask = this.msk; this.update(); } } }//package gemslibe.debug.utils class ArrayedQueue { private var _size:int; private var _que:Array; private var _front:int; private var _count:int; private var _divisor:int; private function ArrayedQueue(_arg1:int){ if (_arg1 < 3){ _arg1 = 3; }; this._size = (1 << _arg1); this._divisor = (this._size - 1); this.clear(); } public function get size():int{ return (this._count); } public function isEmpty():Boolean{ return ((this._count == 0)); } public function get maxSize():int{ return (this._size); } public function dispose():void{ if (!this._front){ this._que[int((this._size - 1))] = null; } else { this._que[int((this._front - 1))] = null; }; } public function enqueue(_arg1):Boolean{ if (this._size != this._count){ this._que[int(((this._count++ + this._front) & this._divisor))] = _arg1; return (true); }; return (false); } public function getAt(_arg1:int){ if (_arg1 >= this._count){ return (null); }; return (this._que[int(((_arg1 + this._front) & this._divisor))]); } public function toString():String{ return ((("[ArrayedQueue, size=" + this.size) + "]")); } public function clear():void{ this._que = new Array(this._size); this._front = (this._count = 0); } public function contains(_arg1):Boolean{ var _local2:int; while (_local2 < this._count) { if (this._que[int(((_local2 + this._front) & this._divisor))] === _arg1){ return (true); }; _local2++; }; return (false); } public function setAt(_arg1:int, _arg2):void{ if (_arg1 >= this._count){ return; }; this._que[int(((_arg1 + this._front) & this._divisor))] = _arg2; } public function dequeue(){ var _local1:*; if (this._count > 0){ _local1 = this._que[this._front++]; if (this._front == this._size){ this._front = 0; }; this._count--; return (_local1); }; return (null); } public function peek(){ return (this._que[this._front]); } }
Section 22
//FpsWin (gemslibe.debug.utils.FpsWin) package gemslibe.debug.utils { import flash.events.*; import flash.display.*; import flash.system.*; import flash.utils.*; import flash.text.*; public dynamic class FpsWin extends Sprite { private var s:int; private var timer:Timer; private var f1:TextFormat; private var f2:TextFormat; private var startTime:Number; private var fpsField:TextField; private var numFrames:Number;// = 0 private var memField:TextField; private var cnt:int;// = 0 private var t:int; public function FpsWin(){ this.f1 = new TextFormat(); this.f2 = new TextFormat(); this.timer = new Timer(500); this.startTime = getTimer(); super(); var _local2 = this.graphics; with (_local2) { beginFill(0, 0.7); drawRect(0, 0, 60, 40); endFill(); }; this.fpsField = new TextField(); this.memField = new TextField(); this.f1.font = "_sans"; this.f1.color = 0xCC00; this.f1.bold = true; this.f1.size = 11; this.f2.font = "_sans"; this.f2.color = 1035264; this.f2.bold = true; this.f2.size = 11; this.fpsField.type = "dynamic"; this.fpsField.multiline = false; this.fpsField.defaultTextFormat = this.f1; this.fpsField.text = ""; this.fpsField.selectable = false; this.memField.type = "dynamic"; this.memField.multiline = false; this.memField.defaultTextFormat = this.f2; this.memField.text = ""; this.memField.selectable = false; this.memField.y = 20; this.memField.x = 5; this.fpsField.x = 5; this.fpsField.y = 2; this.addChild(this.memField); this.addChild(this.fpsField); this.timer.addEventListener(TimerEvent.TIMER, this.onTick); this.addEventListener(Event.ENTER_FRAME, this.onEnterFrame); this.timer.start(); this.addEventListener(MouseEvent.MOUSE_DOWN, this.onDown); this.addEventListener(MouseEvent.MOUSE_UP, this.onUp); this.t = getTimer(); } private function onUp(_arg1:Event):void{ this.stopDrag(); } private function onTick(_arg1:Event):void{ this.memField.text = ((System.totalMemory / 0x0400) + " Kb"); } private function onDown(_arg1:Event):void{ this.startDrag(); } private function onEnterFrame(_arg1:Event):void{ this.s++; if (!(this.s = (this.s % stage.frameRate))){ this.fpsField.text = ((("fps: " + Math.round(((stage.frameRate * 1000) / (getTimer() - this.t)))) + "/") + stage.frameRate); this.t = getTimer(); }; } public function destroy():void{ this.timer.stop(); this.timer.removeEventListener(TimerEvent.TIMER, this.onTick); this.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame); this.removeEventListener(MouseEvent.MOUSE_DOWN, this.onDown); this.removeEventListener(MouseEvent.MOUSE_UP, this.onUp); this.parent.removeChild(this); } } }//package gemslibe.debug.utils
Section 23
//HashMap (gemslibe.debug.utils.HashMap) package gemslibe.debug.utils { import flash.utils.*; public dynamic class HashMap extends Dictionary implements IMap { public function HashMap(_arg1:Boolean=true){ super(_arg1); } public function containsKey(_arg1:String):Boolean{ return (!((this[_arg1] == null))); } public function size():int{ var _local2:String; var _local1:int; for (_local2 in this) { if (this[_local2] != null){ _local1++; }; }; return (_local1); } public function isEmpty():Boolean{ var _local2:String; var _local1:int; for (_local2 in this) { if (this[_local2] != null){ _local1++; }; }; return ((_local1 <= 0)); } public function remove(_arg1:String):void{ this[_arg1] = null; } public function clear():void{ var _local1:String; for (_local1 in this) { this[_local1] = null; }; } public function put(_arg1:String, _arg2):void{ this[_arg1] = _arg2; } public function getKey(_arg1):String{ var _local2:String; for (_local2 in this) { if (this[_local2] == _arg1){ return (_local2); }; }; return (null); } public function containsValue(_arg1):Boolean{ var _local2:String; for (_local2 in this) { if (this[_local2] == _arg1){ return (true); }; }; return (false); } public function getValue(_arg1:String){ if (this[_arg1] != null){ return (this[_arg1]); }; } } }//package gemslibe.debug.utils
Section 24
//IMap (gemslibe.debug.utils.IMap) package gemslibe.debug.utils { public interface IMap { function containsKey(_arg1:String):Boolean; function size():int; function containsValue(_arg1):Boolean; function isEmpty():Boolean; function remove(_arg1:String):void; function getKey(_arg1):String; function getValue(_arg1:String); function clear():void; function put(_arg1:String, _arg2):void; } }//package gemslibe.debug.utils
Section 25
//SystemMonitor (gemslibe.debug.utils.SystemMonitor) package gemslibe.debug.utils { import flash.events.*; import flash.display.*; import flash.system.*; import flash.utils.*; import flash.net.*; public class SystemMonitor { public static var started:Boolean = false; private static var initTime:int; public static var memList:Array = []; public static var history:int = 60; private static var itvTime:int; public static var minMem:Number; public static var fpsList:Array = []; private static var frameCount:int; private static var totalCount:int; public static var inited:Boolean = false; public static var minFps:Number; public static var maxMem:Number; public static var refreshRate:Number = 1; public static var displayed:Boolean = false; public static var maxFps:Number; private static var currentTime:int; private static var frame:Sprite; private static var content:MonContent; private static var stage:Stage; private static function addEvent(_arg1:EventDispatcher, _arg2:String, _arg3:Function):void{ _arg1.addEventListener(_arg2, _arg3, false, 0, true); } public static function stop():void{ if (!started){ return; }; started = false; removeEvent(frame, Event.ENTER_FRAME, draw); } public static function get averageFps():Number{ return ((totalCount / runningTime)); } public static function init(_arg1:InteractiveObject):void{ if (inited){ return; }; inited = true; stage = _arg1.stage; content = new MonContent(); frame = new Sprite(); minFps = Number.MAX_VALUE; maxFps = Number.MIN_VALUE; minMem = Number.MAX_VALUE; maxMem = Number.MIN_VALUE; start(); } public static function get currentMem():Number{ return (((System.totalMemory / 0x0400) / 1000)); } private static function get runningTime():Number{ return (((currentTime - initTime) / 1000)); } private static function get intervalTime():Number{ return (((currentTime - itvTime) / 1000)); } private static function updateDisplay():void{ updateMinMax(); content.update(runningTime, minFps, maxFps, minMem, maxMem, currentFps, currentMem, averageFps, fpsList, memList, history); } public static function get currentFps():Number{ return ((frameCount / intervalTime)); } public static function hide():void{ displayed = false; stage.removeChild(content); } private static function draw(_arg1:Event=null):void{ currentTime = getTimer(); frameCount++; totalCount++; if (intervalTime >= refreshRate){ if (displayed){ updateDisplay(); } else { updateMinMax(); }; fpsList.unshift(currentFps); memList.unshift(currentMem); if (fpsList.length > history){ fpsList.pop(); }; if (memList.length > history){ memList.pop(); }; itvTime = currentTime; frameCount = 0; }; } public static function gc():void{ try { System.gc(); new LocalConnection().connect("foo"); new LocalConnection().connect("foo"); } catch(e:Error) { }; } public static function start():void{ if (started){ return; }; started = true; initTime = (itvTime = getTimer()); totalCount = (frameCount = 0); addEvent(frame, Event.ENTER_FRAME, draw); } private static function updateMinMax():void{ if (!(currentFps > 0)){ return; }; minFps = Math.min(currentFps, minFps); maxFps = Math.max(currentFps, maxFps); minMem = Math.min(currentMem, minMem); maxMem = Math.max(currentMem, maxMem); } private static function removeEvent(_arg1:EventDispatcher, _arg2:String, _arg3:Function):void{ _arg1.removeEventListener(_arg2, _arg3); } public static function show():void{ displayed = true; stage.addChild(content); updateDisplay(); } } }//package gemslibe.debug.utils import flash.events.*; import flash.display.*; import flash.text.*; class MonContent extends Sprite { private var maxFpsTxtBx:TextField; private var minMemTxtBx:TextField; private var fps:Shape; private var box:Shape; private var minFpsTxtBx:TextField; private var maxMemTxtBx:TextField; private var infoTxtBx:TextField; private var mb:Shape; private function MonContent():void{ this.fps = new Shape(); this.mb = new Shape(); this.box = new Shape(); this.mouseChildren = false; this.mouseEnabled = false; this.fps.x = 65; this.fps.y = 45; this.mb.x = 65; this.mb.y = 90; var _local1:TextFormat = new TextFormat("_sans", 9, 0xAAAAAA); this.infoTxtBx = new TextField(); this.infoTxtBx.autoSize = TextFieldAutoSize.LEFT; this.infoTxtBx.defaultTextFormat = new TextFormat("_sans", 11, 0xCCCCCC); this.infoTxtBx.y = 98; this.minFpsTxtBx = new TextField(); this.minFpsTxtBx.autoSize = TextFieldAutoSize.LEFT; this.minFpsTxtBx.defaultTextFormat = _local1; this.minFpsTxtBx.x = 7; this.minFpsTxtBx.y = 37; this.maxFpsTxtBx = new TextField(); this.maxFpsTxtBx.autoSize = TextFieldAutoSize.LEFT; this.maxFpsTxtBx.defaultTextFormat = _local1; this.maxFpsTxtBx.x = 7; this.maxFpsTxtBx.y = 5; this.minMemTxtBx = new TextField(); this.minMemTxtBx.autoSize = TextFieldAutoSize.LEFT; this.minMemTxtBx.defaultTextFormat = _local1; this.minMemTxtBx.x = 7; this.minMemTxtBx.y = 83; this.maxMemTxtBx = new TextField(); this.maxMemTxtBx.autoSize = TextFieldAutoSize.LEFT; this.maxMemTxtBx.defaultTextFormat = _local1; this.maxMemTxtBx.x = 7; this.maxMemTxtBx.y = 50; addChild(this.box); addChild(this.infoTxtBx); addChild(this.minFpsTxtBx); addChild(this.maxFpsTxtBx); addChild(this.minMemTxtBx); addChild(this.maxMemTxtBx); addChild(this.fps); addChild(this.mb); this.addEventListener(Event.ADDED_TO_STAGE, this.added, false, 0, true); this.addEventListener(Event.REMOVED_FROM_STAGE, this.removed, false, 0, true); } private function added(_arg1:Event):void{ this.resize(); stage.addEventListener(Event.RESIZE, this.resize, false, 0, true); } private function removed(_arg1:Event):void{ stage.removeEventListener(Event.RESIZE, this.resize); } private function resize(_arg1:Event=null):void{ var _local2:Graphics = this.box.graphics; _local2.clear(); _local2.beginFill(0, 0.5); _local2.drawRect(0, 0, stage.stageWidth, 120); _local2.lineStyle(1, 0xFFFFFF, 0.2); _local2.moveTo(65, 45); _local2.lineTo(65, 10); _local2.moveTo(65, 45); _local2.lineTo((stage.stageWidth - 15), 45); _local2.moveTo(65, 90); _local2.lineTo(65, 55); _local2.moveTo(65, 90); _local2.lineTo((stage.stageWidth - 15), 90); _local2.endFill(); this.infoTxtBx.x = ((stage.stageWidth - this.infoTxtBx.width) - 20); } public function update(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number, _arg8:Number, _arg9:Array, _arg10:Array, _arg11:int):void{ var _local19:Number; if (_arg1 >= 1){ this.minFpsTxtBx.text = (_arg2.toFixed(3) + " Fps"); this.maxFpsTxtBx.text = (_arg3.toFixed(3) + " Fps"); this.minMemTxtBx.text = (_arg4.toFixed(3) + " Mb"); this.maxMemTxtBx.text = (_arg5.toFixed(3) + " Mb"); }; this.infoTxtBx.text = (((((("Current Fps " + _arg6.toFixed(3)) + " | Average Fps ") + _arg8.toFixed(3)) + " | Memory Used ") + _arg7.toFixed(3)) + " Mb"); this.infoTxtBx.x = ((stage.stageWidth - this.infoTxtBx.width) - 20); var _local12:Graphics = this.fps.graphics; _local12.clear(); _local12.lineStyle(1, 0x33FF00, 0.7); var _local13:int; var _local14:int = _arg9.length; var _local15 = 35; var _local16:int = (stage.stageWidth - 80); var _local17:Number = (_local16 / (_arg11 - 1)); var _local18:Number = (_arg3 - _arg2); _local13 = 0; while (_local13 < _local14) { _local19 = ((_arg9[_local13] - _arg2) / _local18); if (_local13 == 0){ _local12.moveTo(0, (-(_local19) * _local15)); } else { _local12.lineTo((_local13 * _local17), (-(_local19) * _local15)); }; _local13++; }; _local12 = this.mb.graphics; _local12.clear(); _local12.lineStyle(1, 26367, 0.7); _local13 = 0; _local14 = _arg10.length; _local18 = (_arg5 - _arg4); _local13 = 0; while (_local13 < _local14) { _local19 = ((_arg10[_local13] - _arg4) / _local18); if (_local13 == 0){ _local12.moveTo(0, (-(_local19) * _local15)); } else { _local12.lineTo((_local13 * _local17), (-(_local19) * _local15)); }; _local13++; }; } }
Section 26
//EdgeMetrics (mx.core.EdgeMetrics) package mx.core { public class EdgeMetrics { public var top:Number; public var left:Number; public var bottom:Number; public var right:Number; mx_internal static const VERSION:String = "3.3.0.4852"; public static const EMPTY:EdgeMetrics = new EdgeMetrics(0, 0, 0, 0); ; public function EdgeMetrics(_arg1:Number=0, _arg2:Number=0, _arg3:Number=0, _arg4:Number=0){ this.left = _arg1; this.top = _arg2; this.right = _arg3; this.bottom = _arg4; } public function clone():EdgeMetrics{ return (new EdgeMetrics(left, top, right, bottom)); } } }//package mx.core
Section 27
//FlexLoader (mx.core.FlexLoader) package mx.core { import flash.display.*; import mx.utils.*; public class FlexLoader extends Loader { mx_internal static const VERSION:String = "3.3.0.4852"; public function FlexLoader(){ super(); try { name = NameUtil.createUniqueName(this); } catch(e:Error) { }; } override public function toString():String{ return (NameUtil.displayObjectToString(this)); } } }//package mx.core
Section 28
//FlexShape (mx.core.FlexShape) package mx.core { import flash.display.*; import mx.utils.*; public class FlexShape extends Shape { mx_internal static const VERSION:String = "3.3.0.4852"; public function FlexShape(){ super(); try { name = NameUtil.createUniqueName(this); } catch(e:Error) { }; } override public function toString():String{ return (NameUtil.displayObjectToString(this)); } } }//package mx.core
Section 29
//FlexVersion (mx.core.FlexVersion) package mx.core { import mx.resources.*; public class FlexVersion { public static const VERSION_2_0_1:uint = 33554433; public static const CURRENT_VERSION:uint = 50331648; public static const VERSION_3_0:uint = 50331648; public static const VERSION_2_0:uint = 33554432; public static const VERSION_ALREADY_READ:String = "versionAlreadyRead"; public static const VERSION_ALREADY_SET:String = "versionAlreadySet"; mx_internal static const VERSION:String = "3.3.0.4852"; private static var compatibilityVersionChanged:Boolean = false; private static var _compatibilityErrorFunction:Function; private static var _compatibilityVersion:uint = 50331648; private static var compatibilityVersionRead:Boolean = false; mx_internal static function changeCompatibilityVersionString(_arg1:String):void{ var _local2:Array = _arg1.split("."); var _local3:uint = parseInt(_local2[0]); var _local4:uint = parseInt(_local2[1]); var _local5:uint = parseInt(_local2[2]); _compatibilityVersion = (((_local3 << 24) + (_local4 << 16)) + _local5); } public static function set compatibilityVersion(_arg1:uint):void{ var _local2:String; if (_arg1 == _compatibilityVersion){ return; }; if (compatibilityVersionChanged){ if (compatibilityErrorFunction == null){ _local2 = ResourceManager.getInstance().getString("core", VERSION_ALREADY_SET); throw (new Error(_local2)); }; compatibilityErrorFunction(_arg1, VERSION_ALREADY_SET); }; if (compatibilityVersionRead){ if (compatibilityErrorFunction == null){ _local2 = ResourceManager.getInstance().getString("core", VERSION_ALREADY_READ); throw (new Error(_local2)); }; compatibilityErrorFunction(_arg1, VERSION_ALREADY_READ); }; _compatibilityVersion = _arg1; compatibilityVersionChanged = true; } public static function get compatibilityVersion():uint{ compatibilityVersionRead = true; return (_compatibilityVersion); } public static function set compatibilityErrorFunction(_arg1:Function):void{ _compatibilityErrorFunction = _arg1; } public static function set compatibilityVersionString(_arg1:String):void{ var _local2:Array = _arg1.split("."); var _local3:uint = parseInt(_local2[0]); var _local4:uint = parseInt(_local2[1]); var _local5:uint = parseInt(_local2[2]); compatibilityVersion = (((_local3 << 24) + (_local4 << 16)) + _local5); } public static function get compatibilityErrorFunction():Function{ return (_compatibilityErrorFunction); } public static function get compatibilityVersionString():String{ var _local1:uint = ((compatibilityVersion >> 24) & 0xFF); var _local2:uint = ((compatibilityVersion >> 16) & 0xFF); var _local3:uint = (compatibilityVersion & 0xFFFF); return (((((_local1.toString() + ".") + _local2.toString()) + ".") + _local3.toString())); } } }//package mx.core
Section 30
//IBorder (mx.core.IBorder) package mx.core { public interface IBorder { function get borderMetrics():EdgeMetrics; } }//package mx.core
Section 31
//IButton (mx.core.IButton) package mx.core { public interface IButton extends IUIComponent { function get emphasized():Boolean; function set emphasized(_arg1:Boolean):void; function callLater(_arg1:Function, _arg2:Array=null):void; } }//package mx.core
Section 32
//IChildList (mx.core.IChildList) package mx.core { import flash.display.*; import flash.geom.*; public interface IChildList { function get numChildren():int; function removeChild(_arg1:DisplayObject):DisplayObject; function getChildByName(_arg1:String):DisplayObject; function removeChildAt(_arg1:int):DisplayObject; function getChildIndex(_arg1:DisplayObject):int; function addChildAt(_arg1:DisplayObject, _arg2:int):DisplayObject; function getObjectsUnderPoint(_arg1:Point):Array; function setChildIndex(_arg1:DisplayObject, _arg2:int):void; function getChildAt(_arg1:int):DisplayObject; function addChild(_arg1:DisplayObject):DisplayObject; function contains(_arg1:DisplayObject):Boolean; } }//package mx.core
Section 33
//IContainer (mx.core.IContainer) package mx.core { import flash.display.*; import flash.geom.*; import mx.managers.*; import flash.media.*; import flash.text.*; public interface IContainer extends IUIComponent { function set hitArea(_arg1:Sprite):void; function swapChildrenAt(_arg1:int, _arg2:int):void; function getChildByName(_arg1:String):DisplayObject; function get doubleClickEnabled():Boolean; function get graphics():Graphics; function get useHandCursor():Boolean; function addChildAt(_arg1:DisplayObject, _arg2:int):DisplayObject; function set mouseChildren(_arg1:Boolean):void; function set creatingContentPane(_arg1:Boolean):void; function get textSnapshot():TextSnapshot; function getChildIndex(_arg1:DisplayObject):int; function set doubleClickEnabled(_arg1:Boolean):void; function getObjectsUnderPoint(_arg1:Point):Array; function get creatingContentPane():Boolean; function setChildIndex(_arg1:DisplayObject, _arg2:int):void; function get soundTransform():SoundTransform; function set useHandCursor(_arg1:Boolean):void; function get numChildren():int; function contains(_arg1:DisplayObject):Boolean; function get verticalScrollPosition():Number; function set defaultButton(_arg1:IFlexDisplayObject):void; function swapChildren(_arg1:DisplayObject, _arg2:DisplayObject):void; function set horizontalScrollPosition(_arg1:Number):void; function get focusManager():IFocusManager; function startDrag(_arg1:Boolean=false, _arg2:Rectangle=null):void; function set mouseEnabled(_arg1:Boolean):void; function getChildAt(_arg1:int):DisplayObject; function set soundTransform(_arg1:SoundTransform):void; function get tabChildren():Boolean; function get tabIndex():int; function set focusRect(_arg1:Object):void; function get hitArea():Sprite; function get mouseChildren():Boolean; function removeChildAt(_arg1:int):DisplayObject; function get defaultButton():IFlexDisplayObject; function stopDrag():void; function set tabEnabled(_arg1:Boolean):void; function get horizontalScrollPosition():Number; function get focusRect():Object; function get viewMetrics():EdgeMetrics; function set verticalScrollPosition(_arg1:Number):void; function get dropTarget():DisplayObject; function get mouseEnabled():Boolean; function set tabChildren(_arg1:Boolean):void; function set buttonMode(_arg1:Boolean):void; function get tabEnabled():Boolean; function get buttonMode():Boolean; function removeChild(_arg1:DisplayObject):DisplayObject; function set tabIndex(_arg1:int):void; function addChild(_arg1:DisplayObject):DisplayObject; function areInaccessibleObjectsUnderPoint(_arg1:Point):Boolean; } }//package mx.core
Section 34
//IFlexDisplayObject (mx.core.IFlexDisplayObject) package mx.core { import flash.events.*; import flash.display.*; import flash.geom.*; import flash.accessibility.*; public interface IFlexDisplayObject extends IBitmapDrawable, IEventDispatcher { function get visible():Boolean; function get rotation():Number; function localToGlobal(_arg1:Point):Point; function get name():String; function set width(_arg1:Number):void; function get measuredHeight():Number; function get blendMode():String; function get scale9Grid():Rectangle; function set name(_arg1:String):void; function set scaleX(_arg1:Number):void; function set scaleY(_arg1:Number):void; function get measuredWidth():Number; function get accessibilityProperties():AccessibilityProperties; function set scrollRect(_arg1:Rectangle):void; function get cacheAsBitmap():Boolean; function globalToLocal(_arg1:Point):Point; function get height():Number; function set blendMode(_arg1:String):void; function get parent():DisplayObjectContainer; function getBounds(_arg1:DisplayObject):Rectangle; function get opaqueBackground():Object; function set scale9Grid(_arg1:Rectangle):void; function setActualSize(_arg1:Number, _arg2:Number):void; function set alpha(_arg1:Number):void; function set accessibilityProperties(_arg1:AccessibilityProperties):void; function get width():Number; function hitTestPoint(_arg1:Number, _arg2:Number, _arg3:Boolean=false):Boolean; function set cacheAsBitmap(_arg1:Boolean):void; function get scaleX():Number; function get scaleY():Number; function get scrollRect():Rectangle; function get mouseX():Number; function get mouseY():Number; function set height(_arg1:Number):void; function set mask(_arg1:DisplayObject):void; function getRect(_arg1:DisplayObject):Rectangle; function get alpha():Number; function set transform(_arg1:Transform):void; function move(_arg1:Number, _arg2:Number):void; function get loaderInfo():LoaderInfo; function get root():DisplayObject; function hitTestObject(_arg1:DisplayObject):Boolean; function set opaqueBackground(_arg1:Object):void; function set visible(_arg1:Boolean):void; function get mask():DisplayObject; function set x(_arg1:Number):void; function set y(_arg1:Number):void; function get transform():Transform; function set filters(_arg1:Array):void; function get x():Number; function get y():Number; function get filters():Array; function set rotation(_arg1:Number):void; function get stage():Stage; } }//package mx.core
Section 35
//IFlexModuleFactory (mx.core.IFlexModuleFactory) package mx.core { public interface IFlexModuleFactory { function create(... _args):Object; function info():Object; } }//package mx.core
Section 36
//IInvalidating (mx.core.IInvalidating) package mx.core { public interface IInvalidating { function validateNow():void; function invalidateSize():void; function invalidateDisplayList():void; function invalidateProperties():void; } }//package mx.core
Section 37
//IProgrammaticSkin (mx.core.IProgrammaticSkin) package mx.core { public interface IProgrammaticSkin { function validateNow():void; function validateDisplayList():void; } }//package mx.core
Section 38
//IRawChildrenContainer (mx.core.IRawChildrenContainer) package mx.core { public interface IRawChildrenContainer { function get rawChildren():IChildList; } }//package mx.core
Section 39
//IRectangularBorder (mx.core.IRectangularBorder) package mx.core { import flash.geom.*; public interface IRectangularBorder extends IBorder { function get backgroundImageBounds():Rectangle; function get hasBackgroundImage():Boolean; function set backgroundImageBounds(_arg1:Rectangle):void; function layoutBackgroundImage():void; } }//package mx.core
Section 40
//IRepeaterClient (mx.core.IRepeaterClient) package mx.core { public interface IRepeaterClient { function get instanceIndices():Array; function set instanceIndices(_arg1:Array):void; function get isDocument():Boolean; function set repeaters(_arg1:Array):void; function initializeRepeaterArrays(_arg1:IRepeaterClient):void; function get repeaters():Array; function set repeaterIndices(_arg1:Array):void; function get repeaterIndices():Array; } }//package mx.core
Section 41
//ISWFBridgeGroup (mx.core.ISWFBridgeGroup) package mx.core { import flash.events.*; public interface ISWFBridgeGroup { function getChildBridgeProvider(_arg1:IEventDispatcher):ISWFBridgeProvider; function removeChildBridge(_arg1:IEventDispatcher):void; function get parentBridge():IEventDispatcher; function addChildBridge(_arg1:IEventDispatcher, _arg2:ISWFBridgeProvider):void; function set parentBridge(_arg1:IEventDispatcher):void; function containsBridge(_arg1:IEventDispatcher):Boolean; function getChildBridges():Array; } }//package mx.core
Section 42
//ISWFBridgeProvider (mx.core.ISWFBridgeProvider) package mx.core { import flash.events.*; public interface ISWFBridgeProvider { function get childAllowsParent():Boolean; function get swfBridge():IEventDispatcher; function get parentAllowsChild():Boolean; } }//package mx.core
Section 43
//IUIComponent (mx.core.IUIComponent) package mx.core { import flash.display.*; import mx.managers.*; public interface IUIComponent extends IFlexDisplayObject { function set focusPane(_arg1:Sprite):void; function get enabled():Boolean; function set enabled(_arg1:Boolean):void; function set isPopUp(_arg1:Boolean):void; function get explicitMinHeight():Number; function get percentWidth():Number; function get isPopUp():Boolean; function get owner():DisplayObjectContainer; function get percentHeight():Number; function get baselinePosition():Number; function owns(_arg1:DisplayObject):Boolean; function initialize():void; function get maxWidth():Number; function get minWidth():Number; function getExplicitOrMeasuredWidth():Number; function get explicitMaxWidth():Number; function get explicitMaxHeight():Number; function set percentHeight(_arg1:Number):void; function get minHeight():Number; function set percentWidth(_arg1:Number):void; function get document():Object; function get focusPane():Sprite; function getExplicitOrMeasuredHeight():Number; function set tweeningProperties(_arg1:Array):void; function set explicitWidth(_arg1:Number):void; function set measuredMinHeight(_arg1:Number):void; function get explicitMinWidth():Number; function get tweeningProperties():Array; function get maxHeight():Number; function set owner(_arg1:DisplayObjectContainer):void; function set includeInLayout(_arg1:Boolean):void; function setVisible(_arg1:Boolean, _arg2:Boolean=false):void; function parentChanged(_arg1:DisplayObjectContainer):void; function get explicitWidth():Number; function get measuredMinHeight():Number; function set measuredMinWidth(_arg1:Number):void; function set explicitHeight(_arg1:Number):void; function get includeInLayout():Boolean; function get measuredMinWidth():Number; function get explicitHeight():Number; function set systemManager(_arg1:ISystemManager):void; function set document(_arg1:Object):void; function get systemManager():ISystemManager; } }//package mx.core
Section 44
//mx_internal (mx.core.mx_internal) package mx.core { public namespace mx_internal = "http://www.adobe.com/2006/flex/mx/internal"; }//package mx.core
Section 45
//Singleton (mx.core.Singleton) package mx.core { public class Singleton { mx_internal static const VERSION:String = "3.3.0.4852"; private static var classMap:Object = {}; public static function registerClass(_arg1:String, _arg2:Class):void{ var _local3:Class = classMap[_arg1]; if (!_local3){ classMap[_arg1] = _arg2; }; } public static function getClass(_arg1:String):Class{ return (classMap[_arg1]); } public static function getInstance(_arg1:String):Object{ var _local2:Class = classMap[_arg1]; if (!_local2){ throw (new Error((("No class registered for interface '" + _arg1) + "'."))); }; return (_local2["getInstance"]()); } } }//package mx.core
Section 46
//UIComponentGlobals (mx.core.UIComponentGlobals) package mx.core { import flash.display.*; import flash.geom.*; import mx.managers.*; public class UIComponentGlobals { mx_internal static var callLaterSuspendCount:int = 0; mx_internal static var layoutManager:ILayoutManager; mx_internal static var nextFocusObject:InteractiveObject; mx_internal static var designTime:Boolean = false; mx_internal static var tempMatrix:Matrix = new Matrix(); mx_internal static var callLaterDispatcherCount:int = 0; private static var _catchCallLaterExceptions:Boolean = false; public static function set catchCallLaterExceptions(_arg1:Boolean):void{ _catchCallLaterExceptions = _arg1; } public static function get designMode():Boolean{ return (designTime); } public static function set designMode(_arg1:Boolean):void{ designTime = _arg1; } public static function get catchCallLaterExceptions():Boolean{ return (_catchCallLaterExceptions); } } }//package mx.core
Section 47
//ModuleEvent (mx.events.ModuleEvent) package mx.events { import flash.events.*; import mx.core.*; import mx.modules.*; public class ModuleEvent extends ProgressEvent { public var errorText:String; private var _module:IModuleInfo; public static const READY:String = "ready"; public static const ERROR:String = "error"; public static const PROGRESS:String = "progress"; mx_internal static const VERSION:String = "3.3.0.4852"; public static const SETUP:String = "setup"; public static const UNLOAD:String = "unload"; public function ModuleEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false, _arg4:uint=0, _arg5:uint=0, _arg6:String=null, _arg7:IModuleInfo=null){ super(_arg1, _arg2, _arg3, _arg4, _arg5); this.errorText = _arg6; this._module = _arg7; } public function get module():IModuleInfo{ if (_module){ return (_module); }; return ((target as IModuleInfo)); } override public function clone():Event{ return (new ModuleEvent(type, bubbles, cancelable, bytesLoaded, bytesTotal, errorText, module)); } } }//package mx.events
Section 48
//ResourceEvent (mx.events.ResourceEvent) package mx.events { import flash.events.*; import mx.core.*; public class ResourceEvent extends ProgressEvent { public var errorText:String; mx_internal static const VERSION:String = "3.3.0.4852"; public static const COMPLETE:String = "complete"; public static const PROGRESS:String = "progress"; public static const ERROR:String = "error"; public function ResourceEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false, _arg4:uint=0, _arg5:uint=0, _arg6:String=null){ super(_arg1, _arg2, _arg3, _arg4, _arg5); this.errorText = _arg6; } override public function clone():Event{ return (new ResourceEvent(type, bubbles, cancelable, bytesLoaded, bytesTotal, errorText)); } } }//package mx.events
Section 49
//StyleEvent (mx.events.StyleEvent) package mx.events { import flash.events.*; import mx.core.*; public class StyleEvent extends ProgressEvent { public var errorText:String; mx_internal static const VERSION:String = "3.3.0.4852"; public static const COMPLETE:String = "complete"; public static const PROGRESS:String = "progress"; public static const ERROR:String = "error"; public function StyleEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false, _arg4:uint=0, _arg5:uint=0, _arg6:String=null){ super(_arg1, _arg2, _arg3, _arg4, _arg5); this.errorText = _arg6; } override public function clone():Event{ return (new StyleEvent(type, bubbles, cancelable, bytesLoaded, bytesTotal, errorText)); } } }//package mx.events
Section 50
//RectangularDropShadow (mx.graphics.RectangularDropShadow) package mx.graphics { import mx.core.*; import flash.display.*; import flash.geom.*; import mx.utils.*; import flash.filters.*; public class RectangularDropShadow { private var leftShadow:BitmapData; private var _tlRadius:Number;// = 0 private var _trRadius:Number;// = 0 private var _angle:Number;// = 45 private var topShadow:BitmapData; private var _distance:Number;// = 4 private var rightShadow:BitmapData; private var _alpha:Number;// = 0.4 private var shadow:BitmapData; private var _brRadius:Number;// = 0 private var _blRadius:Number;// = 0 private var _color:int;// = 0 private var bottomShadow:BitmapData; private var changed:Boolean;// = true mx_internal static const VERSION:String = "3.3.0.4852"; public function get blRadius():Number{ return (_blRadius); } public function set brRadius(_arg1:Number):void{ if (_brRadius != _arg1){ _brRadius = _arg1; changed = true; }; } public function set color(_arg1:int):void{ if (_color != _arg1){ _color = _arg1; changed = true; }; } public function drawShadow(_arg1:Graphics, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number):void{ var _local15:Number; var _local16:Number; var _local17:Number; var _local18:Number; var _local19:Number; var _local20:Number; var _local21:Number; var _local22:Number; if (changed){ createShadowBitmaps(); changed = false; }; _arg4 = Math.ceil(_arg4); _arg5 = Math.ceil(_arg5); var _local6:int = (leftShadow) ? leftShadow.width : 0; var _local7:int = (rightShadow) ? rightShadow.width : 0; var _local8:int = (topShadow) ? topShadow.height : 0; var _local9:int = (bottomShadow) ? bottomShadow.height : 0; var _local10:int = (_local6 + _local7); var _local11:int = (_local8 + _local9); var _local12:Number = ((_arg5 + _local11) / 2); var _local13:Number = ((_arg4 + _local10) / 2); var _local14:Matrix = new Matrix(); if (((leftShadow) || (topShadow))){ _local15 = Math.min((tlRadius + _local10), _local13); _local16 = Math.min((tlRadius + _local11), _local12); _local14.tx = (_arg2 - _local6); _local14.ty = (_arg3 - _local8); _arg1.beginBitmapFill(shadow, _local14); _arg1.drawRect((_arg2 - _local6), (_arg3 - _local8), _local15, _local16); _arg1.endFill(); }; if (((rightShadow) || (topShadow))){ _local17 = Math.min((trRadius + _local10), _local13); _local18 = Math.min((trRadius + _local11), _local12); _local14.tx = (((_arg2 + _arg4) + _local7) - shadow.width); _local14.ty = (_arg3 - _local8); _arg1.beginBitmapFill(shadow, _local14); _arg1.drawRect((((_arg2 + _arg4) + _local7) - _local17), (_arg3 - _local8), _local17, _local18); _arg1.endFill(); }; if (((leftShadow) || (bottomShadow))){ _local19 = Math.min((blRadius + _local10), _local13); _local20 = Math.min((blRadius + _local11), _local12); _local14.tx = (_arg2 - _local6); _local14.ty = (((_arg3 + _arg5) + _local9) - shadow.height); _arg1.beginBitmapFill(shadow, _local14); _arg1.drawRect((_arg2 - _local6), (((_arg3 + _arg5) + _local9) - _local20), _local19, _local20); _arg1.endFill(); }; if (((rightShadow) || (bottomShadow))){ _local21 = Math.min((brRadius + _local10), _local13); _local22 = Math.min((brRadius + _local11), _local12); _local14.tx = (((_arg2 + _arg4) + _local7) - shadow.width); _local14.ty = (((_arg3 + _arg5) + _local9) - shadow.height); _arg1.beginBitmapFill(shadow, _local14); _arg1.drawRect((((_arg2 + _arg4) + _local7) - _local21), (((_arg3 + _arg5) + _local9) - _local22), _local21, _local22); _arg1.endFill(); }; if (leftShadow){ _local14.tx = (_arg2 - _local6); _local14.ty = 0; _arg1.beginBitmapFill(leftShadow, _local14); _arg1.drawRect((_arg2 - _local6), ((_arg3 - _local8) + _local16), _local6, ((((_arg5 + _local8) + _local9) - _local16) - _local20)); _arg1.endFill(); }; if (rightShadow){ _local14.tx = (_arg2 + _arg4); _local14.ty = 0; _arg1.beginBitmapFill(rightShadow, _local14); _arg1.drawRect((_arg2 + _arg4), ((_arg3 - _local8) + _local18), _local7, ((((_arg5 + _local8) + _local9) - _local18) - _local22)); _arg1.endFill(); }; if (topShadow){ _local14.tx = 0; _local14.ty = (_arg3 - _local8); _arg1.beginBitmapFill(topShadow, _local14); _arg1.drawRect(((_arg2 - _local6) + _local15), (_arg3 - _local8), ((((_arg4 + _local6) + _local7) - _local15) - _local17), _local8); _arg1.endFill(); }; if (bottomShadow){ _local14.tx = 0; _local14.ty = (_arg3 + _arg5); _arg1.beginBitmapFill(bottomShadow, _local14); _arg1.drawRect(((_arg2 - _local6) + _local19), (_arg3 + _arg5), ((((_arg4 + _local6) + _local7) - _local19) - _local21), _local9); _arg1.endFill(); }; } public function get brRadius():Number{ return (_brRadius); } public function get angle():Number{ return (_angle); } private function createShadowBitmaps():void{ var _local1:Number = ((Math.max(tlRadius, blRadius) + (2 * distance)) + Math.max(trRadius, brRadius)); var _local2:Number = ((Math.max(tlRadius, trRadius) + (2 * distance)) + Math.max(blRadius, brRadius)); if ((((_local1 < 0)) || ((_local2 < 0)))){ return; }; var _local3:Shape = new FlexShape(); var _local4:Graphics = _local3.graphics; _local4.beginFill(0xFFFFFF); GraphicsUtil.drawRoundRectComplex(_local4, 0, 0, _local1, _local2, tlRadius, trRadius, blRadius, brRadius); _local4.endFill(); var _local5:BitmapData = new BitmapData(_local1, _local2, true, 0); _local5.draw(_local3, new Matrix()); var _local6:DropShadowFilter = new DropShadowFilter(distance, angle, color, alpha); _local6.knockout = true; var _local7:Rectangle = new Rectangle(0, 0, _local1, _local2); var _local8:Rectangle = _local5.generateFilterRect(_local7, _local6); var _local9:Number = (_local7.left - _local8.left); var _local10:Number = (_local8.right - _local7.right); var _local11:Number = (_local7.top - _local8.top); var _local12:Number = (_local8.bottom - _local7.bottom); shadow = new BitmapData(_local8.width, _local8.height); shadow.applyFilter(_local5, _local7, new Point(_local9, _local11), _local6); var _local13:Point = new Point(0, 0); var _local14:Rectangle = new Rectangle(); if (_local9 > 0){ _local14.x = 0; _local14.y = ((tlRadius + _local11) + _local12); _local14.width = _local9; _local14.height = 1; leftShadow = new BitmapData(_local9, 1); leftShadow.copyPixels(shadow, _local14, _local13); } else { leftShadow = null; }; if (_local10 > 0){ _local14.x = (shadow.width - _local10); _local14.y = ((trRadius + _local11) + _local12); _local14.width = _local10; _local14.height = 1; rightShadow = new BitmapData(_local10, 1); rightShadow.copyPixels(shadow, _local14, _local13); } else { rightShadow = null; }; if (_local11 > 0){ _local14.x = ((tlRadius + _local9) + _local10); _local14.y = 0; _local14.width = 1; _local14.height = _local11; topShadow = new BitmapData(1, _local11); topShadow.copyPixels(shadow, _local14, _local13); } else { topShadow = null; }; if (_local12 > 0){ _local14.x = ((blRadius + _local9) + _local10); _local14.y = (shadow.height - _local12); _local14.width = 1; _local14.height = _local12; bottomShadow = new BitmapData(1, _local12); bottomShadow.copyPixels(shadow, _local14, _local13); } else { bottomShadow = null; }; } public function get alpha():Number{ return (_alpha); } public function get color():int{ return (_color); } public function set angle(_arg1:Number):void{ if (_angle != _arg1){ _angle = _arg1; changed = true; }; } public function set trRadius(_arg1:Number):void{ if (_trRadius != _arg1){ _trRadius = _arg1; changed = true; }; } public function set tlRadius(_arg1:Number):void{ if (_tlRadius != _arg1){ _tlRadius = _arg1; changed = true; }; } public function get trRadius():Number{ return (_trRadius); } public function set distance(_arg1:Number):void{ if (_distance != _arg1){ _distance = _arg1; changed = true; }; } public function get distance():Number{ return (_distance); } public function get tlRadius():Number{ return (_tlRadius); } public function set alpha(_arg1:Number):void{ if (_alpha != _arg1){ _alpha = _arg1; changed = true; }; } public function set blRadius(_arg1:Number):void{ if (_blRadius != _arg1){ _blRadius = _arg1; changed = true; }; } } }//package mx.graphics
Section 51
//IFocusManager (mx.managers.IFocusManager) package mx.managers { import flash.events.*; import mx.core.*; import flash.display.*; public interface IFocusManager { function get focusPane():Sprite; function getFocus():IFocusManagerComponent; function deactivate():void; function set defaultButton(_arg1:IButton):void; function set focusPane(_arg1:Sprite):void; function set showFocusIndicator(_arg1:Boolean):void; function moveFocus(_arg1:String, _arg2:DisplayObject=null):void; function addSWFBridge(_arg1:IEventDispatcher, _arg2:DisplayObject):void; function removeSWFBridge(_arg1:IEventDispatcher):void; function get defaultButtonEnabled():Boolean; function findFocusManagerComponent(_arg1:InteractiveObject):IFocusManagerComponent; function get nextTabIndex():int; function get defaultButton():IButton; function get showFocusIndicator():Boolean; function setFocus(_arg1:IFocusManagerComponent):void; function activate():void; function showFocus():void; function set defaultButtonEnabled(_arg1:Boolean):void; function hideFocus():void; function getNextFocusManagerComponent(_arg1:Boolean=false):IFocusManagerComponent; } }//package mx.managers
Section 52
//IFocusManagerComponent (mx.managers.IFocusManagerComponent) package mx.managers { public interface IFocusManagerComponent { function set focusEnabled(_arg1:Boolean):void; function drawFocus(_arg1:Boolean):void; function setFocus():void; function get focusEnabled():Boolean; function get tabEnabled():Boolean; function get tabIndex():int; function get mouseFocusEnabled():Boolean; } }//package mx.managers
Section 53
//IFocusManagerContainer (mx.managers.IFocusManagerContainer) package mx.managers { import flash.events.*; import flash.display.*; public interface IFocusManagerContainer extends IEventDispatcher { function set focusManager(_arg1:IFocusManager):void; function get focusManager():IFocusManager; function get systemManager():ISystemManager; function contains(_arg1:DisplayObject):Boolean; } }//package mx.managers
Section 54
//ILayoutManager (mx.managers.ILayoutManager) package mx.managers { import flash.events.*; public interface ILayoutManager extends IEventDispatcher { function validateNow():void; function validateClient(_arg1:ILayoutManagerClient, _arg2:Boolean=false):void; function isInvalid():Boolean; function invalidateDisplayList(_arg1:ILayoutManagerClient):void; function set usePhasedInstantiation(_arg1:Boolean):void; function invalidateSize(_arg1:ILayoutManagerClient):void; function get usePhasedInstantiation():Boolean; function invalidateProperties(_arg1:ILayoutManagerClient):void; } }//package mx.managers
Section 55
//ILayoutManagerClient (mx.managers.ILayoutManagerClient) package mx.managers { import flash.events.*; public interface ILayoutManagerClient extends IEventDispatcher { function get updateCompletePendingFlag():Boolean; function set updateCompletePendingFlag(_arg1:Boolean):void; function set initialized(_arg1:Boolean):void; function validateProperties():void; function validateDisplayList():void; function get nestLevel():int; function get initialized():Boolean; function get processedDescriptors():Boolean; function validateSize(_arg1:Boolean=false):void; function set nestLevel(_arg1:int):void; function set processedDescriptors(_arg1:Boolean):void; } }//package mx.managers
Section 56
//ISystemManager (mx.managers.ISystemManager) package mx.managers { import flash.events.*; import mx.core.*; import flash.display.*; import flash.geom.*; import flash.text.*; public interface ISystemManager extends IEventDispatcher, IChildList, IFlexModuleFactory { function set focusPane(_arg1:Sprite):void; function get toolTipChildren():IChildList; function useSWFBridge():Boolean; function isFontFaceEmbedded(_arg1:TextFormat):Boolean; function deployMouseShields(_arg1:Boolean):void; function get rawChildren():IChildList; function get topLevelSystemManager():ISystemManager; function dispatchEventFromSWFBridges(_arg1:Event, _arg2:IEventDispatcher=null, _arg3:Boolean=false, _arg4:Boolean=false):void; function getSandboxRoot():DisplayObject; function get swfBridgeGroup():ISWFBridgeGroup; function removeFocusManager(_arg1:IFocusManagerContainer):void; function addChildToSandboxRoot(_arg1:String, _arg2:DisplayObject):void; function get document():Object; function get focusPane():Sprite; function get loaderInfo():LoaderInfo; function addChildBridge(_arg1:IEventDispatcher, _arg2:DisplayObject):void; function getTopLevelRoot():DisplayObject; function removeChildBridge(_arg1:IEventDispatcher):void; function isDisplayObjectInABridgedApplication(_arg1:DisplayObject):Boolean; function get popUpChildren():IChildList; function get screen():Rectangle; function removeChildFromSandboxRoot(_arg1:String, _arg2:DisplayObject):void; function getDefinitionByName(_arg1:String):Object; function activate(_arg1:IFocusManagerContainer):void; function deactivate(_arg1:IFocusManagerContainer):void; function get cursorChildren():IChildList; function set document(_arg1:Object):void; function get embeddedFontList():Object; function set numModalWindows(_arg1:int):void; function isTopLevel():Boolean; function isTopLevelRoot():Boolean; function get numModalWindows():int; function addFocusManager(_arg1:IFocusManagerContainer):void; function get stage():Stage; function getVisibleApplicationRect(_arg1:Rectangle=null):Rectangle; } }//package mx.managers
Section 57
//SystemManagerGlobals (mx.managers.SystemManagerGlobals) package mx.managers { public class SystemManagerGlobals { public static var topLevelSystemManagers:Array = []; public static var changingListenersInOtherSystemManagers:Boolean; public static var bootstrapLoaderInfoURL:String; public static var showMouseCursor:Boolean; } }//package mx.managers
Section 58
//IModuleInfo (mx.modules.IModuleInfo) package mx.modules { import flash.events.*; import mx.core.*; import flash.system.*; import flash.utils.*; public interface IModuleInfo extends IEventDispatcher { function get ready():Boolean; function get loaded():Boolean; function load(_arg1:ApplicationDomain=null, _arg2:SecurityDomain=null, _arg3:ByteArray=null):void; function release():void; function get error():Boolean; function get data():Object; function publish(_arg1:IFlexModuleFactory):void; function get factory():IFlexModuleFactory; function set data(_arg1:Object):void; function get url():String; function get setup():Boolean; function unload():void; } }//package mx.modules
Section 59
//ModuleManager (mx.modules.ModuleManager) package mx.modules { import mx.core.*; public class ModuleManager { mx_internal static const VERSION:String = "3.3.0.4852"; public static function getModule(_arg1:String):IModuleInfo{ return (getSingleton().getModule(_arg1)); } private static function getSingleton():Object{ if (!ModuleManagerGlobals.managerSingleton){ ModuleManagerGlobals.managerSingleton = new ModuleManagerImpl(); }; return (ModuleManagerGlobals.managerSingleton); } public static function getAssociatedFactory(_arg1:Object):IFlexModuleFactory{ return (getSingleton().getAssociatedFactory(_arg1)); } } }//package mx.modules import flash.events.*; import mx.core.*; import flash.display.*; import flash.system.*; import flash.utils.*; import flash.net.*; import mx.events.*; class ModuleInfoProxy extends EventDispatcher implements IModuleInfo { private var _data:Object; private var info:ModuleInfo; private var referenced:Boolean;// = false private function ModuleInfoProxy(_arg1:ModuleInfo){ this.info = _arg1; _arg1.addEventListener(ModuleEvent.SETUP, moduleEventHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.PROGRESS, moduleEventHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.READY, moduleEventHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.ERROR, moduleEventHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.UNLOAD, moduleEventHandler, false, 0, true); } public function get loaded():Boolean{ return (info.loaded); } public function release():void{ if (referenced){ info.removeReference(); referenced = false; }; } public function get error():Boolean{ return (info.error); } public function get factory():IFlexModuleFactory{ return (info.factory); } public function publish(_arg1:IFlexModuleFactory):void{ info.publish(_arg1); } public function set data(_arg1:Object):void{ _data = _arg1; } public function get ready():Boolean{ return (info.ready); } public function load(_arg1:ApplicationDomain=null, _arg2:SecurityDomain=null, _arg3:ByteArray=null):void{ var _local4:ModuleEvent; info.resurrect(); if (!referenced){ info.addReference(); referenced = true; }; if (info.error){ dispatchEvent(new ModuleEvent(ModuleEvent.ERROR)); } else { if (info.loaded){ if (info.setup){ dispatchEvent(new ModuleEvent(ModuleEvent.SETUP)); if (info.ready){ _local4 = new ModuleEvent(ModuleEvent.PROGRESS); _local4.bytesLoaded = info.size; _local4.bytesTotal = info.size; dispatchEvent(_local4); dispatchEvent(new ModuleEvent(ModuleEvent.READY)); }; }; } else { info.load(_arg1, _arg2, _arg3); }; }; } private function moduleEventHandler(_arg1:ModuleEvent):void{ dispatchEvent(_arg1); } public function get url():String{ return (info.url); } public function get data():Object{ return (_data); } public function get setup():Boolean{ return (info.setup); } public function unload():void{ info.unload(); info.removeEventListener(ModuleEvent.SETUP, moduleEventHandler); info.removeEventListener(ModuleEvent.PROGRESS, moduleEventHandler); info.removeEventListener(ModuleEvent.READY, moduleEventHandler); info.removeEventListener(ModuleEvent.ERROR, moduleEventHandler); info.removeEventListener(ModuleEvent.UNLOAD, moduleEventHandler); } } class ModuleManagerImpl extends EventDispatcher { private var moduleList:Object; private function ModuleManagerImpl(){ moduleList = {}; super(); } public function getModule(_arg1:String):IModuleInfo{ var _local2:ModuleInfo = (moduleList[_arg1] as ModuleInfo); if (!_local2){ _local2 = new ModuleInfo(_arg1); moduleList[_arg1] = _local2; }; return (new ModuleInfoProxy(_local2)); } public function getAssociatedFactory(_arg1:Object):IFlexModuleFactory{ var m:Object; var info:ModuleInfo; var domain:ApplicationDomain; var cls:Class; var object = _arg1; var className:String = getQualifiedClassName(object); for each (m in moduleList) { info = (m as ModuleInfo); if (!info.ready){ } else { domain = info.applicationDomain; try { cls = Class(domain.getDefinition(className)); if ((object is cls)){ return (info.factory); }; } catch(error:Error) { }; }; }; return (null); } } class ModuleInfo extends EventDispatcher { private var _error:Boolean;// = false private var loader:Loader; private var factoryInfo:FactoryInfo; private var limbo:Dictionary; private var _loaded:Boolean;// = false private var _ready:Boolean;// = false private var numReferences:int;// = 0 private var _url:String; private var _setup:Boolean;// = false private function ModuleInfo(_arg1:String){ _url = _arg1; } private function clearLoader():void{ if (loader){ if (loader.contentLoaderInfo){ loader.contentLoaderInfo.removeEventListener(Event.INIT, initHandler); loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, completeHandler); loader.contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS, progressHandler); loader.contentLoaderInfo.removeEventListener(IOErrorEvent.IO_ERROR, errorHandler); loader.contentLoaderInfo.removeEventListener(SecurityErrorEvent.SECURITY_ERROR, errorHandler); }; try { if (loader.content){ loader.content.removeEventListener("ready", readyHandler); loader.content.removeEventListener("error", moduleErrorHandler); }; } catch(error:Error) { }; if (_loaded){ try { loader.close(); } catch(error:Error) { }; }; try { loader.unload(); } catch(error:Error) { }; loader = null; }; } public function get size():int{ return ((((!(limbo)) && (factoryInfo))) ? factoryInfo.bytesTotal : 0); } public function get loaded():Boolean{ return ((limbo) ? false : _loaded); } public function release():void{ if (((_ready) && (!(limbo)))){ limbo = new Dictionary(true); limbo[factoryInfo] = 1; factoryInfo = null; } else { unload(); }; } public function get error():Boolean{ return ((limbo) ? false : _error); } public function get factory():IFlexModuleFactory{ return ((((!(limbo)) && (factoryInfo))) ? factoryInfo.factory : null); } public function completeHandler(_arg1:Event):void{ var _local2:ModuleEvent = new ModuleEvent(ModuleEvent.PROGRESS, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = loader.contentLoaderInfo.bytesLoaded; _local2.bytesTotal = loader.contentLoaderInfo.bytesTotal; dispatchEvent(_local2); } public function publish(_arg1:IFlexModuleFactory):void{ if (factoryInfo){ return; }; if (_url.indexOf("published://") != 0){ return; }; factoryInfo = new FactoryInfo(); factoryInfo.factory = _arg1; _loaded = true; _setup = true; _ready = true; _error = false; dispatchEvent(new ModuleEvent(ModuleEvent.SETUP)); dispatchEvent(new ModuleEvent(ModuleEvent.PROGRESS)); dispatchEvent(new ModuleEvent(ModuleEvent.READY)); } public function initHandler(_arg1:Event):void{ var moduleEvent:ModuleEvent; var event = _arg1; factoryInfo = new FactoryInfo(); try { factoryInfo.factory = (loader.content as IFlexModuleFactory); } catch(error:Error) { }; if (!factoryInfo.factory){ moduleEvent = new ModuleEvent(ModuleEvent.ERROR, event.bubbles, event.cancelable); moduleEvent.bytesLoaded = 0; moduleEvent.bytesTotal = 0; moduleEvent.errorText = "SWF is not a loadable module"; dispatchEvent(moduleEvent); return; }; loader.content.addEventListener("ready", readyHandler); loader.content.addEventListener("error", moduleErrorHandler); try { factoryInfo.applicationDomain = loader.contentLoaderInfo.applicationDomain; } catch(error:Error) { }; _setup = true; dispatchEvent(new ModuleEvent(ModuleEvent.SETUP)); } public function resurrect():void{ var _local1:Object; if (((!(factoryInfo)) && (limbo))){ for (_local1 in limbo) { factoryInfo = (_local1 as FactoryInfo); break; }; limbo = null; }; if (!factoryInfo){ if (_loaded){ dispatchEvent(new ModuleEvent(ModuleEvent.UNLOAD)); }; loader = null; _loaded = false; _setup = false; _ready = false; _error = false; }; } public function errorHandler(_arg1:ErrorEvent):void{ _error = true; var _local2:ModuleEvent = new ModuleEvent(ModuleEvent.ERROR, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = 0; _local2.bytesTotal = 0; _local2.errorText = _arg1.text; dispatchEvent(_local2); } public function get ready():Boolean{ return ((limbo) ? false : _ready); } private function loadBytes(_arg1:ApplicationDomain, _arg2:ByteArray):void{ var _local3:LoaderContext = new LoaderContext(); _local3.applicationDomain = (_arg1) ? _arg1 : new ApplicationDomain(ApplicationDomain.currentDomain); if (("allowLoadBytesCodeExecution" in _local3)){ _local3["allowLoadBytesCodeExecution"] = true; }; loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.INIT, initHandler); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler); loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, errorHandler); loader.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR, errorHandler); loader.loadBytes(_arg2, _local3); } public function removeReference():void{ numReferences--; if (numReferences == 0){ release(); }; } public function addReference():void{ numReferences++; } public function progressHandler(_arg1:ProgressEvent):void{ var _local2:ModuleEvent = new ModuleEvent(ModuleEvent.PROGRESS, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = _arg1.bytesLoaded; _local2.bytesTotal = _arg1.bytesTotal; dispatchEvent(_local2); } public function load(_arg1:ApplicationDomain=null, _arg2:SecurityDomain=null, _arg3:ByteArray=null):void{ if (_loaded){ return; }; _loaded = true; limbo = null; if (_arg3){ loadBytes(_arg1, _arg3); return; }; if (_url.indexOf("published://") == 0){ return; }; var _local4:URLRequest = new URLRequest(_url); var _local5:LoaderContext = new LoaderContext(); _local5.applicationDomain = (_arg1) ? _arg1 : new ApplicationDomain(ApplicationDomain.currentDomain); _local5.securityDomain = _arg2; if ((((_arg2 == null)) && ((Security.sandboxType == Security.REMOTE)))){ _local5.securityDomain = SecurityDomain.currentDomain; }; loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.INIT, initHandler); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler); loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, progressHandler); loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, errorHandler); loader.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR, errorHandler); loader.load(_local4, _local5); } public function get url():String{ return (_url); } public function get applicationDomain():ApplicationDomain{ return ((((!(limbo)) && (factoryInfo))) ? factoryInfo.applicationDomain : null); } public function moduleErrorHandler(_arg1:Event):void{ var _local2:ModuleEvent; _ready = true; factoryInfo.bytesTotal = loader.contentLoaderInfo.bytesTotal; clearLoader(); if ((_arg1 is ModuleEvent)){ _local2 = ModuleEvent(_arg1); } else { _local2 = new ModuleEvent(ModuleEvent.ERROR); }; dispatchEvent(_local2); } public function readyHandler(_arg1:Event):void{ _ready = true; factoryInfo.bytesTotal = loader.contentLoaderInfo.bytesTotal; clearLoader(); dispatchEvent(new ModuleEvent(ModuleEvent.READY)); } public function get setup():Boolean{ return ((limbo) ? false : _setup); } public function unload():void{ clearLoader(); if (_loaded){ dispatchEvent(new ModuleEvent(ModuleEvent.UNLOAD)); }; limbo = null; factoryInfo = null; _loaded = false; _setup = false; _ready = false; _error = false; } } class FactoryInfo { public var bytesTotal:int;// = 0 public var factory:IFlexModuleFactory; public var applicationDomain:ApplicationDomain; private function FactoryInfo(){ } }
Section 60
//ModuleManagerGlobals (mx.modules.ModuleManagerGlobals) package mx.modules { public class ModuleManagerGlobals { public static var managerSingleton:Object = null; } }//package mx.modules
Section 61
//IResourceBundle (mx.resources.IResourceBundle) package mx.resources { public interface IResourceBundle { function get content():Object; function get locale():String; function get bundleName():String; } }//package mx.resources
Section 62
//IResourceManager (mx.resources.IResourceManager) package mx.resources { import flash.events.*; import flash.system.*; public interface IResourceManager extends IEventDispatcher { function loadResourceModule(_arg1:String, _arg2:Boolean=true, _arg3:ApplicationDomain=null, _arg4:SecurityDomain=null):IEventDispatcher; function getBoolean(_arg1:String, _arg2:String, _arg3:String=null):Boolean; function getClass(_arg1:String, _arg2:String, _arg3:String=null):Class; function getLocales():Array; function removeResourceBundlesForLocale(_arg1:String):void; function getResourceBundle(_arg1:String, _arg2:String):IResourceBundle; function get localeChain():Array; function getInt(_arg1:String, _arg2:String, _arg3:String=null):int; function update():void; function set localeChain(_arg1:Array):void; function getUint(_arg1:String, _arg2:String, _arg3:String=null):uint; function addResourceBundle(_arg1:IResourceBundle):void; function getStringArray(_arg1:String, _arg2:String, _arg3:String=null):Array; function getBundleNamesForLocale(_arg1:String):Array; function removeResourceBundle(_arg1:String, _arg2:String):void; function getObject(_arg1:String, _arg2:String, _arg3:String=null); function getString(_arg1:String, _arg2:String, _arg3:Array=null, _arg4:String=null):String; function installCompiledResourceBundles(_arg1:ApplicationDomain, _arg2:Array, _arg3:Array):void; function unloadResourceModule(_arg1:String, _arg2:Boolean=true):void; function getPreferredLocaleChain():Array; function findResourceBundleWithResource(_arg1:String, _arg2:String):IResourceBundle; function initializeLocaleChain(_arg1:Array):void; function getNumber(_arg1:String, _arg2:String, _arg3:String=null):Number; } }//package mx.resources
Section 63
//IResourceModule (mx.resources.IResourceModule) package mx.resources { public interface IResourceModule { function get resourceBundles():Array; } }//package mx.resources
Section 64
//LocaleSorter (mx.resources.LocaleSorter) package mx.resources { import mx.core.*; public class LocaleSorter { mx_internal static const VERSION:String = "3.3.0.4852"; private static function normalizeLocale(_arg1:String):String{ return (_arg1.toLowerCase().replace(/-/g, "_")); } public static function sortLocalesByPreference(_arg1:Array, _arg2:Array, _arg3:String=null, _arg4:Boolean=false):Array{ var result:Array; var hasLocale:Object; var i:int; var j:int; var k:int; var l:int; var locale:String; var plocale:LocaleID; var appLocales = _arg1; var systemPreferences = _arg2; var ultimateFallbackLocale = _arg3; var addAll = _arg4; var promote:Function = function (_arg1:String):void{ if (typeof(hasLocale[_arg1]) != "undefined"){ result.push(appLocales[hasLocale[_arg1]]); delete hasLocale[_arg1]; }; }; result = []; hasLocale = {}; var locales:Array = trimAndNormalize(appLocales); var preferenceLocales:Array = trimAndNormalize(systemPreferences); addUltimateFallbackLocale(preferenceLocales, ultimateFallbackLocale); j = 0; while (j < locales.length) { hasLocale[locales[j]] = j; j = (j + 1); }; i = 0; l = preferenceLocales.length; while (i < l) { plocale = LocaleID.fromString(preferenceLocales[i]); promote(preferenceLocales[i]); promote(plocale.toString()); while (plocale.transformToParent()) { promote(plocale.toString()); }; plocale = LocaleID.fromString(preferenceLocales[i]); j = 0; while (j < l) { locale = preferenceLocales[j]; if (plocale.isSiblingOf(LocaleID.fromString(locale))){ promote(locale); }; j = (j + 1); }; j = 0; k = locales.length; while (j < k) { locale = locales[j]; if (plocale.isSiblingOf(LocaleID.fromString(locale))){ promote(locale); }; j = (j + 1); }; i = (i + 1); }; if (addAll){ j = 0; k = locales.length; while (j < k) { promote(locales[j]); j = (j + 1); }; }; return (result); } private static function addUltimateFallbackLocale(_arg1:Array, _arg2:String):void{ var _local3:String; if (((!((_arg2 == null))) && (!((_arg2 == ""))))){ _local3 = normalizeLocale(_arg2); if (_arg1.indexOf(_local3) == -1){ _arg1.push(_local3); }; }; } private static function trimAndNormalize(_arg1:Array):Array{ var _local2:Array = []; var _local3:int; while (_local3 < _arg1.length) { _local2.push(normalizeLocale(_arg1[_local3])); _local3++; }; return (_local2); } } }//package mx.resources class LocaleID { private var privateLangs:Boolean;// = false private var script:String;// = "" private var variants:Array; private var privates:Array; private var extensions:Object; private var lang:String;// = "" private var region:String;// = "" private var extended_langs:Array; public static const STATE_PRIMARY_LANGUAGE:int = 0; public static const STATE_REGION:int = 3; public static const STATE_EXTENDED_LANGUAGES:int = 1; public static const STATE_EXTENSIONS:int = 5; public static const STATE_SCRIPT:int = 2; public static const STATE_VARIANTS:int = 4; public static const STATE_PRIVATES:int = 6; private function LocaleID(){ extended_langs = []; variants = []; extensions = {}; privates = []; super(); } public function equals(_arg1:LocaleID):Boolean{ return ((toString() == _arg1.toString())); } public function canonicalize():void{ var _local1:String; for (_local1 in extensions) { if (extensions.hasOwnProperty(_local1)){ if (extensions[_local1].length == 0){ delete extensions[_local1]; } else { extensions[_local1] = extensions[_local1].sort(); }; }; }; extended_langs = extended_langs.sort(); variants = variants.sort(); privates = privates.sort(); if (script == ""){ script = LocaleRegistry.getScriptByLang(lang); }; if ((((script == "")) && (!((region == ""))))){ script = LocaleRegistry.getScriptByLangAndRegion(lang, region); }; if ((((region == "")) && (!((script == ""))))){ region = LocaleRegistry.getDefaultRegionForLangAndScript(lang, script); }; } public function toString():String{ var _local2:String; var _local1:Array = [lang]; Array.prototype.push.apply(_local1, extended_langs); if (script != ""){ _local1.push(script); }; if (region != ""){ _local1.push(region); }; Array.prototype.push.apply(_local1, variants); for (_local2 in extensions) { if (extensions.hasOwnProperty(_local2)){ _local1.push(_local2); Array.prototype.push.apply(_local1, extensions[_local2]); }; }; if (privates.length > 0){ _local1.push("x"); Array.prototype.push.apply(_local1, privates); }; return (_local1.join("_")); } public function isSiblingOf(_arg1:LocaleID):Boolean{ return ((((lang == _arg1.lang)) && ((script == _arg1.script)))); } public function transformToParent():Boolean{ var _local2:String; var _local3:Array; var _local4:String; if (privates.length > 0){ privates.splice((privates.length - 1), 1); return (true); }; var _local1:String; for (_local2 in extensions) { if (extensions.hasOwnProperty(_local2)){ _local1 = _local2; }; }; if (_local1){ _local3 = extensions[_local1]; if (_local3.length == 1){ delete extensions[_local1]; return (true); }; _local3.splice((_local3.length - 1), 1); return (true); }; if (variants.length > 0){ variants.splice((variants.length - 1), 1); return (true); }; if (script != ""){ if (LocaleRegistry.getScriptByLang(lang) != ""){ script = ""; return (true); }; if (region == ""){ _local4 = LocaleRegistry.getDefaultRegionForLangAndScript(lang, script); if (_local4 != ""){ region = _local4; script = ""; return (true); }; }; }; if (region != ""){ if (!(((script == "")) && ((LocaleRegistry.getScriptByLang(lang) == "")))){ region = ""; return (true); }; }; if (extended_langs.length > 0){ extended_langs.splice((extended_langs.length - 1), 1); return (true); }; return (false); } public static function fromString(_arg1:String):LocaleID{ var _local5:Array; var _local8:String; var _local9:int; var _local10:String; var _local2:LocaleID = new (LocaleID); var _local3:int = STATE_PRIMARY_LANGUAGE; var _local4:Array = _arg1.replace(/-/g, "_").split("_"); var _local6:int; var _local7:int = _local4.length; while (_local6 < _local7) { _local8 = _local4[_local6].toLowerCase(); if (_local3 == STATE_PRIMARY_LANGUAGE){ if (_local8 == "x"){ _local2.privateLangs = true; } else { if (_local8 == "i"){ _local2.lang = (_local2.lang + "i-"); } else { _local2.lang = (_local2.lang + _local8); _local3 = STATE_EXTENDED_LANGUAGES; }; }; } else { _local9 = _local8.length; if (_local9 == 0){ } else { _local10 = _local8.charAt(0).toLowerCase(); if ((((_local3 <= STATE_EXTENDED_LANGUAGES)) && ((_local9 == 3)))){ _local2.extended_langs.push(_local8); if (_local2.extended_langs.length == 3){ _local3 = STATE_SCRIPT; }; } else { if ((((_local3 <= STATE_SCRIPT)) && ((_local9 == 4)))){ _local2.script = _local8; _local3 = STATE_REGION; } else { if ((((_local3 <= STATE_REGION)) && ((((_local9 == 2)) || ((_local9 == 3)))))){ _local2.region = _local8; _local3 = STATE_VARIANTS; } else { if ((((_local3 <= STATE_VARIANTS)) && ((((((((_local10 >= "a")) && ((_local10 <= "z")))) && ((_local9 >= 5)))) || ((((((_local10 >= "0")) && ((_local10 <= "9")))) && ((_local9 >= 4)))))))){ _local2.variants.push(_local8); _local3 = STATE_VARIANTS; } else { if ((((_local3 < STATE_PRIVATES)) && ((_local9 == 1)))){ if (_local8 == "x"){ _local3 = STATE_PRIVATES; _local5 = _local2.privates; } else { _local3 = STATE_EXTENSIONS; _local5 = ((_local2.extensions[_local8]) || ([])); _local2.extensions[_local8] = _local5; }; } else { if (_local3 >= STATE_EXTENSIONS){ _local5.push(_local8); }; }; }; }; }; }; }; }; _local6++; }; _local2.canonicalize(); return (_local2); } } class LocaleRegistry { private static const SCRIPT_ID_BY_LANG:Object = {ab:5, af:1, am:2, ar:3, as:4, ay:1, be:5, bg:5, bn:4, bs:1, ca:1, ch:1, cs:1, cy:1, da:1, de:1, dv:6, dz:7, el:8, en:1, eo:1, es:1, et:1, eu:1, fa:3, fi:1, fj:1, fo:1, fr:1, frr:1, fy:1, ga:1, gl:1, gn:1, gu:9, gv:1, he:10, hi:11, hr:1, ht:1, hu:1, hy:12, id:1, in:1, is:1, it:1, iw:10, ja:13, ka:14, kk:5, kl:1, km:15, kn:16, ko:17, la:1, lb:1, ln:1, lo:18, lt:1, lv:1, mg:1, mh:1, mk:5, ml:19, mo:1, mr:11, ms:1, mt:1, my:20, na:1, nb:1, nd:1, ne:11, nl:1, nn:1, no:1, nr:1, ny:1, om:1, or:21, pa:22, pl:1, ps:3, pt:1, qu:1, rn:1, ro:1, ru:5, rw:1, sg:1, si:23, sk:1, sl:1, sm:1, so:1, sq:1, ss:1, st:1, sv:1, sw:1, ta:24, te:25, th:26, ti:2, tl:1, tn:1, to:1, tr:1, ts:1, uk:5, ur:3, ve:1, vi:1, wo:1, xh:1, yi:10, zu:1, cpe:1, dsb:1, frs:1, gsw:1, hsb:1, kok:11, mai:11, men:1, nds:1, niu:1, nqo:27, nso:1, son:1, tem:1, tkl:1, tmh:1, tpi:1, tvl:1, zbl:28}; private static const SCRIPTS:Array = ["", "latn", "ethi", "arab", "beng", "cyrl", "thaa", "tibt", "grek", "gujr", "hebr", "deva", "armn", "jpan", "geor", "khmr", "knda", "kore", "laoo", "mlym", "mymr", "orya", "guru", "sinh", "taml", "telu", "thai", "nkoo", "blis", "hans", "hant", "mong", "syrc"]; private static const DEFAULT_REGION_BY_LANG_AND_SCRIPT:Object = {bg:{5:"bg"}, ca:{1:"es"}, zh:{30:"tw", 29:"cn"}, cs:{1:"cz"}, da:{1:"dk"}, de:{1:"de"}, el:{8:"gr"}, en:{1:"us"}, es:{1:"es"}, fi:{1:"fi"}, fr:{1:"fr"}, he:{10:"il"}, hu:{1:"hu"}, is:{1:"is"}, it:{1:"it"}, ja:{13:"jp"}, ko:{17:"kr"}, nl:{1:"nl"}, nb:{1:"no"}, pl:{1:"pl"}, pt:{1:"br"}, ro:{1:"ro"}, ru:{5:"ru"}, hr:{1:"hr"}, sk:{1:"sk"}, sq:{1:"al"}, sv:{1:"se"}, th:{26:"th"}, tr:{1:"tr"}, ur:{3:"pk"}, id:{1:"id"}, uk:{5:"ua"}, be:{5:"by"}, sl:{1:"si"}, et:{1:"ee"}, lv:{1:"lv"}, lt:{1:"lt"}, fa:{3:"ir"}, vi:{1:"vn"}, hy:{12:"am"}, az:{1:"az", 5:"az"}, eu:{1:"es"}, mk:{5:"mk"}, af:{1:"za"}, ka:{14:"ge"}, fo:{1:"fo"}, hi:{11:"in"}, ms:{1:"my"}, kk:{5:"kz"}, ky:{5:"kg"}, sw:{1:"ke"}, uz:{1:"uz", 5:"uz"}, tt:{5:"ru"}, pa:{22:"in"}, gu:{9:"in"}, ta:{24:"in"}, te:{25:"in"}, kn:{16:"in"}, mr:{11:"in"}, sa:{11:"in"}, mn:{5:"mn"}, gl:{1:"es"}, kok:{11:"in"}, syr:{32:"sy"}, dv:{6:"mv"}, nn:{1:"no"}, sr:{1:"cs", 5:"cs"}, cy:{1:"gb"}, mi:{1:"nz"}, mt:{1:"mt"}, quz:{1:"bo"}, tn:{1:"za"}, xh:{1:"za"}, zu:{1:"za"}, nso:{1:"za"}, se:{1:"no"}, smj:{1:"no"}, sma:{1:"no"}, sms:{1:"fi"}, smn:{1:"fi"}, bs:{1:"ba"}}; private static const SCRIPT_BY_ID:Object = {latn:1, ethi:2, arab:3, beng:4, cyrl:5, thaa:6, tibt:7, grek:8, gujr:9, hebr:10, deva:11, armn:12, jpan:13, geor:14, khmr:15, knda:16, kore:17, laoo:18, mlym:19, mymr:20, orya:21, guru:22, sinh:23, taml:24, telu:25, thai:26, nkoo:27, blis:28, hans:29, hant:30, mong:31, syrc:32}; private static const SCRIPT_ID_BY_LANG_AND_REGION:Object = {zh:{cn:29, sg:29, tw:30, hk:30, mo:30}, mn:{cn:31, sg:5}, pa:{pk:3, in:22}, ha:{gh:1, ne:1}}; private function LocaleRegistry(){ } public static function getScriptByLangAndRegion(_arg1:String, _arg2:String):String{ var _local3:Object = SCRIPT_ID_BY_LANG_AND_REGION[_arg1]; if (_local3 == null){ return (""); }; var _local4:Object = _local3[_arg2]; if (_local4 == null){ return (""); }; return (SCRIPTS[int(_local4)].toLowerCase()); } public static function getScriptByLang(_arg1:String):String{ var _local2:Object = SCRIPT_ID_BY_LANG[_arg1]; if (_local2 == null){ return (""); }; return (SCRIPTS[int(_local2)].toLowerCase()); } public static function getDefaultRegionForLangAndScript(_arg1:String, _arg2:String):String{ var _local3:Object = DEFAULT_REGION_BY_LANG_AND_SCRIPT[_arg1]; var _local4:Object = SCRIPT_BY_ID[_arg2]; if ((((_local3 == null)) || ((_local4 == null)))){ return (""); }; return (((_local3[int(_local4)]) || (""))); } }
Section 65
//ResourceBundle (mx.resources.ResourceBundle) package mx.resources { import mx.core.*; import flash.system.*; import mx.utils.*; public class ResourceBundle implements IResourceBundle { mx_internal var _locale:String; private var _content:Object; mx_internal var _bundleName:String; mx_internal static const VERSION:String = "3.3.0.4852"; mx_internal static var backupApplicationDomain:ApplicationDomain; mx_internal static var locale:String; public function ResourceBundle(_arg1:String=null, _arg2:String=null){ _content = {}; super(); mx_internal::_locale = _arg1; mx_internal::_bundleName = _arg2; _content = getContent(); } protected function getContent():Object{ return ({}); } public function getString(_arg1:String):String{ return (String(_getObject(_arg1))); } public function get content():Object{ return (_content); } public function getBoolean(_arg1:String, _arg2:Boolean=true):Boolean{ var _local3:String = _getObject(_arg1).toLowerCase(); if (_local3 == "false"){ return (false); }; if (_local3 == "true"){ return (true); }; return (_arg2); } public function getStringArray(_arg1:String):Array{ var _local2:Array = _getObject(_arg1).split(","); var _local3:int = _local2.length; var _local4:int; while (_local4 < _local3) { _local2[_local4] = StringUtil.trim(_local2[_local4]); _local4++; }; return (_local2); } public function getObject(_arg1:String):Object{ return (_getObject(_arg1)); } private function _getObject(_arg1:String):Object{ var _local2:Object = content[_arg1]; if (!_local2){ throw (new Error(((("Key " + _arg1) + " was not found in resource bundle ") + bundleName))); }; return (_local2); } public function get locale():String{ return (mx_internal::_locale); } public function get bundleName():String{ return (mx_internal::_bundleName); } public function getNumber(_arg1:String):Number{ return (Number(_getObject(_arg1))); } private static function getClassByName(_arg1:String, _arg2:ApplicationDomain):Class{ var _local3:Class; if (_arg2.hasDefinition(_arg1)){ _local3 = (_arg2.getDefinition(_arg1) as Class); }; return (_local3); } public static function getResourceBundle(_arg1:String, _arg2:ApplicationDomain=null):ResourceBundle{ var _local3:String; var _local4:Class; var _local5:Object; var _local6:ResourceBundle; if (!_arg2){ _arg2 = ApplicationDomain.currentDomain; }; _local3 = (((mx_internal::locale + "$") + _arg1) + "_properties"); _local4 = getClassByName(_local3, _arg2); if (!_local4){ _local3 = (_arg1 + "_properties"); _local4 = getClassByName(_local3, _arg2); }; if (!_local4){ _local3 = _arg1; _local4 = getClassByName(_local3, _arg2); }; if (((!(_local4)) && (mx_internal::backupApplicationDomain))){ _local3 = (_arg1 + "_properties"); _local4 = getClassByName(_local3, mx_internal::backupApplicationDomain); if (!_local4){ _local3 = _arg1; _local4 = getClassByName(_local3, mx_internal::backupApplicationDomain); }; }; if (_local4){ _local5 = new (_local4); if ((_local5 is ResourceBundle)){ _local6 = ResourceBundle(_local5); return (_local6); }; }; throw (new Error(("Could not find resource bundle " + _arg1))); } } }//package mx.resources
Section 66
//ResourceManager (mx.resources.ResourceManager) package mx.resources { import mx.core.*; public class ResourceManager { mx_internal static const VERSION:String = "3.3.0.4852"; private static var implClassDependency:ResourceManagerImpl; private static var instance:IResourceManager; public static function getInstance():IResourceManager{ if (!instance){ try { instance = IResourceManager(Singleton.getInstance("mx.resources::IResourceManager")); } catch(e:Error) { instance = new ResourceManagerImpl(); }; }; return (instance); } } }//package mx.resources
Section 67
//ResourceManagerImpl (mx.resources.ResourceManagerImpl) package mx.resources { import flash.events.*; import mx.core.*; import flash.system.*; import flash.utils.*; import mx.modules.*; import mx.events.*; import mx.utils.*; public class ResourceManagerImpl extends EventDispatcher implements IResourceManager { private var resourceModules:Object; private var initializedForNonFrameworkApp:Boolean;// = false private var localeMap:Object; private var _localeChain:Array; mx_internal static const VERSION:String = "3.3.0.4852"; private static var instance:IResourceManager; public function ResourceManagerImpl(){ localeMap = {}; resourceModules = {}; super(); } public function get localeChain():Array{ return (_localeChain); } public function set localeChain(_arg1:Array):void{ _localeChain = _arg1; update(); } public function getStringArray(_arg1:String, _arg2:String, _arg3:String=null):Array{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (null); }; var _local5:* = _local4.content[_arg2]; var _local6:Array = String(_local5).split(","); var _local7:int = _local6.length; var _local8:int; while (_local8 < _local7) { _local6[_local8] = StringUtil.trim(_local6[_local8]); _local8++; }; return (_local6); } mx_internal function installCompiledResourceBundle(_arg1:ApplicationDomain, _arg2:String, _arg3:String):void{ var _local4:String; var _local5:String = _arg3; var _local6:int = _arg3.indexOf(":"); if (_local6 != -1){ _local4 = _arg3.substring(0, _local6); _local5 = _arg3.substring((_local6 + 1)); }; if (getResourceBundle(_arg2, _arg3)){ return; }; var _local7 = (((_arg2 + "$") + _local5) + "_properties"); if (_local4 != null){ _local7 = ((_local4 + ".") + _local7); }; var _local8:Class; if (_arg1.hasDefinition(_local7)){ _local8 = Class(_arg1.getDefinition(_local7)); }; if (!_local8){ _local7 = _arg3; if (_arg1.hasDefinition(_local7)){ _local8 = Class(_arg1.getDefinition(_local7)); }; }; if (!_local8){ _local7 = (_arg3 + "_properties"); if (_arg1.hasDefinition(_local7)){ _local8 = Class(_arg1.getDefinition(_local7)); }; }; if (!_local8){ throw (new Error((((("Could not find compiled resource bundle '" + _arg3) + "' for locale '") + _arg2) + "'."))); }; var _local9:ResourceBundle = ResourceBundle(new (_local8)); _local9.mx_internal::_locale = _arg2; _local9.mx_internal::_bundleName = _arg3; addResourceBundle(_local9); } public function getString(_arg1:String, _arg2:String, _arg3:Array=null, _arg4:String=null):String{ var _local5:IResourceBundle = findBundle(_arg1, _arg2, _arg4); if (!_local5){ return (null); }; var _local6:String = String(_local5.content[_arg2]); if (_arg3){ _local6 = StringUtil.substitute(_local6, _arg3); }; return (_local6); } public function loadResourceModule(_arg1:String, _arg2:Boolean=true, _arg3:ApplicationDomain=null, _arg4:SecurityDomain=null):IEventDispatcher{ var moduleInfo:IModuleInfo; var resourceEventDispatcher:ResourceEventDispatcher; var timer:Timer; var timerHandler:Function; var url = _arg1; var updateFlag = _arg2; var applicationDomain = _arg3; var securityDomain = _arg4; moduleInfo = ModuleManager.getModule(url); resourceEventDispatcher = new ResourceEventDispatcher(moduleInfo); var readyHandler:Function = function (_arg1:ModuleEvent):void{ var _local2:* = _arg1.module.factory.create(); resourceModules[_arg1.module.url].resourceModule = _local2; if (updateFlag){ update(); }; }; moduleInfo.addEventListener(ModuleEvent.READY, readyHandler, false, 0, true); var errorHandler:Function = function (_arg1:ModuleEvent):void{ var _local3:ResourceEvent; var _local2:String = ("Unable to load resource module from " + url); if (resourceEventDispatcher.willTrigger(ResourceEvent.ERROR)){ _local3 = new ResourceEvent(ResourceEvent.ERROR, _arg1.bubbles, _arg1.cancelable); _local3.bytesLoaded = 0; _local3.bytesTotal = 0; _local3.errorText = _local2; resourceEventDispatcher.dispatchEvent(_local3); } else { throw (new Error(_local2)); }; }; moduleInfo.addEventListener(ModuleEvent.ERROR, errorHandler, false, 0, true); resourceModules[url] = new ResourceModuleInfo(moduleInfo, readyHandler, errorHandler); timer = new Timer(0); timerHandler = function (_arg1:TimerEvent):void{ timer.removeEventListener(TimerEvent.TIMER, timerHandler); timer.stop(); moduleInfo.load(applicationDomain, securityDomain); }; timer.addEventListener(TimerEvent.TIMER, timerHandler, false, 0, true); timer.start(); return (resourceEventDispatcher); } public function getLocales():Array{ var _local2:String; var _local1:Array = []; for (_local2 in localeMap) { _local1.push(_local2); }; return (_local1); } public function removeResourceBundlesForLocale(_arg1:String):void{ delete localeMap[_arg1]; } public function getResourceBundle(_arg1:String, _arg2:String):IResourceBundle{ var _local3:Object = localeMap[_arg1]; if (!_local3){ return (null); }; return (_local3[_arg2]); } private function dumpResourceModule(_arg1):void{ var _local2:ResourceBundle; var _local3:String; for each (_local2 in _arg1.resourceBundles) { trace(_local2.locale, _local2.bundleName); for (_local3 in _local2.content) { }; }; } public function addResourceBundle(_arg1:IResourceBundle):void{ var _local2:String = _arg1.locale; var _local3:String = _arg1.bundleName; if (!localeMap[_local2]){ localeMap[_local2] = {}; }; localeMap[_local2][_local3] = _arg1; } public function getObject(_arg1:String, _arg2:String, _arg3:String=null){ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (undefined); }; return (_local4.content[_arg2]); } public function getInt(_arg1:String, _arg2:String, _arg3:String=null):int{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (0); }; var _local5:* = _local4.content[_arg2]; return (int(_local5)); } private function findBundle(_arg1:String, _arg2:String, _arg3:String):IResourceBundle{ supportNonFrameworkApps(); return (((_arg3)!=null) ? getResourceBundle(_arg3, _arg1) : findResourceBundleWithResource(_arg1, _arg2)); } private function supportNonFrameworkApps():void{ if (initializedForNonFrameworkApp){ return; }; initializedForNonFrameworkApp = true; if (getLocales().length > 0){ return; }; var _local1:ApplicationDomain = ApplicationDomain.currentDomain; if (!_local1.hasDefinition("_CompiledResourceBundleInfo")){ return; }; var _local2:Class = Class(_local1.getDefinition("_CompiledResourceBundleInfo")); var _local3:Array = _local2.compiledLocales; var _local4:Array = _local2.compiledResourceBundleNames; installCompiledResourceBundles(_local1, _local3, _local4); localeChain = _local3; } public function getBundleNamesForLocale(_arg1:String):Array{ var _local3:String; var _local2:Array = []; for (_local3 in localeMap[_arg1]) { _local2.push(_local3); }; return (_local2); } public function getPreferredLocaleChain():Array{ return (LocaleSorter.sortLocalesByPreference(getLocales(), getSystemPreferredLocales(), null, true)); } public function getNumber(_arg1:String, _arg2:String, _arg3:String=null):Number{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (NaN); }; var _local5:* = _local4.content[_arg2]; return (Number(_local5)); } public function update():void{ dispatchEvent(new Event(Event.CHANGE)); } public function getClass(_arg1:String, _arg2:String, _arg3:String=null):Class{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (null); }; var _local5:* = _local4.content[_arg2]; return ((_local5 as Class)); } public function removeResourceBundle(_arg1:String, _arg2:String):void{ delete localeMap[_arg1][_arg2]; if (getBundleNamesForLocale(_arg1).length == 0){ delete localeMap[_arg1]; }; } public function initializeLocaleChain(_arg1:Array):void{ localeChain = LocaleSorter.sortLocalesByPreference(_arg1, getSystemPreferredLocales(), null, true); } public function findResourceBundleWithResource(_arg1:String, _arg2:String):IResourceBundle{ var _local5:String; var _local6:Object; var _local7:ResourceBundle; if (!_localeChain){ return (null); }; var _local3:int = _localeChain.length; var _local4:int; while (_local4 < _local3) { _local5 = localeChain[_local4]; _local6 = localeMap[_local5]; if (!_local6){ } else { _local7 = _local6[_arg1]; if (!_local7){ } else { if ((_arg2 in _local7.content)){ return (_local7); }; }; }; _local4++; }; return (null); } public function getUint(_arg1:String, _arg2:String, _arg3:String=null):uint{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (0); }; var _local5:* = _local4.content[_arg2]; return (uint(_local5)); } private function getSystemPreferredLocales():Array{ var _local1:Array; if (Capabilities["languages"]){ _local1 = Capabilities["languages"]; } else { _local1 = [Capabilities.language]; }; return (_local1); } public function installCompiledResourceBundles(_arg1:ApplicationDomain, _arg2:Array, _arg3:Array):void{ var _local7:String; var _local8:int; var _local9:String; var _local4:int = (_arg2) ? _arg2.length : 0; var _local5:int = (_arg3) ? _arg3.length : 0; var _local6:int; while (_local6 < _local4) { _local7 = _arg2[_local6]; _local8 = 0; while (_local8 < _local5) { _local9 = _arg3[_local8]; mx_internal::installCompiledResourceBundle(_arg1, _local7, _local9); _local8++; }; _local6++; }; } public function getBoolean(_arg1:String, _arg2:String, _arg3:String=null):Boolean{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (false); }; var _local5:* = _local4.content[_arg2]; return ((String(_local5).toLowerCase() == "true")); } public function unloadResourceModule(_arg1:String, _arg2:Boolean=true):void{ throw (new Error("unloadResourceModule() is not yet implemented.")); } public static function getInstance():IResourceManager{ if (!instance){ instance = new (ResourceManagerImpl); }; return (instance); } } }//package mx.resources import flash.events.*; import mx.modules.*; import mx.events.*; class ResourceModuleInfo { public var resourceModule:IResourceModule; public var errorHandler:Function; public var readyHandler:Function; public var moduleInfo:IModuleInfo; private function ResourceModuleInfo(_arg1:IModuleInfo, _arg2:Function, _arg3:Function){ this.moduleInfo = _arg1; this.readyHandler = _arg2; this.errorHandler = _arg3; } } class ResourceEventDispatcher extends EventDispatcher { private function ResourceEventDispatcher(_arg1:IModuleInfo){ _arg1.addEventListener(ModuleEvent.ERROR, moduleInfo_errorHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.PROGRESS, moduleInfo_progressHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.READY, moduleInfo_readyHandler, false, 0, true); } private function moduleInfo_progressHandler(_arg1:ModuleEvent):void{ var _local2:ResourceEvent = new ResourceEvent(ResourceEvent.PROGRESS, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = _arg1.bytesLoaded; _local2.bytesTotal = _arg1.bytesTotal; dispatchEvent(_local2); } private function moduleInfo_readyHandler(_arg1:ModuleEvent):void{ var _local2:ResourceEvent = new ResourceEvent(ResourceEvent.COMPLETE); dispatchEvent(_local2); } private function moduleInfo_errorHandler(_arg1:ModuleEvent):void{ var _local2:ResourceEvent = new ResourceEvent(ResourceEvent.ERROR, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = _arg1.bytesLoaded; _local2.bytesTotal = _arg1.bytesTotal; _local2.errorText = _arg1.errorText; dispatchEvent(_local2); } }
Section 68
//HaloBorder (mx.skins.halo.HaloBorder) package mx.skins.halo { import mx.core.*; import flash.display.*; import mx.styles.*; import mx.skins.*; import mx.graphics.*; import mx.utils.*; public class HaloBorder extends RectangularBorder { mx_internal var radiusObj:Object; mx_internal var backgroundHole:Object; mx_internal var radius:Number; mx_internal var bRoundedCorners:Boolean; mx_internal var backgroundColor:Object; private var dropShadow:RectangularDropShadow; protected var _borderMetrics:EdgeMetrics; mx_internal var backgroundAlphaName:String; mx_internal static const VERSION:String = "3.3.0.4852"; private static var BORDER_WIDTHS:Object = {none:0, solid:1, inset:2, outset:2, alert:3, dropdown:2, menuBorder:1, comboNonEdit:2}; public function HaloBorder(){ BORDER_WIDTHS["default"] = 3; } override public function styleChanged(_arg1:String):void{ if ((((((((((_arg1 == null)) || ((_arg1 == "styleName")))) || ((_arg1 == "borderStyle")))) || ((_arg1 == "borderThickness")))) || ((_arg1 == "borderSides")))){ _borderMetrics = null; }; invalidateDisplayList(); } override protected function updateDisplayList(_arg1:Number, _arg2:Number):void{ if (((isNaN(_arg1)) || (isNaN(_arg2)))){ return; }; super.updateDisplayList(_arg1, _arg2); backgroundColor = getBackgroundColor(); bRoundedCorners = false; backgroundAlphaName = "backgroundAlpha"; backgroundHole = null; radius = 0; radiusObj = null; drawBorder(_arg1, _arg2); drawBackground(_arg1, _arg2); } mx_internal function drawBorder(_arg1:Number, _arg2:Number):void{ var _local5:Number; var _local6:uint; var _local7:uint; var _local8:String; var _local9:Number; var _local10:uint; var _local11:Boolean; var _local12:uint; var _local13:Array; var _local14:Array; var _local15:uint; var _local16:uint; var _local17:uint; var _local18:uint; var _local19:Boolean; var _local20:Object; var _local22:Number; var _local23:Number; var _local24:Number; var _local25:Object; var _local27:Number; var _local28:Number; var _local29:IContainer; var _local30:EdgeMetrics; var _local31:Boolean; var _local32:Number; var _local33:Array; var _local34:uint; var _local35:Boolean; var _local36:Number; var _local3:String = getStyle("borderStyle"); var _local4:Array = getStyle("highlightAlphas"); var _local21:Boolean; var _local26:Graphics = graphics; _local26.clear(); if (_local3){ switch (_local3){ case "none": break; case "inset": _local7 = getStyle("borderColor"); _local22 = ColorUtil.adjustBrightness2(_local7, -40); _local23 = ColorUtil.adjustBrightness2(_local7, 25); _local24 = ColorUtil.adjustBrightness2(_local7, 40); _local25 = backgroundColor; if ((((_local25 === null)) || ((_local25 === "")))){ _local25 = _local7; }; draw3dBorder(_local23, _local22, _local24, Number(_local25), Number(_local25), Number(_local25)); break; case "outset": _local7 = getStyle("borderColor"); _local22 = ColorUtil.adjustBrightness2(_local7, -40); _local23 = ColorUtil.adjustBrightness2(_local7, -25); _local24 = ColorUtil.adjustBrightness2(_local7, 40); _local25 = backgroundColor; if ((((_local25 === null)) || ((_local25 === "")))){ _local25 = _local7; }; draw3dBorder(_local23, _local24, _local22, Number(_local25), Number(_local25), Number(_local25)); break; case "alert": case "default": if (FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0){ _local27 = getStyle("backgroundAlpha"); _local5 = getStyle("borderAlpha"); backgroundAlphaName = "borderAlpha"; radius = getStyle("cornerRadius"); bRoundedCorners = (getStyle("roundedBottomCorners").toString().toLowerCase() == "true"); _local28 = (bRoundedCorners) ? radius : 0; drawDropShadow(0, 0, _arg1, _arg2, radius, radius, _local28, _local28); if (!bRoundedCorners){ radiusObj = {}; }; _local29 = (parent as IContainer); if (_local29){ _local30 = _local29.viewMetrics; backgroundHole = {x:_local30.left, y:_local30.top, w:Math.max(0, ((_arg1 - _local30.left) - _local30.right)), h:Math.max(0, ((_arg2 - _local30.top) - _local30.bottom)), r:0}; if ((((backgroundHole.w > 0)) && ((backgroundHole.h > 0)))){ if (_local27 != _local5){ drawDropShadow(backgroundHole.x, backgroundHole.y, backgroundHole.w, backgroundHole.h, 0, 0, 0, 0); }; _local26.beginFill(Number(backgroundColor), _local27); _local26.drawRect(backgroundHole.x, backgroundHole.y, backgroundHole.w, backgroundHole.h); _local26.endFill(); }; }; backgroundColor = getStyle("borderColor"); }; break; case "dropdown": _local12 = getStyle("dropdownBorderColor"); drawDropShadow(0, 0, _arg1, _arg2, 4, 0, 0, 4); drawRoundRect(0, 0, _arg1, _arg2, {tl:4, tr:0, br:0, bl:4}, 5068126, 1); drawRoundRect(0, 0, _arg1, _arg2, {tl:4, tr:0, br:0, bl:4}, [0xFFFFFF, 0xFFFFFF], [0.7, 0], verticalGradientMatrix(0, 0, _arg1, _arg2)); drawRoundRect(1, 1, (_arg1 - 1), (_arg2 - 2), {tl:3, tr:0, br:0, bl:3}, 0xFFFFFF, 1); drawRoundRect(1, 2, (_arg1 - 1), (_arg2 - 3), {tl:3, tr:0, br:0, bl:3}, [0xEEEEEE, 0xFFFFFF], 1, verticalGradientMatrix(0, 0, (_arg1 - 1), (_arg2 - 3))); if (!isNaN(_local12)){ drawRoundRect(0, 0, (_arg1 + 1), _arg2, {tl:4, tr:0, br:0, bl:4}, _local12, 0.5); drawRoundRect(1, 1, (_arg1 - 1), (_arg2 - 2), {tl:3, tr:0, br:0, bl:3}, 0xFFFFFF, 1); drawRoundRect(1, 2, (_arg1 - 1), (_arg2 - 3), {tl:3, tr:0, br:0, bl:3}, [0xEEEEEE, 0xFFFFFF], 1, verticalGradientMatrix(0, 0, (_arg1 - 1), (_arg2 - 3))); }; backgroundColor = null; break; case "menuBorder": _local7 = getStyle("borderColor"); drawRoundRect(0, 0, _arg1, _arg2, 0, _local7, 1); drawDropShadow(1, 1, (_arg1 - 2), (_arg2 - 2), 0, 0, 0, 0); break; case "comboNonEdit": break; case "controlBar": if ((((_arg1 == 0)) || ((_arg2 == 0)))){ backgroundColor = null; break; }; _local14 = getStyle("footerColors"); _local31 = !((_local14 == null)); _local32 = getStyle("borderAlpha"); if (_local31){ _local26.lineStyle(0, ((_local14.length > 0)) ? _local14[1] : _local14[0], _local32); _local26.moveTo(0, 0); _local26.lineTo(_arg1, 0); _local26.lineStyle(0, 0, 0); if (((((parent) && (parent.parent))) && ((parent.parent is IStyleClient)))){ radius = IStyleClient(parent.parent).getStyle("cornerRadius"); _local32 = IStyleClient(parent.parent).getStyle("borderAlpha"); }; if (isNaN(radius)){ radius = 0; }; if (IStyleClient(parent.parent).getStyle("roundedBottomCorners").toString().toLowerCase() != "true"){ radius = 0; }; drawRoundRect(0, 1, _arg1, (_arg2 - 1), {tl:0, tr:0, bl:radius, br:radius}, _local14, _local32, verticalGradientMatrix(0, 0, _arg1, _arg2)); if ((((_local14.length > 1)) && (!((_local14[0] == _local14[1]))))){ drawRoundRect(0, 1, _arg1, (_arg2 - 1), {tl:0, tr:0, bl:radius, br:radius}, [0xFFFFFF, 0xFFFFFF], _local4, verticalGradientMatrix(0, 0, _arg1, _arg2)); drawRoundRect(1, 2, (_arg1 - 2), (_arg2 - 3), {tl:0, tr:0, bl:(radius - 1), br:(radius - 1)}, _local14, _local32, verticalGradientMatrix(0, 0, _arg1, _arg2)); }; }; backgroundColor = null; break; case "applicationControlBar": _local13 = getStyle("fillColors"); _local5 = getStyle("backgroundAlpha"); _local4 = getStyle("highlightAlphas"); _local33 = getStyle("fillAlphas"); _local11 = getStyle("docked"); _local34 = uint(backgroundColor); radius = getStyle("cornerRadius"); if (!radius){ radius = 0; }; drawDropShadow(0, 1, _arg1, (_arg2 - 1), radius, radius, radius, radius); if (((!((backgroundColor === null))) && (StyleManager.isValidStyleValue(backgroundColor)))){ drawRoundRect(0, 1, _arg1, (_arg2 - 1), radius, _local34, _local5, verticalGradientMatrix(0, 0, _arg1, _arg2)); }; drawRoundRect(0, 1, _arg1, (_arg2 - 1), radius, _local13, _local33, verticalGradientMatrix(0, 0, _arg1, _arg2)); drawRoundRect(0, 1, _arg1, ((_arg2 / 2) - 1), {tl:radius, tr:radius, bl:0, br:0}, [0xFFFFFF, 0xFFFFFF], _local4, verticalGradientMatrix(0, 0, _arg1, ((_arg2 / 2) - 1))); drawRoundRect(0, 1, _arg1, (_arg2 - 1), {tl:radius, tr:radius, bl:0, br:0}, 0xFFFFFF, 0.3, null, GradientType.LINEAR, null, {x:0, y:2, w:_arg1, h:(_arg2 - 2), r:{tl:radius, tr:radius, bl:0, br:0}}); backgroundColor = null; break; default: _local7 = getStyle("borderColor"); _local9 = getStyle("borderThickness"); _local8 = getStyle("borderSides"); _local35 = true; radius = getStyle("cornerRadius"); bRoundedCorners = (getStyle("roundedBottomCorners").toString().toLowerCase() == "true"); _local36 = Math.max((radius - _local9), 0); _local20 = {x:_local9, y:_local9, w:(_arg1 - (_local9 * 2)), h:(_arg2 - (_local9 * 2)), r:_local36}; if (!bRoundedCorners){ radiusObj = {tl:radius, tr:radius, bl:0, br:0}; _local20.r = {tl:_local36, tr:_local36, bl:0, br:0}; }; if (_local8 != "left top right bottom"){ _local20.r = {tl:_local36, tr:_local36, bl:(bRoundedCorners) ? _local36 : 0, br:(bRoundedCorners) ? _local36 : 0}; radiusObj = {tl:radius, tr:radius, bl:(bRoundedCorners) ? radius : 0, br:(bRoundedCorners) ? radius : 0}; _local8 = _local8.toLowerCase(); if (_local8.indexOf("left") == -1){ _local20.x = 0; _local20.w = (_local20.w + _local9); _local20.r.tl = 0; _local20.r.bl = 0; radiusObj.tl = 0; radiusObj.bl = 0; _local35 = false; }; if (_local8.indexOf("top") == -1){ _local20.y = 0; _local20.h = (_local20.h + _local9); _local20.r.tl = 0; _local20.r.tr = 0; radiusObj.tl = 0; radiusObj.tr = 0; _local35 = false; }; if (_local8.indexOf("right") == -1){ _local20.w = (_local20.w + _local9); _local20.r.tr = 0; _local20.r.br = 0; radiusObj.tr = 0; radiusObj.br = 0; _local35 = false; }; if (_local8.indexOf("bottom") == -1){ _local20.h = (_local20.h + _local9); _local20.r.bl = 0; _local20.r.br = 0; radiusObj.bl = 0; radiusObj.br = 0; _local35 = false; }; }; if ((((radius == 0)) && (_local35))){ drawDropShadow(0, 0, _arg1, _arg2, 0, 0, 0, 0); _local26.beginFill(_local7); _local26.drawRect(0, 0, _arg1, _arg2); _local26.drawRect(_local9, _local9, (_arg1 - (2 * _local9)), (_arg2 - (2 * _local9))); _local26.endFill(); } else { if (radiusObj){ drawDropShadow(0, 0, _arg1, _arg2, radiusObj.tl, radiusObj.tr, radiusObj.br, radiusObj.bl); drawRoundRect(0, 0, _arg1, _arg2, radiusObj, _local7, 1, null, null, null, _local20); radiusObj.tl = Math.max((radius - _local9), 0); radiusObj.tr = Math.max((radius - _local9), 0); radiusObj.bl = (bRoundedCorners) ? Math.max((radius - _local9), 0) : 0; radiusObj.br = (bRoundedCorners) ? Math.max((radius - _local9), 0) : 0; } else { drawDropShadow(0, 0, _arg1, _arg2, radius, radius, radius, radius); drawRoundRect(0, 0, _arg1, _arg2, radius, _local7, 1, null, null, null, _local20); radius = Math.max((getStyle("cornerRadius") - _local9), 0); }; }; }; }; } mx_internal function drawBackground(_arg1:Number, _arg2:Number):void{ var _local4:Number; var _local5:Number; var _local6:EdgeMetrics; var _local7:Graphics; var _local8:Number; var _local9:Number; var _local10:Array; var _local11:Number; if (((((((!((backgroundColor === null))) && (!((backgroundColor === ""))))) || (getStyle("mouseShield")))) || (getStyle("mouseShieldChildren")))){ _local4 = Number(backgroundColor); _local5 = 1; _local6 = getBackgroundColorMetrics(); _local7 = graphics; if (((((isNaN(_local4)) || ((backgroundColor === "")))) || ((backgroundColor === null)))){ _local5 = 0; _local4 = 0xFFFFFF; } else { _local5 = getStyle(backgroundAlphaName); }; if (((!((radius == 0))) || (backgroundHole))){ _local8 = _local6.bottom; if (radiusObj){ _local9 = (bRoundedCorners) ? radius : 0; radiusObj = {tl:radius, tr:radius, bl:_local9, br:_local9}; drawRoundRect(_local6.left, _local6.top, (width - (_local6.left + _local6.right)), (height - (_local6.top + _local8)), radiusObj, _local4, _local5, null, GradientType.LINEAR, null, backgroundHole); } else { drawRoundRect(_local6.left, _local6.top, (width - (_local6.left + _local6.right)), (height - (_local6.top + _local8)), radius, _local4, _local5, null, GradientType.LINEAR, null, backgroundHole); }; } else { _local7.beginFill(_local4, _local5); _local7.drawRect(_local6.left, _local6.top, ((_arg1 - _local6.right) - _local6.left), ((_arg2 - _local6.bottom) - _local6.top)); _local7.endFill(); }; }; var _local3:String = getStyle("borderStyle"); if ((((((FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0)) && ((((_local3 == "alert")) || ((_local3 == "default")))))) && ((getStyle("headerColors") == null)))){ _local10 = getStyle("highlightAlphas"); _local11 = (_local10) ? _local10[0] : 0.3; drawRoundRect(0, 0, _arg1, _arg2, {tl:radius, tr:radius, bl:0, br:0}, 0xFFFFFF, _local11, null, GradientType.LINEAR, null, {x:0, y:1, w:_arg1, h:(_arg2 - 1), r:{tl:radius, tr:radius, bl:0, br:0}}); }; } mx_internal function drawDropShadow(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number, _arg8:Number):void{ var _local11:Number; var _local12:Boolean; if ((((((((getStyle("dropShadowEnabled") == false)) || ((getStyle("dropShadowEnabled") == "false")))) || ((_arg3 == 0)))) || ((_arg4 == 0)))){ return; }; var _local9:Number = getStyle("shadowDistance"); var _local10:String = getStyle("shadowDirection"); if (getStyle("borderStyle") == "applicationControlBar"){ _local12 = getStyle("docked"); _local11 = (_local12) ? 90 : getDropShadowAngle(_local9, _local10); _local9 = Math.abs(_local9); } else { _local11 = getDropShadowAngle(_local9, _local10); _local9 = (Math.abs(_local9) + 2); }; if (!dropShadow){ dropShadow = new RectangularDropShadow(); }; dropShadow.distance = _local9; dropShadow.angle = _local11; dropShadow.color = getStyle("dropShadowColor"); dropShadow.alpha = 0.4; dropShadow.tlRadius = _arg5; dropShadow.trRadius = _arg6; dropShadow.blRadius = _arg8; dropShadow.brRadius = _arg7; dropShadow.drawShadow(graphics, _arg1, _arg2, _arg3, _arg4); } mx_internal function getBackgroundColor():Object{ var _local2:Object; var _local1:IUIComponent = (parent as IUIComponent); if (((_local1) && (!(_local1.enabled)))){ _local2 = getStyle("backgroundDisabledColor"); if (((!((_local2 === null))) && (StyleManager.isValidStyleValue(_local2)))){ return (_local2); }; }; return (getStyle("backgroundColor")); } mx_internal function draw3dBorder(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):void{ var _local7:Number = width; var _local8:Number = height; drawDropShadow(0, 0, width, height, 0, 0, 0, 0); var _local9:Graphics = graphics; _local9.beginFill(_arg1); _local9.drawRect(0, 0, _local7, _local8); _local9.drawRect(1, 0, (_local7 - 2), _local8); _local9.endFill(); _local9.beginFill(_arg2); _local9.drawRect(1, 0, (_local7 - 2), 1); _local9.endFill(); _local9.beginFill(_arg3); _local9.drawRect(1, (_local8 - 1), (_local7 - 2), 1); _local9.endFill(); _local9.beginFill(_arg4); _local9.drawRect(1, 1, (_local7 - 2), 1); _local9.endFill(); _local9.beginFill(_arg5); _local9.drawRect(1, (_local8 - 2), (_local7 - 2), 1); _local9.endFill(); _local9.beginFill(_arg6); _local9.drawRect(1, 2, (_local7 - 2), (_local8 - 4)); _local9.drawRect(2, 2, (_local7 - 4), (_local8 - 4)); _local9.endFill(); } mx_internal function getBackgroundColorMetrics():EdgeMetrics{ return (borderMetrics); } mx_internal function getDropShadowAngle(_arg1:Number, _arg2:String):Number{ if (_arg2 == "left"){ return (((_arg1 >= 0)) ? 135 : 225); //unresolved jump }; if (_arg2 == "right"){ return (((_arg1 >= 0)) ? 45 : 315); //unresolved jump }; return (((_arg1 >= 0)) ? 90 : 270); } override public function get borderMetrics():EdgeMetrics{ var _local1:Number; var _local3:String; if (_borderMetrics){ return (_borderMetrics); }; var _local2:String = getStyle("borderStyle"); if ((((_local2 == "default")) || ((_local2 == "alert")))){ if (FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0){ _borderMetrics = new EdgeMetrics(0, 0, 0, 0); } else { return (EdgeMetrics.EMPTY); }; } else { if ((((_local2 == "controlBar")) || ((_local2 == "applicationControlBar")))){ _borderMetrics = new EdgeMetrics(1, 1, 1, 1); } else { if (_local2 == "solid"){ _local1 = getStyle("borderThickness"); if (isNaN(_local1)){ _local1 = 0; }; _borderMetrics = new EdgeMetrics(_local1, _local1, _local1, _local1); _local3 = getStyle("borderSides"); if (_local3 != "left top right bottom"){ if (_local3.indexOf("left") == -1){ _borderMetrics.left = 0; }; if (_local3.indexOf("top") == -1){ _borderMetrics.top = 0; }; if (_local3.indexOf("right") == -1){ _borderMetrics.right = 0; }; if (_local3.indexOf("bottom") == -1){ _borderMetrics.bottom = 0; }; }; } else { _local1 = BORDER_WIDTHS[_local2]; if (isNaN(_local1)){ _local1 = 0; }; _borderMetrics = new EdgeMetrics(_local1, _local1, _local1, _local1); }; }; }; return (_borderMetrics); } } }//package mx.skins.halo
Section 69
//HaloFocusRect (mx.skins.halo.HaloFocusRect) package mx.skins.halo { import mx.core.*; import flash.display.*; import mx.styles.*; import mx.skins.*; import mx.utils.*; public class HaloFocusRect extends ProgrammaticSkin implements IStyleClient { private var _focusColor:Number; mx_internal static const VERSION:String = "3.3.0.4852"; public function get inheritingStyles():Object{ return (styleName.inheritingStyles); } public function set inheritingStyles(_arg1:Object):void{ } public function notifyStyleChangeInChildren(_arg1:String, _arg2:Boolean):void{ } public function registerEffects(_arg1:Array):void{ } public function regenerateStyleCache(_arg1:Boolean):void{ } public function get styleDeclaration():CSSStyleDeclaration{ return (CSSStyleDeclaration(styleName)); } public function getClassStyleDeclarations():Array{ return ([]); } public function get className():String{ return ("HaloFocusRect"); } public function clearStyle(_arg1:String):void{ if (_arg1 == "focusColor"){ _focusColor = NaN; }; } public function setStyle(_arg1:String, _arg2):void{ if (_arg1 == "focusColor"){ _focusColor = _arg2; }; } public function set nonInheritingStyles(_arg1:Object):void{ } public function get nonInheritingStyles():Object{ return (styleName.nonInheritingStyles); } override protected function updateDisplayList(_arg1:Number, _arg2:Number):void{ var _local12:Number; var _local13:Number; var _local14:Number; var _local15:Number; var _local16:Number; var _local17:Number; super.updateDisplayList(_arg1, _arg2); var _local3:String = getStyle("focusBlendMode"); var _local4:Number = getStyle("focusAlpha"); var _local5:Number = getStyle("focusColor"); var _local6:Number = getStyle("cornerRadius"); var _local7:Number = getStyle("focusThickness"); var _local8:String = getStyle("focusRoundedCorners"); var _local9:Number = getStyle("themeColor"); var _local10:Number = _local5; if (isNaN(_local10)){ _local10 = _local9; }; var _local11:Graphics = graphics; _local11.clear(); if (_local3){ blendMode = _local3; }; if (((!((_local8 == "tl tr bl br"))) && ((_local6 > 0)))){ _local12 = 0; _local13 = 0; _local14 = 0; _local15 = 0; _local16 = (_local6 + _local7); if (_local8.indexOf("tl") >= 0){ _local12 = _local16; }; if (_local8.indexOf("tr") >= 0){ _local14 = _local16; }; if (_local8.indexOf("bl") >= 0){ _local13 = _local16; }; if (_local8.indexOf("br") >= 0){ _local15 = _local16; }; _local11.beginFill(_local10, _local4); GraphicsUtil.drawRoundRectComplex(_local11, 0, 0, _arg1, _arg2, _local12, _local14, _local13, _local15); _local12 = (_local12) ? _local6 : 0; _local14 = (_local14) ? _local6 : 0; _local13 = (_local13) ? _local6 : 0; _local15 = (_local15) ? _local6 : 0; GraphicsUtil.drawRoundRectComplex(_local11, _local7, _local7, (_arg1 - (2 * _local7)), (_arg2 - (2 * _local7)), _local12, _local14, _local13, _local15); _local11.endFill(); _local16 = (_local6 + (_local7 / 2)); _local12 = (_local12) ? _local16 : 0; _local14 = (_local14) ? _local16 : 0; _local13 = (_local13) ? _local16 : 0; _local15 = (_local15) ? _local16 : 0; _local11.beginFill(_local10, _local4); GraphicsUtil.drawRoundRectComplex(_local11, (_local7 / 2), (_local7 / 2), (_arg1 - _local7), (_arg2 - _local7), _local12, _local14, _local13, _local15); _local12 = (_local12) ? _local6 : 0; _local14 = (_local14) ? _local6 : 0; _local13 = (_local13) ? _local6 : 0; _local15 = (_local15) ? _local6 : 0; GraphicsUtil.drawRoundRectComplex(_local11, _local7, _local7, (_arg1 - (2 * _local7)), (_arg2 - (2 * _local7)), _local12, _local14, _local13, _local15); _local11.endFill(); } else { _local11.beginFill(_local10, _local4); _local17 = (((_local6 > 0)) ? (_local6 + _local7) : 0 * 2); _local11.drawRoundRect(0, 0, _arg1, _arg2, _local17, _local17); _local17 = (_local6 * 2); _local11.drawRoundRect(_local7, _local7, (_arg1 - (2 * _local7)), (_arg2 - (2 * _local7)), _local17, _local17); _local11.endFill(); _local11.beginFill(_local10, _local4); _local17 = (((_local6 > 0)) ? (_local6 + (_local7 / 2)) : 0 * 2); _local11.drawRoundRect((_local7 / 2), (_local7 / 2), (_arg1 - _local7), (_arg2 - _local7), _local17, _local17); _local17 = (_local6 * 2); _local11.drawRoundRect(_local7, _local7, (_arg1 - (2 * _local7)), (_arg2 - (2 * _local7)), _local17, _local17); _local11.endFill(); }; } override public function getStyle(_arg1:String){ return (((_arg1 == "focusColor")) ? _focusColor : super.getStyle(_arg1)); } public function set styleDeclaration(_arg1:CSSStyleDeclaration):void{ } } }//package mx.skins.halo
Section 70
//Border (mx.skins.Border) package mx.skins { import mx.core.*; public class Border extends ProgrammaticSkin implements IBorder { mx_internal static const VERSION:String = "3.3.0.4852"; public function get borderMetrics():EdgeMetrics{ return (EdgeMetrics.EMPTY); } } }//package mx.skins
Section 71
//ProgrammaticSkin (mx.skins.ProgrammaticSkin) package mx.skins { import mx.core.*; import flash.display.*; import mx.styles.*; import flash.geom.*; import mx.managers.*; import mx.utils.*; public class ProgrammaticSkin extends FlexShape implements IFlexDisplayObject, IInvalidating, ILayoutManagerClient, ISimpleStyleClient, IProgrammaticSkin { private var _initialized:Boolean;// = false private var _height:Number; private var invalidateDisplayListFlag:Boolean;// = false private var _styleName:IStyleClient; private var _nestLevel:int;// = 0 private var _processedDescriptors:Boolean;// = false private var _updateCompletePendingFlag:Boolean;// = true private var _width:Number; mx_internal static const VERSION:String = "3.3.0.4852"; private static var tempMatrix:Matrix = new Matrix(); public function ProgrammaticSkin(){ _width = measuredWidth; _height = measuredHeight; } public function getStyle(_arg1:String){ return ((_styleName) ? _styleName.getStyle(_arg1) : null); } protected function updateDisplayList(_arg1:Number, _arg2:Number):void{ } public function get nestLevel():int{ return (_nestLevel); } public function set nestLevel(_arg1:int):void{ _nestLevel = _arg1; invalidateDisplayList(); } override public function get height():Number{ return (_height); } public function get updateCompletePendingFlag():Boolean{ return (_updateCompletePendingFlag); } protected function verticalGradientMatrix(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Matrix{ return (rotatedGradientMatrix(_arg1, _arg2, _arg3, _arg4, 90)); } public function validateSize(_arg1:Boolean=false):void{ } public function invalidateDisplayList():void{ if (((!(invalidateDisplayListFlag)) && ((nestLevel > 0)))){ invalidateDisplayListFlag = true; UIComponentGlobals.layoutManager.invalidateDisplayList(this); }; } public function set updateCompletePendingFlag(_arg1:Boolean):void{ _updateCompletePendingFlag = _arg1; } protected function horizontalGradientMatrix(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Matrix{ return (rotatedGradientMatrix(_arg1, _arg2, _arg3, _arg4, 0)); } override public function set height(_arg1:Number):void{ _height = _arg1; invalidateDisplayList(); } public function set processedDescriptors(_arg1:Boolean):void{ _processedDescriptors = _arg1; } public function validateDisplayList():void{ invalidateDisplayListFlag = false; updateDisplayList(width, height); } public function get measuredWidth():Number{ return (0); } override public function set width(_arg1:Number):void{ _width = _arg1; invalidateDisplayList(); } public function get measuredHeight():Number{ return (0); } public function set initialized(_arg1:Boolean):void{ _initialized = _arg1; } protected function drawRoundRect(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null, _arg6:Object=null, _arg7:Object=null, _arg8:Matrix=null, _arg9:String="linear", _arg10:Array=null, _arg11:Object=null):void{ var _local13:Number; var _local14:Array; var _local15:Object; var _local12:Graphics = graphics; if ((((_arg3 == 0)) || ((_arg4 == 0)))){ return; }; if (_arg6 !== null){ if ((_arg6 is uint)){ _local12.beginFill(uint(_arg6), Number(_arg7)); } else { if ((_arg6 is Array)){ _local14 = ((_arg7 is Array)) ? (_arg7 as Array) : [_arg7, _arg7]; if (!_arg10){ _arg10 = [0, 0xFF]; }; _local12.beginGradientFill(_arg9, (_arg6 as Array), _local14, _arg10, _arg8); }; }; }; if (!_arg5){ _local12.drawRect(_arg1, _arg2, _arg3, _arg4); } else { if ((_arg5 is Number)){ _local13 = (Number(_arg5) * 2); _local12.drawRoundRect(_arg1, _arg2, _arg3, _arg4, _local13, _local13); } else { GraphicsUtil.drawRoundRectComplex(_local12, _arg1, _arg2, _arg3, _arg4, _arg5.tl, _arg5.tr, _arg5.bl, _arg5.br); }; }; if (_arg11){ _local15 = _arg11.r; if ((_local15 is Number)){ _local13 = (Number(_local15) * 2); _local12.drawRoundRect(_arg11.x, _arg11.y, _arg11.w, _arg11.h, _local13, _local13); } else { GraphicsUtil.drawRoundRectComplex(_local12, _arg11.x, _arg11.y, _arg11.w, _arg11.h, _local15.tl, _local15.tr, _local15.bl, _local15.br); }; }; if (_arg6 !== null){ _local12.endFill(); }; } public function get processedDescriptors():Boolean{ return (_processedDescriptors); } public function set styleName(_arg1:Object):void{ if (_styleName != _arg1){ _styleName = (_arg1 as IStyleClient); invalidateDisplayList(); }; } public function setActualSize(_arg1:Number, _arg2:Number):void{ var _local3:Boolean; if (_width != _arg1){ _width = _arg1; _local3 = true; }; if (_height != _arg2){ _height = _arg2; _local3 = true; }; if (_local3){ invalidateDisplayList(); }; } public function styleChanged(_arg1:String):void{ invalidateDisplayList(); } override public function get width():Number{ return (_width); } public function invalidateProperties():void{ } public function get initialized():Boolean{ return (_initialized); } protected function rotatedGradientMatrix(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number):Matrix{ tempMatrix.createGradientBox(_arg3, _arg4, ((_arg5 * Math.PI) / 180), _arg1, _arg2); return (tempMatrix); } public function move(_arg1:Number, _arg2:Number):void{ this.x = _arg1; this.y = _arg2; } public function get styleName():Object{ return (_styleName); } public function validateNow():void{ if (invalidateDisplayListFlag){ validateDisplayList(); }; } public function invalidateSize():void{ } public function validateProperties():void{ } } }//package mx.skins
Section 72
//RectangularBorder (mx.skins.RectangularBorder) package mx.skins { import flash.events.*; import mx.core.*; import flash.display.*; import mx.styles.*; import flash.system.*; import flash.geom.*; import flash.utils.*; import flash.net.*; import mx.resources.*; public class RectangularBorder extends Border implements IRectangularBorder { private var backgroundImage:DisplayObject; private var backgroundImageHeight:Number; private var _backgroundImageBounds:Rectangle; private var backgroundImageStyle:Object; private var backgroundImageWidth:Number; private var resourceManager:IResourceManager; mx_internal static const VERSION:String = "3.3.0.4852"; public function RectangularBorder(){ resourceManager = ResourceManager.getInstance(); super(); addEventListener(Event.REMOVED, removedHandler); } public function layoutBackgroundImage():void{ var _local4:Number; var _local5:Number; var _local7:Number; var _local8:Number; var _local14:Number; var _local15:Graphics; var _local1:DisplayObject = parent; var _local2:EdgeMetrics = ((_local1 is IContainer)) ? IContainer(_local1).viewMetrics : borderMetrics; var _local3 = !((getStyle("backgroundAttachment") == "fixed")); if (_backgroundImageBounds){ _local4 = _backgroundImageBounds.width; _local5 = _backgroundImageBounds.height; } else { _local4 = ((width - _local2.left) - _local2.right); _local5 = ((height - _local2.top) - _local2.bottom); }; var _local6:Number = getBackgroundSize(); if (isNaN(_local6)){ _local7 = 1; _local8 = 1; } else { _local14 = (_local6 * 0.01); _local7 = ((_local14 * _local4) / backgroundImageWidth); _local8 = ((_local14 * _local5) / backgroundImageHeight); }; backgroundImage.scaleX = _local7; backgroundImage.scaleY = _local8; var _local9:Number = Math.round((0.5 * (_local4 - (backgroundImageWidth * _local7)))); var _local10:Number = Math.round((0.5 * (_local5 - (backgroundImageHeight * _local8)))); backgroundImage.x = _local2.left; backgroundImage.y = _local2.top; var _local11:Shape = Shape(backgroundImage.mask); _local11.x = _local2.left; _local11.y = _local2.top; if (((_local3) && ((_local1 is IContainer)))){ _local9 = (_local9 - IContainer(_local1).horizontalScrollPosition); _local10 = (_local10 - IContainer(_local1).verticalScrollPosition); }; backgroundImage.alpha = getStyle("backgroundAlpha"); backgroundImage.x = (backgroundImage.x + _local9); backgroundImage.y = (backgroundImage.y + _local10); var _local12:Number = ((width - _local2.left) - _local2.right); var _local13:Number = ((height - _local2.top) - _local2.bottom); if (((!((_local11.width == _local12))) || (!((_local11.height == _local13))))){ _local15 = _local11.graphics; _local15.clear(); _local15.beginFill(0xFFFFFF); _local15.drawRect(0, 0, _local12, _local13); _local15.endFill(); }; } public function set backgroundImageBounds(_arg1:Rectangle):void{ _backgroundImageBounds = _arg1; invalidateDisplayList(); } private function getBackgroundSize():Number{ var _local3:int; var _local1:Number = NaN; var _local2:Object = getStyle("backgroundSize"); if (((_local2) && ((_local2 is String)))){ _local3 = _local2.indexOf("%"); if (_local3 != -1){ _local1 = Number(_local2.substr(0, _local3)); }; }; return (_local1); } private function removedHandler(_arg1:Event):void{ var _local2:IChildList; if (backgroundImage){ _local2 = ((parent is IRawChildrenContainer)) ? IRawChildrenContainer(parent).rawChildren : IChildList(parent); _local2.removeChild(backgroundImage.mask); _local2.removeChild(backgroundImage); backgroundImage = null; }; } private function initBackgroundImage(_arg1:DisplayObject):void{ backgroundImage = _arg1; if ((_arg1 is Loader)){ backgroundImageWidth = Loader(_arg1).contentLoaderInfo.width; backgroundImageHeight = Loader(_arg1).contentLoaderInfo.height; } else { backgroundImageWidth = backgroundImage.width; backgroundImageHeight = backgroundImage.height; if ((_arg1 is ISimpleStyleClient)){ ISimpleStyleClient(_arg1).styleName = styleName; }; }; var _local2:IChildList = ((parent is IRawChildrenContainer)) ? IRawChildrenContainer(parent).rawChildren : IChildList(parent); var _local3:Shape = new FlexShape(); _local3.name = "backgroundMask"; _local3.x = 0; _local3.y = 0; _local2.addChild(_local3); var _local4:int = _local2.getChildIndex(this); _local2.addChildAt(backgroundImage, (_local4 + 1)); backgroundImage.mask = _local3; } public function get backgroundImageBounds():Rectangle{ return (_backgroundImageBounds); } public function get hasBackgroundImage():Boolean{ return (!((backgroundImage == null))); } private function completeEventHandler(_arg1:Event):void{ if (!parent){ return; }; var _local2:DisplayObject = DisplayObject(LoaderInfo(_arg1.target).loader); initBackgroundImage(_local2); layoutBackgroundImage(); dispatchEvent(_arg1.clone()); } override protected function updateDisplayList(_arg1:Number, _arg2:Number):void{ var cls:Class; var newStyleObj:DisplayObject; var loader:Loader; var loaderContext:LoaderContext; var message:String; var unscaledWidth = _arg1; var unscaledHeight = _arg2; if (!parent){ return; }; var newStyle:Object = getStyle("backgroundImage"); if (newStyle != backgroundImageStyle){ removedHandler(null); backgroundImageStyle = newStyle; if (((newStyle) && ((newStyle as Class)))){ cls = Class(newStyle); initBackgroundImage(new (cls)); } else { if (((newStyle) && ((newStyle is String)))){ try { cls = Class(getDefinitionByName(String(newStyle))); } catch(e:Error) { }; if (cls){ newStyleObj = new (cls); initBackgroundImage(newStyleObj); } else { loader = new FlexLoader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeEventHandler); loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, errorEventHandler); loader.contentLoaderInfo.addEventListener(ErrorEvent.ERROR, errorEventHandler); loaderContext = new LoaderContext(); loaderContext.applicationDomain = new ApplicationDomain(ApplicationDomain.currentDomain); loader.load(new URLRequest(String(newStyle)), loaderContext); }; } else { if (newStyle){ message = resourceManager.getString("skins", "notLoaded", [newStyle]); throw (new Error(message)); }; }; }; }; if (backgroundImage){ layoutBackgroundImage(); }; } private function errorEventHandler(_arg1:Event):void{ } } }//package mx.skins
Section 73
//CSSStyleDeclaration (mx.styles.CSSStyleDeclaration) package mx.styles { import flash.events.*; import mx.core.*; import flash.display.*; import flash.utils.*; import mx.managers.*; public class CSSStyleDeclaration extends EventDispatcher { mx_internal var effects:Array; protected var overrides:Object; public var defaultFactory:Function; public var factory:Function; mx_internal var selectorRefCount:int;// = 0 private var styleManager:IStyleManager2; private var clones:Dictionary; mx_internal static const VERSION:String = "3.3.0.4852"; private static const NOT_A_COLOR:uint = 4294967295; private static const FILTERMAP_PROP:String = "__reserved__filterMap"; public function CSSStyleDeclaration(_arg1:String=null){ clones = new Dictionary(true); super(); if (_arg1){ styleManager = (Singleton.getInstance("mx.styles::IStyleManager2") as IStyleManager2); styleManager.setStyleDeclaration(_arg1, this, false); }; } mx_internal function addStyleToProtoChain(_arg1:Object, _arg2:DisplayObject, _arg3:Object=null):Object{ var p:String; var emptyObjectFactory:Function; var filteredChain:Object; var filterObjectFactory:Function; var i:String; var chain = _arg1; var target = _arg2; var filterMap = _arg3; var nodeAddedToChain:Boolean; var originalChain:Object = chain; if (filterMap){ chain = {}; }; if (defaultFactory != null){ defaultFactory.prototype = chain; chain = new defaultFactory(); nodeAddedToChain = true; }; if (factory != null){ factory.prototype = chain; chain = new factory(); nodeAddedToChain = true; }; if (overrides){ if ((((defaultFactory == null)) && ((factory == null)))){ emptyObjectFactory = function ():void{ }; emptyObjectFactory.prototype = chain; chain = new (emptyObjectFactory); nodeAddedToChain = true; }; for (p in overrides) { if (overrides[p] === undefined){ delete chain[p]; } else { chain[p] = overrides[p]; }; }; }; if (filterMap){ if (nodeAddedToChain){ filteredChain = {}; filterObjectFactory = function ():void{ }; filterObjectFactory.prototype = originalChain; filteredChain = new (filterObjectFactory); for (i in chain) { if (filterMap[i] != null){ filteredChain[filterMap[i]] = chain[i]; }; }; chain = filteredChain; chain[FILTERMAP_PROP] = filterMap; } else { chain = originalChain; }; }; if (nodeAddedToChain){ clones[chain] = 1; }; return (chain); } public function getStyle(_arg1:String){ var _local2:*; var _local3:*; if (overrides){ if ((((_arg1 in overrides)) && ((overrides[_arg1] === undefined)))){ return (undefined); }; _local3 = overrides[_arg1]; if (_local3 !== undefined){ return (_local3); }; }; if (factory != null){ factory.prototype = {}; _local2 = new factory(); _local3 = _local2[_arg1]; if (_local3 !== undefined){ return (_local3); }; }; if (defaultFactory != null){ defaultFactory.prototype = {}; _local2 = new defaultFactory(); _local3 = _local2[_arg1]; if (_local3 !== undefined){ return (_local3); }; }; return (undefined); } public function clearStyle(_arg1:String):void{ setStyle(_arg1, undefined); } public function setStyle(_arg1:String, _arg2):void{ var _local7:int; var _local8:Object; var _local3:Object = getStyle(_arg1); var _local4:Boolean; if ((((((((((selectorRefCount > 0)) && ((factory == null)))) && ((defaultFactory == null)))) && (!(overrides)))) && (!((_local3 === _arg2))))){ _local4 = true; }; if (_arg2 !== undefined){ setStyle(_arg1, _arg2); } else { if (_arg2 == _local3){ return; }; setStyle(_arg1, _arg2); }; var _local5:Array = SystemManagerGlobals.topLevelSystemManagers; var _local6:int = _local5.length; if (_local4){ _local7 = 0; while (_local7 < _local6) { _local8 = _local5[_local7]; _local8.regenerateStyleCache(true); _local7++; }; }; _local7 = 0; while (_local7 < _local6) { _local8 = _local5[_local7]; _local8.notifyStyleChangeInChildren(_arg1, true); _local7++; }; } private function clearStyleAttr(_arg1:String):void{ var _local2:*; if (!overrides){ overrides = {}; }; overrides[_arg1] = undefined; for (_local2 in clones) { delete _local2[_arg1]; }; } mx_internal function createProtoChainRoot():Object{ var _local1:Object = {}; if (defaultFactory != null){ defaultFactory.prototype = _local1; _local1 = new defaultFactory(); }; if (factory != null){ factory.prototype = _local1; _local1 = new factory(); }; clones[_local1] = 1; return (_local1); } mx_internal function clearOverride(_arg1:String):void{ if (((overrides) && (overrides[_arg1]))){ delete overrides[_arg1]; }; } mx_internal function setStyle(_arg1:String, _arg2):void{ var _local3:Object; var _local4:*; var _local5:Number; var _local6:Object; if (_arg2 === undefined){ clearStyleAttr(_arg1); return; }; if ((_arg2 is String)){ if (!styleManager){ styleManager = (Singleton.getInstance("mx.styles::IStyleManager2") as IStyleManager2); }; _local5 = styleManager.getColorName(_arg2); if (_local5 != NOT_A_COLOR){ _arg2 = _local5; }; }; if (defaultFactory != null){ _local3 = new defaultFactory(); if (_local3[_arg1] !== _arg2){ if (!overrides){ overrides = {}; }; overrides[_arg1] = _arg2; } else { if (overrides){ delete overrides[_arg1]; }; }; }; if (factory != null){ _local3 = new factory(); if (_local3[_arg1] !== _arg2){ if (!overrides){ overrides = {}; }; overrides[_arg1] = _arg2; } else { if (overrides){ delete overrides[_arg1]; }; }; }; if ((((defaultFactory == null)) && ((factory == null)))){ if (!overrides){ overrides = {}; }; overrides[_arg1] = _arg2; }; for (_local4 in clones) { _local6 = _local4[FILTERMAP_PROP]; if (_local6){ if (_local6[_arg1] != null){ _local4[_local6[_arg1]] = _arg2; }; } else { _local4[_arg1] = _arg2; }; }; } } }//package mx.styles
Section 74
//ISimpleStyleClient (mx.styles.ISimpleStyleClient) package mx.styles { public interface ISimpleStyleClient { function set styleName(_arg1:Object):void; function styleChanged(_arg1:String):void; function get styleName():Object; } }//package mx.styles
Section 75
//IStyleClient (mx.styles.IStyleClient) package mx.styles { public interface IStyleClient extends ISimpleStyleClient { function regenerateStyleCache(_arg1:Boolean):void; function get className():String; function clearStyle(_arg1:String):void; function getClassStyleDeclarations():Array; function get inheritingStyles():Object; function set nonInheritingStyles(_arg1:Object):void; function setStyle(_arg1:String, _arg2):void; function get styleDeclaration():CSSStyleDeclaration; function set styleDeclaration(_arg1:CSSStyleDeclaration):void; function get nonInheritingStyles():Object; function set inheritingStyles(_arg1:Object):void; function getStyle(_arg1:String); function notifyStyleChangeInChildren(_arg1:String, _arg2:Boolean):void; function registerEffects(_arg1:Array):void; } }//package mx.styles
Section 76
//IStyleManager (mx.styles.IStyleManager) package mx.styles { import flash.events.*; public interface IStyleManager { function isColorName(_arg1:String):Boolean; function registerParentDisplayListInvalidatingStyle(_arg1:String):void; function registerInheritingStyle(_arg1:String):void; function set stylesRoot(_arg1:Object):void; function get typeSelectorCache():Object; function styleDeclarationsChanged():void; function setStyleDeclaration(_arg1:String, _arg2:CSSStyleDeclaration, _arg3:Boolean):void; function isParentDisplayListInvalidatingStyle(_arg1:String):Boolean; function isSizeInvalidatingStyle(_arg1:String):Boolean; function get inheritingStyles():Object; function isValidStyleValue(_arg1):Boolean; function isParentSizeInvalidatingStyle(_arg1:String):Boolean; function getColorName(_arg1:Object):uint; function set typeSelectorCache(_arg1:Object):void; function unloadStyleDeclarations(_arg1:String, _arg2:Boolean=true):void; function getColorNames(_arg1:Array):void; function loadStyleDeclarations(_arg1:String, _arg2:Boolean=true, _arg3:Boolean=false):IEventDispatcher; function isInheritingStyle(_arg1:String):Boolean; function set inheritingStyles(_arg1:Object):void; function get stylesRoot():Object; function initProtoChainRoots():void; function registerColorName(_arg1:String, _arg2:uint):void; function registerParentSizeInvalidatingStyle(_arg1:String):void; function registerSizeInvalidatingStyle(_arg1:String):void; function clearStyleDeclaration(_arg1:String, _arg2:Boolean):void; function isInheritingTextFormatStyle(_arg1:String):Boolean; function getStyleDeclaration(_arg1:String):CSSStyleDeclaration; } }//package mx.styles
Section 77
//IStyleManager2 (mx.styles.IStyleManager2) package mx.styles { import flash.events.*; import flash.system.*; public interface IStyleManager2 extends IStyleManager { function get selectors():Array; function loadStyleDeclarations2(_arg1:String, _arg2:Boolean=true, _arg3:ApplicationDomain=null, _arg4:SecurityDomain=null):IEventDispatcher; } }//package mx.styles
Section 78
//IStyleModule (mx.styles.IStyleModule) package mx.styles { public interface IStyleModule { function unload():void; } }//package mx.styles
Section 79
//StyleManager (mx.styles.StyleManager) package mx.styles { import flash.events.*; import mx.core.*; import flash.system.*; public class StyleManager { mx_internal static const VERSION:String = "3.3.0.4852"; public static const NOT_A_COLOR:uint = 4294967295; private static var _impl:IStyleManager2; private static var implClassDependency:StyleManagerImpl; public static function isParentSizeInvalidatingStyle(_arg1:String):Boolean{ return (impl.isParentSizeInvalidatingStyle(_arg1)); } public static function registerInheritingStyle(_arg1:String):void{ impl.registerInheritingStyle(_arg1); } mx_internal static function set stylesRoot(_arg1:Object):void{ impl.stylesRoot = _arg1; } mx_internal static function get inheritingStyles():Object{ return (impl.inheritingStyles); } mx_internal static function styleDeclarationsChanged():void{ impl.styleDeclarationsChanged(); } public static function setStyleDeclaration(_arg1:String, _arg2:CSSStyleDeclaration, _arg3:Boolean):void{ impl.setStyleDeclaration(_arg1, _arg2, _arg3); } public static function registerParentDisplayListInvalidatingStyle(_arg1:String):void{ impl.registerParentDisplayListInvalidatingStyle(_arg1); } mx_internal static function get typeSelectorCache():Object{ return (impl.typeSelectorCache); } mx_internal static function set inheritingStyles(_arg1:Object):void{ impl.inheritingStyles = _arg1; } public static function isColorName(_arg1:String):Boolean{ return (impl.isColorName(_arg1)); } public static function isParentDisplayListInvalidatingStyle(_arg1:String):Boolean{ return (impl.isParentDisplayListInvalidatingStyle(_arg1)); } public static function isSizeInvalidatingStyle(_arg1:String):Boolean{ return (impl.isSizeInvalidatingStyle(_arg1)); } public static function getColorName(_arg1:Object):uint{ return (impl.getColorName(_arg1)); } mx_internal static function set typeSelectorCache(_arg1:Object):void{ impl.typeSelectorCache = _arg1; } public static function unloadStyleDeclarations(_arg1:String, _arg2:Boolean=true):void{ impl.unloadStyleDeclarations(_arg1, _arg2); } public static function getColorNames(_arg1:Array):void{ impl.getColorNames(_arg1); } public static function loadStyleDeclarations(_arg1:String, _arg2:Boolean=true, _arg3:Boolean=false, _arg4:ApplicationDomain=null, _arg5:SecurityDomain=null):IEventDispatcher{ return (impl.loadStyleDeclarations2(_arg1, _arg2, _arg4, _arg5)); } private static function get impl():IStyleManager2{ if (!_impl){ _impl = IStyleManager2(Singleton.getInstance("mx.styles::IStyleManager2")); }; return (_impl); } public static function isValidStyleValue(_arg1):Boolean{ return (impl.isValidStyleValue(_arg1)); } mx_internal static function get stylesRoot():Object{ return (impl.stylesRoot); } public static function isInheritingStyle(_arg1:String):Boolean{ return (impl.isInheritingStyle(_arg1)); } mx_internal static function initProtoChainRoots():void{ impl.initProtoChainRoots(); } public static function registerParentSizeInvalidatingStyle(_arg1:String):void{ impl.registerParentSizeInvalidatingStyle(_arg1); } public static function get selectors():Array{ return (impl.selectors); } public static function registerSizeInvalidatingStyle(_arg1:String):void{ impl.registerSizeInvalidatingStyle(_arg1); } public static function clearStyleDeclaration(_arg1:String, _arg2:Boolean):void{ impl.clearStyleDeclaration(_arg1, _arg2); } public static function registerColorName(_arg1:String, _arg2:uint):void{ impl.registerColorName(_arg1, _arg2); } public static function isInheritingTextFormatStyle(_arg1:String):Boolean{ return (impl.isInheritingTextFormatStyle(_arg1)); } public static function getStyleDeclaration(_arg1:String):CSSStyleDeclaration{ return (impl.getStyleDeclaration(_arg1)); } } }//package mx.styles
Section 80
//StyleManagerImpl (mx.styles.StyleManagerImpl) package mx.styles { import flash.events.*; import mx.core.*; import flash.system.*; import flash.utils.*; import mx.modules.*; import mx.events.*; import mx.resources.*; import mx.managers.*; public class StyleManagerImpl implements IStyleManager2 { private var _stylesRoot:Object; private var _selectors:Object; private var styleModules:Object; private var _inheritingStyles:Object; private var resourceManager:IResourceManager; private var _typeSelectorCache:Object; mx_internal static const VERSION:String = "3.3.0.4852"; private static var parentSizeInvalidatingStyles:Object = {bottom:true, horizontalCenter:true, left:true, right:true, top:true, verticalCenter:true, baseline:true}; private static var colorNames:Object = {transparent:"transparent", black:0, blue:0xFF, green:0x8000, gray:0x808080, silver:0xC0C0C0, lime:0xFF00, olive:0x808000, white:0xFFFFFF, yellow:0xFFFF00, maroon:0x800000, navy:128, red:0xFF0000, purple:0x800080, teal:0x8080, fuchsia:0xFF00FF, aqua:0xFFFF, magenta:0xFF00FF, cyan:0xFFFF, halogreen:8453965, haloblue:40447, haloorange:0xFFB600, halosilver:11455193}; private static var inheritingTextFormatStyles:Object = {align:true, bold:true, color:true, font:true, indent:true, italic:true, size:true}; private static var instance:IStyleManager2; private static var parentDisplayListInvalidatingStyles:Object = {bottom:true, horizontalCenter:true, left:true, right:true, top:true, verticalCenter:true, baseline:true}; private static var sizeInvalidatingStyles:Object = {borderStyle:true, borderThickness:true, fontAntiAliasType:true, fontFamily:true, fontGridFitType:true, fontSharpness:true, fontSize:true, fontStyle:true, fontThickness:true, fontWeight:true, headerHeight:true, horizontalAlign:true, horizontalGap:true, kerning:true, leading:true, letterSpacing:true, paddingBottom:true, paddingLeft:true, paddingRight:true, paddingTop:true, strokeWidth:true, tabHeight:true, tabWidth:true, verticalAlign:true, verticalGap:true}; public function StyleManagerImpl(){ _selectors = {}; styleModules = {}; resourceManager = ResourceManager.getInstance(); _inheritingStyles = {}; _typeSelectorCache = {}; super(); } public function setStyleDeclaration(_arg1:String, _arg2:CSSStyleDeclaration, _arg3:Boolean):void{ _arg2.selectorRefCount++; _selectors[_arg1] = _arg2; typeSelectorCache = {}; if (_arg3){ styleDeclarationsChanged(); }; } public function registerParentDisplayListInvalidatingStyle(_arg1:String):void{ parentDisplayListInvalidatingStyles[_arg1] = true; } public function getStyleDeclaration(_arg1:String):CSSStyleDeclaration{ var _local2:int; if (_arg1.charAt(0) != "."){ _local2 = _arg1.lastIndexOf("."); if (_local2 != -1){ _arg1 = _arg1.substr((_local2 + 1)); }; }; return (_selectors[_arg1]); } public function set typeSelectorCache(_arg1:Object):void{ _typeSelectorCache = _arg1; } public function isColorName(_arg1:String):Boolean{ return (!((colorNames[_arg1.toLowerCase()] === undefined))); } public function set inheritingStyles(_arg1:Object):void{ _inheritingStyles = _arg1; } public function getColorNames(_arg1:Array):void{ var _local4:uint; if (!_arg1){ return; }; var _local2:int = _arg1.length; var _local3:int; while (_local3 < _local2) { if (((!((_arg1[_local3] == null))) && (isNaN(_arg1[_local3])))){ _local4 = getColorName(_arg1[_local3]); if (_local4 != StyleManager.NOT_A_COLOR){ _arg1[_local3] = _local4; }; }; _local3++; }; } public function isInheritingTextFormatStyle(_arg1:String):Boolean{ return ((inheritingTextFormatStyles[_arg1] == true)); } public function registerParentSizeInvalidatingStyle(_arg1:String):void{ parentSizeInvalidatingStyles[_arg1] = true; } public function registerColorName(_arg1:String, _arg2:uint):void{ colorNames[_arg1.toLowerCase()] = _arg2; } public function isParentSizeInvalidatingStyle(_arg1:String):Boolean{ return ((parentSizeInvalidatingStyles[_arg1] == true)); } public function registerInheritingStyle(_arg1:String):void{ inheritingStyles[_arg1] = true; } public function set stylesRoot(_arg1:Object):void{ _stylesRoot = _arg1; } public function get typeSelectorCache():Object{ return (_typeSelectorCache); } public function isParentDisplayListInvalidatingStyle(_arg1:String):Boolean{ return ((parentDisplayListInvalidatingStyles[_arg1] == true)); } public function isSizeInvalidatingStyle(_arg1:String):Boolean{ return ((sizeInvalidatingStyles[_arg1] == true)); } public function styleDeclarationsChanged():void{ var _local4:Object; var _local1:Array = SystemManagerGlobals.topLevelSystemManagers; var _local2:int = _local1.length; var _local3:int; while (_local3 < _local2) { _local4 = _local1[_local3]; _local4.regenerateStyleCache(true); _local4.notifyStyleChangeInChildren(null, true); _local3++; }; } public function isValidStyleValue(_arg1):Boolean{ return (!((_arg1 === undefined))); } public function loadStyleDeclarations(_arg1:String, _arg2:Boolean=true, _arg3:Boolean=false):IEventDispatcher{ return (loadStyleDeclarations2(_arg1, _arg2)); } public function get inheritingStyles():Object{ return (_inheritingStyles); } public function unloadStyleDeclarations(_arg1:String, _arg2:Boolean=true):void{ var _local4:IModuleInfo; var _local3:StyleModuleInfo = styleModules[_arg1]; if (_local3){ _local3.styleModule.unload(); _local4 = _local3.module; _local4.unload(); _local4.removeEventListener(ModuleEvent.READY, _local3.readyHandler); _local4.removeEventListener(ModuleEvent.ERROR, _local3.errorHandler); styleModules[_arg1] = null; }; if (_arg2){ styleDeclarationsChanged(); }; } public function getColorName(_arg1:Object):uint{ var _local2:Number; var _local3:*; if ((_arg1 is String)){ if (_arg1.charAt(0) == "#"){ _local2 = Number(("0x" + _arg1.slice(1))); return ((isNaN(_local2)) ? StyleManager.NOT_A_COLOR : uint(_local2)); }; if ((((_arg1.charAt(1) == "x")) && ((_arg1.charAt(0) == "0")))){ _local2 = Number(_arg1); return ((isNaN(_local2)) ? StyleManager.NOT_A_COLOR : uint(_local2)); }; _local3 = colorNames[_arg1.toLowerCase()]; if (_local3 === undefined){ return (StyleManager.NOT_A_COLOR); }; return (uint(_local3)); }; return (uint(_arg1)); } public function isInheritingStyle(_arg1:String):Boolean{ return ((inheritingStyles[_arg1] == true)); } public function get stylesRoot():Object{ return (_stylesRoot); } public function initProtoChainRoots():void{ if (FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0){ delete _inheritingStyles["textDecoration"]; delete _inheritingStyles["leading"]; }; if (!stylesRoot){ stylesRoot = _selectors["global"].addStyleToProtoChain({}, null); }; } public function loadStyleDeclarations2(_arg1:String, _arg2:Boolean=true, _arg3:ApplicationDomain=null, _arg4:SecurityDomain=null):IEventDispatcher{ var module:IModuleInfo; var styleEventDispatcher:StyleEventDispatcher; var timer:Timer; var timerHandler:Function; var url = _arg1; var update = _arg2; var applicationDomain = _arg3; var securityDomain = _arg4; module = ModuleManager.getModule(url); var readyHandler:Function = function (_arg1:ModuleEvent):void{ var _local2:IStyleModule = IStyleModule(_arg1.module.factory.create()); styleModules[_arg1.module.url].styleModule = _local2; if (update){ styleDeclarationsChanged(); }; }; module.addEventListener(ModuleEvent.READY, readyHandler, false, 0, true); styleEventDispatcher = new StyleEventDispatcher(module); var errorHandler:Function = function (_arg1:ModuleEvent):void{ var _local3:StyleEvent; var _local2:String = resourceManager.getString("styles", "unableToLoad", [_arg1.errorText, url]); if (styleEventDispatcher.willTrigger(StyleEvent.ERROR)){ _local3 = new StyleEvent(StyleEvent.ERROR, _arg1.bubbles, _arg1.cancelable); _local3.bytesLoaded = 0; _local3.bytesTotal = 0; _local3.errorText = _local2; styleEventDispatcher.dispatchEvent(_local3); } else { throw (new Error(_local2)); }; }; module.addEventListener(ModuleEvent.ERROR, errorHandler, false, 0, true); styleModules[url] = new StyleModuleInfo(module, readyHandler, errorHandler); timer = new Timer(0); timerHandler = function (_arg1:TimerEvent):void{ timer.removeEventListener(TimerEvent.TIMER, timerHandler); timer.stop(); module.load(applicationDomain, securityDomain); }; timer.addEventListener(TimerEvent.TIMER, timerHandler, false, 0, true); timer.start(); return (styleEventDispatcher); } public function registerSizeInvalidatingStyle(_arg1:String):void{ sizeInvalidatingStyles[_arg1] = true; } public function clearStyleDeclaration(_arg1:String, _arg2:Boolean):void{ var _local3:CSSStyleDeclaration = getStyleDeclaration(_arg1); if (((_local3) && ((_local3.selectorRefCount > 0)))){ _local3.selectorRefCount--; }; delete _selectors[_arg1]; if (_arg2){ styleDeclarationsChanged(); }; } public function get selectors():Array{ var _local2:String; var _local1:Array = []; for (_local2 in _selectors) { _local1.push(_local2); }; return (_local1); } public static function getInstance():IStyleManager2{ if (!instance){ instance = new (StyleManagerImpl); }; return (instance); } } }//package mx.styles import flash.events.*; import mx.modules.*; import mx.events.*; class StyleEventDispatcher extends EventDispatcher { private function StyleEventDispatcher(_arg1:IModuleInfo){ _arg1.addEventListener(ModuleEvent.ERROR, moduleInfo_errorHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.PROGRESS, moduleInfo_progressHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.READY, moduleInfo_readyHandler, false, 0, true); } private function moduleInfo_progressHandler(_arg1:ModuleEvent):void{ var _local2:StyleEvent = new StyleEvent(StyleEvent.PROGRESS, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = _arg1.bytesLoaded; _local2.bytesTotal = _arg1.bytesTotal; dispatchEvent(_local2); } private function moduleInfo_readyHandler(_arg1:ModuleEvent):void{ var _local2:StyleEvent = new StyleEvent(StyleEvent.COMPLETE); dispatchEvent(_local2); } private function moduleInfo_errorHandler(_arg1:ModuleEvent):void{ var _local2:StyleEvent = new StyleEvent(StyleEvent.ERROR, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = _arg1.bytesLoaded; _local2.bytesTotal = _arg1.bytesTotal; _local2.errorText = _arg1.errorText; dispatchEvent(_local2); } } class StyleModuleInfo { public var errorHandler:Function; public var readyHandler:Function; public var module:IModuleInfo; public var styleModule:IStyleModule; private function StyleModuleInfo(_arg1:IModuleInfo, _arg2:Function, _arg3:Function){ this.module = _arg1; this.readyHandler = _arg2; this.errorHandler = _arg3; } }
Section 81
//ColorUtil (mx.utils.ColorUtil) package mx.utils { import mx.core.*; public class ColorUtil { mx_internal static const VERSION:String = "3.3.0.4852"; public static function adjustBrightness2(_arg1:uint, _arg2:Number):uint{ var _local3:Number; var _local4:Number; var _local5:Number; if (_arg2 == 0){ return (_arg1); }; if (_arg2 < 0){ _arg2 = ((100 + _arg2) / 100); _local3 = (((_arg1 >> 16) & 0xFF) * _arg2); _local4 = (((_arg1 >> 8) & 0xFF) * _arg2); _local5 = ((_arg1 & 0xFF) * _arg2); } else { _arg2 = (_arg2 / 100); _local3 = ((_arg1 >> 16) & 0xFF); _local4 = ((_arg1 >> 8) & 0xFF); _local5 = (_arg1 & 0xFF); _local3 = (_local3 + ((0xFF - _local3) * _arg2)); _local4 = (_local4 + ((0xFF - _local4) * _arg2)); _local5 = (_local5 + ((0xFF - _local5) * _arg2)); _local3 = Math.min(_local3, 0xFF); _local4 = Math.min(_local4, 0xFF); _local5 = Math.min(_local5, 0xFF); }; return ((((_local3 << 16) | (_local4 << 8)) | _local5)); } public static function rgbMultiply(_arg1:uint, _arg2:uint):uint{ var _local3:Number = ((_arg1 >> 16) & 0xFF); var _local4:Number = ((_arg1 >> 8) & 0xFF); var _local5:Number = (_arg1 & 0xFF); var _local6:Number = ((_arg2 >> 16) & 0xFF); var _local7:Number = ((_arg2 >> 8) & 0xFF); var _local8:Number = (_arg2 & 0xFF); return ((((((_local3 * _local6) / 0xFF) << 16) | (((_local4 * _local7) / 0xFF) << 8)) | ((_local5 * _local8) / 0xFF))); } public static function adjustBrightness(_arg1:uint, _arg2:Number):uint{ var _local3:Number = Math.max(Math.min((((_arg1 >> 16) & 0xFF) + _arg2), 0xFF), 0); var _local4:Number = Math.max(Math.min((((_arg1 >> 8) & 0xFF) + _arg2), 0xFF), 0); var _local5:Number = Math.max(Math.min(((_arg1 & 0xFF) + _arg2), 0xFF), 0); return ((((_local3 << 16) | (_local4 << 8)) | _local5)); } } }//package mx.utils
Section 82
//GraphicsUtil (mx.utils.GraphicsUtil) package mx.utils { import mx.core.*; import flash.display.*; public class GraphicsUtil { mx_internal static const VERSION:String = "3.3.0.4852"; public static function drawRoundRectComplex(_arg1:Graphics, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number, _arg8:Number, _arg9:Number):void{ var _local10:Number = (_arg2 + _arg4); var _local11:Number = (_arg3 + _arg5); var _local12:Number = ((_arg4 < _arg5)) ? (_arg4 * 2) : (_arg5 * 2); _arg6 = ((_arg6 < _local12)) ? _arg6 : _local12; _arg7 = ((_arg7 < _local12)) ? _arg7 : _local12; _arg8 = ((_arg8 < _local12)) ? _arg8 : _local12; _arg9 = ((_arg9 < _local12)) ? _arg9 : _local12; var _local13:Number = (_arg9 * 0.292893218813453); var _local14:Number = (_arg9 * 0.585786437626905); _arg1.moveTo(_local10, (_local11 - _arg9)); _arg1.curveTo(_local10, (_local11 - _local14), (_local10 - _local13), (_local11 - _local13)); _arg1.curveTo((_local10 - _local14), _local11, (_local10 - _arg9), _local11); _local13 = (_arg8 * 0.292893218813453); _local14 = (_arg8 * 0.585786437626905); _arg1.lineTo((_arg2 + _arg8), _local11); _arg1.curveTo((_arg2 + _local14), _local11, (_arg2 + _local13), (_local11 - _local13)); _arg1.curveTo(_arg2, (_local11 - _local14), _arg2, (_local11 - _arg8)); _local13 = (_arg6 * 0.292893218813453); _local14 = (_arg6 * 0.585786437626905); _arg1.lineTo(_arg2, (_arg3 + _arg6)); _arg1.curveTo(_arg2, (_arg3 + _local14), (_arg2 + _local13), (_arg3 + _local13)); _arg1.curveTo((_arg2 + _local14), _arg3, (_arg2 + _arg6), _arg3); _local13 = (_arg7 * 0.292893218813453); _local14 = (_arg7 * 0.585786437626905); _arg1.lineTo((_local10 - _arg7), _arg3); _arg1.curveTo((_local10 - _local14), _arg3, (_local10 - _local13), (_arg3 + _local13)); _arg1.curveTo(_local10, (_arg3 + _local14), _local10, (_arg3 + _arg7)); _arg1.lineTo(_local10, (_local11 - _arg9)); } } }//package mx.utils
Section 83
//NameUtil (mx.utils.NameUtil) package mx.utils { import mx.core.*; import flash.display.*; import flash.utils.*; public class NameUtil { mx_internal static const VERSION:String = "3.3.0.4852"; private static var counter:int = 0; public static function displayObjectToString(_arg1:DisplayObject):String{ var result:String; var o:DisplayObject; var s:String; var indices:Array; var displayObject = _arg1; try { o = displayObject; while (o != null) { if (((((o.parent) && (o.stage))) && ((o.parent == o.stage)))){ break; }; s = o.name; if ((o is IRepeaterClient)){ indices = IRepeaterClient(o).instanceIndices; if (indices){ s = (s + (("[" + indices.join("][")) + "]")); }; }; result = ((result == null)) ? s : ((s + ".") + result); o = o.parent; }; } catch(e:SecurityError) { }; return (result); } public static function createUniqueName(_arg1:Object):String{ if (!_arg1){ return (null); }; var _local2:String = getQualifiedClassName(_arg1); var _local3:int = _local2.indexOf("::"); if (_local3 != -1){ _local2 = _local2.substr((_local3 + 2)); }; var _local4:int = _local2.charCodeAt((_local2.length - 1)); if ((((_local4 >= 48)) && ((_local4 <= 57)))){ _local2 = (_local2 + "_"); }; return ((_local2 + counter++)); } } }//package mx.utils
Section 84
//StringUtil (mx.utils.StringUtil) package mx.utils { import mx.core.*; public class StringUtil { mx_internal static const VERSION:String = "3.3.0.4852"; public static function trim(_arg1:String):String{ if (_arg1 == null){ return (""); }; var _local2:int; while (isWhitespace(_arg1.charAt(_local2))) { _local2++; }; var _local3:int = (_arg1.length - 1); while (isWhitespace(_arg1.charAt(_local3))) { _local3--; }; if (_local3 >= _local2){ return (_arg1.slice(_local2, (_local3 + 1))); }; return (""); } public static function isWhitespace(_arg1:String):Boolean{ switch (_arg1){ case " ": case "\t": case "\r": case "\n": case "\f": return (true); default: return (false); }; } public static function substitute(_arg1:String, ... _args):String{ var _local4:Array; if (_arg1 == null){ return (""); }; var _local3:uint = _args.length; if ((((_local3 == 1)) && ((_args[0] is Array)))){ _local4 = (_args[0] as Array); _local3 = _local4.length; } else { _local4 = _args; }; var _local5:int; while (_local5 < _local3) { _arg1 = _arg1.replace(new RegExp((("\\{" + _local5) + "\\}"), "g"), _local4[_local5]); _local5++; }; return (_arg1); } public static function trimArrayElements(_arg1:String, _arg2:String):String{ var _local3:Array; var _local4:int; var _local5:int; if (((!((_arg1 == ""))) && (!((_arg1 == null))))){ _local3 = _arg1.split(_arg2); _local4 = _local3.length; _local5 = 0; while (_local5 < _local4) { _local3[_local5] = StringUtil.trim(_local3[_local5]); _local5++; }; if (_local4 > 0){ _arg1 = _local3.join(_arg2); }; }; return (_arg1); } } }//package mx.utils
Section 85
//_activeButtonStyleStyle (_activeButtonStyleStyle) package { import mx.core.*; import mx.styles.*; public class _activeButtonStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".activeButtonStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".activeButtonStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ }; }; } } }//package
Section 86
//_activeTabStyleStyle (_activeTabStyleStyle) package { import mx.core.*; import mx.styles.*; public class _activeTabStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".activeTabStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".activeTabStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; }; }; } } }//package
Section 87
//_alertButtonStyleStyle (_alertButtonStyleStyle) package { import mx.core.*; import mx.styles.*; public class _alertButtonStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".alertButtonStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".alertButtonStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.color = 734012; }; }; } } }//package
Section 88
//_comboDropdownStyle (_comboDropdownStyle) package { import mx.core.*; import mx.styles.*; public class _comboDropdownStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".comboDropdown"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".comboDropdown", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.shadowDirection = "center"; this.fontWeight = "normal"; this.dropShadowEnabled = true; this.leading = 0; this.backgroundColor = 0xFFFFFF; this.shadowDistance = 1; this.cornerRadius = 0; this.borderThickness = 0; this.paddingLeft = 5; this.paddingRight = 5; }; }; } } }//package
Section 89
//_dataGridStylesStyle (_dataGridStylesStyle) package { import mx.core.*; import mx.styles.*; public class _dataGridStylesStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".dataGridStyles"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".dataGridStyles", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; }; }; } } }//package
Section 90
//_dateFieldPopupStyle (_dateFieldPopupStyle) package { import mx.core.*; import mx.styles.*; public class _dateFieldPopupStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".dateFieldPopup"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".dateFieldPopup", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.dropShadowEnabled = true; this.backgroundColor = 0xFFFFFF; this.borderThickness = 0; }; }; } } }//package
Section 91
//_errorTipStyle (_errorTipStyle) package { import mx.core.*; import mx.styles.*; public class _errorTipStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".errorTip"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".errorTip", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; this.borderStyle = "errorTipRight"; this.paddingTop = 4; this.borderColor = 13510953; this.color = 0xFFFFFF; this.fontSize = 9; this.shadowColor = 0; this.paddingLeft = 4; this.paddingBottom = 4; this.paddingRight = 4; }; }; } } }//package
Section 92
//_globalStyle (_globalStyle) package { import mx.core.*; import mx.styles.*; import mx.skins.halo.*; public class _globalStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration("global"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration("global", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fillColor = 0xFFFFFF; this.kerning = false; this.iconColor = 0x111111; this.textRollOverColor = 2831164; this.horizontalAlign = "left"; this.shadowCapColor = 14015965; this.backgroundAlpha = 1; this.filled = true; this.textDecoration = "none"; this.roundedBottomCorners = true; this.fontThickness = 0; this.focusBlendMode = "normal"; this.fillColors = [0xFFFFFF, 0xCCCCCC, 0xFFFFFF, 0xEEEEEE]; this.horizontalGap = 8; this.borderCapColor = 9542041; this.buttonColor = 7305079; this.indentation = 17; this.selectionDisabledColor = 0xDDDDDD; this.closeDuration = 250; this.embedFonts = false; this.paddingTop = 0; this.letterSpacing = 0; this.focusAlpha = 0.4; this.bevel = true; this.fontSize = 10; this.shadowColor = 0xEEEEEE; this.borderAlpha = 1; this.paddingLeft = 0; this.fontWeight = "normal"; this.indicatorGap = 14; this.focusSkin = HaloFocusRect; this.dropShadowEnabled = false; this.leading = 2; this.borderSkin = HaloBorder; this.fontSharpness = 0; this.modalTransparencyDuration = 100; this.borderThickness = 1; this.backgroundSize = "auto"; this.borderStyle = "inset"; this.borderColor = 12040892; this.fontAntiAliasType = "advanced"; this.errorColor = 0xFF0000; this.shadowDistance = 2; this.horizontalGridLineColor = 0xF7F7F7; this.stroked = false; this.modalTransparencyColor = 0xDDDDDD; this.cornerRadius = 0; this.verticalAlign = "top"; this.textIndent = 0; this.fillAlphas = [0.6, 0.4, 0.75, 0.65]; this.verticalGridLineColor = 14015965; this.themeColor = 40447; this.version = "3.0.0"; this.shadowDirection = "center"; this.modalTransparency = 0.5; this.repeatInterval = 35; this.openDuration = 250; this.textAlign = "left"; this.fontFamily = "Verdana"; this.textSelectedColor = 2831164; this.paddingBottom = 0; this.strokeWidth = 1; this.fontGridFitType = "pixel"; this.horizontalGridLines = false; this.useRollOver = true; this.verticalGridLines = true; this.repeatDelay = 500; this.fontStyle = "normal"; this.dropShadowColor = 0; this.focusThickness = 2; this.verticalGap = 6; this.disabledColor = 11187123; this.paddingRight = 0; this.focusRoundedCorners = "tl tr bl br"; this.borderSides = "left top right bottom"; this.disabledIconColor = 0x999999; this.modalTransparencyBlur = 3; this.color = 734012; this.selectionDuration = 250; this.highlightAlphas = [0.3, 0]; }; }; } } }//package
Section 93
//_headerDateTextStyle (_headerDateTextStyle) package { import mx.core.*; import mx.styles.*; public class _headerDateTextStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".headerDateText"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".headerDateText", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; this.textAlign = "center"; }; }; } } }//package
Section 94
//_headerDragProxyStyleStyle (_headerDragProxyStyleStyle) package { import mx.core.*; import mx.styles.*; public class _headerDragProxyStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".headerDragProxyStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".headerDragProxyStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; }; }; } } }//package
Section 95
//_linkButtonStyleStyle (_linkButtonStyleStyle) package { import mx.core.*; import mx.styles.*; public class _linkButtonStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".linkButtonStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".linkButtonStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.paddingTop = 2; this.paddingLeft = 2; this.paddingBottom = 2; this.paddingRight = 2; }; }; } } }//package
Section 96
//_opaquePanelStyle (_opaquePanelStyle) package { import mx.core.*; import mx.styles.*; public class _opaquePanelStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".opaquePanel"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".opaquePanel", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.borderColor = 0xFFFFFF; this.backgroundColor = 0xFFFFFF; this.headerColors = [0xE7E7E7, 0xD9D9D9]; this.footerColors = [0xE7E7E7, 0xC7C7C7]; this.borderAlpha = 1; }; }; } } }//package
Section 97
//_plainStyle (_plainStyle) package { import mx.core.*; import mx.styles.*; public class _plainStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".plain"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".plain", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.paddingTop = 0; this.backgroundColor = 0xFFFFFF; this.backgroundImage = ""; this.horizontalAlign = "left"; this.paddingLeft = 0; this.paddingBottom = 0; this.paddingRight = 0; }; }; } } }//package
Section 98
//_popUpMenuStyle (_popUpMenuStyle) package { import mx.core.*; import mx.styles.*; public class _popUpMenuStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".popUpMenu"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".popUpMenu", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "normal"; this.textAlign = "left"; }; }; } } }//package
Section 99
//_richTextEditorTextAreaStyleStyle (_richTextEditorTextAreaStyleStyle) package { import mx.core.*; import mx.styles.*; public class _richTextEditorTextAreaStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".richTextEditorTextAreaStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".richTextEditorTextAreaStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ }; }; } } }//package
Section 100
//_swatchPanelTextFieldStyle (_swatchPanelTextFieldStyle) package { import mx.core.*; import mx.styles.*; public class _swatchPanelTextFieldStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".swatchPanelTextField"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".swatchPanelTextField", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.borderStyle = "inset"; this.borderColor = 14015965; this.highlightColor = 12897484; this.backgroundColor = 0xFFFFFF; this.shadowCapColor = 14015965; this.shadowColor = 14015965; this.paddingLeft = 5; this.buttonColor = 7305079; this.borderCapColor = 9542041; this.paddingRight = 5; }; }; } } }//package
Section 101
//_textAreaHScrollBarStyleStyle (_textAreaHScrollBarStyleStyle) package { import mx.core.*; import mx.styles.*; public class _textAreaHScrollBarStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".textAreaHScrollBarStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".textAreaHScrollBarStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ }; }; } } }//package
Section 102
//_textAreaVScrollBarStyleStyle (_textAreaVScrollBarStyleStyle) package { import mx.core.*; import mx.styles.*; public class _textAreaVScrollBarStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".textAreaVScrollBarStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".textAreaVScrollBarStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ }; }; } } }//package
Section 103
//_todayStyleStyle (_todayStyleStyle) package { import mx.core.*; import mx.styles.*; public class _todayStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".todayStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".todayStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.color = 0xFFFFFF; this.textAlign = "center"; }; }; } } }//package
Section 104
//_weekDayStyleStyle (_weekDayStyleStyle) package { import mx.core.*; import mx.styles.*; public class _weekDayStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".weekDayStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".weekDayStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; this.textAlign = "center"; }; }; } } }//package
Section 105
//_windowStatusStyle (_windowStatusStyle) package { import mx.core.*; import mx.styles.*; public class _windowStatusStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".windowStatus"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".windowStatus", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.color = 0x666666; }; }; } } }//package
Section 106
//_windowStylesStyle (_windowStylesStyle) package { import mx.core.*; import mx.styles.*; public class _windowStylesStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".windowStyles"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".windowStyles", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; }; }; } } }//package
Section 107
//ApiMovieClip (ApiMovieClip) package { import flash.display.*; public dynamic class ApiMovieClip extends MovieClip { public var saveBtn:SaveBtnMc; } }//package
Section 108
//baner_logo_mc (baner_logo_mc) package { import flash.display.*; public dynamic class baner_logo_mc extends MovieClip { public var btn1:SimpleButton; public var btn2:SimpleButton; public var btn3:SimpleButton; } }//package
Section 109
//ControlPanel (ControlPanel) package { import flash.events.*; import flash.display.*; import flash.net.*; public class ControlPanel extends Sprite { public const _x:int = 380; public const _y:int = 25; public var _content:ControlPanelMC; public function ControlPanel(){ _content = new ControlPanelMC(); super(); addChild(_content); _content.btnFoto.addEventListener(MouseEvent.CLICK, onFoto); _content.btnReset.addEventListener(MouseEvent.CLICK, onReset); _content.btnLogo.addEventListener(MouseEvent.CLICK, onLogo); _content.btnBack.addEventListener(MouseEvent.CLICK, onBack); _content.btnBack.visible = false; _content.btnLogo.visible = false; } private function onReset(_arg1:MouseEvent):void{ Main.d.resetAll(); _content.btnReset.visible = false; _content.btnLogo.visible = true; _content.btnLogo.x = (_content.btnReset.x - 5); _content.btnLogo.y = (_content.btnReset.y - 15); } private function onFoto(_arg1:MouseEvent):void{ Main.d.mainMc.buttons.visible = false; _content.btnBack.visible = true; _content.btnBack.x = (_content.btnReset.x + 10); _content.btnBack.y = (_content.btnReset.y - 20); _content.btnFoto.visible = false; _content.btnLogo.visible = true; _content.btnLogo.x = (_content.btnFoto.x - 40); _content.btnLogo.y = (_content.btnFoto.y - 10); _content.btnReset.visible = false; } private function onBack(_arg1:MouseEvent):void{ Main.d.mainMc.buttons.visible = true; _content.btnFoto.visible = true; _content.btnLogo.visible = false; _content.btnLogo.x = _x; _content.btnLogo.y = _y; _content.btnBack.visible = false; _content.btnReset.visible = true; } private function onLogo(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.girlgames.com/"), "_blank"); } public function hideLogoBtn():void{ if (_content.btnLogo.visible){ _content.btnLogo.visible = false; _content.btnReset.visible = true; }; } } }//package
Section 110
//ControlPanelMC (ControlPanelMC) package { import flash.display.*; public dynamic class ControlPanelMC extends MovieClip { public var btnFoto:SimpleButton; public var btnReset:SimpleButton; public var btnBack:SimpleButton; public var btnLogo:SimpleButton; } }//package
Section 111
//Dressup (Dressup) package { import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; import flash.geom.*; public class Dressup extends DressupGame { private var cp:ControlPanel; public var mainMc:MainMovie; public function Dressup(){ var _local5:DisplayObject; var _local6:Clothes; mainMc = new MainMovie(); cp = new ControlPanel(); super(760, 550); mainMc.scrollRect = new Rectangle(0, 0, 760, 550); addChild(mainMc); addEventListener(Event.ADDED_TO_STAGE, onAddedToStage); addChild(cp); skipClip(mainMc.mc.girl); skipClip(mainMc.mc.girl2); var _local1:MovieClip = mainMc.mc; var _local2:int; while (_local2 < _local1.numChildren) { _local5 = _local1.getChildAt(_local2); if (((((((_local5.name) && ((_local5.name.indexOf("instance") < 0)))) && ((_local5 is MovieClip)))) && ((skipClips.indexOf(_local5) < 0)))){ _local6 = new Clothes((_local5 as MovieClip), this); addClothes(_local6); }; _local2++; }; var _local3:Clothes = getClothesByName("bg"); _local3.setDefaultVisibleFirstElement(); _local3.buttonMode = false; _local3.useHandCursor = false; _local3.canDisapear = false; var _local4:Clothes = getClothesByName("hair"); _local4.setDefaultVisibleFirstElement(); _local4.canDisapear = false; _local4.useHandCursor = false; _local4.buttonMode = false; _local2 = 0; while (_local2 < mainMc.buttons.numChildren) { _local5 = mainMc.buttons.getChildAt(_local2); if ((((_local5 is SimpleButton)) && ((_local5.name.indexOf("instance") < 0)))){ _local5.addEventListener(MouseEvent.CLICK, onButtonClick); }; _local2++; }; } public function resetAll():void{ var _local1:Clothes; for each (_local1 in clothes) { trace(_local1.name); if (((!((_local1.name == "hair"))) && (!((_local1.name == "bg"))))){ _local1.turnOffCurrentVisible(); }; }; } private function onButtonClick(_arg1:MouseEvent):void{ var _local4:Clothes; cp.hideLogoBtn(); var _local2:String = _arg1.target.name; if (_local2 == "dress"){ _local4 = getClothesByName("top"); _local4.turnOffCurrentVisible(); _local4 = getClothesByName("bottom"); _local4.turnOffCurrentVisible(); _local4 = getClothesByName("out"); _local4.turnOffCurrentVisible(); }; if ((((_local2 == "top")) || ((_local2 == "bottom")))){ _local4 = getClothesByName("dress"); _local4.turnOffCurrentVisible(); }; if (_local2 == "top"){ _local4 = getClothesByName("out"); _local4.turnOffCurrentVisible(); }; if (_local2 == "out"){ _local4 = getClothesByName("top"); _local4.turnOffCurrentVisible(); _local4 = getClothesByName("dress"); _local4.turnOffCurrentVisible(); }; var _local3:Clothes = getClothesByName(_arg1.target.name); _local3.setNextVisible(); } private function onAddedToStage(_arg1:Event):void{ removeEventListener(Event.ADDED_TO_STAGE, onAddedToStage); init(mainMc.mc); } } }//package
Section 112
//en_US$core_properties (en_US$core_properties) package { import mx.resources.*; public class en_US$core_properties extends ResourceBundle { public function en_US$core_properties(){ super("en_US", "core"); } override protected function getContent():Object{ var _local1:Object = {multipleChildSets_ClassAndInstance:"Multiple sets of visual children have been specified for this component (component definition and component instance).", truncationIndicator:"...", notExecuting:"Repeater is not executing.", versionAlreadyRead:"Compatibility version has already been read.", multipleChildSets_ClassAndSubclass:"Multiple sets of visual children have been specified for this component (base component definition and derived component definition).", viewSource:"View Source", badFile:"File does not exist.", stateUndefined:"Undefined state '{0}'.", versionAlreadySet:"Compatibility version has already been set."}; return (_local1); } } }//package
Section 113
//en_US$skins_properties (en_US$skins_properties) package { import mx.resources.*; public class en_US$skins_properties extends ResourceBundle { public function en_US$skins_properties(){ super("en_US", "skins"); } override protected function getContent():Object{ var _local1:Object = {notLoaded:"Unable to load '{0}'."}; return (_local1); } } }//package
Section 114
//en_US$styles_properties (en_US$styles_properties) package { import mx.resources.*; public class en_US$styles_properties extends ResourceBundle { public function en_US$styles_properties(){ super("en_US", "styles"); } override protected function getContent():Object{ var _local1:Object = {unableToLoad:"Unable to load style({0}): {1}."}; return (_local1); } } }//package
Section 115
//ErrorMessageMc (ErrorMessageMc) package { import flash.display.*; import flash.text.*; public dynamic class ErrorMessageMc extends MovieClip { public var yesBtn:SimpleButton; public var msgtxt:TextField; } }//package
Section 116
//intro (intro) package { import flash.display.*; public dynamic class intro extends MovieClip { } }//package
Section 117
//LinkBaner (LinkBaner) package { import flash.events.*; import flash.display.*; import flash.net.*; public class LinkBaner extends Sprite { private var _content:baner_logo_mc; public function LinkBaner(){ _content = new baner_logo_mc(); super(); addChild(_content); _content.x = 0; _content.y = 0; init(); } private function init():void{ _content.btn1.addEventListener(MouseEvent.CLICK, gotoGirlGames); _content.btn2.addEventListener(MouseEvent.CLICK, gotoGirlGames); _content.btn3.addEventListener(MouseEvent.CLICK, gotoGirlGamesFree); } private function gotoGirlGames(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.girlgames.com/"), "_blank"); } private function gotoGirlGamesFree(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.girlgames.com/free-girl-games/"), "_blank"); } } }//package
Section 118
//Main (Main) package { import flash.events.*; import flash.display.*; import flash.geom.*; public class Main extends Sprite { public var intr:intro; public static var d:Dressup; public function Main():void{ intr = new intro(); super(); if (stage){ init(); } else { addEventListener(Event.ADDED_TO_STAGE, init); }; } private function init(_arg1:Event=null):void{ removeEventListener(Event.ADDED_TO_STAGE, init); var _local2:LinkBaner = new LinkBaner(); addChild(_local2); _local2.y = 550; addChild(intr); intr.scrollRect = new Rectangle(0, 0, 760, 550); intr.play(); addEventListener(Event.ENTER_FRAME, onIntroCompile); } private function onIntroCompile(_arg1:Event):void{ if (intr.currentFrame == intr.totalFrames){ intr.stop(); if (this.contains(intr)){ removeChild(intr); }; d = new Dressup(); addChild(d); removeEventListener(Event.ENTER_FRAME, onIntroCompile); }; } } }//package
Section 119
//MainMovie (MainMovie) package { import flash.display.*; public dynamic class MainMovie extends MovieClip { public var buttons:MovieClip; public var mc:MovieClip; } }//package
Section 120
//McMovePointer (McMovePointer) package { import flash.display.*; public dynamic class McMovePointer extends MovieClip { } }//package
Section 121
//McResizePointer (McResizePointer) package { import flash.display.*; public dynamic class McResizePointer extends MovieClip { } }//package
Section 122
//McSelection (McSelection) package { import flash.display.*; public dynamic class McSelection extends MovieClip { public var mcBottomLeft:MovieClip; public var mcBottomRight:MovieClip; public var mcTopRight:MovieClip; public var mcTopLeft:MovieClip; public var mcRect:MovieClip; } }//package
Section 123
//Preloader (Preloader) package { import flash.events.*; import flash.display.*; import flash.net.*; import flash.utils.*; public class Preloader extends Sprite { private var mainClassFound:Boolean;// = false private var startInterval:int; private var preloader:PreloaderMC; private var tp:int;// = 0 public function Preloader(){ preloader = new PreloaderMC(); super(); if (stage){ init(); } else { addEventListener(Event.ADDED_TO_STAGE, init); }; } private function gotoGirlGames(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.girlgames.com/"), "_blank"); } private function onEnd(_arg1:Event):void{ if (preloader.anim.currentFrame == preloader.anim.totalFrames){ preloader.anim.stop(); preloader.anim.removeEventListener(Event.ENTER_FRAME, onEnd); startUp(); preloader.visible = false; removeChild(preloader); }; } private function updatePreloader(_arg1:Event):void{ var mainClass:Class; var e = _arg1; var perc:Number = Math.floor(((this.loaderInfo.bytesLoaded / this.loaderInfo.bytesTotal) * 100)); if (((((isNaN(perc)) || ((perc == Number.POSITIVE_INFINITY)))) || ((perc == Number.NEGATIVE_INFINITY)))){ perc = Math.floor(((this.stage.loaderInfo.bytesLoaded / this.stage.loaderInfo.bytesTotal) * 100)); }; if (((((isNaN(perc)) || ((perc == Number.POSITIVE_INFINITY)))) || ((perc == Number.NEGATIVE_INFINITY)))){ try { mainClass = (getDefinitionByName("Main") as Class); mainClassFound = true; } catch(e:Error) { }; } else { if (preloader.loader){ preloader.loader.barMask.scaleX = (perc / 100); }; }; if ((((perc == 100)) || (mainClassFound))){ preloader.removeEventListener(Event.ENTER_FRAME, updatePreloader); preloader.anim.visible = true; preloader.anim.play(); preloader.anim.addEventListener(Event.ENTER_FRAME, onEnd); }; } private function init(_arg1:Event=null):void{ removeEventListener(Event.ADDED_TO_STAGE, init); addChild(preloader); preloader.addEventListener(MouseEvent.MOUSE_DOWN, gotoGirlGames, false); preloader.useHandCursor = true; preloader.buttonMode = true; preloader.anim.visible = false; preloader.anim.gotoAndStop(1); preloader.addEventListener(Event.ENTER_FRAME, updatePreloader, false, 0, true); preloader.anim.addEventListener(MouseEvent.MOUSE_DOWN, gotoGirlGames, false); preloader.anim2.addEventListener(MouseEvent.MOUSE_DOWN, gotoGirlGames, false); preloader.anim.useHandCursor = true; preloader.anim2.useHandCursor = true; preloader.anim.buttonMode = true; preloader.anim2.buttonMode = true; } private function startUp():void{ var mainClass:Class; try { mainClass = (getDefinitionByName("Main") as Class); } catch(e:Error) { startInterval = setTimeout(startUp, 200); return; }; addChild((new (mainClass) as DisplayObject)); } } }//package
Section 124
//PreloaderMC (PreloaderMC) package { import flash.display.*; public dynamic class PreloaderMC extends MovieClip { public var anim2:MovieClip; public var loader:MovieClip; public var anim:MovieClip; } }//package
Section 125
//SaveBtnMc (SaveBtnMc) package { import flash.display.*; public dynamic class SaveBtnMc extends MovieClip { } }//package
Section 126
//SaveBtnWinMc (SaveBtnWinMc) package { import flash.display.*; public dynamic class SaveBtnWinMc extends MovieClip { } }//package
Section 127
//SelectScreenShotMc (SelectScreenShotMc) package { import flash.display.*; public dynamic class SelectScreenShotMc extends MovieClip { public var yesBtn:SimpleButton; public var noBtn:SimpleButton; } }//package
Section 128
//SignUpMessageMc (SignUpMessageMc) package { import flash.display.*; public dynamic class SignUpMessageMc extends MovieClip { public var yesBtn:SimpleButton; public var noBtn:SimpleButton; } }//package

Library Items

Symbol 1 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:51
Symbol 3 BitmapUsed by:4
Symbol 4 GraphicUses:3Used by:51
Symbol 5 BitmapUsed by:6
Symbol 6 GraphicUses:5Used by:51
Symbol 7 BitmapUsed by:8
Symbol 8 GraphicUses:7Used by:51
Symbol 9 BitmapUsed by:10
Symbol 10 GraphicUses:9Used by:51
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:51
Symbol 13 BitmapUsed by:14
Symbol 14 GraphicUses:13Used by:51
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:51
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:51
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:51
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:51
Symbol 23 BitmapUsed by:24
Symbol 24 GraphicUses:23Used by:51
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:51
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:51
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:51
Symbol 31 BitmapUsed by:32
Symbol 32 GraphicUses:31Used by:51
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:51
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:51
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:51
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:51
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:51
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:51
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:51
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:51
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:51
Symbol 51 MovieClipUses:2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 42 44 46 48 50Used by:143
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:143
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:143 145
Symbol 56 GraphicUsed by:143
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:143
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:59Used by:143 144
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:101
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:101
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:101
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:101
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:101
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:101
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:101
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:101
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:101
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:101
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:101
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:101
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:101
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:101
Symbol 89 BitmapUsed by:90
Symbol 90 GraphicUses:89Used by:101
Symbol 91 BitmapUsed by:92
Symbol 92 GraphicUses:91Used by:101
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:101
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:101
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:101
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:101
Symbol 101 MovieClipUses:62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98 100Used by:105
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:104
Symbol 104 MovieClipUses:103Used by:105
Symbol 105 MovieClipUses:101 104Used by:143 150
Symbol 106 GraphicUsed by:143
Symbol 107 GraphicUsed by:143
Symbol 108 GraphicUsed by:143
Symbol 109 GraphicUsed by:143
Symbol 110 GraphicUsed by:143
Symbol 111 GraphicUsed by:143
Symbol 112 GraphicUsed by:143
Symbol 113 GraphicUsed by:143
Symbol 114 GraphicUsed by:143
Symbol 115 GraphicUsed by:143
Symbol 116 GraphicUsed by:143
Symbol 117 GraphicUsed by:143
Symbol 118 GraphicUsed by:143
Symbol 119 GraphicUsed by:143
Symbol 120 GraphicUsed by:143
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121Used by:143 149
Symbol 123 GraphicUsed by:143
Symbol 124 GraphicUsed by:143
Symbol 125 GraphicUsed by:143
Symbol 126 GraphicUsed by:143
Symbol 127 GraphicUsed by:143
Symbol 128 GraphicUsed by:143
Symbol 129 GraphicUsed by:143
Symbol 130 GraphicUsed by:143
Symbol 131 GraphicUsed by:134
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:134
Symbol 134 MovieClipUses:131 133Used by:143 149
Symbol 135 GraphicUsed by:138
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:136Used by:138
Symbol 138 MovieClipUses:135 137Used by:143 149
Symbol 139 GraphicUsed by:142
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:140Used by:142
Symbol 142 MovieClipUses:139 141Used by:143 149
Symbol 143 MovieClipUses:51 53 55 56 58 60 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 122 123 124 125 126 127 128 129 130 134 138 142Used by:150
Symbol 144 MovieClipUses:60Used by:150
Symbol 145 MovieClipUses:55Used by:150
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClipUses:146Used by:148
Symbol 148 MovieClipUses:147Used by:150
Symbol 149 MovieClipUses:122 134 138 142Used by:150
Symbol 150 MovieClip {PreloaderMC} [PreloaderMC]Uses:143 105 144 145 148 149
Symbol 151 GraphicUsed by:995
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClipUses:152Used by:995
Symbol 154 GraphicUsed by:155
Symbol 155 MovieClipUses:154Used by:995
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:156Used by:995
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:158Used by:995
Symbol 160 GraphicUsed by:995
Symbol 161 GraphicUsed by:995
Symbol 162 GraphicUsed by:995
Symbol 163 GraphicUsed by:995
Symbol 164 GraphicUsed by:995
Symbol 165 GraphicUsed by:910
Symbol 166 GraphicUsed by:167 192 289
Symbol 167 MovieClipUses:166Used by:910
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:168Used by:910 1261
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:910 1261
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:172Used by:910 1261
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:174Used by:910 1261
Symbol 176 GraphicUsed by:177
Symbol 177 MovieClipUses:176Used by:910 1261
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:178Used by:910 1261
Symbol 180 GraphicUsed by:181 205
Symbol 181 MovieClipUses:180Used by:910 1261
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClipUses:182Used by:910 1261
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:184Used by:910 1261
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:186Used by:910 1261
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClipUses:188Used by:910 1261
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClipUses:190Used by:910 1261
Symbol 192 MovieClipUses:166Used by:910
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:193Used by:910 1261
Symbol 195 GraphicUsed by:196
Symbol 196 MovieClipUses:195Used by:910 1261
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:197Used by:910 1261
Symbol 199 GraphicUsed by:200
Symbol 200 MovieClipUses:199Used by:910 1261
Symbol 201 GraphicUsed by:202
Symbol 202 MovieClipUses:201Used by:910 1261
Symbol 203 GraphicUsed by:204
Symbol 204 MovieClipUses:203Used by:910 1261
Symbol 205 MovieClipUses:180Used by:910 1261
Symbol 206 GraphicUsed by:207
Symbol 207 MovieClipUses:206Used by:910 1261
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClipUses:208Used by:910 1261
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClipUses:210Used by:910 1261
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClipUses:212Used by:910 1261
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClipUses:214Used by:910 1261
Symbol 216 GraphicUsed by:217
Symbol 217 MovieClipUses:216Used by:910 1261
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClipUses:218Used by:910 1261
Symbol 220 GraphicUsed by:221
Symbol 221 MovieClipUses:220Used by:910 1261
Symbol 222 GraphicUsed by:223
Symbol 223 MovieClipUses:222Used by:910 1261
Symbol 224 GraphicUsed by:225
Symbol 225 MovieClipUses:224Used by:910 1261
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:226Used by:910 1261
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:228Used by:910 1261
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClipUses:230Used by:910
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClipUses:232Used by:910 1261
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:234Used by:910 1261
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:236Used by:910 1261
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:238Used by:910 1261
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:240Used by:910 1261
Symbol 242 GraphicUsed by:243 266 389
Symbol 243 MovieClipUses:242Used by:910
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:244Used by:910 1261
Symbol 246 GraphicUsed by:247
Symbol 247 MovieClipUses:246Used by:910 1261
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClipUses:248Used by:910 1261
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:250Used by:910 1261
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClipUses:252Used by:910 1261
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:254Used by:910 1261
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:256Used by:910 1261
Symbol 258 GraphicUsed by:259
Symbol 259 MovieClipUses:258Used by:910 1261
Symbol 260 GraphicUsed by:261
Symbol 261 MovieClipUses:260Used by:910 1261
Symbol 262 GraphicUsed by:263 287
Symbol 263 MovieClipUses:262Used by:910
Symbol 264 GraphicUsed by:265 288
Symbol 265 MovieClipUses:264Used by:910
Symbol 266 MovieClipUses:242Used by:910
Symbol 267 GraphicUsed by:268
Symbol 268 MovieClipUses:267Used by:910 1261
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClipUses:269Used by:910 1261
Symbol 271 GraphicUsed by:272
Symbol 272 MovieClipUses:271Used by:910 1261
Symbol 273 GraphicUsed by:274
Symbol 274 MovieClipUses:273Used by:910 1261
Symbol 275 GraphicUsed by:276
Symbol 276 MovieClipUses:275Used by:910 1261
Symbol 277 GraphicUsed by:278
Symbol 278 MovieClipUses:277Used by:910 1261
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:279Used by:910 1261
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281Used by:910 1261
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:283Used by:910 1261
Symbol 285 GraphicUsed by:286
Symbol 286 MovieClipUses:285Used by:910 1261
Symbol 287 MovieClipUses:262Used by:910
Symbol 288 MovieClipUses:264Used by:910
Symbol 289 MovieClipUses:166Used by:910
Symbol 290 GraphicUsed by:291 316
Symbol 291 MovieClipUses:290Used by:910 1261
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:292Used by:910 1261
Symbol 294 GraphicUsed by:295
Symbol 295 MovieClipUses:294Used by:910 1261
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:910 1261
Symbol 298 GraphicUsed by:299
Symbol 299 MovieClipUses:298Used by:910 1261
Symbol 300 GraphicUsed by:301
Symbol 301 MovieClipUses:300Used by:910 1261
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:302Used by:910 1261
Symbol 304 GraphicUsed by:305
Symbol 305 MovieClipUses:304Used by:910 1261
Symbol 306 GraphicUsed by:307
Symbol 307 MovieClipUses:306Used by:910 1261
Symbol 308 GraphicUsed by:309
Symbol 309 MovieClipUses:308Used by:910 1261
Symbol 310 GraphicUsed by:311
Symbol 311 MovieClipUses:310Used by:910 1261
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:910 1261
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClipUses:314Used by:910 1261
Symbol 316 MovieClipUses:290Used by:910 1261
Symbol 317 GraphicUsed by:318
Symbol 318 MovieClipUses:317Used by:910 1261
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319Used by:910 1261
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:321Used by:910 1261
Symbol 323 GraphicUsed by:324
Symbol 324 MovieClipUses:323Used by:910 1261
Symbol 325 GraphicUsed by:326
Symbol 326 MovieClipUses:325Used by:910 1261
Symbol 327 GraphicUsed by:328
Symbol 328 MovieClipUses:327Used by:910 1261
Symbol 329 GraphicUsed by:330
Symbol 330 MovieClipUses:329Used by:910 1261
Symbol 331 GraphicUsed by:332
Symbol 332 MovieClipUses:331Used by:910 1261
Symbol 333 GraphicUsed by:334
Symbol 334 MovieClipUses:333Used by:910 1261
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClipUses:335Used by:910 1261
Symbol 337 GraphicUsed by:338
Symbol 338 MovieClipUses:337Used by:910 1261
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClipUses:339Used by:910 1261
Symbol 341 GraphicUsed by:342
Symbol 342 MovieClipUses:341Used by:910 1261
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClipUses:343Used by:910 1261
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:345Used by:910 1261
Symbol 347 GraphicUsed by:348
Symbol 348 MovieClipUses:347Used by:910 1261
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClipUses:349Used by:910 1261
Symbol 351 GraphicUsed by:352
Symbol 352 MovieClipUses:351Used by:910 1261
Symbol 353 GraphicUsed by:354
Symbol 354 MovieClipUses:353Used by:910 1261
Symbol 355 GraphicUsed by:356
Symbol 356 MovieClipUses:355Used by:910 1261
Symbol 357 GraphicUsed by:358
Symbol 358 MovieClipUses:357Used by:910 1261
Symbol 359 GraphicUsed by:360
Symbol 360 MovieClipUses:359Used by:910 1261
Symbol 361 GraphicUsed by:362
Symbol 362 MovieClipUses:361Used by:910 1261 1471
Symbol 363 GraphicUsed by:364
Symbol 364 MovieClipUses:363Used by:910 1261
Symbol 365 GraphicUsed by:366
Symbol 366 MovieClipUses:365Used by:910 1261
Symbol 367 GraphicUsed by:368
Symbol 368 MovieClipUses:367Used by:910 1261
Symbol 369 GraphicUsed by:370
Symbol 370 MovieClipUses:369Used by:910 1261
Symbol 371 GraphicUsed by:372
Symbol 372 MovieClipUses:371Used by:910 1261
Symbol 373 GraphicUsed by:374
Symbol 374 MovieClipUses:373Used by:910 1261
Symbol 375 GraphicUsed by:376
Symbol 376 MovieClipUses:375Used by:910 1261
Symbol 377 GraphicUsed by:378
Symbol 378 MovieClipUses:377Used by:910 1261
Symbol 379 GraphicUsed by:380
Symbol 380 MovieClipUses:379Used by:910 1261
Symbol 381 GraphicUsed by:382
Symbol 382 MovieClipUses:381Used by:910 1261
Symbol 383 GraphicUsed by:384
Symbol 384 MovieClipUses:383Used by:910 1261
Symbol 385 GraphicUsed by:386
Symbol 386 MovieClipUses:385Used by:910 1261
Symbol 387 GraphicUsed by:388
Symbol 388 MovieClipUses:387Used by:910 1261 1471
Symbol 389 MovieClipUses:242Used by:910
Symbol 390 GraphicUsed by:391
Symbol 391 MovieClipUses:390Used by:910 1261
Symbol 392 GraphicUsed by:393
Symbol 393 MovieClipUses:392Used by:910 1261
Symbol 394 GraphicUsed by:395
Symbol 395 MovieClipUses:394Used by:910 1261
Symbol 396 GraphicUsed by:397
Symbol 397 MovieClipUses:396Used by:910 1261
Symbol 398 GraphicUsed by:399
Symbol 399 MovieClipUses:398Used by:910 1261
Symbol 400 GraphicUsed by:401
Symbol 401 MovieClipUses:400Used by:910 1261
Symbol 402 GraphicUsed by:403
Symbol 403 MovieClipUses:402Used by:910 1261
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:404Used by:910 1261
Symbol 406 GraphicUsed by:407
Symbol 407 MovieClipUses:406Used by:910 1261
Symbol 408 GraphicUsed by:409
Symbol 409 MovieClipUses:408Used by:910 1261
Symbol 410 GraphicUsed by:411
Symbol 411 MovieClipUses:410Used by:910 1261
Symbol 412 GraphicUsed by:413
Symbol 413 MovieClipUses:412Used by:910 1261
Symbol 414 GraphicUsed by:415
Symbol 415 MovieClipUses:414Used by:910 1261
Symbol 416 GraphicUsed by:417
Symbol 417 MovieClipUses:416Used by:910 1261
Symbol 418 GraphicUsed by:419
Symbol 419 MovieClipUses:418Used by:910 1261
Symbol 420 GraphicUsed by:910
Symbol 421 GraphicUsed by:481
Symbol 422 GraphicUsed by:423
Symbol 423 MovieClipUses:422Used by:481 1221
Symbol 424 GraphicUsed by:481
Symbol 425 GraphicUsed by:426
Symbol 426 MovieClipUses:425Used by:481 1221
Symbol 427 GraphicUsed by:428
Symbol 428 MovieClipUses:427Used by:481 1221
Symbol 429 GraphicUsed by:481
Symbol 430 MovieClipUsed by:481 910 940 1221 1261 1321 1333 1413 1416 1963
Symbol 431 GraphicUsed by:481
Symbol 432 GraphicUsed by:433
Symbol 433 MovieClipUses:432Used by:481 1221
Symbol 434 GraphicUsed by:435
Symbol 435 MovieClipUses:434Used by:481 1221 1593 1757
Symbol 436 GraphicUsed by:437 438 452 453 460 461 850 864 897
Symbol 437 MovieClipUses:436Used by:481
Symbol 438 MovieClipUses:436Used by:481
Symbol 439 GraphicUsed by:440 888
Symbol 440 MovieClipUses:439Used by:481 1221
Symbol 441 GraphicUsed by:442
Symbol 442 MovieClipUses:441Used by:481 1221
Symbol 443 GraphicUsed by:481
Symbol 444 GraphicUsed by:445
Symbol 445 MovieClipUses:444Used by:481 1221
Symbol 446 GraphicUsed by:481
Symbol 447 GraphicUsed by:448
Symbol 448 MovieClipUses:447Used by:481 1221
Symbol 449 GraphicUsed by:450
Symbol 450 MovieClipUses:449Used by:481 1221
Symbol 451 GraphicUsed by:481
Symbol 452 MovieClipUses:436Used by:481
Symbol 453 MovieClipUses:436Used by:481
Symbol 454 GraphicUsed by:481
Symbol 455 GraphicUsed by:456
Symbol 456 MovieClipUses:455Used by:481 1221
Symbol 457 GraphicUsed by:458
Symbol 458 MovieClipUses:457Used by:481 1221
Symbol 459 GraphicUsed by:481
Symbol 460 MovieClipUses:436Used by:481
Symbol 461 MovieClipUses:436Used by:481
Symbol 462 GraphicUsed by:481
Symbol 463 GraphicUsed by:464
Symbol 464 MovieClipUses:463Used by:481 1221
Symbol 465 GraphicUsed by:466
Symbol 466 MovieClipUses:465Used by:481 1221
Symbol 467 GraphicUsed by:468
Symbol 468 MovieClipUses:467Used by:481 1221
Symbol 469 GraphicUsed by:470
Symbol 470 MovieClipUses:469Used by:481 1221
Symbol 471 GraphicUsed by:472
Symbol 472 MovieClipUses:471Used by:481 1221
Symbol 473 GraphicUsed by:474
Symbol 474 MovieClipUses:473Used by:481 1221
Symbol 475 GraphicUsed by:476
Symbol 476 MovieClipUses:475Used by:481 1221
Symbol 477 GraphicUsed by:481
Symbol 478 GraphicUsed by:479
Symbol 479 MovieClipUses:478Used by:481 1221
Symbol 480 GraphicUsed by:481
Symbol 481 MovieClipUses:421 423 424 426 428 429 430 431 433 435 437 438 440 442 443 445 446 448 450 451 452 453 454 456 458 459 460 461 462 464 466 468 470 472 474 476 477 479 480Used by:910
Symbol 482 GraphicUsed by:483
Symbol 483 MovieClipUses:482Used by:910 1261
Symbol 484 GraphicUsed by:910
Symbol 485 GraphicUsed by:486 487 488
Symbol 486 MovieClipUses:485Used by:910 1261
Symbol 487 MovieClipUses:485Used by:910 1261
Symbol 488 MovieClipUses:485Used by:910 1261
Symbol 489 GraphicUsed by:910
Symbol 490 GraphicUsed by:491 801 807
Symbol 491 MovieClipUses:490Used by:910 1261
Symbol 492 GraphicUsed by:493 802
Symbol 493 MovieClipUses:492Used by:910 1261
Symbol 494 GraphicUsed by:495 803
Symbol 495 MovieClipUses:494Used by:910 1261
Symbol 496 GraphicUsed by:910
Symbol 497 GraphicUsed by:498
Symbol 498 MovieClipUses:497Used by:910 1261
Symbol 499 GraphicUsed by:910
Symbol 500 GraphicUsed by:501
Symbol 501 MovieClipUses:500Used by:910 1261
Symbol 502 GraphicUsed by:503
Symbol 503 MovieClipUses:502Used by:910 1261
Symbol 504 GraphicUsed by:505
Symbol 505 MovieClipUses:504Used by:910 1261
Symbol 506 GraphicUsed by:507
Symbol 507 MovieClipUses:506Used by:910 1261
Symbol 508 GraphicUsed by:509
Symbol 509 MovieClipUses:508Used by:910 1261
Symbol 510 GraphicUsed by:511
Symbol 511 MovieClipUses:510Used by:910 1261
Symbol 512 GraphicUsed by:513
Symbol 513 MovieClipUses:512Used by:910 1261
Symbol 514 GraphicUsed by:515
Symbol 515 MovieClipUses:514Used by:910 1261
Symbol 516 GraphicUsed by:517
Symbol 517 MovieClipUses:516Used by:910 1261
Symbol 518 GraphicUsed by:519
Symbol 519 MovieClipUses:518Used by:910 1261
Symbol 520 GraphicUsed by:521
Symbol 521 MovieClipUses:520Used by:910 1261
Symbol 522 GraphicUsed by:523
Symbol 523 MovieClipUses:522Used by:910 1261
Symbol 524 GraphicUsed by:525
Symbol 525 MovieClipUses:524Used by:910 1261
Symbol 526 GraphicUsed by:527
Symbol 527 MovieClipUses:526Used by:910 1261
Symbol 528 GraphicUsed by:529
Symbol 529 MovieClipUses:528Used by:910 1261
Symbol 530 GraphicUsed by:531
Symbol 531 MovieClipUses:530Used by:910 1261
Symbol 532 GraphicUsed by:533
Symbol 533 MovieClipUses:532Used by:910 1261
Symbol 534 GraphicUsed by:535
Symbol 535 MovieClipUses:534Used by:910 1261
Symbol 536 GraphicUsed by:537
Symbol 537 MovieClipUses:536Used by:910 1261
Symbol 538 GraphicUsed by:539
Symbol 539 MovieClipUses:538Used by:910 1261
Symbol 540 GraphicUsed by:541
Symbol 541 MovieClipUses:540Used by:910 1261
Symbol 542 GraphicUsed by:543
Symbol 543 MovieClipUses:542Used by:910 1261
Symbol 544 GraphicUsed by:545
Symbol 545 MovieClipUses:544Used by:910 1261
Symbol 546 GraphicUsed by:547
Symbol 547 MovieClipUses:546Used by:910 1261
Symbol 548 GraphicUsed by:549
Symbol 549 MovieClipUses:548Used by:910 1261
Symbol 550 GraphicUsed by:551
Symbol 551 MovieClipUses:550Used by:910 1261
Symbol 552 GraphicUsed by:553
Symbol 553 MovieClipUses:552Used by:910 1261
Symbol 554 GraphicUsed by:555
Symbol 555 MovieClipUses:554Used by:910 1261
Symbol 556 GraphicUsed by:557
Symbol 557 MovieClipUses:556Used by:910 1261
Symbol 558 GraphicUsed by:559
Symbol 559 MovieClipUses:558Used by:910 1261
Symbol 560 GraphicUsed by:561
Symbol 561 MovieClipUses:560Used by:910 1261
Symbol 562 GraphicUsed by:563
Symbol 563 MovieClipUses:562Used by:910 1261
Symbol 564 GraphicUsed by:565
Symbol 565 MovieClipUses:564Used by:910 1261
Symbol 566 GraphicUsed by:567
Symbol 567 MovieClipUses:566Used by:910 1261
Symbol 568 GraphicUsed by:569
Symbol 569 MovieClipUses:568Used by:910 1261
Symbol 570 GraphicUsed by:571
Symbol 571 MovieClipUses:570Used by:910 1261
Symbol 572 GraphicUsed by:573
Symbol 573 MovieClipUses:572Used by:910 1261
Symbol 574 GraphicUsed by:575
Symbol 575 MovieClipUses:574Used by:910 1261
Symbol 576 GraphicUsed by:577
Symbol 577 MovieClipUses:576Used by:910 1261
Symbol 578 GraphicUsed by:579
Symbol 579 MovieClipUses:578Used by:910 1261
Symbol 580 GraphicUsed by:581
Symbol 581 MovieClipUses:580Used by:910 1261
Symbol 582 GraphicUsed by:583
Symbol 583 MovieClipUses:582Used by:910 1261
Symbol 584 GraphicUsed by:585
Symbol 585 MovieClipUses:584Used by:910 1261
Symbol 586 GraphicUsed by:587
Symbol 587 MovieClipUses:586Used by:910 1261
Symbol 588 GraphicUsed by:589
Symbol 589 MovieClipUses:588Used by:910 1261
Symbol 590 GraphicUsed by:591
Symbol 591 MovieClipUses:590Used by:910 1261
Symbol 592 GraphicUsed by:593
Symbol 593 MovieClipUses:592Used by:910 1261
Symbol 594 GraphicUsed by:595
Symbol 595 MovieClipUses:594Used by:910 1261
Symbol 596 GraphicUsed by:597
Symbol 597 MovieClipUses:596Used by:910 1261
Symbol 598 GraphicUsed by:599
Symbol 599 MovieClipUses:598Used by:910 1261
Symbol 600 GraphicUsed by:601
Symbol 601 MovieClipUses:600Used by:910 1261
Symbol 602 GraphicUsed by:603
Symbol 603 MovieClipUses:602Used by:910 1261
Symbol 604 GraphicUsed by:605
Symbol 605 MovieClipUses:604Used by:910 1261
Symbol 606 GraphicUsed by:607
Symbol 607 MovieClipUses:606Used by:910 1261
Symbol 608 GraphicUsed by:609
Symbol 609 MovieClipUses:608Used by:910 1261
Symbol 610 GraphicUsed by:611
Symbol 611 MovieClipUses:610Used by:910 1261
Symbol 612 GraphicUsed by:613
Symbol 613 MovieClipUses:612Used by:910 1261
Symbol 614 GraphicUsed by:615
Symbol 615 MovieClipUses:614Used by:910 1261
Symbol 616 GraphicUsed by:617
Symbol 617 MovieClipUses:616Used by:910 1261
Symbol 618 GraphicUsed by:619
Symbol 619 MovieClipUses:618Used by:910 1261
Symbol 620 GraphicUsed by:621
Symbol 621 MovieClipUses:620Used by:910 1261
Symbol 622 GraphicUsed by:623
Symbol 623 MovieClipUses:622Used by:910 1261
Symbol 624 GraphicUsed by:625
Symbol 625 MovieClipUses:624Used by:910 1261
Symbol 626 GraphicUsed by:627
Symbol 627 MovieClipUses:626Used by:910 1261
Symbol 628 GraphicUsed by:629
Symbol 629 MovieClipUses:628Used by:910 1261
Symbol 630 GraphicUsed by:631
Symbol 631 MovieClipUses:630Used by:910 1261
Symbol 632 GraphicUsed by:633
Symbol 633 MovieClipUses:632Used by:910 1261
Symbol 634 GraphicUsed by:635
Symbol 635 MovieClipUses:634Used by:910 1261
Symbol 636 GraphicUsed by:637
Symbol 637 MovieClipUses:636Used by:910 1261
Symbol 638 GraphicUsed by:639
Symbol 639 MovieClipUses:638Used by:910 1261
Symbol 640 GraphicUsed by:641
Symbol 641 MovieClipUses:640Used by:910 1261
Symbol 642 GraphicUsed by:643
Symbol 643 MovieClipUses:642Used by:910 1261
Symbol 644 GraphicUsed by:645
Symbol 645 MovieClipUses:644Used by:910 1261
Symbol 646 GraphicUsed by:647
Symbol 647 MovieClipUses:646Used by:910 1261
Symbol 648 GraphicUsed by:649
Symbol 649 MovieClipUses:648Used by:910 1261
Symbol 650 GraphicUsed by:651
Symbol 651 MovieClipUses:650Used by:910 1261
Symbol 652 GraphicUsed by:653
Symbol 653 MovieClipUses:652Used by:910 1261
Symbol 654 GraphicUsed by:655
Symbol 655 MovieClipUses:654Used by:910 1261
Symbol 656 GraphicUsed by:657
Symbol 657 MovieClipUses:656Used by:910 1261
Symbol 658 GraphicUsed by:659
Symbol 659 MovieClipUses:658Used by:910 1261
Symbol 660 GraphicUsed by:661
Symbol 661 MovieClipUses:660Used by:910 1261
Symbol 662 GraphicUsed by:663
Symbol 663 MovieClipUses:662Used by:910 1261
Symbol 664 GraphicUsed by:665
Symbol 665 MovieClipUses:664Used by:910 1261
Symbol 666 GraphicUsed by:667
Symbol 667 MovieClipUses:666Used by:910 1261
Symbol 668 GraphicUsed by:669
Symbol 669 MovieClipUses:668Used by:910 1261
Symbol 670 GraphicUsed by:671
Symbol 671 MovieClipUses:670Used by:910 1261
Symbol 672 GraphicUsed by:673
Symbol 673 MovieClipUses:672Used by:910 1261
Symbol 674 GraphicUsed by:675
Symbol 675 MovieClipUses:674Used by:910 1261
Symbol 676 GraphicUsed by:677
Symbol 677 MovieClipUses:676Used by:910 1261
Symbol 678 GraphicUsed by:679
Symbol 679 MovieClipUses:678Used by:910 1261
Symbol 680 GraphicUsed by:681
Symbol 681 MovieClipUses:680Used by:910 1261
Symbol 682 GraphicUsed by:683
Symbol 683 MovieClipUses:682Used by:910 1261
Symbol 684 GraphicUsed by:685
Symbol 685 MovieClipUses:684Used by:910 1261
Symbol 686 GraphicUsed by:687
Symbol 687 MovieClipUses:686Used by:910 1261
Symbol 688 GraphicUsed by:689
Symbol 689 MovieClipUses:688Used by:910 1261
Symbol 690 GraphicUsed by:691
Symbol 691 MovieClipUses:690Used by:910 1261
Symbol 692 GraphicUsed by:693
Symbol 693 MovieClipUses:692Used by:910 1261
Symbol 694 GraphicUsed by:695
Symbol 695 MovieClipUses:694Used by:910 1261
Symbol 696 GraphicUsed by:697
Symbol 697 MovieClipUses:696Used by:910 1261
Symbol 698 GraphicUsed by:699
Symbol 699 MovieClipUses:698Used by:910 1261
Symbol 700 GraphicUsed by:701
Symbol 701 MovieClipUses:700Used by:910 1261
Symbol 702 GraphicUsed by:703
Symbol 703 MovieClipUses:702Used by:910 1261
Symbol 704 GraphicUsed by:705
Symbol 705 MovieClipUses:704Used by:910 1261
Symbol 706 GraphicUsed by:707
Symbol 707 MovieClipUses:706Used by:910 1261
Symbol 708 GraphicUsed by:709
Symbol 709 MovieClipUses:708Used by:910 1261
Symbol 710 GraphicUsed by:711
Symbol 711 MovieClipUses:710Used by:910 1261
Symbol 712 GraphicUsed by:713
Symbol 713 MovieClipUses:712Used by:910 1261
Symbol 714 GraphicUsed by:715
Symbol 715 MovieClipUses:714Used by:910 1261
Symbol 716 GraphicUsed by:717
Symbol 717 MovieClipUses:716Used by:910 1261
Symbol 718 GraphicUsed by:719
Symbol 719 MovieClipUses:718Used by:910 1261
Symbol 720 GraphicUsed by:721
Symbol 721 MovieClipUses:720Used by:910 1261
Symbol 722 GraphicUsed by:723
Symbol 723 MovieClipUses:722Used by:910 1261
Symbol 724 GraphicUsed by:725
Symbol 725 MovieClipUses:724Used by:910 1261
Symbol 726 GraphicUsed by:727
Symbol 727 MovieClipUses:726Used by:910 1261
Symbol 728 GraphicUsed by:729
Symbol 729 MovieClipUses:728Used by:910 1261
Symbol 730 GraphicUsed by:731
Symbol 731 MovieClipUses:730Used by:910 1261
Symbol 732 GraphicUsed by:733
Symbol 733 MovieClipUses:732Used by:910 1261
Symbol 734 GraphicUsed by:735
Symbol 735 MovieClipUses:734Used by:910 1261
Symbol 736 GraphicUsed by:737
Symbol 737 MovieClipUses:736Used by:910 1261
Symbol 738 GraphicUsed by:739
Symbol 739 MovieClipUses:738Used by:910 1261
Symbol 740 GraphicUsed by:741
Symbol 741 MovieClipUses:740Used by:910 1261
Symbol 742 GraphicUsed by:743
Symbol 743 MovieClipUses:742Used by:910 1261
Symbol 744 GraphicUsed by:745
Symbol 745 MovieClipUses:744Used by:910 1261
Symbol 746 GraphicUsed by:747
Symbol 747 MovieClipUses:746Used by:910 1261
Symbol 748 GraphicUsed by:749
Symbol 749 MovieClipUses:748Used by:910 1261
Symbol 750 GraphicUsed by:751
Symbol 751 MovieClipUses:750Used by:910 1261
Symbol 752 GraphicUsed by:753
Symbol 753 MovieClipUses:752Used by:910 1261
Symbol 754 GraphicUsed by:755
Symbol 755 MovieClipUses:754Used by:910 1261
Symbol 756 GraphicUsed by:757
Symbol 757 MovieClipUses:756Used by:910 1261
Symbol 758 GraphicUsed by:759
Symbol 759 MovieClipUses:758Used by:910 1261
Symbol 760 GraphicUsed by:761
Symbol 761 MovieClipUses:760Used by:910 1261
Symbol 762 GraphicUsed by:763
Symbol 763 MovieClipUses:762Used by:910 1261
Symbol 764 GraphicUsed by:765
Symbol 765 MovieClipUses:764Used by:910 1261
Symbol 766 GraphicUsed by:767
Symbol 767 MovieClipUses:766Used by:910 1261
Symbol 768 GraphicUsed by:769
Symbol 769 MovieClipUses:768Used by:910 1261
Symbol 770 GraphicUsed by:771
Symbol 771 MovieClipUses:770Used by:910 1261
Symbol 772 GraphicUsed by:773
Symbol 773 MovieClipUses:772Used by:910 1261
Symbol 774 GraphicUsed by:775
Symbol 775 MovieClipUses:774Used by:910 1261
Symbol 776 GraphicUsed by:777
Symbol 777 MovieClipUses:776Used by:910 1261
Symbol 778 GraphicUsed by:779
Symbol 779 MovieClipUses:778Used by:910 1261
Symbol 780 GraphicUsed by:781
Symbol 781 MovieClipUses:780Used by:910 1261
Symbol 782 GraphicUsed by:783
Symbol 783 MovieClipUses:782Used by:910 1261
Symbol 784 GraphicUsed by:785
Symbol 785 MovieClipUses:784Used by:910 1261
Symbol 786 GraphicUsed by:787
Symbol 787 MovieClipUses:786Used by:910 1261
Symbol 788 GraphicUsed by:789
Symbol 789 MovieClipUses:788Used by:910 1261
Symbol 790 GraphicUsed by:791
Symbol 791 MovieClipUses:790Used by:910 1261
Symbol 792 GraphicUsed by:793
Symbol 793 MovieClipUses:792Used by:910 1261
Symbol 794 GraphicUsed by:910
Symbol 795 GraphicUsed by:796 799
Symbol 796 MovieClipUses:795Used by:910 1261
Symbol 797 GraphicUsed by:798
Symbol 798 MovieClipUses:797Used by:910 1261
Symbol 799 MovieClipUses:795Used by:910 1261
Symbol 800 GraphicUsed by:910
Symbol 801 MovieClipUses:490Used by:910 1261
Symbol 802 MovieClipUses:492Used by:910 1261
Symbol 803 MovieClipUses:494Used by:910 1261
Symbol 804 GraphicUsed by:910
Symbol 805 GraphicUsed by:806
Symbol 806 MovieClipUses:805Used by:910 1261
Symbol 807 MovieClipUses:490Used by:910 1261
Symbol 808 GraphicUsed by:910
Symbol 809 GraphicUsed by:810
Symbol 810 MovieClipUses:809Used by:910 1261
Symbol 811 GraphicUsed by:812
Symbol 812 MovieClipUses:811Used by:910 1261
Symbol 813 GraphicUsed by:814
Symbol 814 MovieClipUses:813Used by:910 1261
Symbol 815 GraphicUsed by:816
Symbol 816 MovieClipUses:815Used by:910 1261
Symbol 817 GraphicUsed by:818
Symbol 818 MovieClipUses:817Used by:910 1261
Symbol 819 GraphicUsed by:820
Symbol 820 MovieClipUses:819Used by:910 1261
Symbol 821 GraphicUsed by:822
Symbol 822 MovieClipUses:821Used by:910 1261
Symbol 823 GraphicUsed by:910
Symbol 824 GraphicUsed by:825
Symbol 825 MovieClipUses:824Used by:910 1261
Symbol 826 GraphicUsed by:910
Symbol 827 GraphicUsed by:828
Symbol 828 MovieClipUses:827Used by:910 1261
Symbol 829 GraphicUsed by:830
Symbol 830 MovieClipUses:829Used by:910 1261
Symbol 831 GraphicUsed by:910
Symbol 832 GraphicUsed by:833 851 853 865
Symbol 833 MovieClipUses:832Used by:910
Symbol 834 GraphicUsed by:835 854
Symbol 835 MovieClipUses:834Used by:910 1261
Symbol 836 GraphicUsed by:837 855
Symbol 837 MovieClipUses:836Used by:910 1261
Symbol 838 GraphicUsed by:839 856
Symbol 839 MovieClipUses:838Used by:910 1261
Symbol 840 GraphicUsed by:841
Symbol 841 MovieClipUses:840Used by:910 1261
Symbol 842 GraphicUsed by:843 859
Symbol 843 MovieClipUses:842Used by:910 1261
Symbol 844 GraphicUsed by:845 860
Symbol 845 MovieClipUses:844Used by:910 1261
Symbol 846 GraphicUsed by:847 861
Symbol 847 MovieClipUses:846Used by:910 1261
Symbol 848 GraphicUsed by:849
Symbol 849 MovieClipUses:848Used by:910 1261
Symbol 850 MovieClipUses:436Used by:910
Symbol 851 MovieClipUses:832Used by:910
Symbol 852 GraphicUsed by:910
Symbol 853 MovieClipUses:832Used by:910
Symbol 854 MovieClipUses:834Used by:910 1261
Symbol 855 MovieClipUses:836Used by:910 1261
Symbol 856 MovieClipUses:838Used by:910 1261
Symbol 857 GraphicUsed by:858
Symbol 858 MovieClipUses:857Used by:910 1261
Symbol 859 MovieClipUses:842Used by:910 1261
Symbol 860 MovieClipUses:844Used by:910 1261
Symbol 861 MovieClipUses:846Used by:910 1261
Symbol 862 GraphicUsed by:863
Symbol 863 MovieClipUses:862Used by:910 1261
Symbol 864 MovieClipUses:436Used by:910
Symbol 865 MovieClipUses:832Used by:910
Symbol 866 GraphicUsed by:910
Symbol 867 GraphicUsed by:868
Symbol 868 MovieClipUses:867Used by:910 1261
Symbol 869 GraphicUsed by:910
Symbol 870 GraphicUsed by:871
Symbol 871 MovieClipUses:870Used by:910 1261
Symbol 872 GraphicUsed by:873
Symbol 873 MovieClipUses:872Used by:910 1261
Symbol 874 GraphicUsed by:899
Symbol 875 GraphicUsed by:876
Symbol 876 MovieClipUses:875Used by:899 1250
Symbol 877 GraphicUsed by:899
Symbol 878 GraphicUsed by:879
Symbol 879 MovieClipUses:878Used by:899 1250
Symbol 880 GraphicUsed by:881
Symbol 881 MovieClipUses:880Used by:899 1250
Symbol 882 GraphicUsed by:899
Symbol 883 GraphicUsed by:884
Symbol 884 MovieClipUses:883Used by:899 1250
Symbol 885 GraphicUsed by:886
Symbol 886 MovieClipUses:885Used by:899 1250
Symbol 887 GraphicUsed by:899
Symbol 888 MovieClipUses:439Used by:899 1250
Symbol 889 GraphicUsed by:899
Symbol 890 GraphicUsed by:891
Symbol 891 MovieClipUses:890Used by:899 1250
Symbol 892 GraphicUsed by:893
Symbol 893 MovieClipUses:892Used by:899 1250
Symbol 894 GraphicUsed by:895
Symbol 895 MovieClipUses:894Used by:899 1250
Symbol 896 GraphicUsed by:899
Symbol 897 MovieClipUses:436Used by:899
Symbol 898 GraphicUsed by:899
Symbol 899 MovieClipUses:874 876 877 879 881 882 884 886 887 888 889 891 893 895 896 897 898Used by:910
Symbol 900 GraphicUsed by:910
Symbol 901 GraphicUsed by:902
Symbol 902 MovieClipUses:901Used by:910 1261
Symbol 903 GraphicUsed by:910
Symbol 904 GraphicUsed by:905
Symbol 905 MovieClipUses:904Used by:910 1261
Symbol 906 GraphicUsed by:910
Symbol 907 GraphicUsed by:908
Symbol 908 MovieClipUses:907Used by:910 1261
Symbol 909 GraphicUsed by:910
Symbol 910 MovieClipUses:165 167 169 171 173 175 177 179 181 183 185 187 189 191 192 194 196 198 200 202 204 205 207 209 211 213 215 217 219 221 223 225 227 229 231 233 235 237 239 241 243 245 247 249 251 253 255 257 259 261 263 265 266 268 270 272 274 276 278 280 282 284 286 287 288 289 291 293 295 297 299 301 303 305 307 309 311 313 315 316 318 320 322 324 326 328 330 332 334 336 338 340 342 344 346 348 350 352 354 356 358 360 362 364 366 368 370 372 374 376 378 380 382 384 386 388 389 391 393 395 397 399 401 403 405 407 409 411 413 415 417 419 420 481 483 484 486 487 488 489 491 493 495 496 498 499 501 503 505 507 509 430 511 513 515 517 519 521 523 525 527 529 531 533 535 537 539 541 543 545 547 549 551 553 555 557 559 561 563 565 567 569 571 573 575 577 579 581 583 585 587 589 591 593 595 597 599 601 603 605 607 609 611 613 615 617 619 621 623 625 627 629 631 633 635 637 639 641 643 645 647 649 651 653 655 657 659 661 663 665 667 669 671 673 675 677 679 681 683 685 687 689 691 693 695 697 699 701 703 705 707 709 711 713 715 717 719 721 723 725 727 729 731 733 735 737 739 741 743 745 747 749 751 753 755 757 759 761 763 765 767 769 771 773 775 777 779 781 783 785 787 789 791 793 794 796 798 799 800 801 802 803 804 806 807 808 810 812 814 816 818 820 822 823 825 826 828 830 831 833 835 837 839 841 843 845 847 849 850 851 852 853 854 855 856 858 859 860 861 863 864 865 866 868 869 871 873 899 900 902 903 905 906 908 909Used by:995
Symbol 911 GraphicUsed by:940
Symbol 912 GraphicUsed by:940
Symbol 913 GraphicUsed by:914
Symbol 914 MovieClipUses:913Used by:940 1333
Symbol 915 GraphicUsed by:916
Symbol 916 MovieClipUses:915Used by:940 1333
Symbol 917 GraphicUsed by:940
Symbol 918 GraphicUsed by:919
Symbol 919 MovieClipUses:918Used by:929
Symbol 920 GraphicUsed by:921
Symbol 921 MovieClipUses:920Used by:929
Symbol 922 GraphicUsed by:923
Symbol 923 MovieClipUses:922Used by:929
Symbol 924 GraphicUsed by:925
Symbol 925 MovieClipUses:924Used by:929
Symbol 926 GraphicUsed by:929
Symbol 927 GraphicUsed by:928
Symbol 928 MovieClipUses:927Used by:929
Symbol 929 MovieClipUses:919 921 923 925 926 928Used by:940 1333
Symbol 930 GraphicUsed by:940
Symbol 931 GraphicUsed by:932
Symbol 932 MovieClipUses:931Used by:940
Symbol 933 GraphicUsed by:940
Symbol 934 GraphicUsed by:935
Symbol 935 MovieClipUses:934Used by:940
Symbol 936 GraphicUsed by:940
Symbol 937 GraphicUsed by:938
Symbol 938 MovieClipUses:937Used by:940 1333
Symbol 939 GraphicUsed by:940
Symbol 940 MovieClipUses:911 430 912 914 916 917 929 930 932 933 935 936 938 939Used by:992
Symbol 941 GraphicUsed by:950
Symbol 942 GraphicUsed by:943
Symbol 943 MovieClipUses:942Used by:950 1383
Symbol 944 GraphicUsed by:950
Symbol 945 GraphicUsed by:946
Symbol 946 MovieClipUses:945Used by:950 1383
Symbol 947 GraphicUsed by:950
Symbol 948 GraphicUsed by:950
Symbol 949 GraphicUsed by:950
Symbol 950 MovieClipUses:941 943 944 946 947 948 949Used by:951
Symbol 951 MovieClipUses:950Used by:992
Symbol 952 GraphicUsed by:953
Symbol 953 MovieClipUses:952Used by:954
Symbol 954 MovieClipUses:953Used by:992
Symbol 955 GraphicUsed by:956
Symbol 956 MovieClipUses:955Used by:957 1492
Symbol 957 MovieClipUses:956Used by:992
Symbol 958 GraphicUsed by:962
Symbol 959 GraphicUsed by:960
Symbol 960 MovieClipUses:959Used by:962
Symbol 961 GraphicUsed by:962
Symbol 962 MovieClipUses:958 960 961Used by:963
Symbol 963 MovieClipUses:962Used by:992
Symbol 964 GraphicUsed by:980
Symbol 965 GraphicUsed by:966
Symbol 966 MovieClipUses:965Used by:980 1869
Symbol 967 GraphicUsed by:980
Symbol 968 GraphicUsed by:969
Symbol 969 MovieClipUses:968Used by:980 1869
Symbol 970 GraphicUsed by:980
Symbol 971 GraphicUsed by:972
Symbol 972 MovieClipUses:971Used by:980
Symbol 973 GraphicUsed by:980
Symbol 974 GraphicUsed by:975
Symbol 975 MovieClipUses:974Used by:980
Symbol 976 GraphicUsed by:980
Symbol 977 GraphicUsed by:978
Symbol 978 MovieClipUses:977Used by:980
Symbol 979 GraphicUsed by:980
Symbol 980 MovieClipUses:964 966 967 969 970 972 973 975 976 978 979Used by:981
Symbol 981 MovieClipUses:980Used by:992
Symbol 982 GraphicUsed by:990
Symbol 983 GraphicUsed by:984
Symbol 984 MovieClipUses:983Used by:990 1980
Symbol 985 GraphicUsed by:987
Symbol 986 GraphicUsed by:987
Symbol 987 MovieClipUses:985 986Used by:990
Symbol 988 GraphicUsed by:989
Symbol 989 MovieClipUses:988Used by:990
Symbol 990 MovieClipUses:982 984 987 989Used by:991
Symbol 991 MovieClipUses:990Used by:992
Symbol 992 MovieClipUses:940 951 954 957 963 981 991Used by:995
Symbol 993 GraphicUsed by:995
Symbol 994 GraphicUsed by:995
Symbol 995 MovieClip {intro} [intro]Uses:151 153 155 157 159 160 161 162 163 164 910 992 993 994
Symbol 996 GraphicUsed by:1038
Symbol 997 FontUsed by:998 1001
Symbol 998 TextUses:997Used by:1000
Symbol 999 GraphicUsed by:1000 1002 1037
Symbol 1000 ButtonUses:998 999Used by:1038
Symbol 1001 TextUses:997Used by:1002
Symbol 1002 ButtonUses:1001 999Used by:1038
Symbol 1003 GraphicUsed by:1004
Symbol 1004 MovieClipUses:1003Used by:1017 1035
Symbol 1005 GraphicUsed by:1006
Symbol 1006 MovieClipUses:1005Used by:1009
Symbol 1007 GraphicUsed by:1008
Symbol 1008 MovieClipUses:1007Used by:1009
Symbol 1009 MovieClipUses:1006 1008Used by:1017 1035
Symbol 1010 GraphicUsed by:1011
Symbol 1011 MovieClipUses:1010Used by:1016
Symbol 1012 GraphicUsed by:1013
Symbol 1013 MovieClipUses:1012Used by:1016
Symbol 1014 GraphicUsed by:1015
Symbol 1015 MovieClipUses:1014Used by:1016
Symbol 1016 MovieClipUses:1011 1013 1015Used by:1017 1035
Symbol 1017 MovieClipUses:1004 1009 1016Used by:1033
Symbol 1018 GraphicUsed by:1033
Symbol 1019 GraphicUsed by:1033
Symbol 1020 GraphicUsed by:1033
Symbol 1021 GraphicUsed by:1033
Symbol 1022 GraphicUsed by:1033
Symbol 1023 GraphicUsed by:1033
Symbol 1024 GraphicUsed by:1033
Symbol 1025 GraphicUsed by:1033
Symbol 1026 GraphicUsed by:1033
Symbol 1027 GraphicUsed by:1033
Symbol 1028 GraphicUsed by:1033
Symbol 1029 GraphicUsed by:1033
Symbol 1030 GraphicUsed by:1033
Symbol 1031 GraphicUsed by:1033
Symbol 1032 GraphicUsed by:1033
Symbol 1033 MovieClipUses:1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032Used by:1034
Symbol 1034 MovieClipUses:1033Used by:1037
Symbol 1035 MovieClipUses:1004 1009 1016Used by:1036
Symbol 1036 MovieClipUses:1035Used by:1037
Symbol 1037 ButtonUses:1034 1036 999Used by:1038
Symbol 1038 MovieClip {baner_logo_mc} [baner_logo_mc]Uses:996 1000 1002 1037
Symbol 1039 GraphicUsed by:1186
Symbol 1040 GraphicUsed by:1041
Symbol 1041 MovieClipUses:1040Used by:1181 1186
Symbol 1042 GraphicUsed by:1186
Symbol 1043 GraphicUsed by:1044
Symbol 1044 MovieClipUses:1043Used by:1181 1186
Symbol 1045 GraphicUsed by:1186
Symbol 1046 GraphicUsed by:1047
Symbol 1047 MovieClipUses:1046Used by:1181 1186
Symbol 1048 GraphicUsed by:1186
Symbol 1049 GraphicUsed by:1050
Symbol 1050 MovieClipUses:1049Used by:1181 1186
Symbol 1051 GraphicUsed by:1186
Symbol 1052 GraphicUsed by:1053
Symbol 1053 MovieClipUses:1052Used by:1181 1186
Symbol 1054 GraphicUsed by:1186
Symbol 1055 GraphicUsed by:1056
Symbol 1056 MovieClipUses:1055Used by:1181 1186
Symbol 1057 GraphicUsed by:1058
Symbol 1058 MovieClipUses:1057Used by:1181 1186
Symbol 1059 GraphicUsed by:1060
Symbol 1060 MovieClipUses:1059Used by:1181 1186
Symbol 1061 GraphicUsed by:1186
Symbol 1062 GraphicUsed by:1063
Symbol 1063 MovieClipUses:1062Used by:1181 1186
Symbol 1064 GraphicUsed by:1186
Symbol 1065 GraphicUsed by:1066
Symbol 1066 MovieClipUses:1065Used by:1181 1186
Symbol 1067 GraphicUsed by:1068
Symbol 1068 MovieClipUses:1067Used by:1181 1186
Symbol 1069 GraphicUsed by:1186
Symbol 1070 GraphicUsed by:1071
Symbol 1071 MovieClipUses:1070Used by:1186
Symbol 1072 GraphicUsed by:1073
Symbol 1073 MovieClipUses:1072Used by:1186
Symbol 1074 GraphicUsed by:1186
Symbol 1075 GraphicUsed by:1076
Symbol 1076 MovieClipUses:1075Used by:1186
Symbol 1077 GraphicUsed by:1078
Symbol 1078 MovieClipUses:1077Used by:1186
Symbol 1079 GraphicUsed by:1186
Symbol 1080 GraphicUsed by:1081
Symbol 1081 MovieClipUses:1080Used by:1181 1186
Symbol 1082 GraphicUsed by:1186
Symbol 1083 GraphicUsed by:1115
Symbol 1084 GraphicUsed by:1085
Symbol 1085 MovieClipUses:1084Used by:1115
Symbol 1086 GraphicUsed by:1087
Symbol 1087 MovieClipUses:1086Used by:1115
Symbol 1088 GraphicUsed by:1115
Symbol 1089 GraphicUsed by:1090
Symbol 1090 MovieClipUses:1089Used by:1115
Symbol 1091 GraphicUsed by:1092
Symbol 1092 MovieClipUses:1091Used by:1115
Symbol 1093 GraphicUsed by:1094
Symbol 1094 MovieClipUses:1093Used by:1115
Symbol 1095 GraphicUsed by:1096
Symbol 1096 MovieClipUses:1095Used by:1115
Symbol 1097 GraphicUsed by:1115
Symbol 1098 GraphicUsed by:1099
Symbol 1099 MovieClipUses:1098Used by:1115
Symbol 1100 GraphicUsed by:1101 1233 1235 1237 1239 1318
Symbol 1101 MovieClipUses:1100Used by:1115
Symbol 1102 GraphicUsed by:1115
Symbol 1103 GraphicUsed by:1104
Symbol 1104 MovieClipUses:1103Used by:1115
Symbol 1105 GraphicUsed by:1106
Symbol 1106 MovieClipUses:1105Used by:1115
Symbol 1107 GraphicUsed by:1108
Symbol 1108 MovieClipUses:1107Used by:1115
Symbol 1109 GraphicUsed by:1110
Symbol 1110 MovieClipUses:1109Used by:1115
Symbol 1111 GraphicUsed by:1112
Symbol 1112 MovieClipUses:1111Used by:1115
Symbol 1113 GraphicUsed by:1114
Symbol 1114 MovieClipUses:1113Used by:1115
Symbol 1115 MovieClipUses:1083 1085 1087 1088 1090 1092 1094 1096 1097 1099 1101 1102 1104 1106 1108 1110 1112 1114Used by:1181 1186
Symbol 1116 GraphicUsed by:1186
Symbol 1117 GraphicUsed by:1118
Symbol 1118 MovieClipUses:1117Used by:1181 1186
Symbol 1119 GraphicUsed by:1186
Symbol 1120 GraphicUsed by:1121
Symbol 1121 MovieClipUses:1120Used by:1181 1186
Symbol 1122 GraphicUsed by:1143
Symbol 1123 GraphicUsed by:1126
Symbol 1124 GraphicUsed by:1126
Symbol 1125 GraphicUsed by:1126
Symbol 1126 MovieClipUses:1123 1124 1125Used by:1143
Symbol 1127 GraphicUsed by:1143
Symbol 1128 GraphicUsed by:1131
Symbol 1129 GraphicUsed by:1131
Symbol 1130 GraphicUsed by:1131
Symbol 1131 MovieClipUses:1128 1129 1130Used by:1143
Symbol 1132 GraphicUsed by:1143
Symbol 1133 GraphicUsed by:1136 1142
Symbol 1134 GraphicUsed by:1135
Symbol 1135 MovieClipUses:1134Used by:1136
Symbol 1136 MovieClipUses:1133 1135Used by:1143
Symbol 1137 GraphicUsed by:1138
Symbol 1138 MovieClipUses:1137Used by:1142
Symbol 1139 GraphicUsed by:1140
Symbol 1140 MovieClipUses:1139Used by:1142
Symbol 1141 GraphicUsed by:1142
Symbol 1142 MovieClipUses:1133 1138 1140 1141Used by:1143
Symbol 1143 MovieClipUses:1122 1126 1127 1131 1132 1136 1142Used by:1181 1186
Symbol 1144 GraphicUsed by:1186
Symbol 1145 GraphicUsed by:1146
Symbol 1146 MovieClipUses:1145Used by:1181 1186
Symbol 1147 GraphicUsed by:1186
Symbol 1148 GraphicUsed by:1149
Symbol 1149 MovieClipUses:1148Used by:1181 1186
Symbol 1150 GraphicUsed by:1186
Symbol 1151 GraphicUsed by:1152
Symbol 1152 MovieClipUses:1151Used by:1181 1186
Symbol 1153 GraphicUsed by:1154
Symbol 1154 MovieClipUses:1153Used by:1181 1186
Symbol 1155 GraphicUsed by:1156
Symbol 1156 MovieClipUses:1155Used by:1181 1186
Symbol 1157 GraphicUsed by:1158
Symbol 1158 MovieClipUses:1157Used by:1181 1186
Symbol 1159 GraphicUsed by:1160
Symbol 1160 MovieClipUses:1159Used by:1181 1186
Symbol 1161 GraphicUsed by:1186
Symbol 1162 GraphicUsed by:1163
Symbol 1163 MovieClipUses:1162Used by:1181 1186
Symbol 1164 GraphicUsed by:1186
Symbol 1165 GraphicUsed by:1181
Symbol 1166 GraphicUsed by:1181
Symbol 1167 GraphicUsed by:1181
Symbol 1168 GraphicUsed by:1181
Symbol 1169 GraphicUsed by:1181
Symbol 1170 GraphicUsed by:1181
Symbol 1171 GraphicUsed by:1181
Symbol 1172 GraphicUsed by:1181
Symbol 1173 GraphicUsed by:1181
Symbol 1174 GraphicUsed by:1181
Symbol 1175 GraphicUsed by:1181
Symbol 1176 GraphicUsed by:1181
Symbol 1177 GraphicUsed by:1181
Symbol 1178 GraphicUsed by:1181
Symbol 1179 GraphicUsed by:1181
Symbol 1180 GraphicUsed by:1181
Symbol 1181 MovieClipUses:1165 1041 1166 1044 1167 1047 1168 1050 1169 1053 1170 1056 1058 1060 1171 1063 1172 1066 1068 1173 1081 1174 1115 1175 1118 1176 1121 1143 1177 1146 1178 1149 1179 1152 1154 1156 1158 1160 1180 1163Used by:1186
Symbol 1182 GraphicUsed by:1186
Symbol 1183 GraphicUsed by:1184 1185
Symbol 1184 MovieClipUses:1183Used by:1186 1261
Symbol 1185 MovieClipUses:1183Used by:1186 1261
Symbol 1186 MovieClipUses:1039 1041 1042 1044 1045 1047 1048 1050 1051 1053 1054 1056 1058 1060 1061 1063 1064 1066 1068 1069 1071 1073 1074 1076 1078 1079 1081 1082 1115 1116 1118 1119 1121 1143 1144 1146 1147 1149 1150 1152 1154 1156 1158 1160 1161 1163 1164 1181 1182 1184 1185Used by:1263
Symbol 1187 GraphicUsed by:1262
Symbol 1188 GraphicUsed by:1261
Symbol 1189 GraphicUsed by:1190 1255 1256
Symbol 1190 MovieClipUses:1189Used by:1261
Symbol 1191 GraphicUsed by:1192 1257 1258
Symbol 1192 MovieClipUses:1191Used by:1261
Symbol 1193 GraphicUsed by:1194
Symbol 1194 MovieClipUses:1193Used by:1261
Symbol 1195 GraphicUsed by:1196 1259
Symbol 1196 MovieClipUses:1195Used by:1261
Symbol 1197 GraphicUsed by:1198 1260
Symbol 1198 MovieClipUses:1197Used by:1261
Symbol 1199 GraphicUsed by:1261
Symbol 1200 GraphicUsed by:1221
Symbol 1201 GraphicUsed by:1221
Symbol 1202 GraphicUsed by:1221
Symbol 1203 GraphicUsed by:1221
Symbol 1204 GraphicUsed by:1205 1217 1234 1238
Symbol 1205 MovieClipUses:1204Used by:1221 1593 1757
Symbol 1206 GraphicUsed by:1207
Symbol 1207 MovieClipUses:1206Used by:1221
Symbol 1208 GraphicUsed by:1221
Symbol 1209 GraphicUsed by:1221
Symbol 1210 GraphicUsed by:1221
Symbol 1211 GraphicUsed by:1212 1213 1216 1248 1600 1603 1604 1605 1606 1607 1608 1612 1620 1624 1625 1626 1628 1635 1636 1639 1640 1642 1643 1644 1645 1646 1648 1659 1677 1681 1705 1708 1717 1719 1720 1729 1734
Symbol 1212 MovieClipUses:1211Used by:1221
Symbol 1213 MovieClipUses:1211Used by:1221
Symbol 1214 GraphicUsed by:1221
Symbol 1215 GraphicUsed by:1221
Symbol 1216 MovieClipUses:1211Used by:1221
Symbol 1217 MovieClipUses:1204Used by:1221
Symbol 1218 GraphicUsed by:1221
Symbol 1219 GraphicUsed by:1221
Symbol 1220 GraphicUsed by:1221
Symbol 1221 MovieClipUses:1200 423 1201 426 428 1202 430 1203 433 435 1205 1207 440 442 1208 445 1209 448 450 1210 1212 1213 1214 456 458 1215 1216 1217 1218 464 466 468 470 472 474 476 1219 479 1220Used by:1261
Symbol 1222 GraphicUsed by:1261
Symbol 1223 GraphicUsed by:1261
Symbol 1224 GraphicUsed by:1261
Symbol 1225 GraphicUsed by:1261
Symbol 1226 GraphicUsed by:1261
Symbol 1227 GraphicUsed by:1261
Symbol 1228 GraphicUsed by:1261
Symbol 1229 GraphicUsed by:1261
Symbol 1230 GraphicUsed by:1261
Symbol 1231 GraphicUsed by:1261
Symbol 1232 GraphicUsed by:1261
Symbol 1233 MovieClipUses:1100Used by:1261
Symbol 1234 MovieClipUses:1204Used by:1261 1471
Symbol 1235 MovieClipUses:1100Used by:1261 1471
Symbol 1236 GraphicUsed by:1261
Symbol 1237 MovieClipUses:1100Used by:1261
Symbol 1238 MovieClipUses:1204Used by:1261
Symbol 1239 MovieClipUses:1100Used by:1261
Symbol 1240 GraphicUsed by:1261
Symbol 1241 GraphicUsed by:1261
Symbol 1242 GraphicUsed by:1250
Symbol 1243 GraphicUsed by:1250
Symbol 1244 GraphicUsed by:1250
Symbol 1245 GraphicUsed by:1250
Symbol 1246 GraphicUsed by:1250
Symbol 1247 GraphicUsed by:1250
Symbol 1248 MovieClipUses:1211Used by:1250
Symbol 1249 GraphicUsed by:1250
Symbol 1250 MovieClipUses:1242 876 1243 879 881 1244 884 886 1245 888 1246 891 893 895 1247 1248 1249Used by:1261
Symbol 1251 GraphicUsed by:1261
Symbol 1252 GraphicUsed by:1261
Symbol 1253 GraphicUsed by:1261
Symbol 1254 GraphicUsed by:1261
Symbol 1255 MovieClipUses:1189Used by:1261
Symbol 1256 MovieClipUses:1189Used by:1261
Symbol 1257 MovieClipUses:1191Used by:1261
Symbol 1258 MovieClipUses:1191Used by:1261
Symbol 1259 MovieClipUses:1195Used by:1261
Symbol 1260 MovieClipUses:1197Used by:1261 1471
Symbol 1261 MovieClipUses:1188 1190 291 293 295 297 299 301 303 305 307 309 311 313 315 316 318 320 322 324 326 328 330 332 334 336 338 340 342 344 346 348 350 352 354 356 358 360 362 364 366 368 370 372 374 376 378 380 382 384 386 388 1192 391 393 395 397 399 401 1194 403 405 407 1196 1198 409 411 413 415 417 419 1199 1221 483 1222 486 487 488 1223 491 493 495 1224 498 1225 501 503 505 507 509 430 511 513 515 517 519 521 523 525 527 529 531 533 535 537 539 541 543 545 547 549 551 553 555 557 559 561 563 565 567 569 571 573 575 577 579 581 583 585 587 589 591 593 595 597 599 601 603 605 607 609 611 613 615 617 619 621 623 625 627 629 631 633 635 637 639 641 643 645 647 649 651 653 655 657 659 661 663 665 667 669 671 673 675 677 679 681 683 685 687 689 691 693 695 697 699 701 703 705 707 709 711 713 715 717 719 721 723 725 727 729 731 733 735 737 739 741 743 745 747 749 751 753 755 757 759 761 763 765 767 769 771 773 775 777 779 781 783 785 787 789 791 793 1226 796 798 799 1227 801 802 803 1228 806 807 1229 810 812 814 816 818 820 822 1230 825 1231 828 830 1232 1233 835 837 839 841 843 845 847 849 1234 1235 1236 1237 854 855 856 858 859 860 861 863 1238 1239 1240 868 1241 871 873 1250 1251 902 1252 905 1253 908 1254 1255 169 171 173 175 177 179 181 183 185 187 189 191 1256 194 196 198 200 202 204 205 207 209 211 213 215 217 219 221 223 225 227 229 233 235 237 239 241 1257 245 247 249 251 253 255 257 259 261 1258 268 270 272 274 276 278 280 282 284 286 1259 1260 1184 1185Used by:1262
Symbol 1262 MovieClipUses:1187 1261Used by:1263
Symbol 1263 MovieClipUses:1186 1262Used by:1982
Symbol 1264 GraphicUsed by:1321
Symbol 1265 GraphicUsed by:1321
Symbol 1266 GraphicUsed by:1267
Symbol 1267 MovieClipUses:1266Used by:1321
Symbol 1268 GraphicUsed by:1321
Symbol 1269 GraphicUsed by:1270
Symbol 1270 MovieClipUses:1269Used by:1321
Symbol 1271 GraphicUsed by:1272
Symbol 1272 MovieClipUses:1271Used by:1321
Symbol 1273 GraphicUsed by:1274
Symbol 1274 MovieClipUses:1273Used by:1321
Symbol 1275 GraphicUsed by:1321
Symbol 1276 GraphicUsed by:1277
Symbol 1277 MovieClipUses:1276Used by:1321
Symbol 1278 GraphicUsed by:1321
Symbol 1279 GraphicUsed by:1280
Symbol 1280 MovieClipUses:1279Used by:1321
Symbol 1281 GraphicUsed by:1321
Symbol 1282 GraphicUsed by:1283
Symbol 1283 MovieClipUses:1282Used by:1321
Symbol 1284 GraphicUsed by:1321
Symbol 1285 GraphicUsed by:1286
Symbol 1286 MovieClipUses:1285Used by:1321
Symbol 1287 GraphicUsed by:1321
Symbol 1288 GraphicUsed by:1305
Symbol 1289 GraphicUsed by:1290
Symbol 1290 MovieClipUses:1289Used by:1305
Symbol 1291 GraphicUsed by:1292
Symbol 1292 MovieClipUses:1291Used by:1305
Symbol 1293 GraphicUsed by:1294
Symbol 1294 MovieClipUses:1293Used by:1305
Symbol 1295 GraphicUsed by:1296
Symbol 1296 MovieClipUses:1295Used by:1305
Symbol 1297 GraphicUsed by:1298
Symbol 1298 MovieClipUses:1297Used by:1305
Symbol 1299 GraphicUsed by:1300
Symbol 1300 MovieClipUses:1299Used by:1305
Symbol 1301 GraphicUsed by:1302
Symbol 1302 MovieClipUses:1301Used by:1305
Symbol 1303 GraphicUsed by:1304
Symbol 1304 MovieClipUses:1303Used by:1305
Symbol 1305 MovieClipUses:1288 1290 1292 1294 1296 1298 1300 1302 1304Used by:1321
Symbol 1306 GraphicUsed by:1321
Symbol 1307 GraphicUsed by:1308
Symbol 1308 MovieClipUses:1307Used by:1320 1321
Symbol 1309 GraphicUsed by:1321
Symbol 1310 GraphicUsed by:1314
Symbol 1311 GraphicUsed by:1312
Symbol 1312 MovieClipUses:1311Used by:1314
Symbol 1313 GraphicUsed by:1314
Symbol 1314 MovieClipUses:1310 1312 1313Used by:1321
Symbol 1315 GraphicUsed by:1321
Symbol 1316 GraphicUsed by:1317
Symbol 1317 MovieClipUses:1316Used by:1321
Symbol 1318 MovieClipUses:1100Used by:1321
Symbol 1319 GraphicUsed by:1320
Symbol 1320 MovieClipUses:1319 1308Used by:1321
Symbol 1321 MovieClipUses:1264 430 1265 1267 1268 1270 1272 1274 1275 1277 1278 1280 1281 1283 1284 1286 1287 1305 1306 1308 1309 1314 1315 1317 1318 1320Used by:1982
Symbol 1322 GraphicUsed by:1333
Symbol 1323 GraphicUsed by:1333
Symbol 1324 GraphicUsed by:1333
Symbol 1325 GraphicUsed by:1333
Symbol 1326 GraphicUsed by:1327
Symbol 1327 MovieClipUses:1326Used by:1333
Symbol 1328 GraphicUsed by:1333
Symbol 1329 GraphicUsed by:1330
Symbol 1330 MovieClipUses:1329Used by:1333
Symbol 1331 GraphicUsed by:1333
Symbol 1332 GraphicUsed by:1333
Symbol 1333 MovieClipUses:1322 430 1323 914 916 1324 929 1325 1327 1328 1330 1331 938 1332Used by:1982
Symbol 1334 GraphicUsed by:1335
Symbol 1335 MovieClipUses:1334Used by:1351
Symbol 1336 GraphicUsed by:1337
Symbol 1337 MovieClipUses:1336Used by:1351
Symbol 1338 GraphicUsed by:1351
Symbol 1339 GraphicUsed by:1340
Symbol 1340 MovieClipUses:1339Used by:1351
Symbol 1341 GraphicUsed by:1342
Symbol 1342 MovieClipUses:1341Used by:1351
Symbol 1343 GraphicUsed by:1344
Symbol 1344 MovieClipUses:1343Used by:1351
Symbol 1345 GraphicUsed by:1346
Symbol 1346 MovieClipUses:1345Used by:1351
Symbol 1347 GraphicUsed by:1348
Symbol 1348 MovieClipUses:1347Used by:1351
Symbol 1349 GraphicUsed by:1350
Symbol 1350 MovieClipUses:1349Used by:1351
Symbol 1351 MovieClipUses:1335 1337 1338 1340 1342 1344 1346 1348 1350Used by:1384
Symbol 1352 GraphicUsed by:1353
Symbol 1353 MovieClipUses:1352Used by:1384
Symbol 1354 GraphicUsed by:1355
Symbol 1355 MovieClipUses:1354Used by:1384
Symbol 1356 GraphicUsed by:1357
Symbol 1357 MovieClipUses:1356Used by:1384
Symbol 1358 GraphicUsed by:1375
Symbol 1359 GraphicUsed by:1360
Symbol 1360 MovieClipUses:1359Used by:1375
Symbol 1361 GraphicUsed by:1362
Symbol 1362 MovieClipUses:1361Used by:1375
Symbol 1363 GraphicUsed by:1375
Symbol 1364 GraphicUsed by:1365
Symbol 1365 MovieClipUses:1364Used by:1375
Symbol 1366 GraphicUsed by:1375
Symbol 1367 GraphicUsed by:1368
Symbol 1368 MovieClipUses:1367Used by:1375
Symbol 1369 GraphicUsed by:1370
Symbol 1370 MovieClipUses:1369Used by:1375
Symbol 1371 GraphicUsed by:1372
Symbol 1372 MovieClipUses:1371Used by:1375
Symbol 1373 GraphicUsed by:1374
Symbol 1374 MovieClipUses:1373Used by:1375
Symbol 1375 MovieClipUses:1358 1360 1362 1363 1365 1366 1368 1370 1372 1374Used by:1384
Symbol 1376 GraphicUsed by:1377
Symbol 1377 MovieClipUses:1376Used by:1384
Symbol 1378 GraphicUsed by:1383
Symbol 1379 GraphicUsed by:1383
Symbol 1380 GraphicUsed by:1383
Symbol 1381 GraphicUsed by:1383
Symbol 1382 GraphicUsed by:1383
Symbol 1383 MovieClipUses:1378 943 1379 946 1380 1381 1382Used by:1384
Symbol 1384 MovieClipUses:1351 1353 1355 1357 1375 1377 1383Used by:1982
Symbol 1385 GraphicUsed by:1413
Symbol 1386 GraphicUsed by:1387
Symbol 1387 MovieClipUses:1386Used by:1413
Symbol 1388 GraphicUsed by:1413
Symbol 1389 GraphicUsed by:1413
Symbol 1390 GraphicUsed by:1391
Symbol 1391 MovieClipUses:1390Used by:1413
Symbol 1392 GraphicUsed by:1393
Symbol 1393 MovieClipUses:1392Used by:1413
Symbol 1394 GraphicUsed by:1395
Symbol 1395 MovieClipUses:1394Used by:1413
Symbol 1396 GraphicUsed by:1397
Symbol 1397 MovieClipUses:1396Used by:1413
Symbol 1398 GraphicUsed by:1399
Symbol 1399 MovieClipUses:1398Used by:1413
Symbol 1400 GraphicUsed by:1401
Symbol 1401 MovieClipUses:1400Used by:1413
Symbol 1402 GraphicUsed by:1413
Symbol 1403 GraphicUsed by:1404
Symbol 1404 MovieClipUses:1403Used by:1413
Symbol 1405 GraphicUsed by:1406
Symbol 1406 MovieClipUses:1405Used by:1413
Symbol 1407 GraphicUsed by:1408
Symbol 1408 MovieClipUses:1407Used by:1413
Symbol 1409 GraphicUsed by:1410
Symbol 1410 MovieClipUses:1409Used by:1413
Symbol 1411 GraphicUsed by:1412
Symbol 1412 MovieClipUses:1411Used by:1413
Symbol 1413 MovieClipUses:1385 1387 1388 430 1389 1391 1393 1395 1397 1399 1401 1402 1404 1406 1408 1410 1412Used by:1479
Symbol 1414 GraphicUsed by:1416
Symbol 1415 GraphicUsed by:1416
Symbol 1416 MovieClipUses:1414 430 1415Used by:1479
Symbol 1417 GraphicUsed by:1418
Symbol 1418 MovieClipUses:1417Used by:1479
Symbol 1419 GraphicUsed by:1420
Symbol 1420 MovieClipUses:1419Used by:1479
Symbol 1421 GraphicUsed by:1422
Symbol 1422 MovieClipUses:1421Used by:1479
Symbol 1423 GraphicUsed by:1424
Symbol 1424 MovieClipUses:1423Used by:1479
Symbol 1425 GraphicUsed by:1466
Symbol 1426 GraphicUsed by:1427
Symbol 1427 MovieClipUses:1426Used by:1466
Symbol 1428 GraphicUsed by:1429
Symbol 1429 MovieClipUses:1428Used by:1466
Symbol 1430 GraphicUsed by:1466
Symbol 1431 GraphicUsed by:1432
Symbol 1432 MovieClipUses:1431Used by:1466
Symbol 1433 GraphicUsed by:1466
Symbol 1434 GraphicUsed by:1435
Symbol 1435 MovieClipUses:1434Used by:1466
Symbol 1436 GraphicUsed by:1437
Symbol 1437 MovieClipUses:1436Used by:1466
Symbol 1438 GraphicUsed by:1466
Symbol 1439 GraphicUsed by:1440
Symbol 1440 MovieClipUses:1439Used by:1466
Symbol 1441 GraphicUsed by:1442
Symbol 1442 MovieClipUses:1441Used by:1466
Symbol 1443 GraphicUsed by:1466
Symbol 1444 GraphicUsed by:1445
Symbol 1445 MovieClipUses:1444Used by:1466
Symbol 1446 GraphicUsed by:1447
Symbol 1447 MovieClipUses:1446Used by:1466
Symbol 1448 GraphicUsed by:1466
Symbol 1449 GraphicUsed by:1450
Symbol 1450 MovieClipUses:1449Used by:1466
Symbol 1451 GraphicUsed by:1466
Symbol 1452 GraphicUsed by:1453
Symbol 1453 MovieClipUses:1452Used by:1466
Symbol 1454 GraphicUsed by:1455
Symbol 1455 MovieClipUses:1454Used by:1466
Symbol 1456 GraphicUsed by:1466
Symbol 1457 GraphicUsed by:1458
Symbol 1458 MovieClipUses:1457Used by:1466
Symbol 1459 GraphicUsed by:1460
Symbol 1460 MovieClipUses:1459Used by:1466
Symbol 1461 GraphicUsed by:1462
Symbol 1462 MovieClipUses:1461Used by:1466
Symbol 1463 GraphicUsed by:1464
Symbol 1464 MovieClipUses:1463Used by:1466
Symbol 1465 GraphicUsed by:1466
Symbol 1466 MovieClipUses:1425 1427 1429 1430 1432 1433 1435 1437 1438 1440 1442 1443 1445 1447 1448 1450 1451 1453 1455 1456 1458 1460 1462 1464 1465Used by:1479
Symbol 1467 GraphicUsed by:1471
Symbol 1468 GraphicUsed by:1471
Symbol 1469 GraphicUsed by:1471
Symbol 1470 GraphicUsed by:1471
Symbol 1471 MovieClipUses:1467 1235 1234 1468 388 362 1469 1260 1470Used by:1479
Symbol 1472 GraphicUsed by:1476
Symbol 1473 GraphicUsed by:1474
Symbol 1474 MovieClipUses:1473Used by:1476
Symbol 1475 GraphicUsed by:1476
Symbol 1476 MovieClipUses:1472 1474 1475Used by:1479
Symbol 1477 GraphicUsed by:1478
Symbol 1478 MovieClipUses:1477Used by:1479
Symbol 1479 MovieClipUses:1413 1416 1418 1420 1422 1424 1466 1471 1476 1478Used by:1982
Symbol 1480 GraphicUsed by:1481
Symbol 1481 MovieClipUses:1480Used by:1492
Symbol 1482 GraphicUsed by:1483
Symbol 1483 MovieClipUses:1482Used by:1492
Symbol 1484 GraphicUsed by:1485
Symbol 1485 MovieClipUses:1484Used by:1492
Symbol 1486 GraphicUsed by:1487
Symbol 1487 MovieClipUses:1486Used by:1492
Symbol 1488 GraphicUsed by:1489
Symbol 1489 MovieClipUses:1488Used by:1492
Symbol 1490 GraphicUsed by:1491
Symbol 1491 MovieClipUses:1490Used by:1492
Symbol 1492 MovieClipUses:1481 1483 1485 1487 1489 1491 956Used by:1982
Symbol 1493 GraphicUsed by:1494
Symbol 1494 MovieClipUses:1493Used by:1529
Symbol 1495 GraphicUsed by:1499
Symbol 1496 GraphicUsed by:1497
Symbol 1497 MovieClipUses:1496Used by:1499
Symbol 1498 GraphicUsed by:1499
Symbol 1499 MovieClipUses:1495 1497 1498Used by:1529
Symbol 1500 GraphicUsed by:1504
Symbol 1501 GraphicUsed by:1502
Symbol 1502 MovieClipUses:1501Used by:1504
Symbol 1503 GraphicUsed by:1504
Symbol 1504 MovieClipUses:1500 1502 1503Used by:1529
Symbol 1505 GraphicUsed by:1509
Symbol 1506 GraphicUsed by:1507
Symbol 1507 MovieClipUses:1506Used by:1509
Symbol 1508 GraphicUsed by:1509
Symbol 1509 MovieClipUses:1505 1507 1508Used by:1529
Symbol 1510 GraphicUsed by:1511
Symbol 1511 MovieClipUses:1510Used by:1529
Symbol 1512 GraphicUsed by:1516
Symbol 1513 GraphicUsed by:1514
Symbol 1514 MovieClipUses:1513Used by:1516
Symbol 1515 GraphicUsed by:1516
Symbol 1516 MovieClipUses:1512 1514 1515Used by:1529
Symbol 1517 GraphicUsed by:1523
Symbol 1518 GraphicUsed by:1519
Symbol 1519 MovieClipUses:1518Used by:1523
Symbol 1520 GraphicUsed by:1521
Symbol 1521 MovieClipUses:1520Used by:1523
Symbol 1522 GraphicUsed by:1523
Symbol 1523 MovieClipUses:1517 1519 1521 1522Used by:1529
Symbol 1524 GraphicUsed by:1528
Symbol 1525 GraphicUsed by:1526
Symbol 1526 MovieClipUses:1525Used by:1528
Symbol 1527 GraphicUsed by:1528
Symbol 1528 MovieClipUses:1524 1526 1527Used by:1529
Symbol 1529 MovieClipUses:1494 1499 1504 1509 1511 1516 1523 1528Used by:1982
Symbol 1530 GraphicUsed by:1531
Symbol 1531 MovieClipUses:1530Used by:1768
Symbol 1532 GraphicUsed by:1590
Symbol 1533 GraphicUsed by:1534
Symbol 1534 MovieClipUses:1533Used by:1590
Symbol 1535 GraphicUsed by:1536
Symbol 1536 MovieClipUses:1535Used by:1590
Symbol 1537 GraphicUsed by:1538
Symbol 1538 MovieClipUses:1537Used by:1590
Symbol 1539 GraphicUsed by:1540 1541 1542 1543 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1558 1559 1567 1568 1571
Symbol 1540 MovieClipUses:1539Used by:1590
Symbol 1541 MovieClipUses:1539Used by:1590
Symbol 1542 MovieClipUses:1539Used by:1590
Symbol 1543 MovieClipUses:1539Used by:1590
Symbol 1544 GraphicUsed by:1545 1557 1560 1565 1566
Symbol 1545 MovieClipUses:1544Used by:1590
Symbol 1546 MovieClipUses:1539Used by:1590
Symbol 1547 MovieClipUses:1539Used by:1590
Symbol 1548 MovieClipUses:1539Used by:1590
Symbol 1549 MovieClipUses:1539Used by:1590
Symbol 1550 MovieClipUses:1539Used by:1590
Symbol 1551 MovieClipUses:1539Used by:1590
Symbol 1552 MovieClipUses:1539Used by:1590
Symbol 1553 MovieClipUses:1539Used by:1590
Symbol 1554 MovieClipUses:1539Used by:1590
Symbol 1555 MovieClipUses:1539Used by:1590
Symbol 1556 MovieClipUses:1539Used by:1590
Symbol 1557 MovieClipUses:1544Used by:1590
Symbol 1558 MovieClipUses:1539Used by:1590
Symbol 1559 MovieClipUses:1539Used by:1590
Symbol 1560 MovieClipUses:1544Used by:1590
Symbol 1561 GraphicUsed by:1562
Symbol 1562 MovieClipUses:1561Used by:1590
Symbol 1563 GraphicUsed by:1564
Symbol 1564 MovieClipUses:1563Used by:1590
Symbol 1565 MovieClipUses:1544Used by:1590
Symbol 1566 MovieClipUses:1544Used by:1590
Symbol 1567 MovieClipUses:1539Used by:1590
Symbol 1568 MovieClipUses:1539Used by:1590
Symbol 1569 GraphicUsed by:1570
Symbol 1570 MovieClipUses:1569Used by:1590
Symbol 1571 MovieClipUses:1539Used by:1590
Symbol 1572 GraphicUsed by:1573
Symbol 1573 MovieClipUses:1572Used by:1590
Symbol 1574 GraphicUsed by:1590
Symbol 1575 GraphicUsed by:1576
Symbol 1576 MovieClipUses:1575Used by:1590
Symbol 1577 GraphicUsed by:1578 1579 1584 1585 1586
Symbol 1578 MovieClipUses:1577Used by:1590
Symbol 1579 MovieClipUses:1577Used by:1590
Symbol 1580 GraphicUsed by:1581
Symbol 1581 MovieClipUses:1580Used by:1590
Symbol 1582 GraphicUsed by:1583
Symbol 1583 MovieClipUses:1582Used by:1590
Symbol 1584 MovieClipUses:1577Used by:1590
Symbol 1585 MovieClipUses:1577Used by:1590
Symbol 1586 MovieClipUses:1577Used by:1590
Symbol 1587 GraphicUsed by:1588
Symbol 1588 MovieClipUses:1587Used by:1590
Symbol 1589 GraphicUsed by:1590
Symbol 1590 MovieClipUses:1532 1534 1536 1538 1540 1541 1542 1543 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1562 1564 1565 1566 1567 1568 1570 1571 1573 1574 1576 1578 1579 1581 1583 1584 1585 1586 1588 1589Used by:1768
Symbol 1591 GraphicUsed by:1593
Symbol 1592 GraphicUsed by:1593
Symbol 1593 MovieClipUses:1591 1205 435 1592Used by:1768
Symbol 1594 GraphicUsed by:1748
Symbol 1595 GraphicUsed by:1596
Symbol 1596 MovieClipUses:1595Used by:1748
Symbol 1597 GraphicUsed by:1748
Symbol 1598 GraphicUsed by:1599 1601 1602 1609 1637 1650 1655 1671 1675 1678 1680 1722 1726 1727 1730 1733
Symbol 1599 MovieClipUses:1598Used by:1748
Symbol 1600 MovieClipUses:1211Used by:1748
Symbol 1601 MovieClipUses:1598Used by:1748
Symbol 1602 MovieClipUses:1598Used by:1748
Symbol 1603 MovieClipUses:1211Used by:1748
Symbol 1604 MovieClipUses:1211Used by:1748
Symbol 1605 MovieClipUses:1211Used by:1748
Symbol 1606 MovieClipUses:1211Used by:1748
Symbol 1607 MovieClipUses:1211Used by:1748
Symbol 1608 MovieClipUses:1211Used by:1748
Symbol 1609 MovieClipUses:1598Used by:1748
Symbol 1610 GraphicUsed by:1611 1627 1649 1652 1653 1654 1657 1669 1672 1682 1690 1696 1735 1738
Symbol 1611 MovieClipUses:1610Used by:1748
Symbol 1612 MovieClipUses:1211Used by:1748
Symbol 1613 GraphicUsed by:1614
Symbol 1614 MovieClipUses:1613Used by:1748
Symbol 1615 GraphicUsed by:1616 1619 1673 1694 1710 1736
Symbol 1616 MovieClipUses:1615Used by:1748
Symbol 1617 GraphicUsed by:1618 1688 1689 1697 1699 1732 1742
Symbol 1618 MovieClipUses:1617Used by:1748
Symbol 1619 MovieClipUses:1615Used by:1748
Symbol 1620 MovieClipUses:1211Used by:1748
Symbol 1621 GraphicUsed by:1622 1623 1684 1695 1724
Symbol 1622 MovieClipUses:1621Used by:1748
Symbol 1623 MovieClipUses:1621Used by:1748
Symbol 1624 MovieClipUses:1211Used by:1748
Symbol 1625 MovieClipUses:1211Used by:1748
Symbol 1626 MovieClipUses:1211Used by:1748
Symbol 1627 MovieClipUses:1610Used by:1748
Symbol 1628 MovieClipUses:1211Used by:1748
Symbol 1629 GraphicUsed by:1630 1658 1685 1704 1737
Symbol 1630 MovieClipUses:1629Used by:1748
Symbol 1631 GraphicUsed by:1632 1633 1634 1641 1647 1651 1656 1670 1674 1676 1683 1691 1698 1702 1706 1707 1709 1713 1718 1725 1728 1731 1739 1740 1741 1743 1744 1746 1747
Symbol 1632 MovieClipUses:1631Used by:1748
Symbol 1633 MovieClipUses:1631Used by:1748
Symbol 1634 MovieClipUses:1631Used by:1748
Symbol 1635 MovieClipUses:1211Used by:1748
Symbol 1636 MovieClipUses:1211Used by:1748
Symbol 1637 MovieClipUses:1598Used by:1748
Symbol 1638 GraphicUsed by:1748
Symbol 1639 MovieClipUses:1211Used by:1748
Symbol 1640 MovieClipUses:1211Used by:1748
Symbol 1641 MovieClipUses:1631Used by:1748
Symbol 1642 MovieClipUses:1211Used by:1748
Symbol 1643 MovieClipUses:1211Used by:1748
Symbol 1644 MovieClipUses:1211Used by:1748
Symbol 1645 MovieClipUses:1211Used by:1748
Symbol 1646 MovieClipUses:1211Used by:1748
Symbol 1647 MovieClipUses:1631Used by:1748
Symbol 1648 MovieClipUses:1211Used by:1748
Symbol 1649 MovieClipUses:1610Used by:1748
Symbol 1650 MovieClipUses:1598Used by:1748
Symbol 1651 MovieClipUses:1631Used by:1748
Symbol 1652 MovieClipUses:1610Used by:1748
Symbol 1653 MovieClipUses:1610Used by:1748
Symbol 1654 MovieClipUses:1610Used by:1748
Symbol 1655 MovieClipUses:1598Used by:1748
Symbol 1656 MovieClipUses:1631Used by:1748
Symbol 1657 MovieClipUses:1610Used by:1748
Symbol 1658 MovieClipUses:1629Used by:1748
Symbol 1659 MovieClipUses:1211Used by:1748
Symbol 1660 GraphicUsed by:1661 1664
Symbol 1661 MovieClipUses:1660Used by:1748
Symbol 1662 GraphicUsed by:1663 1665
Symbol 1663 MovieClipUses:1662Used by:1748
Symbol 1664 MovieClipUses:1660Used by:1748
Symbol 1665 MovieClipUses:1662Used by:1748
Symbol 1666 GraphicUsed by:1667
Symbol 1667 MovieClipUses:1666Used by:1748
Symbol 1668 GraphicUsed by:1748
Symbol 1669 MovieClipUses:1610Used by:1748
Symbol 1670 MovieClipUses:1631Used by:1748
Symbol 1671 MovieClipUses:1598Used by:1748
Symbol 1672 MovieClipUses:1610Used by:1748
Symbol 1673 MovieClipUses:1615Used by:1748
Symbol 1674 MovieClipUses:1631Used by:1748
Symbol 1675 MovieClipUses:1598Used by:1748
Symbol 1676 MovieClipUses:1631Used by:1748
Symbol 1677 MovieClipUses:1211Used by:1748
Symbol 1678 MovieClipUses:1598Used by:1748
Symbol 1679 GraphicUsed by:1748
Symbol 1680 MovieClipUses:1598Used by:1748
Symbol 1681 MovieClipUses:1211Used by:1748
Symbol 1682 MovieClipUses:1610Used by:1748
Symbol 1683 MovieClipUses:1631Used by:1748
Symbol 1684 MovieClipUses:1621Used by:1748
Symbol 1685 MovieClipUses:1629Used by:1748
Symbol 1686 GraphicUsed by:1687 1723
Symbol 1687 MovieClipUses:1686Used by:1748
Symbol 1688 MovieClipUses:1617Used by:1748
Symbol 1689 MovieClipUses:1617Used by:1748
Symbol 1690 MovieClipUses:1610Used by:1748
Symbol 1691 MovieClipUses:1631Used by:1748
Symbol 1692 GraphicUsed by:1693 1703
Symbol 1693 MovieClipUses:1692Used by:1748
Symbol 1694 MovieClipUses:1615Used by:1748
Symbol 1695 MovieClipUses:1621Used by:1748
Symbol 1696 MovieClipUses:1610Used by:1748
Symbol 1697 MovieClipUses:1617Used by:1748
Symbol 1698 MovieClipUses:1631Used by:1748
Symbol 1699 MovieClipUses:1617Used by:1748
Symbol 1700 GraphicUsed by:1701
Symbol 1701 MovieClipUses:1700Used by:1748
Symbol 1702 MovieClipUses:1631Used by:1748
Symbol 1703 MovieClipUses:1692Used by:1748
Symbol 1704 MovieClipUses:1629Used by:1748
Symbol 1705 MovieClipUses:1211Used by:1748
Symbol 1706 MovieClipUses:1631Used by:1748
Symbol 1707 MovieClipUses:1631Used by:1748
Symbol 1708 MovieClipUses:1211Used by:1748
Symbol 1709 MovieClipUses:1631Used by:1748
Symbol 1710 MovieClipUses:1615Used by:1748
Symbol 1711 GraphicUsed by:1712 1714 2038
Symbol 1712 MovieClipUses:1711Used by:1748
Symbol 1713 MovieClipUses:1631Used by:1748
Symbol 1714 MovieClipUses:1711Used by:1748
Symbol 1715 GraphicUsed by:1716 1721
Symbol 1716 MovieClipUses:1715Used by:1748
Symbol 1717 MovieClipUses:1211Used by:1748
Symbol 1718 MovieClipUses:1631Used by:1748
Symbol 1719 MovieClipUses:1211Used by:1748
Symbol 1720 MovieClipUses:1211Used by:1748
Symbol 1721 MovieClipUses:1715Used by:1748
Symbol 1722 MovieClipUses:1598Used by:1748
Symbol 1723 MovieClipUses:1686Used by:1748
Symbol 1724 MovieClipUses:1621Used by:1748
Symbol 1725 MovieClipUses:1631Used by:1748
Symbol 1726 MovieClipUses:1598Used by:1748
Symbol 1727 MovieClipUses:1598Used by:1748
Symbol 1728 MovieClipUses:1631Used by:1748
Symbol 1729 MovieClipUses:1211Used by:1748
Symbol 1730 MovieClipUses:1598Used by:1748
Symbol 1731 MovieClipUses:1631Used by:1748
Symbol 1732 MovieClipUses:1617Used by:1748
Symbol 1733 MovieClipUses:1598Used by:1748
Symbol 1734 MovieClipUses:1211Used by:1748
Symbol 1735 MovieClipUses:1610Used by:1748
Symbol 1736 MovieClipUses:1615Used by:1748
Symbol 1737 MovieClipUses:1629Used by:1748
Symbol 1738 MovieClipUses:1610Used by:1748
Symbol 1739 MovieClipUses:1631Used by:1748
Symbol 1740 MovieClipUses:1631Used by:1748
Symbol 1741 MovieClipUses:1631Used by:1748
Symbol 1742 MovieClipUses:1617Used by:1748
Symbol 1743 MovieClipUses:1631Used by:1748
Symbol 1744 MovieClipUses:1631Used by:1748
Symbol 1745 GraphicUsed by:1748
Symbol 1746 MovieClipUses:1631Used by:1748
Symbol 1747 MovieClipUses:1631Used by:1748
Symbol 1748 MovieClipUses:1594 1596 1597 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1611 1612 1614 1616 1618 1619 1620 1622 1623 1624 1625 1626 1627 1628 1630 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1661 1663 1664 1665 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1687 1688 1689 1690 1691 1693 1694 1695 1696 1697 1698 1699 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1712 1713 1714 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747Used by:1768
Symbol 1749 GraphicUsed by:1750
Symbol 1750 MovieClipUses:1749Used by:1768
Symbol 1751 GraphicUsed by:1752
Symbol 1752 MovieClipUses:1751Used by:1768
Symbol 1753 GraphicUsed by:1754
Symbol 1754 MovieClipUses:1753Used by:1768
Symbol 1755 GraphicUsed by:1757
Symbol 1756 GraphicUsed by:1757
Symbol 1757 MovieClipUses:1755 1205 435 1756Used by:1768
Symbol 1758 BitmapUsed by:1759
Symbol 1759 GraphicUses:1758Used by:1767
Symbol 1760 GraphicUsed by:1761
Symbol 1761 MovieClipUses:1760Used by:1767
Symbol 1762 GraphicUsed by:1763
Symbol 1763 MovieClipUses:1762Used by:1767
Symbol 1764 GraphicUsed by:1765
Symbol 1765 MovieClipUses:1764Used by:1767
Symbol 1766 GraphicUsed by:1767
Symbol 1767 MovieClipUses:1759 1761 1763 1765 1766Used by:1768
Symbol 1768 MovieClipUses:1531 1590 1593 1748 1750 1752 1754 1757 1767Used by:1982
Symbol 1769 GraphicUsed by:1770
Symbol 1770 MovieClipUses:1769Used by:1847
Symbol 1771 GraphicUsed by:1772
Symbol 1772 MovieClipUses:1771Used by:1847
Symbol 1773 GraphicUsed by:1787
Symbol 1774 GraphicUsed by:1775
Symbol 1775 MovieClipUses:1774Used by:1787
Symbol 1776 GraphicUsed by:1777
Symbol 1777 MovieClipUses:1776Used by:1787
Symbol 1778 GraphicUsed by:1779
Symbol 1779 MovieClipUses:1778Used by:1787
Symbol 1780 GraphicUsed by:1781
Symbol 1781 MovieClipUses:1780Used by:1787
Symbol 1782 GraphicUsed by:1787
Symbol 1783 GraphicUsed by:1784
Symbol 1784 MovieClipUses:1783Used by:1787
Symbol 1785 GraphicUsed by:1786
Symbol 1786 MovieClipUses:1785Used by:1787
Symbol 1787 MovieClipUses:1773 1775 1777 1779 1781 1782 1784 1786Used by:1847
Symbol 1788 GraphicUsed by:1810
Symbol 1789 GraphicUsed by:1790
Symbol 1790 MovieClipUses:1789Used by:1810
Symbol 1791 GraphicUsed by:1792
Symbol 1792 MovieClipUses:1791Used by:1810
Symbol 1793 GraphicUsed by:1810
Symbol 1794 GraphicUsed by:1795
Symbol 1795 MovieClipUses:1794Used by:1810
Symbol 1796 GraphicUsed by:1797
Symbol 1797 MovieClipUses:1796Used by:1810
Symbol 1798 GraphicUsed by:1799
Symbol 1799 MovieClipUses:1798Used by:1810
Symbol 1800 GraphicUsed by:1801 1883 1888
Symbol 1801 MovieClipUses:1800Used by:1808
Symbol 1802 GraphicUsed by:1803 1884 1889
Symbol 1803 MovieClipUses:1802Used by:1808
Symbol 1804 GraphicUsed by:1805 1885 1890
Symbol 1805 MovieClipUses:1804Used by:1808
Symbol 1806 GraphicUsed by:1807
Symbol 1807 MovieClipUses:1806Used by:1808
Symbol 1808 MovieClipUses:1801 1803 1805 1807Used by:1810
Symbol 1809 GraphicUsed by:1810
Symbol 1810 MovieClipUses:1788 1790 1792 1793 1795 1797 1799 1808 1809Used by:1847
Symbol 1811 GraphicUsed by:1812
Symbol 1812 MovieClipUses:1811Used by:1847
Symbol 1813 GraphicUsed by:1814
Symbol 1814 MovieClipUses:1813Used by:1847
Symbol 1815 GraphicUsed by:1846
Symbol 1816 GraphicUsed by:1817
Symbol 1817 MovieClipUses:1816Used by:1846
Symbol 1818 GraphicUsed by:1819
Symbol 1819 MovieClipUses:1818Used by:1846
Symbol 1820 GraphicUsed by:1821
Symbol 1821 MovieClipUses:1820Used by:1846
Symbol 1822 GraphicUsed by:1823
Symbol 1823 MovieClipUses:1822Used by:1846
Symbol 1824 GraphicUsed by:1825
Symbol 1825 MovieClipUses:1824Used by:1846
Symbol 1826 GraphicUsed by:1827
Symbol 1827 MovieClipUses:1826Used by:1846
Symbol 1828 GraphicUsed by:1829
Symbol 1829 MovieClipUses:1828Used by:1846
Symbol 1830 GraphicUsed by:1831
Symbol 1831 MovieClipUses:1830Used by:1846
Symbol 1832 GraphicUsed by:1833
Symbol 1833 MovieClipUses:1832Used by:1846
Symbol 1834 GraphicUsed by:1846
Symbol 1835 GraphicUsed by:1836
Symbol 1836 MovieClipUses:1835Used by:1846
Symbol 1837 GraphicUsed by:1838
Symbol 1838 MovieClipUses:1837Used by:1846
Symbol 1839 GraphicUsed by:1840
Symbol 1840 MovieClipUses:1839Used by:1846
Symbol 1841 GraphicUsed by:1842
Symbol 1842 MovieClipUses:1841Used by:1846
Symbol 1843 GraphicUsed by:1844
Symbol 1844 MovieClipUses:1843Used by:1846
Symbol 1845 GraphicUsed by:1846
Symbol 1846 MovieClipUses:1815 1817 1819 1821 1823 1825 1827 1829 1831 1833 1834 1836 1838 1840 1842 1844 1845Used by:1847
Symbol 1847 MovieClipUses:1770 1772 1787 1810 1812 1814 1846Used by:1982
Symbol 1848 GraphicUsed by:1849
Symbol 1849 MovieClipUses:1848Used by:1872
Symbol 1850 GraphicUsed by:1854
Symbol 1851 GraphicUsed by:1852
Symbol 1852 MovieClipUses:1851Used by:1854
Symbol 1853 GraphicUsed by:1854
Symbol 1854 MovieClipUses:1850 1852 1853Used by:1872
Symbol 1855 GraphicUsed by:1856
Symbol 1856 MovieClipUses:1855Used by:1872
Symbol 1857 GraphicUsed by:1869
Symbol 1858 GraphicUsed by:1869
Symbol 1859 GraphicUsed by:1869
Symbol 1860 GraphicUsed by:1861
Symbol 1861 MovieClipUses:1860Used by:1869
Symbol 1862 GraphicUsed by:1869
Symbol 1863 GraphicUsed by:1864
Symbol 1864 MovieClipUses:1863Used by:1869
Symbol 1865 GraphicUsed by:1869
Symbol 1866 GraphicUsed by:1867
Symbol 1867 MovieClipUses:1866Used by:1869
Symbol 1868 GraphicUsed by:1869
Symbol 1869 MovieClipUses:1857 966 1858 969 1859 1861 1862 1864 1865 1867 1868Used by:1872
Symbol 1870 GraphicUsed by:1871
Symbol 1871 MovieClipUses:1870Used by:1872
Symbol 1872 MovieClipUses:1849 1854 1856 1869 1871Used by:1982
Symbol 1873 BitmapUsed by:1874
Symbol 1874 GraphicUses:1873Used by:1875
Symbol 1875 MovieClipUses:1874Used by:1911
Symbol 1876 GraphicUsed by:1877
Symbol 1877 MovieClipUses:1876Used by:1911
Symbol 1878 GraphicUsed by:1879
Symbol 1879 MovieClipUses:1878Used by:1911
Symbol 1880 GraphicUsed by:1881
Symbol 1881 MovieClipUses:1880Used by:1911
Symbol 1882 GraphicUsed by:1893
Symbol 1883 MovieClipUses:1800Used by:1893
Symbol 1884 MovieClipUses:1802Used by:1893
Symbol 1885 MovieClipUses:1804Used by:1893
Symbol 1886 GraphicUsed by:1887
Symbol 1887 MovieClipUses:1886Used by:1893
Symbol 1888 MovieClipUses:1800Used by:1893
Symbol 1889 MovieClipUses:1802Used by:1893
Symbol 1890 MovieClipUses:1804Used by:1893
Symbol 1891 GraphicUsed by:1892
Symbol 1892 MovieClipUses:1891Used by:1893
Symbol 1893 MovieClipUses:1882 1883 1884 1885 1887 1888 1889 1890 1892Used by:1911
Symbol 1894 GraphicUsed by:1902
Symbol 1895 GraphicUsed by:1896
Symbol 1896 MovieClipUses:1895Used by:1902
Symbol 1897 GraphicUsed by:1902
Symbol 1898 GraphicUsed by:1899 1967
Symbol 1899 MovieClipUses:1898Used by:1902
Symbol 1900 GraphicUsed by:1901 1968
Symbol 1901 MovieClipUses:1900Used by:1902
Symbol 1902 MovieClipUses:1894 1896 1897 1899 1901Used by:1911
Symbol 1903 GraphicUsed by:1906
Symbol 1904 GraphicUsed by:1905
Symbol 1905 MovieClipUses:1904Used by:1906
Symbol 1906 MovieClipUses:1903 1905Used by:1911
Symbol 1907 GraphicUsed by:1908
Symbol 1908 MovieClipUses:1907Used by:1911
Symbol 1909 GraphicUsed by:1910
Symbol 1910 MovieClipUses:1909Used by:1911 2061 2064
Symbol 1911 MovieClipUses:1875 1877 1879 1881 1893 1902 1906 1908 1910Used by:1982
Symbol 1912 GraphicUsed by:1929
Symbol 1913 GraphicUsed by:1914
Symbol 1914 MovieClipUses:1913Used by:1929
Symbol 1915 GraphicUsed by:1916
Symbol 1916 MovieClipUses:1915Used by:1929
Symbol 1917 GraphicUsed by:1929
Symbol 1918 GraphicUsed by:1919
Symbol 1919 MovieClipUses:1918Used by:1929 1963
Symbol 1920 GraphicUsed by:1921
Symbol 1921 MovieClipUses:1920Used by:1929 1963
Symbol 1922 GraphicUsed by:1923
Symbol 1923 MovieClipUses:1922Used by:1929 1963
Symbol 1924 BitmapUsed by:1925
Symbol 1925 GraphicUses:1924Used by:1929
Symbol 1926 GraphicUsed by:1927
Symbol 1927 MovieClipUses:1926Used by:1929
Symbol 1928 GraphicUsed by:1929
Symbol 1929 MovieClipUses:1912 1914 1916 1917 1919 1921 1923 1925 1927 1928Used by:1981
Symbol 1930 GraphicUsed by:1940
Symbol 1931 GraphicUsed by:1932
Symbol 1932 MovieClipUses:1931Used by:1940
Symbol 1933 GraphicUsed by:1940
Symbol 1934 GraphicUsed by:1935
Symbol 1935 MovieClipUses:1934Used by:1940
Symbol 1936 GraphicUsed by:1940
Symbol 1937 GraphicUsed by:1938
Symbol 1938 MovieClipUses:1937Used by:1940
Symbol 1939 GraphicUsed by:1940
Symbol 1940 MovieClipUses:1930 1932 1933 1935 1936 1938 1939Used by:1981
Symbol 1941 GraphicUsed by:1963
Symbol 1942 GraphicUsed by:1963
Symbol 1943 GraphicUsed by:1963
Symbol 1944 GraphicUsed by:1963
Symbol 1945 GraphicUsed by:1963
Symbol 1946 GraphicUsed by:1963
Symbol 1947 GraphicUsed by:1948
Symbol 1948 MovieClipUses:1947Used by:1963
Symbol 1949 GraphicUsed by:1963
Symbol 1950 GraphicUsed by:1951
Symbol 1951 MovieClipUses:1950Used by:1963
Symbol 1952 GraphicUsed by:1963
Symbol 1953 GraphicUsed by:1956
Symbol 1954 GraphicUsed by:1955
Symbol 1955 MovieClipUses:1954Used by:1956 1958
Symbol 1956 MovieClipUses:1953 1955Used by:1963
Symbol 1957 GraphicUsed by:1958
Symbol 1958 MovieClipUses:1957 1955Used by:1963
Symbol 1959 GraphicUsed by:1963
Symbol 1960 GraphicUsed by:1961
Symbol 1961 MovieClipUses:1960Used by:1963
Symbol 1962 GraphicUsed by:1963
Symbol 1963 MovieClipUses:1941 430 1942 1943 1944 1945 1946 1919 1921 1923 1948 1949 1951 1952 1956 1958 1959 1961 1962Used by:1981
Symbol 1964 GraphicUsed by:1965
Symbol 1965 MovieClipUses:1964Used by:1981
Symbol 1966 GraphicUsed by:1972
Symbol 1967 MovieClipUses:1898Used by:1972
Symbol 1968 MovieClipUses:1900Used by:1972
Symbol 1969 GraphicUsed by:1972
Symbol 1970 GraphicUsed by:1971
Symbol 1971 MovieClipUses:1970Used by:1972
Symbol 1972 MovieClipUses:1966 1967 1968 1969 1971Used by:1981
Symbol 1973 GraphicUsed by:1974
Symbol 1974 MovieClipUses:1973Used by:1981
Symbol 1975 GraphicUsed by:1980
Symbol 1976 GraphicUsed by:1978
Symbol 1977 GraphicUsed by:1978
Symbol 1978 MovieClipUses:1976 1977Used by:1980
Symbol 1979 GraphicUsed by:1980
Symbol 1980 MovieClipUses:1975 984 1978 1979Used by:1981
Symbol 1981 MovieClipUses:1929 1940 1963 1965 1972 1974 1980Used by:1982
Symbol 1982 MovieClipUses:1263 1321 1333 1384 1479 1492 1529 1768 1847 1872 1911 1981Used by:2082
Symbol 1983 GraphicUsed by:1988
Symbol 1984 GraphicUsed by:1985
Symbol 1985 MovieClipUses:1984Used by:1988
Symbol 1986 GraphicUsed by:1988
Symbol 1987 GraphicUsed by:1988
Symbol 1988 ButtonUses:1983 1985 1986 1987Used by:2081
Symbol 1989 GraphicUsed by:2005
Symbol 1990 GraphicUsed by:1991
Symbol 1991 MovieClipUses:1990Used by:2001 2005
Symbol 1992 GraphicUsed by:1993
Symbol 1993 MovieClipUses:1992Used by:2001 2005
Symbol 1994 GraphicUsed by:2005
Symbol 1995 GraphicUsed by:1996
Symbol 1996 MovieClipUses:1995Used by:2001 2005
Symbol 1997 GraphicUsed by:1998 2018
Symbol 1998 MovieClipUses:1997Used by:2001 2005
Symbol 1999 GraphicUsed by:2001
Symbol 2000 GraphicUsed by:2001
Symbol 2001 MovieClipUses:1999 1991 1993 2000 1996 1998Used by:2005
Symbol 2002 GraphicUsed by:2005
Symbol 2003 GraphicUsed by:2005
Symbol 2004 GraphicUsed by:2005
Symbol 2005 ButtonUses:1989 1991 1993 1994 1996 1998 2001 2002 2003 2004Used by:2081
Symbol 2006 GraphicUsed by:2016
Symbol 2007 GraphicUsed by:2008
Symbol 2008 MovieClipUses:2007Used by:2012 2016
Symbol 2009 GraphicUsed by:2016
Symbol 2010 GraphicUsed by:2012
Symbol 2011 GraphicUsed by:2012
Symbol 2012 MovieClipUses:2010 2008 2011Used by:2016
Symbol 2013 GraphicUsed by:2016
Symbol 2014 GraphicUsed by:2016
Symbol 2015 GraphicUsed by:2016
Symbol 2016 ButtonUses:2006 2008 2009 2012 2013 2014 2015Used by:2081
Symbol 2017 GraphicUsed by:2024
Symbol 2018 MovieClipUses:1997Used by:2021 2024
Symbol 2019 GraphicUsed by:2021 2024
Symbol 2020 GraphicUsed by:2021
Symbol 2021 MovieClipUses:2020 2018 2019Used by:2024
Symbol 2022 GraphicUsed by:2024
Symbol 2023 GraphicUsed by:2024
Symbol 2024 ButtonUses:2017 2018 2019 2021 2022 2023Used by:2081
Symbol 2025 GraphicUsed by:2030
Symbol 2026 GraphicUsed by:2027
Symbol 2027 MovieClipUses:2026Used by:2030
Symbol 2028 GraphicUsed by:2030
Symbol 2029 GraphicUsed by:2030
Symbol 2030 ButtonUses:2025 2027 2028 2029Used by:2081
Symbol 2031 BitmapUsed by:2033 2040 2043
Symbol 2032 BitmapUsed by:2033 2040 2043
Symbol 2033 GraphicUses:2032 2031Used by:2046
Symbol 2034 GraphicUsed by:2035
Symbol 2035 MovieClipUses:2034Used by:2042 2046
Symbol 2036 GraphicUsed by:2037
Symbol 2037 MovieClipUses:2036Used by:2042 2046
Symbol 2038 MovieClipUses:1711Used by:2042 2046
Symbol 2039 GraphicUsed by:2046
Symbol 2040 GraphicUses:2032 2031Used by:2042
Symbol 2041 GraphicUsed by:2042
Symbol 2042 MovieClipUses:2040 2035 2037 2038 2041Used by:2046
Symbol 2043 GraphicUses:2032 2031Used by:2046
Symbol 2044 GraphicUsed by:2046
Symbol 2045 GraphicUsed by:2046
Symbol 2046 ButtonUses:2033 2035 2037 2038 2039 2042 2043 2044 2045Used by:2081
Symbol 2047 GraphicUsed by:2058
Symbol 2048 GraphicUsed by:2049
Symbol 2049 MovieClipUses:2048Used by:2054 2058
Symbol 2050 BitmapUsed by:2051 2053 2056
Symbol 2051 GraphicUses:2050Used by:2058
Symbol 2052 GraphicUsed by:2054
Symbol 2053 GraphicUses:2050Used by:2054
Symbol 2054 MovieClipUses:2052 2049 2053Used by:2058
Symbol 2055 GraphicUsed by:2058
Symbol 2056 GraphicUses:2050Used by:2058
Symbol 2057 GraphicUsed by:2058
Symbol 2058 ButtonUses:2047 2049 2051 2054 2055 2056 2057Used by:2081
Symbol 2059 GraphicUsed by:2064
Symbol 2060 GraphicUsed by:2061
Symbol 2061 MovieClipUses:2060 1910Used by:2064
Symbol 2062 GraphicUsed by:2064
Symbol 2063 GraphicUsed by:2064
Symbol 2064 ButtonUses:2059 1910 2061 2062 2063Used by:2081
Symbol 2065 GraphicUsed by:2074
Symbol 2066 GraphicUsed by:2067
Symbol 2067 MovieClipUses:2066Used by:2071 2074
Symbol 2068 GraphicUsed by:2069
Symbol 2069 MovieClipUses:2068Used by:2071 2074
Symbol 2070 GraphicUsed by:2071
Symbol 2071 MovieClipUses:2070 2067 2069Used by:2074
Symbol 2072 GraphicUsed by:2074
Symbol 2073 GraphicUsed by:2074
Symbol 2074 ButtonUses:2065 2067 2069 2071 2072 2073Used by:2081
Symbol 2075 GraphicUsed by:2080
Symbol 2076 GraphicUsed by:2077
Symbol 2077 MovieClipUses:2076Used by:2080
Symbol 2078 GraphicUsed by:2080
Symbol 2079 GraphicUsed by:2080
Symbol 2080 ButtonUses:2075 2077 2078 2079Used by:2081
Symbol 2081 MovieClipUses:1988 2005 2016 2024 2030 2046 2058 2064 2074 2080Used by:2082
Symbol 2082 MovieClip {MainMovie} [MainMovie]Uses:1982 2081
Symbol 2083 GraphicUsed by:2093
Symbol 2084 GraphicUsed by:2088
Symbol 2085 GraphicUsed by:2088
Symbol 2086 GraphicUsed by:2088
Symbol 2087 GraphicUsed by:2088
Symbol 2088 ButtonUses:2084 2085 2086 2087Used by:2093 2097
Symbol 2089 GraphicUsed by:2092
Symbol 2090 GraphicUsed by:2092
Symbol 2091 GraphicUsed by:2092
Symbol 2092 ButtonUses:2089 2090 2091Used by:2093 2097
Symbol 2093 MovieClip {SignUpMessageMc} [SignUpMessageMc]Uses:2083 2088 2092
Symbol 2094 GraphicUsed by:2097 2104
Symbol 2095 FontUsed by:2096
Symbol 2096 TextUses:2095Used by:2097
Symbol 2097 MovieClip {SelectScreenShotMc} [SelectScreenShotMc]Uses:2094 2096 2088 2092
Symbol 2098 GraphicUsed by:2103
Symbol 2099 GraphicUsed by:2103
Symbol 2100 GraphicUsed by:2103
Symbol 2101 GraphicUsed by:2103
Symbol 2102 GraphicUsed by:2103
Symbol 2103 MovieClip {SaveBtnMc} [SaveBtnMc]Uses:2098 2099 2100 2101 2102Used by:2104
Symbol 2104 MovieClip {ApiMovieClip} [ApiMovieClip]Uses:2094 2103
Symbol 2105 GraphicUsed by:2113
Symbol 2106 FontUsed by:2107
Symbol 2107 EditableTextUses:2106Used by:2113
Symbol 2108 GraphicUsed by:2112
Symbol 2109 GraphicUsed by:2112
Symbol 2110 GraphicUsed by:2112
Symbol 2111 GraphicUsed by:2112
Symbol 2112 ButtonUses:2108 2109 2110 2111Used by:2113
Symbol 2113 MovieClip {ErrorMessageMc} [ErrorMessageMc]Uses:2105 2107 2112
Symbol 2114 GraphicUsed by:2118 2126
Symbol 2115 GraphicUsed by:2118
Symbol 2116 GraphicUsed by:2118
Symbol 2117 GraphicUsed by:2118
Symbol 2118 ButtonUses:2114 2115 2116 2117Used by:2152
Symbol 2119 GraphicUsed by:2122
Symbol 2120 GraphicUsed by:2122
Symbol 2121 GraphicUsed by:2122
Symbol 2122 ButtonUses:2119 2120 2121Used by:2152
Symbol 2123 GraphicUsed by:2126
Symbol 2124 GraphicUsed by:2126
Symbol 2125 GraphicUsed by:2126
Symbol 2126 ButtonUses:2114 2123 2124 2125Used by:2152
Symbol 2127 GraphicUsed by:2128
Symbol 2128 MovieClipUses:2127Used by:2132
Symbol 2129 GraphicUsed by:2130
Symbol 2130 MovieClipUses:2129Used by:2132
Symbol 2131 GraphicUsed by:2132
Symbol 2132 MovieClipUses:2128 2130 2131Used by:2148 2151
Symbol 2133 GraphicUsed by:2138
Symbol 2134 GraphicUsed by:2135
Symbol 2135 MovieClipUses:2134Used by:2138
Symbol 2136 GraphicUsed by:2137
Symbol 2137 MovieClipUses:2136Used by:2138
Symbol 2138 MovieClipUses:2133 2135 2137Used by:2148 2151
Symbol 2139 GraphicUsed by:2146
Symbol 2140 GraphicUsed by:2141
Symbol 2141 MovieClipUses:2140Used by:2146
Symbol 2142 GraphicUsed by:2143
Symbol 2143 MovieClipUses:2142Used by:2146
Symbol 2144 GraphicUsed by:2145
Symbol 2145 MovieClipUses:2144Used by:2146
Symbol 2146 MovieClipUses:2139 2141 2143 2145Used by:2148 2151
Symbol 2147 GraphicUsed by:2149 2151
Symbol 2148 MovieClipUses:2132 2138 2146Used by:2151
Symbol 2149 MovieClipUses:2147Used by:2151
Symbol 2150 GraphicUsed by:2151
Symbol 2151 ButtonUses:2132 2138 2146 2147 2148 2149 2150Used by:2152
Symbol 2152 MovieClip {ControlPanelMC} [ControlPanelMC]Uses:2118 2122 2126 2151
Symbol 2153 GraphicUsed by:2158
Symbol 2154 GraphicUsed by:2158
Symbol 2155 GraphicUsed by:2158
Symbol 2156 GraphicUsed by:2158
Symbol 2157 GraphicUsed by:2158
Symbol 2158 MovieClip {SaveBtnWinMc} [SaveBtnWinMc]Uses:2153 2154 2155 2156 2157
Symbol 2159 GraphicUsed by:2160
Symbol 2160 MovieClipUses:2159Used by:2163
Symbol 2161 GraphicUsed by:2162
Symbol 2162 MovieClipUses:2161Used by:2163
Symbol 2163 MovieClip {McSelection} [McSelection]Uses:2160 2162
Symbol 2164 GraphicUsed by:2165
Symbol 2165 MovieClip {McResizePointer} [McResizePointer]Uses:2164Used by:2166
Symbol 2166 MovieClip {McMovePointer} [McMovePointer]Uses:2165

Instance Names

"barMask"Symbol 105 MovieClip Frame 1Symbol 104 MovieClip
"loader"Symbol 143 MovieClip Frame 1Symbol 105 MovieClip
"anim"Symbol 150 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 143 MovieClip
"loader"Symbol 150 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 105 MovieClip
"anim2"Symbol 150 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 149 MovieClip
"btn1"Symbol 1038 MovieClip {baner_logo_mc} [baner_logo_mc] Frame 1Symbol 1000 Button
"btn3"Symbol 1038 MovieClip {baner_logo_mc} [baner_logo_mc] Frame 1Symbol 1002 Button
"btn2"Symbol 1038 MovieClip {baner_logo_mc} [baner_logo_mc] Frame 1Symbol 1037 Button
"bg1"Symbol 1263 MovieClip Frame 1Symbol 1186 MovieClip
"bg0"Symbol 1263 MovieClip Frame 1Symbol 1262 MovieClip
"glasses6"Symbol 1384 MovieClip Frame 1Symbol 1351 MovieClip
"glasses5"Symbol 1384 MovieClip Frame 1Symbol 1353 MovieClip
"glasses4"Symbol 1384 MovieClip Frame 1Symbol 1355 MovieClip
"glasses3"Symbol 1384 MovieClip Frame 1Symbol 1357 MovieClip
"glasses2"Symbol 1384 MovieClip Frame 1Symbol 1375 MovieClip
"glasses1"Symbol 1384 MovieClip Frame 1Symbol 1377 MovieClip
"glasses0"Symbol 1384 MovieClip Frame 1Symbol 1383 MovieClip
"hair9"Symbol 1479 MovieClip Frame 1Symbol 1413 MovieClip
"hair8"Symbol 1479 MovieClip Frame 1Symbol 1416 MovieClip
"hair7"Symbol 1479 MovieClip Frame 1Symbol 1418 MovieClip
"hair6"Symbol 1479 MovieClip Frame 1Symbol 1420 MovieClip
"hair5"Symbol 1479 MovieClip Frame 1Symbol 1422 MovieClip
"hair4"Symbol 1479 MovieClip Frame 1Symbol 1424 MovieClip
"hair3"Symbol 1479 MovieClip Frame 1Symbol 1466 MovieClip
"hair2"Symbol 1479 MovieClip Frame 1Symbol 1471 MovieClip
"hair1"Symbol 1479 MovieClip Frame 1Symbol 1476 MovieClip
"hair0"Symbol 1479 MovieClip Frame 1Symbol 1478 MovieClip
"shoes6"Symbol 1492 MovieClip Frame 1Symbol 1481 MovieClip
"shoes5"Symbol 1492 MovieClip Frame 1Symbol 1483 MovieClip
"shoes4"Symbol 1492 MovieClip Frame 1Symbol 1485 MovieClip
"shoes3"Symbol 1492 MovieClip Frame 1Symbol 1487 MovieClip
"shoes2"Symbol 1492 MovieClip Frame 1Symbol 1489 MovieClip
"shoes1"Symbol 1492 MovieClip Frame 1Symbol 1491 MovieClip
"shoes0"Symbol 1492 MovieClip Frame 1Symbol 956 MovieClip
"bottom7"Symbol 1529 MovieClip Frame 1Symbol 1494 MovieClip
"bottom6"Symbol 1529 MovieClip Frame 1Symbol 1499 MovieClip
"bottom5"Symbol 1529 MovieClip Frame 1Symbol 1504 MovieClip
"bottom4"Symbol 1529 MovieClip Frame 1Symbol 1509 MovieClip
"bottom3"Symbol 1529 MovieClip Frame 1Symbol 1511 MovieClip
"bottom2"Symbol 1529 MovieClip Frame 1Symbol 1516 MovieClip
"bottom1"Symbol 1529 MovieClip Frame 1Symbol 1523 MovieClip
"bottom0"Symbol 1529 MovieClip Frame 1Symbol 1528 MovieClip
"top8"Symbol 1768 MovieClip Frame 1Symbol 1531 MovieClip
"top7"Symbol 1768 MovieClip Frame 1Symbol 1590 MovieClip
"top6"Symbol 1768 MovieClip Frame 1Symbol 1593 MovieClip
"top5"Symbol 1768 MovieClip Frame 1Symbol 1748 MovieClip
"top4"Symbol 1768 MovieClip Frame 1Symbol 1750 MovieClip
"top3"Symbol 1768 MovieClip Frame 1Symbol 1752 MovieClip
"top2"Symbol 1768 MovieClip Frame 1Symbol 1754 MovieClip
"top1"Symbol 1768 MovieClip Frame 1Symbol 1757 MovieClip
"top0"Symbol 1768 MovieClip Frame 1Symbol 1767 MovieClip
"dress6"Symbol 1847 MovieClip Frame 1Symbol 1770 MovieClip
"dress5"Symbol 1847 MovieClip Frame 1Symbol 1772 MovieClip
"dress4"Symbol 1847 MovieClip Frame 1Symbol 1787 MovieClip
"dress3"Symbol 1847 MovieClip Frame 1Symbol 1810 MovieClip
"dress2"Symbol 1847 MovieClip Frame 1Symbol 1812 MovieClip
"dress1"Symbol 1847 MovieClip Frame 1Symbol 1814 MovieClip
"dress0"Symbol 1847 MovieClip Frame 1Symbol 1846 MovieClip
"out4"Symbol 1872 MovieClip Frame 1Symbol 1849 MovieClip
"out3"Symbol 1872 MovieClip Frame 1Symbol 1854 MovieClip
"out2"Symbol 1872 MovieClip Frame 1Symbol 1856 MovieClip
"out1"Symbol 1872 MovieClip Frame 1Symbol 1869 MovieClip
"out0"Symbol 1872 MovieClip Frame 1Symbol 1871 MovieClip
"jew8"Symbol 1911 MovieClip Frame 1Symbol 1875 MovieClip
"jew7"Symbol 1911 MovieClip Frame 1Symbol 1877 MovieClip
"jew6"Symbol 1911 MovieClip Frame 1Symbol 1879 MovieClip
"jew5"Symbol 1911 MovieClip Frame 1Symbol 1881 MovieClip
"jew4"Symbol 1911 MovieClip Frame 1Symbol 1893 MovieClip
"jew3"Symbol 1911 MovieClip Frame 1Symbol 1902 MovieClip
"jew2"Symbol 1911 MovieClip Frame 1Symbol 1906 MovieClip
"jew1"Symbol 1911 MovieClip Frame 1Symbol 1908 MovieClip
"jew0"Symbol 1911 MovieClip Frame 1Symbol 1910 MovieClip
"access6"Symbol 1981 MovieClip Frame 1Symbol 1929 MovieClip
"access5"Symbol 1981 MovieClip Frame 1Symbol 1940 MovieClip
"access4"Symbol 1981 MovieClip Frame 1Symbol 1963 MovieClip
"access3"Symbol 1981 MovieClip Frame 1Symbol 1965 MovieClip
"access2"Symbol 1981 MovieClip Frame 1Symbol 1972 MovieClip
"access1"Symbol 1981 MovieClip Frame 1Symbol 1974 MovieClip
"access0"Symbol 1981 MovieClip Frame 1Symbol 1980 MovieClip
"bg"Symbol 1982 MovieClip Frame 1Symbol 1263 MovieClip
"girl2"Symbol 1982 MovieClip Frame 1Symbol 1321 MovieClip
"girl"Symbol 1982 MovieClip Frame 1Symbol 1333 MovieClip
"glasses"Symbol 1982 MovieClip Frame 1Symbol 1384 MovieClip
"hair"Symbol 1982 MovieClip Frame 1Symbol 1479 MovieClip
"shoes"Symbol 1982 MovieClip Frame 1Symbol 1492 MovieClip
"bottom"Symbol 1982 MovieClip Frame 1Symbol 1529 MovieClip
"top"Symbol 1982 MovieClip Frame 1Symbol 1768 MovieClip
"dress"Symbol 1982 MovieClip Frame 1Symbol 1847 MovieClip
"out"Symbol 1982 MovieClip Frame 1Symbol 1872 MovieClip
"jew"Symbol 1982 MovieClip Frame 1Symbol 1911 MovieClip
"access"Symbol 1982 MovieClip Frame 1Symbol 1981 MovieClip
"hair"Symbol 2081 MovieClip Frame 1Symbol 1988 Button
"dress"Symbol 2081 MovieClip Frame 1Symbol 2005 Button
"bottom"Symbol 2081 MovieClip Frame 1Symbol 2016 Button
"top"Symbol 2081 MovieClip Frame 1Symbol 2024 Button
"out"Symbol 2081 MovieClip Frame 1Symbol 2030 Button
"glasses"Symbol 2081 MovieClip Frame 1Symbol 2046 Button
"access"Symbol 2081 MovieClip Frame 1Symbol 2058 Button
"jew"Symbol 2081 MovieClip Frame 1Symbol 2064 Button
"shoes"Symbol 2081 MovieClip Frame 1Symbol 2074 Button
"bg"Symbol 2081 MovieClip Frame 1Symbol 2080 Button
"mc"Symbol 2082 MovieClip {MainMovie} [MainMovie] Frame 1Symbol 1982 MovieClip
"buttons"Symbol 2082 MovieClip {MainMovie} [MainMovie] Frame 1Symbol 2081 MovieClip
"yesBtn"Symbol 2093 MovieClip {SignUpMessageMc} [SignUpMessageMc] Frame 1Symbol 2088 Button
"noBtn"Symbol 2093 MovieClip {SignUpMessageMc} [SignUpMessageMc] Frame 1Symbol 2092 Button
"yesBtn"Symbol 2097 MovieClip {SelectScreenShotMc} [SelectScreenShotMc] Frame 1Symbol 2088 Button
"noBtn"Symbol 2097 MovieClip {SelectScreenShotMc} [SelectScreenShotMc] Frame 1Symbol 2092 Button
"saveBtn"Symbol 2104 MovieClip {ApiMovieClip} [ApiMovieClip] Frame 1Symbol 2103 MovieClip {SaveBtnMc} [SaveBtnMc]
"msgtxt"Symbol 2113 MovieClip {ErrorMessageMc} [ErrorMessageMc] Frame 1Symbol 2107 EditableText
"yesBtn"Symbol 2113 MovieClip {ErrorMessageMc} [ErrorMessageMc] Frame 1Symbol 2112 Button
"btnBack"Symbol 2152 MovieClip {ControlPanelMC} [ControlPanelMC] Frame 1Symbol 2118 Button
"btnFoto"Symbol 2152 MovieClip {ControlPanelMC} [ControlPanelMC] Frame 1Symbol 2122 Button
"btnReset"Symbol 2152 MovieClip {ControlPanelMC} [ControlPanelMC] Frame 1Symbol 2126 Button
"btnLogo"Symbol 2152 MovieClip {ControlPanelMC} [ControlPanelMC] Frame 1Symbol 2151 Button
"mcRect"Symbol 2163 MovieClip {McSelection} [McSelection] Frame 1Symbol 2160 MovieClip
"mcBottomLeft"Symbol 2163 MovieClip {McSelection} [McSelection] Frame 1Symbol 2162 MovieClip
"mcTopLeft"Symbol 2163 MovieClip {McSelection} [McSelection] Frame 1Symbol 2162 MovieClip
"mcBottomRight"Symbol 2163 MovieClip {McSelection} [McSelection] Frame 1Symbol 2162 MovieClip
"mcTopRight"Symbol 2163 MovieClip {McSelection} [McSelection] Frame 1Symbol 2162 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 1459 bytes "<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'><rdf:Description rdf:about='' xmlns ..."
ScriptLimits (65)Timeline Frame 1MaxRecursionDepth: 1000, ScriptTimeout: 60 seconds
ExportAssets (56)Timeline Frame 1Symbol 150 as "PreloaderMC"
ExportAssets (56)Timeline Frame 2Symbol 995 as "intro"
ExportAssets (56)Timeline Frame 2Symbol 1038 as "baner_logo_mc"
ExportAssets (56)Timeline Frame 2Symbol 2082 as "MainMovie"
ExportAssets (56)Timeline Frame 2Symbol 2093 as "SignUpMessageMc"
ExportAssets (56)Timeline Frame 2Symbol 2097 as "SelectScreenShotMc"
ExportAssets (56)Timeline Frame 2Symbol 2104 as "ApiMovieClip"
ExportAssets (56)Timeline Frame 2Symbol 2113 as "ErrorMessageMc"
ExportAssets (56)Timeline Frame 2Symbol 2152 as "ControlPanelMC"
ExportAssets (56)Timeline Frame 2Symbol 2158 as "SaveBtnWinMc"
ExportAssets (56)Timeline Frame 2Symbol 2103 as "SaveBtnMc"
ExportAssets (56)Timeline Frame 2Symbol 2163 as "McSelection"
ExportAssets (56)Timeline Frame 2Symbol 2166 as "McMovePointer"
ExportAssets (56)Timeline Frame 2Symbol 2165 as "McResizePointer"
SerialNumber (41)Timeline Frame 1

Labels

"Preloader"Frame 1
"Main"Frame 2




http://swfchan.com/22/109609/info.shtml
Created: 14/3 -2019 07:06:17 Last modified: 14/3 -2019 07:06:17 Server time: 29/04 -2024 13:06:22