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

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

The-Pizza-Guy.swf

This is the info page for
Flash #108576

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


Text
Do you want to repair your vehicle?

<p align="center"><font face="Impact" size="18" color="#000000" letterSpacing="0.000000" kerning="1">It costs 1$.</font></p>

<p align="left"><font face="Impact" size="16" color="#ffffff" letterSpacing="0.000000" kerning="1">Vehicle</font></p>

<p align="left"><font face="Impact" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">6000$</font></p>

<p align="left"><font face="Impact" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">3000$</font></p>

<p align="left"><font face="Impact" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">1200$</font></p>

<p align="left"><font face="Impact" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">800$</font></p>

<p align="left"><font face="Impact" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">200$</font></p>

<p align="left"><font face="Impact" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">60$</font></p>

<p align="left"><font face="Impact" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">0$</font></p>

<p align="left"><font face="Impact" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">Select: Left, Right &nbsp;| Buy Vehicle: Enter | Leave Shop:Esc &nbsp;&nbsp;&nbsp;</font></p>

0

BIG EDDIE

Your Position

Order

Stop here to
deliver the
pizza

<p align="left"><font face="Impact" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">Pizza type</font></p>

<p align="left"><font face="Impact" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">Address</font></p>

<p align="left"><font face="Impact" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">Tip amount</font></p>

<p align="left"><font face="Impact" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">Time limit</font></p>

Accept Order

Accept Order

To Street

<p align="left"><font face="Impact" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">Current Capacity:</font></p>

<p align="left"><font face="Impact" size="15" color="#ffffff" letterSpacing="0.000000" kerning="1">Pizza&apos;s to Deliver:</font></p>

Decline Order

<p align="justify"><font face="Arial" size="18" color="#000000" letterSpacing="-1.000000" kerning="1">Big Eddie said:</font></p>

SCORE

MONEY

CAPACITY

DAMAGE

<p align="right"><font face="Impact" size="15" color="#0000ff" letterSpacing="0.000000" kerning="1">0</font></p>

<p align="right"><font face="Impact" size="15" color="#0000ff" letterSpacing="0.000000" kerning="1">0$</font></p>

<p align="right"><font face="Impact" size="15" color="#0000ff" letterSpacing="0.000000" kerning="1">2/2</font></p>

<p align="center"><font face="Impact" size="18" color="#ffff66" letterSpacing="0.000000" kerning="1">10$</font></p>

ActionScript [AS3]

Section 1
//Regular (fl.transitions.easing.Regular) package fl.transitions.easing { public class Regular { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((_arg3 * _arg1) * _arg1) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ return (((((_arg3 / 2) * _arg1) * _arg1) + _arg2)); }; --_arg1; return ((((-(_arg3) / 2) * ((_arg1 * (_arg1 - 2)) - 1)) + _arg2)); } } }//package fl.transitions.easing
Section 2
//Tween (fl.transitions.Tween) package fl.transitions { import flash.display.*; import flash.events.*; import flash.utils.*; public class Tween extends EventDispatcher { private var _position:Number;// = NAN public var prevTime:Number;// = NAN public var prevPos:Number;// = NAN public var isPlaying:Boolean;// = false private var _fps:Number;// = NAN private var _time:Number;// = NAN public var begin:Number;// = NAN private var _finish:Number;// = NAN public var change:Number;// = NAN public var looping:Boolean;// = false private var _intervalID:uint;// = 0 public var func:Function; private var _timer:Timer;// = null private var _startTime:Number;// = NAN public var prop:String;// = "" private var _duration:Number;// = NAN public var obj:Object;// = null public var useSeconds:Boolean;// = false protected static var _mc:MovieClip = new MovieClip(); public function Tween(_arg1:Object, _arg2:String, _arg3:Function, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Boolean=false){ this.func = function (_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); }; super(); if (!arguments.length){ return; }; this.obj = _arg1; this.prop = _arg2; this.begin = _arg4; this.position = _arg4; this.duration = _arg6; this.useSeconds = _arg7; if ((_arg3 is Function)){ this.func = _arg3; }; this.finish = _arg5; this._timer = new Timer(100); this.start(); } public function continueTo(_arg1:Number, _arg2:Number):void{ this.begin = this.position; this.finish = _arg1; if (!isNaN(_arg2)){ this.duration = _arg2; }; this.start(); } protected function startEnterFrame():void{ var _local1:Number; if (isNaN(this._fps)){ _mc.addEventListener(Event.ENTER_FRAME, this.onEnterFrame, false, 0, true); } else { _local1 = (1000 / this._fps); this._timer.delay = _local1; this._timer.addEventListener(TimerEvent.TIMER, this.timerHandler, false, 0, true); this._timer.start(); }; this.isPlaying = true; } public function stop():void{ this.stopEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_STOP, this._time, this._position)); } private function fixTime():void{ if (this.useSeconds){ this._startTime = (getTimer() - (this._time * 1000)); }; } public function set FPS(_arg1:Number):void{ var _local2:Boolean = this.isPlaying; this.stopEnterFrame(); this._fps = _arg1; if (_local2){ this.startEnterFrame(); }; } public function get finish():Number{ return ((this.begin + this.change)); } public function get duration():Number{ return (this._duration); } protected function stopEnterFrame():void{ if (isNaN(this._fps)){ _mc.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame); } else { this._timer.stop(); }; this.isPlaying = false; } public function set time(_arg1:Number):void{ this.prevTime = this._time; if (_arg1 > this.duration){ if (this.looping){ this.rewind((_arg1 - this._duration)); this.update(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_LOOP, this._time, this._position)); } else { if (this.useSeconds){ this._time = this._duration; this.update(); }; this.stop(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_FINISH, this._time, this._position)); }; } else { if (_arg1 < 0){ this.rewind(); this.update(); } else { this._time = _arg1; this.update(); }; }; } public function getPosition(_arg1:Number=NaN):Number{ if (isNaN(_arg1)){ _arg1 = this._time; }; return (this.func(_arg1, this.begin, this.change, this._duration)); } public function set finish(_arg1:Number):void{ this.change = (_arg1 - this.begin); } public function set duration(_arg1:Number):void{ this._duration = ((_arg1)<=0) ? Infinity : _arg1; } public function get position():Number{ return (this.getPosition(this._time)); } public function setPosition(_arg1:Number):void{ this.prevPos = this._position; if (this.prop.length){ this.obj[this.prop] = (this._position = _arg1); }; this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_CHANGE, this._time, this._position)); } public function resume():void{ this.fixTime(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_RESUME, this._time, this._position)); } public function fforward():void{ this.time = this._duration; this.fixTime(); } protected function onEnterFrame(_arg1:Event):void{ this.nextFrame(); } public function yoyo():void{ this.continueTo(this.begin, this.time); } public function nextFrame():void{ if (this.useSeconds){ this.time = ((getTimer() - this._startTime) / 1000); } else { this.time = (this._time + 1); }; } protected function timerHandler(_arg1:TimerEvent):void{ this.nextFrame(); _arg1.updateAfterEvent(); } public function get FPS():Number{ return (this._fps); } public function rewind(_arg1:Number=0):void{ this._time = _arg1; this.fixTime(); this.update(); } public function set position(_arg1:Number):void{ this.setPosition(_arg1); } public function get time():Number{ return (this._time); } private function update():void{ this.setPosition(this.getPosition(this._time)); } public function start():void{ this.rewind(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_START, this._time, this._position)); } public function prevFrame():void{ if (!this.useSeconds){ this.time = (this._time - 1); }; } } }//package fl.transitions
Section 3
//TweenEvent (fl.transitions.TweenEvent) package fl.transitions { import flash.events.*; public class TweenEvent extends Event { public var position:Number;// = NAN public var time:Number;// = NAN public static const MOTION_START:String = "motionStart"; public static const MOTION_STOP:String = "motionStop"; public static const MOTION_LOOP:String = "motionLoop"; public static const MOTION_CHANGE:String = "motionChange"; public static const MOTION_FINISH:String = "motionFinish"; public static const MOTION_RESUME:String = "motionResume"; public function TweenEvent(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false, _arg5:Boolean=false){ super(_arg1, _arg4, _arg5); this.time = _arg2; this.position = _arg3; } override public function clone():Event{ return (new TweenEvent(this.type, this.time, this.position, this.bubbles, this.cancelable)); } } }//package fl.transitions
Section 4
//Base64 (FOG.AS3.Base64) package FOG.AS3 { import flash.utils.*; public class Base64 { public static const version:String = "1.1.0"; private static const BASE64_CHARS:String = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; public function Base64(){ throw (new Error("Base64 class is static container only")); } public static function encode(_arg1:String):String{ var _local2:ByteArray = new ByteArray(); _local2.writeUTFBytes(_arg1); return (encodeByteArray(_local2)); } public static function encodeByteArray(_arg1:ByteArray):String{ var _local3:Array; var _local5:uint; var _local6:uint; var _local7:uint; var _local2 = ""; var _local4:Array = new Array(4); _arg1.position = 0; while (_arg1.bytesAvailable > 0) { _local3 = new Array(); _local5 = 0; while ((((_local5 < 3)) && ((_arg1.bytesAvailable > 0)))) { _local3[_local5] = _arg1.readUnsignedByte(); _local5++; }; _local4[0] = ((_local3[0] & 252) >> 2); _local4[1] = (((_local3[0] & 3) << 4) | (_local3[1] >> 4)); _local4[2] = (((_local3[1] & 15) << 2) | (_local3[2] >> 6)); _local4[3] = (_local3[2] & 63); _local6 = _local3.length; while (_local6 < 3) { _local4[(_local6 + 1)] = 64; _local6++; }; _local7 = 0; while (_local7 < _local4.length) { _local2 = (_local2 + BASE64_CHARS.charAt(_local4[_local7])); _local7++; }; }; return (_local2); } public static function decode(_arg1:String):String{ var _local2:ByteArray = decodeToByteArray(_arg1); return (_local2.readUTFBytes(_local2.length)); } public static function decodeToByteArray(_arg1:String):ByteArray{ var _local6:uint; var _local7:uint; var _local2:ByteArray = new ByteArray(); var _local3:Array = new Array(4); var _local4:Array = new Array(3); var _local5:uint; while (_local5 < _arg1.length) { _local6 = 0; while ((((_local6 < 4)) && (((_local5 + _local6) < _arg1.length)))) { _local3[_local6] = BASE64_CHARS.indexOf(_arg1.charAt((_local5 + _local6))); _local6++; }; _local4[0] = ((_local3[0] << 2) + ((_local3[1] & 48) >> 4)); _local4[1] = (((_local3[1] & 15) << 4) + ((_local3[2] & 60) >> 2)); _local4[2] = (((_local3[2] & 3) << 6) + _local3[3]); _local7 = 0; while (_local7 < _local4.length) { if (_local3[(_local7 + 1)] == 64){ break; }; _local2.writeByte(_local4[_local7]); _local7++; }; _local5 = (_local5 + 4); }; _local2.position = 0; return (_local2); } } }//package FOG.AS3
Section 5
//Connect (FOG.AS3.Connect) package FOG.AS3 { import flash.utils.*; import flash.external.*; public class Connect { public var LinkAttempts:Number;// = 0 public var User:Object; public var Linked:Boolean;// = false public var Core:Object; public function Connect(_arg1:CoreAPI):void{ User = {ID:0, Name:"Guest", HighScore:0, Thumb:"", Image:""}; super(); this.Core = _arg1; CreateLink(); } public function GetUser():Object{ if (Linked){ User = Call("getUserData"); }; if (typeof(User) != "object"){ User = {ID:0, Name:"Guest", HighScore:0, Thumb:"", Image:""}; }; return (User); } public function CallDirect(_arg1:String, _arg2=false, _arg3=false){ var _local4:* = ExternalInterface.call(("fog.api." + _arg1), _arg2, _arg3); return (_local4); } public function CreateLink():void{ if (Core.isFogDomain()){ LinkAttempts++; Core.debug((" Link Attempt " + LinkAttempts)); if (ExternalInterface.available){ Linked = (CallDirect("connect", Core.config)) ? true : false; if (Linked){ } else { setTimeout(CreateLink, 1000); return; }; } else { setTimeout(CreateLink, 500); return; }; }; GetUser(); } public function Call(_arg1:String, _arg2=false, _arg3=false){ if (!Linked){ return (false); }; return (CallDirect(_arg1, _arg2, _arg3)); } } }//package FOG.AS3
Section 6
//CoreAPI (FOG.AS3.CoreAPI) package FOG.AS3 { import flash.display.*; import flash.utils.*; import flash.net.*; import flash.system.*; import flash.external.*; public class CoreAPI extends MovieClip { public var Scores:Object; public var config:Object; private var Classes:Array; private var Plugins:Array; public var Root:DisplayObject; public var Connect:Object; public var Preloader:Object; public var Tracking:Object; public var enterFrameFunc:Function; public var Storage:Object; public var options:Object; public var res:Array; public var Remote:Object; private var Token:String; public var StageDims:Object; public var localMode:Boolean; public var urlInfo:Object; public function CoreAPI(_arg1:Object):void{ var _local3:*; var _local4:*; var _local5:int; var _local6:int; var _local7:Class; config = new Object(); options = new Object(); Classes = [Preloader, Tracking, Remote, Connect, Scores, Storage]; Plugins = ["Tracking", "Preloader", "Remote", "Connect", "Scores", "Storage"]; super(); Security.allowDomain("*"); var _local2:Object = {version:"1.2", asversion:3, debug:true, trace:true, sandbox:false, remote:false}; Root = _arg1.root; StageDims = {w:Root.stage.stageWidth, h:Root.stage.stageHeight}; options = parseOptions(_arg1, _local2); for (_local3 in options) { if (((!((_local3 == "root"))) && (!((_local3 == "clip"))))){ config[_local3] = options[_local3]; }; }; urlInfo = getUrlInfo(Root.loaderInfo.url); debug(("Initalized FOG API Version " + options.version)); for (_local4 in options.game) { debug(((("> " + _local4) + ": ") + options.game[_local4])); }; debug(("> sandbox: " + options.sandbox)); debug(((("> stage: " + StageDims.w) + "x") + StageDims.h)); debug(("> domain: " + urlInfo.domain)); debug(("> isfog: " + isFogDomain())); debug(("> remote: " + options.remote)); debug("Plugins"); _local5 = 0; _local6 = Plugins.length; while (_local5 < _local6) { debug(("> FOG." + Plugins[_local5])); _local7 = (getDefinitionByName(("FOG.AS3." + Plugins[_local5])) as Class); this[Plugins[_local5]] = new _local7(this); if (((options[Plugins[_local5]]) && (this[Plugins[_local5]].Options))){ this[Plugins[_local5]].Options = parseOptions(options[Plugins[_local5]], this[Plugins[_local5]].Options); }; _local5++; }; if (this.Connect){ Token = Base64.encode(((((((options.game.id + ":") + options.game.title) + ":") + options.game.fogid) + ":") + options.game.key)); debug("FOG Connect (Javascript)"); debug(("> token: " + Token)); debug(("> linked: " + Connect.Linked)); debug((((("> user: " + Connect.User.Name) + " [") + Connect.User.ID) + "]")); debug(("> highscore: " + Connect.User.HighScore)); }; } public function Read(_arg1:String){ return (this[_arg1]); } public function getUrlInfo(_arg1:String):Object{ var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Number; localMode = new RegExp("file://").test(_arg1); var _local2 = ""; var _local3 = ""; if (localMode){ _local2 = "local"; _local3 = ""; } else { _local4 = (_arg1.indexOf("://") + 3); _local5 = _arg1.indexOf("/", _local4); _local2 = _arg1.substring(_local4, _local5); _local6 = (_local2.lastIndexOf(".") - 1); _local7 = (_local2.lastIndexOf(".", _local6) + 1); _local3 = _arg1.substr(_local5); }; return ({domain:_local2, uri:_local3}); } public function isFogDomain():Boolean{ return (((urlInfo.domain.indexOf("freeonlinegames.com") > -1)) ? true : false); } public function debug(_arg1, _arg2:String=""):void{ if (isFogDomain()){ if (ExternalInterface.available){ ExternalInterface.call("fog.api.debug", _arg1, _arg2); }; }; if (((!(_arg2)) && (options.debug))){ if (_arg1.indexOf(">") === 0){ trace(_arg1); } else { trace(" "); trace(_arg1); }; }; } private function getDims(_arg1:Object):Array{ var _local2:int; var _local3:int; _local2 = Root.stage.stageWidth; _local3 = Root.stage.stageHeight; _arg1.game.dims = {w:_local2, h:_local3}; return ([_local2, _local3]); } private function parseOptions(_arg1:Object, _arg2:Object):Object{ var _local4:String; var _local3:Object = {}; for (_local4 in _arg2) { _local3[_local4] = _arg2[_local4]; }; if (_arg1){ for (_local4 in _arg1) { _local3[_local4] = _arg1[_local4]; }; }; return (_local3); } } }//package FOG.AS3
Section 7
//JSON (FOG.AS3.JSON) package FOG.AS3 { public class JSON { public static function encode(_arg1):String{ var _local2:String; var _local3:Number; var _local4:Number; var _local6:*; var _local7:String; var _local8:Number; var _local5 = ""; switch (typeof(_arg1)){ case "object": if (_arg1){ if ((_arg1 is Array)){ _local4 = _arg1.length; _local3 = 0; while (_local3 < _local4) { _local6 = encode(_arg1[_local3]); if (_local5){ _local5 = (_local5 + ","); }; _local5 = (_local5 + _local6); _local3++; }; return ((("[" + _local5) + "]")); } else { if (typeof(_arg1.toString) != "undefined"){ for (_local7 in _arg1) { _local6 = _arg1[_local7]; if (((!((typeof(_local6) == "undefined"))) && (!((typeof(_local6) == "function"))))){ _local6 = encode(_local6); if (_local5){ _local5 = (_local5 + ","); }; _local5 = (_local5 + ((encode(_local7) + ":") + _local6)); }; }; return ((("{" + _local5) + "}")); }; }; }; return ("null"); case "number": return ((isFinite(_arg1)) ? String(_arg1) : "null"); case "string": _local4 = _arg1.length; _local5 = "\""; _local3 = 0; while (_local3 < _local4) { _local2 = _arg1.charAt(_local3); if (_local2 >= " "){ if ((((_local2 == "\\")) || ((_local2 == "\"")))){ _local5 = (_local5 + "\\"); }; _local5 = (_local5 + _local2); } else { switch (_local2){ case "\b": _local5 = (_local5 + "\\b"); break; case "\f": _local5 = (_local5 + "\\f"); break; case "\n": _local5 = (_local5 + "\\n"); break; case "\r": _local5 = (_local5 + "\\r"); break; case "\t": _local5 = (_local5 + "\\t"); break; default: _local8 = _local2.charCodeAt(); _local5 = (_local5 + (("\\u00" + Math.floor((_local8 / 16)).toString(16)) + (_local8 % 16).toString(16))); }; }; _local3 = (_local3 + 1); }; return ((_local5 + "\"")); case "boolean": return (String(_arg1)); default: return ("null"); }; } public static function decode(_arg1:String){ var at:Number; var ch:String; var _isDigit:Function; var _isHexDigit:Function; var _white:Function; var _string:Function; var _next:Function; var _array:Function; var _object:Function; var _number:Function; var _word:Function; var _value:Function; var _error:Function; var source = _arg1; source = new String(source); at = 0; ch = " "; _isDigit = function (_arg1:String){ return (((("0" <= _arg1)) && ((_arg1 <= "9")))); }; _isHexDigit = function (_arg1:String){ return (((((_isDigit(_arg1)) || (((("A" <= _arg1)) && ((_arg1 <= "F")))))) || (((("a" <= _arg1)) && ((_arg1 <= "f")))))); }; _error = function (_arg1:String):void{ throw (new Error(_arg1, (at - 1))); }; _next = function (){ ch = source.charAt(at); at = (at + 1); return (ch); }; _white = function ():void{ while (ch) { if (ch <= " "){ _next(); } else { if (ch == "/"){ switch (_next()){ case "/": do { } while (((((_next()) && (!((ch == "\n"))))) && (!((ch == "\r"))))); break; case "*": _next(); while (true) { if (ch){ if (ch == "*"){ if (_next() == "/"){ _next(); break; }; } else { _next(); }; } else { _error("Unterminated Comment"); }; }; break; default: _error("Syntax Error"); }; } else { break; }; }; }; }; _string = function (){ var _local3:*; var _local4:*; var _local1:* = ""; var _local2:* = ""; var _local5:Boolean; if (ch == "\""){ while (_next()) { if (ch == "\""){ _next(); return (_local2); }; if (ch == "\\"){ switch (_next()){ 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": _local4 = 0; _local1 = 0; while (_local1 < 4) { _local3 = parseInt(_next(), 16); if (!isFinite(_local3)){ _local5 = true; break; }; _local4 = ((_local4 * 16) + _local3); _local1 = (_local1 + 1); }; if (_local5){ _local5 = false; break; }; _local2 = (_local2 + String.fromCharCode(_local4)); break; default: _local2 = (_local2 + ch); }; } else { _local2 = (_local2 + ch); }; }; }; _error("Bad String"); return (null); }; _array = function (){ var _local1:Array = []; if (ch == "["){ _next(); _white(); if (ch == "]"){ _next(); return (_local1); }; while (ch) { _local1.push(_value()); _white(); if (ch == "]"){ _next(); return (_local1); }; if (ch != ","){ break; }; _next(); _white(); }; }; _error("Bad Array"); return (null); }; _object = function (){ var _local1:* = {}; var _local2:* = {}; if (ch == "{"){ _next(); _white(); if (ch == "}"){ _next(); return (_local2); }; while (ch) { _local1 = _string(); _white(); if (ch != ":"){ break; }; _next(); _local2[_local1] = _value(); _white(); if (ch == "}"){ _next(); return (_local2); }; if (ch != ","){ break; }; _next(); _white(); }; }; _error("Bad Object"); }; _number = function (){ var _local2:*; var _local1:* = ""; var _local3 = ""; var _local4 = ""; if (ch == "-"){ _local1 = "-"; _local4 = _local1; _next(); }; if (ch == "0"){ _next(); if ((((ch == "x")) || ((ch == "X")))){ _next(); while (_isHexDigit(ch)) { _local3 = (_local3 + ch); _next(); }; if (_local3 == ""){ _error("mal formed Hexadecimal"); } else { return (Number(((_local4 + "0x") + _local3))); }; } else { _local1 = (_local1 + "0"); }; }; while (_isDigit(ch)) { _local1 = (_local1 + ch); _next(); }; if (ch == "."){ _local1 = (_local1 + "."); while (((((_next()) && ((ch >= "0")))) && ((ch <= "9")))) { _local1 = (_local1 + ch); }; }; _local2 = (1 * _local1); if (!isFinite(_local2)){ _error("Bad Number"); } else { return (_local2); }; return (NaN); }; _word = function (){ switch (ch){ case "t": if ((((((_next() == "r")) && ((_next() == "u")))) && ((_next() == "e")))){ _next(); return (true); }; break; case "f": if ((((((((_next() == "a")) && ((_next() == "l")))) && ((_next() == "s")))) && ((_next() == "e")))){ _next(); return (false); }; break; case "n": if ((((((_next() == "u")) && ((_next() == "l")))) && ((_next() == "l")))){ _next(); return (null); }; break; }; _error("Syntax Error"); return (null); }; _value = function (){ _white(); switch (ch){ case "{": return (_object()); case "[": return (_array()); case "\"": return (_string()); case "-": return (_number()); default: return (((((ch >= "0")) && ((ch <= "9")))) ? _number() : _word()); }; }; return (_value()); } } }//package FOG.AS3
Section 8
//Preloader (FOG.AS3.Preloader) package FOG.AS3 { import flash.media.*; import flash.display.*; import flash.events.*; import flash.utils.*; import flash.text.*; import flash.system.*; import flash.ui.*; public class Preloader { public var Root:MovieClip; public var BG:Sprite; public var onComplete:Function; public var Prel:PreloaderClip; public var Logo:LogoSpin; public var GraphicBG:MovieClip; public var Foggy:MovieClip; public var GotoGameOnClick:Boolean;// = false public var FoggyBG:Sprite; public var FrameInc:Number;// = 0 public var Percent:Number;// = 0 public var TimerEnd:Number; public var Notice:MovieClip; public var TimerStart:Number; public var Options:Object; public var Core:CoreAPI; public function Preloader(_arg1):void{ Options = {duration:3000, density:10, clickable:true, locked:false, domains:["freeonlinegames.com"]}; GraphicBG = new MovieClip(); onComplete = function (_arg1:CoreAPI):void{ MovieClip(_arg1.Root).play(); }; super(); Core = _arg1; Root = _arg1.Root; } private function loadingBar(_arg1:Event):void{ var _local2:LogoFly; if ((FrameInc++ % Math.round((Root.stage.frameRate / Options.density))) === 0){ _local2 = new LogoFly(); _local2.cacheAsBitmap = true; _local2.x = (Core.StageDims.w / 2); _local2.y = (Core.StageDims.h / 2); _local2.scaleX = (_local2.scaleY = 0); _local2.gotoAndStop(((Math.random() * 10) + 1)); _local2.speed = 100; _local2.alpha = 0; _local2.grow = (Math.random() / 100); _local2.fade = false; _local2.targetX = (Math.random() * 10); if (_local2.targetX < 5){ _local2.targetX = (Math.random() * 10); if (_local2.targetX < 5){ _local2.targetX = -100; } else { _local2.targetX = (Core.StageDims.w + 100); }; _local2.targetY = (Math.random() * Core.StageDims.h); } else { _local2.targetY = (Math.random() * 10); if (_local2.targetY < 5){ _local2.targetY = -100; } else { _local2.targetY = (Core.StageDims.h + 100); }; _local2.targetX = (Math.random() * Core.StageDims.w); }; BG.addChild(_local2); _local2.addEventListener(Event.ENTER_FRAME, FOGFly); }; } private function showProgress(_arg1:Event):void{ Prel.percentGame = Math.floor(((Root.loaderInfo.bytesLoaded / Root.loaderInfo.bytesTotal) * 100)); Prel.percentDura = Math.floor((((getTimer() - TimerStart) / Prel.dura) * 100)); Percent = Math.min(Math.min(Prel.percentGame, Prel.percentDura), 100); Prel.procent.text = Math.round(Percent).toString(); Prel.ProgBar.width = (Math.round(Percent) * 0.98); if (Percent > 99){ PlayBranding(); }; loadingBar(_arg1); } public function DomainHasAccess():Boolean{ var _local1:Array = Options.domains; var _local2:Boolean; Core.debug("Allowed on domains"); var _local3:int; var _local4:int = _local1.length; while (_local3 < _local4) { Core.debug(("> " + _local1[_local3])); if (Core.urlInfo.domain.indexOf(_local1[_local3]) > -1){ _local2 = true; }; _local3++; }; if (((!(_local2)) && (Options.locked))){ if (Core.options.sandbox){ Core.debug("> Sandbox Overide"); return (true); }; return (false); //unresolved jump }; return (true); } public function Start():void{ var tf:TextField; var ctxMenu:ContextMenu = new ContextMenu(); ctxMenu.hideBuiltInItems(); var ctx3:ContextMenuItem = new ContextMenuItem("Play More Games"); ctx3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, function (_arg1:ContextMenuEvent):void{ Core.Tracking.Click(); }); var ctx4:ContextMenuItem = new ContextMenuItem("Free Games For Your Website"); ctx4.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, function (_arg1:ContextMenuEvent):void{ Core.Tracking.Click("http://www.freegamesforyourwebsite.com/"); }); var ctx1:ContextMenuItem = new ContextMenuItem("Copyright © Free Online Games"); ctx1.enabled = false; ctx1.separatorBefore = true; var ctx2:ContextMenuItem = new ContextMenuItem(("FOG API Version " + Core.options.version)); ctx2.enabled = false; var ctx5:ContextMenuItem = new ContextMenuItem("Clear Local Flash API Storage"); ctx5.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, function (_arg1:ContextMenuEvent):void{ Core.Storage.Clear(); }); ctx5.separatorBefore = true; ctxMenu.customItems.push(ctx3, ctx4, ctx1, ctx2, ctx5); Root.contextMenu = ctxMenu; BG = new Sprite(); BG.graphics.beginFill(0); BG.graphics.drawRect(0, 0, Core.StageDims.w, Core.StageDims.h); BG.graphics.endFill(); BG.addChild(new BackgroundGraphic()); BG.addChild(GraphicBG); Root.addChild(BG); Logo = new LogoSpin(); Logo.stop(); Logo.x = (Core.StageDims.w / 2); Logo.y = ((Core.StageDims.h / 2) - 30); Root.addChild(Logo); Prel = new PreloaderClip(); Prel.dura = Options.duration; Prel.x = (Core.StageDims.w / 2); Prel.y = ((Core.StageDims.h / 2) + 50); Root.addChild(Prel); Foggy = new MovieClip(); FoggyBG = new Sprite(); FoggyBG.graphics.beginFill(0); FoggyBG.graphics.drawRect(0, 0, Core.StageDims.w, Core.StageDims.h); FoggyBG.graphics.endFill(); Foggy.addChild(FoggyBG); Foggy.width = Core.StageDims.w; Foggy.height = Core.StageDims.h; Foggy.alpha = 0; Foggy.addEventListener(MouseEvent.CLICK, LoaderClicked); Foggy.buttonMode = true; Root.addChild(Foggy); Root.stop(); TimerStart = getTimer(); Foggy.addEventListener(Event.ENTER_FRAME, showProgress); if (Core.options.sandbox){ tf = new TextField(); tf.textColor = 0xFFFFFF; tf.text = ("Sandbox Type: " + Security.sandboxType); tf.x = 10; tf.y = 10; tf.width = 300; Root.addChild(tf); }; } private function PlayBranding():void{ var _local1:Sound; Foggy.removeEventListener(Event.ENTER_FRAME, showProgress); TimerEnd = getTimer(); Core.debug((("Game loaded in " + (Math.round(((TimerEnd - TimerStart) / 10)) / 100)) + " seconds")); Core.debug(("> Filesize: " + Core.Root.loaderInfo.bytesTotal)); Logo.play(); if (DomainHasAccess()){ _local1 = new VoiceOver(); _local1.play(); setTimeout(End, 4000); } else { Prel.visible = false; Notice = new LockedNotice(); Notice.x = (Core.StageDims.w / 2); Notice.y = Prel.y; Root.addChild(Notice); }; } public function LoaderClicked(_arg1:MouseEvent):void{ if (GotoGameOnClick){ Core.Tracking.Click(Core.Tracking.GamePlayURL); } else { Core.Tracking.Click(); }; } private function FOGFly(_arg1:Event):void{ var _local2:Object = _arg1.currentTarget; _local2.x = (_local2.x + (((_local2.targetX - _local2.x) / _local2.speed) * 0.5)); _local2.y = (_local2.y + (((_local2.targetY - _local2.y) / _local2.speed) * 0.5)); _local2.speed = (_local2.speed * 0.99); _local2.scaleX = (_local2.scaleY = (_local2.scaleY + (_local2.grow * 2))); if ((((_local2.alpha < 1)) && (!(_local2.fade)))){ _local2.alpha = (_local2.alpha + 0.01); }; if ((((((((((_local2.x < -50)) || ((_local2.y < -50)))) || ((_local2.x > (Core.StageDims.w + 50))))) || ((_local2.y > (Core.StageDims.h + 50))))) || ((_local2.scaleX > 2)))){ _local2.fade = true; }; if (_local2.fade){ _local2.alpha = (_local2.alpha - 0.05); if (_local2.alpha <= 0){ _local2.removeEventListener(Event.ENTER_FRAME, FOGFly); _local2.parent.removeChild(_local2); }; }; } private function End(_arg1:Boolean=false):void{ Foggy.removeEventListener(MouseEvent.CLICK, LoaderClicked); Root.removeChild(Foggy); Root.removeChild(BG); Root.removeChild(Prel); Root.removeChild(Logo); onComplete(Core); if (((Core.Remote) && (Core.options.remote))){ Core.Remote.Connect(); }; } } }//package FOG.AS3
Section 9
//Remote (FOG.AS3.Remote) package FOG.AS3 { import flash.display.*; import flash.events.*; import flash.net.*; import flash.system.*; public class Remote { public var LibFile:String;// = "api/library.swf" public var Server:String;// = "x.fogdev.com" public var rLoader:Loader; public var LibPath:String;// = "" public var Library:MovieClip; public var rRequest:URLRequest; public var Core:Object; public function Remote(_arg1:CoreAPI):void{ this.Core = _arg1; } public function Connect():void{ if (Core.Connect.Linked){ return; }; Security.allowDomain(Server); Security.loadPolicyFile((("http://" + Server) + "/crossdomain.xml")); LibPath = ((((((("http://" + Server) + "/") + LibFile) + "?v=") + Core.options.version) + "&c=") + Math.random()); Core.debug("Remote Tracking"); Core.debug(("> " + LibPath)); rLoader = new Loader(); rRequest = new URLRequest(LibPath); rLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, function (_arg1:Event):void{ Library = MovieClip(_arg1.target.content); Library.Connect(Core); }); rLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, function (_arg1:IOErrorEvent):void{ Core.debug(("> " + _arg1.text)); }); rLoader.contentLoaderInfo.addEventListener(HTTPStatusEvent.HTTP_STATUS, function (_arg1:HTTPStatusEvent):void{ Core.debug(("> " + _arg1.status)); }); rLoader.load(rRequest); } } }//package FOG.AS3
Section 10
//Scores (FOG.AS3.Scores) package FOG.AS3 { public class Scores { public var CryptScore:String;// = "" public var HighScore:Number;// = 0 public var Score:Number;// = 0 public var Debug:Boolean;// = true public var Options:Object; public var Core:Object; public function Scores(_arg1:CoreAPI):void{ Options = {order:"DESC", type:"INT"}; super(); this.Core = _arg1; if (!Core.Connect){ throw (new Error("You cannot use FogAPI.Scores Plugin without loading FogAPI.Connect Plugin first")); }; } public function GetScoreKey(_arg1:Number):String{ return (Base64.encode(((Core.Read("Token") + ":") + _arg1))); } public function Update(_arg1:Number, _arg2:Boolean=true):Boolean{ if (_arg1 != Score){ HighScore = Core.Connect.User.HighScore; Score = _arg1; if (Debug){ Core.debug((((((((("Score Update: " + Options.order) + " - ") + Score) + " - ") + HighScore) + " (") + _arg2) + ")")); }; if (((Options.order == "DESC")) ? (Score > HighScore) : (((Score < HighScore)) || ((HighScore === 0)))){ if (_arg2){ Save(); }; HighScore = Score; Core.Connect.User.HighScore = HighScore; }; if (Core.Connect.Linked){ Core.Connect.Call("scores.update", Score); }; }; return (true); } public function Publish(_arg1:Boolean=false):void{ CryptScore = GetScoreKey(Score); if (Core.Connect.Linked){ Core.Connect.Call("scores.publish", CryptScore, _arg1); } else { if (Debug){ Core.debug(((("Publishing Score: " + Score) + " - ") + CryptScore)); }; Core.Tracking.Click(Core.Tracking.GamePlayURL); }; } public function Scoreboard():void{ if (Core.Connect.Linked){ Core.Connect.Call("scores.scoreboard"); } else { Core.Tracking.Click(Core.Tracking.ScoreboardURL); }; } public function Save():void{ if (Core.Connect.Linked){ Core.Connect.Call("scores.save", GetScoreKey(Score)); }; } } }//package FOG.AS3
Section 11
//Storage (FOG.AS3.Storage) package FOG.AS3 { import flash.net.*; public class Storage { public var CurrentData:String;// = "" public var DataID:String;// = "" public var Locals:Array; public var Connected:Boolean;// = false public var Data:SharedObject; public var LastSave:String;// = "" public var Core:Object; public function Storage(_arg1:CoreAPI):void{ Locals = new Array(); super(); Core = _arg1; if (!Core.Connect){ throw (new Error("You cannot use FogAPI.Storage Plugin without loading FogAPI.Connect Plugin first")); }; DataID = ((Core.options.game.fogid + ".") + Core.Connect.User.ID); Data = SharedObject.getLocal(DataID); } public function Set(_arg1, _arg2=true, _arg3:Boolean=true):Boolean{ var _local4:*; if (typeof(_arg1) == "object"){ for (_local4 in _arg1) { _arg1[_local4] = Set(_local4, _arg1[_local4]); }; return (_arg1); }; Data.data[_arg1] = _arg2; if (_arg3){ Save(); }; return (true); } public function Decode(_arg1:String):Object{ var _local2:String = _arg1; var _local3:String = Base64.decode(_local2); var _local4:Object = JSON.decode(_local3); return (_local4); } public function Load(_arg1=""):Boolean{ var _local2:*; var _local4:String; var _local5:SharedObject; var _local6:*; Connected = true; Core.debug("Attempting to load Storage"); if (!Core.Connect.Linked){ _local2 = ""; } else { _local2 = Core.Connect.Call("storage.load", Core.options.game.fogid); }; if (!_local2){ Core.debug("> Could not load storage. Reverting to local flash storage"); Core.debug((("> Loaded " + Data.size) + " bytes from local memory")); return (false); }; Core.debug((("> Loaded " + _local2.length) + " bytes of data from FogAPI Server")); Clear(false); var _local3:Object = Decode(_local2); for (_local4 in _local3) { if (_local4.indexOf("_") === 0){ _local5 = GetLocal(_local4.substr(1)); for (_local6 in _local3[_local4]) { _local5.data[_local6] = _local3[_local4][_local6]; }; } else { Data.data[_local4] = _local3[_local4]; }; }; if (_arg1){ _arg1(_local2); }; return (true); } public function Encode(_arg1):String{ var _local2:* = _arg1; _local2 = JSON.encode(_local2); _local2 = Base64.encode(_local2); return (_local2); } public function GetLocal(_arg1:String=""):SharedObject{ var _local2:SharedObject = SharedObject.getLocal(((DataID + ".") + _arg1)); Locals.push([_arg1, _local2]); return (_local2); } public function Get(_arg1:String){ return (Data.data[_arg1]); } public function Sync():void{ var _local1:int; var _local2:int = Locals.length; while (_local1 < _local2) { Set(("_" + Locals[_local1][0]), Locals[_local1][1].data, false); _local1++; }; Save(); } public function Clear(_arg1:Boolean=true):void{ var _local2:int; var _local3:int = Locals.length; while (_local2 < _local3) { Locals[_local2][1].clear(); _local2++; }; Data.clear(); if (_arg1){ Save(); }; } public function Save():Boolean{ if (!Connected){ throw (new Error("You can't save data to the server when the game is not synced. Please use FogAPI.Storage.Load() to Initialize Sync")); }; CurrentData = Encode(Data.data); Core.debug((("Saving " + CurrentData.length) + " bytes of data")); if (!Core.Connect.Linked){ Core.debug("> to Flash Local"); return (false); }; Core.debug("> to FogAPI Server"); if (CurrentData != LastSave){ LastSave = CurrentData; return ((Core.Connect.Call("storage.save", Core.options.game.fogid, CurrentData)) ? true : false); //unresolved jump }; return (true); } } }//package FOG.AS3
Section 12
//Tracking (FOG.AS3.Tracking) package FOG.AS3 { import flash.net.*; public class Tracking { public var GamePlayURL:String;// = "http://www.freeonlinegames.com/{$game.category}/{$game.name}.html" public var DefaultURL:String;// = "http://www.freeonlinegames.com/" public var FreeGamesURL:String;// = "http://www.freegamesforyourwebsite.com/" public var ScoreboardURL:String;// = "http://www.freeonlinegames.com/scores/{$game.name}.html" public var Core:Object; public function Tracking(_arg1:CoreAPI):void{ this.Core = _arg1; } public function Click(_arg1:String=""):Boolean{ var _local2:String = (_arg1) ? _arg1 : DefaultURL; _local2 = _local2.replace("{$game.name}", Core.options.game.name); _local2 = _local2.replace("{$game.category}", Core.options.game.category); var _local3:String = ((("?utm_source=" + Core.urlInfo.domain) + "&utm_medium=api-game&utm_campaign=") + Core.options.game.name); var _local4:String = (_local2 + _local3); Core.debug("Tracking.."); Core.debug(("> " + _local4)); if (Core.options.sandbox){ return (false); }; navigateToURL(new URLRequest(_local4), "_blank"); return (true); } public function RegisterEvent(_arg1:String):void{ } } }//package FOG.AS3
Section 13
//coinAnimation_32 (pizza_fla.coinAnimation_32) package pizza_fla { import flash.display.*; public dynamic class coinAnimation_32 extends MovieClip { public function coinAnimation_32(){ addFrameScript(20, frame21); } function frame21(){ stop(); } } }//package pizza_fla
Section 14
//delivered_31 (pizza_fla.delivered_31) package pizza_fla { import flash.display.*; public dynamic class delivered_31 extends MovieClip { public var mtext:MovieClip; public function delivered_31(){ addFrameScript(50, frame51); } function frame51(){ stop(); } } }//package pizza_fla
Section 15
//fust_car_39 (pizza_fla.fust_car_39) package pizza_fla { import flash.display.*; public dynamic class fust_car_39 extends MovieClip { public function fust_car_39(){ addFrameScript(18, frame19); } function frame19(){ gotoAndPlay(1); } } }//package pizza_fla
Section 16
//fust_motor_44 (pizza_fla.fust_motor_44) package pizza_fla { import flash.display.*; public dynamic class fust_motor_44 extends MovieClip { public function fust_motor_44(){ addFrameScript(13, frame14); } function frame14(){ gotoAndPlay(1); } } }//package pizza_fla
Section 17
//p_scooter_42 (pizza_fla.p_scooter_42) package pizza_fla { import flash.display.*; public dynamic class p_scooter_42 extends MovieClip { public function p_scooter_42(){ addFrameScript(0, frame1, 1, frame2, 16, frame17, 81, frame82); } function frame17(){ stop(); } function frame1(){ stop(); } function frame2(){ stop(); } function frame82(){ gotoAndStop("stand"); } } }//package pizza_fla
Section 18
//p_van_37 (pizza_fla.p_van_37) package pizza_fla { import flash.display.*; public dynamic class p_van_37 extends MovieClip { public function p_van_37(){ addFrameScript(0, frame1, 1, frame2, 11, frame12, 21, frame22, 22, frame23, 32, frame33); } function frame1(){ stop(); } function frame2(){ stop(); } function frame12(){ stop(); } function frame22(){ stop(); } function frame33(){ stop(); } function frame23(){ stop(); } } }//package pizza_fla
Section 19
//ambient_sound (ambient_sound) package { import flash.media.*; public dynamic class ambient_sound extends Sound { } }//package
Section 20
//BackgroundGraphic (BackgroundGraphic) package { import flash.display.*; public dynamic class BackgroundGraphic extends MovieClip { } }//package
Section 21
//bicycle_sound (bicycle_sound) package { import flash.media.*; public dynamic class bicycle_sound extends Sound { } }//package
Section 22
//bigEddie (bigEddie) package { import flash.display.*; import flash.events.*; import flash.text.*; import flash.ui.*; public class bigEddie extends MovieClip { private var _acttext:Number; public var pizzasincar:TextField; public var b_accept:SimpleButton; private var _minitargets:Array; public var timelimit:TextField; private var _pizzatypes:Array; private var _orders:Array; private var _pizzaplaces:Array; private var _main:Object; public var b_decline:SimpleButton; private var _eddietexts:Array; public var eddietext:TextField; public var b_next:SimpleButton; public var minimap_layer:MovieClip; public var capacity:TextField; public var pizzatype:TextField; private var _available:Array; public var tipamount:TextField; public var b_exit:SimpleButton; private var _actorder:Number; public var b_prev:SimpleButton; private var _eddietextstates:Array; public var address:TextField; public function bigEddie(_arg1:Object){ this.x = 0; this.y = 0; _main = _arg1; _minitargets = new Array(); _pizzatypes = new Array("Pepperoni", "Hawaiian", "Margarita", "Meat", "Carbonara", "BBQ", "Bacon", "Chicken", "Cheese Steak", "Veggie"); _pizzaplaces = new Array({id:1, xp:-1524, yp:-1017, rot:90, addr:"Christopher Lane", tipmin:8, tipmax:14}, {id:2, xp:-1608, yp:-609, rot:0, addr:"Uppercrust Lane", tipmin:10, tipmax:13}, {id:3, xp:-1440, yp:-385, rot:90, addr:"Uppercrust Lane", tipmin:6, tipmax:11}, {id:4, xp:-1563, yp:0x0101, rot:0, addr:"Uppercrust Lane", tipmin:8, tipmax:12}, {id:5, xp:-1653, yp:1179, rot:0, addr:"Uppercrust Lane", tipmin:7, tipmax:12}, {id:6, xp:-1668, yp:1572, rot:0, addr:"Uppercrust Lane", tipmin:8, tipmax:14}, {id:7, xp:-988, yp:208, rot:0, addr:"Mighty Avenue", tipmin:9, tipmax:12}, {id:8, xp:-988, yp:-423, rot:0, addr:"Mighty Avenue", tipmin:9, tipmax:12}, {id:9, xp:-914, yp:-1017, rot:90, addr:"Pagebank Road", tipmin:6, tipmax:10}, {id:10, xp:-698, yp:-147, rot:90, addr:"Lip Lane", tipmin:7, tipmax:11}, {id:11, xp:-696, yp:1020, rot:0, addr:"Samshine Way", tipmin:7, tipmax:11}, {id:12, xp:-872, yp:1647, rot:90, addr:"Taylor Street", tipmin:8, tipmax:10}, {id:13, xp:-398, yp:1601, rot:0, addr:"Taylor Street", tipmin:7, tipmax:9}, {id:14, xp:-322, yp:985, rot:90, addr:"Saph Grove", tipmin:5, tipmax:9}, {id:15, xp:-446, yp:423, rot:90, addr:"Roberts Street", tipmin:6, tipmax:9}, {id:16, xp:-472, yp:139, rot:90, addr:"Sonny Road", tipmin:8, tipmax:12}, {id:17, xp:-516, yp:-939, rot:90, addr:"Pagebank Road", tipmin:8, tipmax:13}, {id:18, xp:136, yp:-1013, rot:90, addr:"Pagebank Road", tipmin:7, tipmax:11}, {id:19, xp:5, yp:1361, rot:90, addr:"Roach Way", tipmin:5, tipmax:10}, {id:20, xp:248, yp:1686, rot:90, addr:"Belvedere Road", tipmin:7, tipmax:11}, {id:21, xp:580, yp:359, rot:90, addr:"The Barn", tipmin:3, tipmax:6}, {id:22, xp:686, yp:-808, rot:0, addr:"Thinlip Avenue", tipmin:7, tipmax:11}, {id:23, xp:752, yp:-186, rot:0, addr:"Heiney Street", tipmin:5, tipmax:7}, {id:24, xp:968, yp:844, rot:0, addr:"Anfield Road", tipmin:7, tipmax:12}, {id:25, xp:752, yp:1207, rot:0, addr:"Cheesus Lane", tipmin:6, tipmax:10}, {id:26, xp:858, yp:1575, rot:90, addr:"Belvedere Road", tipmin:7, tipmax:11}, {id:27, xp:1256, yp:1539, rot:0, addr:"Denney Street", tipmin:8, tipmax:10}, {id:28, xp:1404, yp:1295, rot:90, addr:"Nattress Street", tipmin:8, tipmax:12}, {id:29, xp:1529, yp:775, rot:-45, addr:"FOG Towers", tipmin:12, tipmax:16}, {id:30, xp:1328, yp:326, rot:0, addr:"K Street", tipmin:7, tipmax:12}, {id:31, xp:1166, yp:-495, rot:90, addr:"Chester Road", tipmin:8, tipmax:12}, {id:32, xp:1140, yp:-1017, rot:90, addr:"Thinlip Avenue", tipmin:8, tipmax:12}, {id:33, xp:1902, yp:-811, rot:0, addr:"Thinlip Avenue", tipmin:9, tipmax:12}, {id:34, xp:1922, yp:-435, rot:90, addr:"Chester Road", tipmin:8, tipmax:12}, {id:35, xp:1904, yp:-278, rot:0, addr:"Green Street", tipmin:10, tipmax:13}, {id:36, xp:1616, yp:-121, rot:0, addr:"Addybads Lane", tipmin:7, tipmax:11}, {id:37, xp:1730, yp:1290, rot:90, addr:"Nattress Street", tipmin:7, tipmax:12}, {id:38, xp:1910, yp:0x0600, rot:0, addr:"Denney Street", tipmin:8, tipmax:12}, {id:39, xp:2028, yp:1007, rot:90, addr:"Bobed Street", tipmin:9, tipmax:12}, {id:40, xp:2306, yp:402, rot:90, addr:"Elmwood Lane", tipmin:10, tipmax:12}, {id:41, xp:2156, yp:139, rot:90, addr:"Rocky Road", tipmin:9, tipmax:11}, {id:42, xp:2302, yp:-1017, rot:90, addr:"Pilch Close", tipmin:11, tipmax:15}, {id:43, xp:2486, yp:-579, rot:0, addr:"Pilch Close", tipmin:9, tipmax:15}, {id:44, xp:2541, yp:156, rot:0, addr:"Minton Avenue", tipmin:10, tipmax:14}, {id:45, xp:2480, yp:1181, rot:0, addr:"Minton Avenue", tipmin:9, tipmax:13}, {id:46, xp:-11, yp:-430, rot:90, addr:"Chester Road", tipmin:5, tipmax:8}); _eddietexts = new Array("Hey kid, you wanna earn some cash then Big Eddie is the man you wanna work for. My pizza's are the best in this town and you're gonna make sure they get to my customers on time and still fresh as the moment they came out the oven.", "You still driving round on that piece of junk? Get a proper vehicle.", "Why not visit my cousin Vinny's auto shop just two blocks down from here? He'll give you a good deal on some wheels.", "Get pedallin kid, don't let that za get cold.", "These pizza's won't deliver themselves, kapeesh?", "What you just standin' there for? Get outta here.", "Get on your bike and ride!", "Be quick or the costs comin' straight outta your tips.", "Hey kid, keep up the good work.", "If you could make pizza's as good as you can deliver them, you'd be almost as good as me.", "If that pizza ain't warm when you get there then you get no tip."); _eddietextstates = new Array(0, 0, 0, 0); _acttext = 0; } private function mouseAccept(_arg1:MouseEvent):void{ acceptOrder(); } private function bigEddieControlDisable():void{ stage.removeEventListener(KeyboardEvent.KEY_UP, keyReleasedEddie); b_accept.removeEventListener(MouseEvent.CLICK, mouseAccept); b_decline.removeEventListener(MouseEvent.CLICK, mouseAccept); b_exit.removeEventListener(MouseEvent.CLICK, mouseExit); b_prev.removeEventListener(MouseEvent.CLICK, mousePrev); b_next.removeEventListener(MouseEvent.CLICK, mouseNext); this.visible = false; } private function deleteMiniTargets():void{ var _local1:Number; _local1 = 0; while (_local1 < _orders.length) { minimap_layer.removeChild(_minitargets[_local1].mt); _local1++; }; } private function keyReleasedEddie(_arg1:KeyboardEvent){ switch (_arg1.keyCode){ case Keyboard.LEFT: prevOrder(); break; case Keyboard.RIGHT: nextOrder(); break; case Keyboard.ENTER: acceptOrder(); break; case Keyboard.ESCAPE: exitFrom(); break; default: break; }; } private function acceptOrder():void{ if ((((_orders[_actorder].accepted == false)) && (((_main._pizzas + _orders[_actorder].num) > _main._cap)))){ return; }; _orders[_actorder].accepted = !(_orders[_actorder].accepted); _minitargets[_actorder].mode = ((_orders[_actorder].accepted)==true) ? 1 : 0; _minitargets[_actorder].mt.gotoAndStop((3 + _minitargets[_actorder].mode)); if (_orders[_actorder].accepted){ _main._pizzas = (_main._pizzas + _orders[_actorder].num); b_accept.visible = false; b_decline.visible = true; } else { _main._pizzas = (_main._pizzas - _orders[_actorder].num); b_accept.visible = true; b_decline.visible = false; }; textUpdate(); } private function mouseNext(_arg1:MouseEvent):void{ nextOrder(); } private function generateOrders():void{ var _local1:Number; var _local2:Number; var _local3:Number; var _local4:Object; _local1 = 0; while (_local1 < 3) { _local3 = Math.round((Math.random() * (_available.length - 1))); _local4 = new Object(); _local4.id = _available[_local3].id; _local4.xp = _available[_local3].xp; _local4.yp = _available[_local3].yp; _local4.rot = _available[_local3].rot; _local4.addr = _available[_local3].addr; _local4.tip = (Math.round((Math.random() * (_available[_local3].tipmax - _available[_local3].tipmin))) + _available[_local3].tipmin); _local4.type = _pizzatypes[Math.round((Math.random() * 9))]; _local4.num = (Math.round((Math.random() * (_main._cap - 1))) + 1); _local4.time = Math.floor((Math.sqrt((Math.pow((_available[_local3].xp - 335), 2) + Math.pow((_available[_local3].yp - 275), 2))) / 16)); _local4.accepted = false; _orders.push(_local4); _available.splice(_local3, 1); _local1++; }; _actorder = (_orders.length - 1); minimapUpdate(); chooseText(); textUpdate(); } private function minimapUpdate():void{ var _local1:Number; var _local2:Object; _minitargets = new Array(); _local1 = 0; while (_local1 < _orders.length) { _local2 = new Object(); _local2.id = _orders[_local1].id; _local2.mt = new mini_target(); _local2.mode = ((_orders[_local1].accepted)==true) ? 1 : 0; _local2.mt.gotoAndStop((1 + _local2.mode)); _local2.mt.x = (((_orders[_local1].xp + 1634) / 4130) * 208); _local2.mt.y = (((_orders[_local1].yp + 0x0400) / 2690) * 136); minimap_layer.addChild(_local2.mt); _minitargets.push(_local2); _local1++; }; _minitargets[_actorder].mt.gotoAndStop((3 + _minitargets[_actorder].mode)); } private function nextOrder():void{ _minitargets[_actorder].mt.gotoAndStop((1 + _minitargets[_actorder].mode)); _actorder = ((_actorder + 1) % _orders.length); textUpdate(); _minitargets[_actorder].mt.gotoAndStop((3 + _minitargets[_actorder].mode)); if (_orders[_actorder].accepted){ b_accept.visible = false; b_decline.visible = true; } else { b_accept.visible = true; b_decline.visible = false; }; } private function textUpdate():void{ var _local1:Object; _local1 = _orders[_actorder]; pizzatype.text = (("Pizza: " + String(_local1.num)) + "pc"); if (_local1.num > 1){ pizzatype.appendText("s"); }; pizzatype.appendText((" " + _local1.type)); address.text = ("Address: " + _local1.addr); tipamount.text = (("Tip amount: " + String(_local1.tip)) + "$"); timelimit.text = (("Time limit: " + String(Math.floor((_local1.time / 60)))) + ":"); if ((_local1.time % 60) < 10){ timelimit.appendText("0"); }; timelimit.appendText(String((_local1.time % 60))); pizzasincar.text = ("Pizzas in vehicle: " + String(_main._pizzas)); capacity.text = ("Capacity: " + String(_main._cap)); eddietext.text = _eddietexts[_acttext]; } private function bigEddieControlEnable():void{ this.visible = true; stage.addEventListener(KeyboardEvent.KEY_UP, keyReleasedEddie); b_accept.addEventListener(MouseEvent.CLICK, mouseAccept); b_decline.addEventListener(MouseEvent.CLICK, mouseAccept); b_exit.addEventListener(MouseEvent.CLICK, mouseExit); b_prev.addEventListener(MouseEvent.CLICK, mousePrev); b_next.addEventListener(MouseEvent.CLICK, mouseNext); } private function mouseExit(_arg1:MouseEvent):void{ exitFrom(); } private function chooseText():void{ _acttext = (Math.round((Math.random() * 7)) + 3); if (!_eddietextstates[0]){ _acttext = 0; _eddietextstates[0] = 1; }; if (((!(_eddietextstates[1])) && ((_main._player.hp < (_main._player.maxhp / 2))))){ _acttext = 1; _eddietextstates[1] = 1; }; if (((!(_eddietextstates[2])) && ((_main._money > 60)))){ _acttext = 2; _eddietextstates[2] = 1; }; } private function exitFrom():void{ var _local1:Number; var _local2:Array; bigEddieControlDisable(); _local2 = new Array(); _local1 = 0; while (_local1 < _orders.length) { if (_orders[_local1].accepted){ _local2.push(_orders[_local1]); }; _local1++; }; deleteMiniTargets(); _main.returnToStreet(_local2); } public function enterTo(_arg1:Array):void{ var _local2:Number; var _local3:*; if (_arg1 != null){ if (_arg1.length > 0){ _orders = _arg1; } else { _orders = new Array(); }; } else { _orders = new Array(); }; _available = new Array(); _local2 = 0; while (_local2 < _pizzaplaces.length) { _available.push(_pizzaplaces[_local2]); _local2++; }; if (_orders.length > 0){ _local2 = 0; while (_local2 < _orders.length) { for (_local3 in _available) { if (_orders[_local2].id == _available[_local3].id){ _available.splice(_local3, 1); }; }; _local2++; }; }; generateOrders(); bigEddieControlEnable(); b_accept.visible = true; b_decline.visible = false; } private function mousePrev(_arg1:MouseEvent):void{ prevOrder(); } private function prevOrder():void{ _minitargets[_actorder].mt.gotoAndStop((1 + _minitargets[_actorder].mode)); _actorder--; if (_actorder < 0){ _actorder = (_actorder + _orders.length); }; textUpdate(); _minitargets[_actorder].mt.gotoAndStop((3 + _minitargets[_actorder].mode)); if (_orders[_actorder].accepted){ b_accept.visible = false; b_decline.visible = true; } else { b_accept.visible = true; b_decline.visible = false; }; } } }//package
Section 23
//car_sound (car_sound) package { import flash.media.*; public dynamic class car_sound extends Sound { } }//package
Section 24
//car01 (car01) package { import flash.display.*; public dynamic class car01 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; } }//package
Section 25
//car02 (car02) package { import flash.display.*; public dynamic class car02 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; } }//package
Section 26
//car03 (car03) package { import flash.display.*; public dynamic class car03 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; } }//package
Section 27
//car04 (car04) package { import flash.display.*; public dynamic class car04 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; } }//package
Section 28
//car05 (car05) package { import flash.display.*; public dynamic class car05 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; } }//package
Section 29
//car06 (car06) package { import flash.display.*; public dynamic class car06 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; } }//package
Section 30
//car07 (car07) package { import flash.display.*; public dynamic class car07 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; } }//package
Section 31
//car08 (car08) package { import flash.display.*; public dynamic class car08 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; } }//package
Section 32
//CollisionGrid (CollisionGrid) package { import flash.display.*; import flash.events.*; public class CollisionGrid extends EventDispatcher { private var _numRows:int; private var _gridSize:Number; private var _checks:Array; private var _height:Number; private var _width:Number; private var _numCells:int; private var _numCols:int; private var _dh:Number; private var _grid:Array; private var _dw:Number; public function CollisionGrid(_arg1:Number, _arg2:Number, _arg3:Number){ _width = (_arg1 * 3); _height = (_arg2 * 3); _dw = _arg1; _dh = _arg2; _gridSize = _arg3; _numCols = Math.ceil((_width / _gridSize)); _numRows = Math.ceil((_height / _gridSize)); _numCells = (_numCols * _numRows); } public function check(_arg1:Array):void{ var _local4:DisplayObject; var _local5:int; var _local2:int = _arg1.length; _grid = new Array(_numCells); _checks = new Array(); var _local3:int; while (_local3 < _local2) { _local4 = _arg1[_local3]; _local5 = ((Math.floor(((_local4.y + _dh) / _gridSize)) * _numCols) + Math.floor(((_local4.x + _dw) / _gridSize))); if (_grid[_local5] == null){ _grid[_local5] = new Array(); }; _grid[_local5].push(_local4); _local3++; }; checkGrid(); } private function checkOneCell(_arg1:int, _arg2:int):void{ var _local6:DisplayObject; var _local7:int; var _local8:DisplayObject; var _local3:Array = _grid[((_arg2 * _numCols) + _arg1)]; if (_local3 == null){ return; }; var _local4:int = _local3.length; var _local5:int; while (_local5 < _local4) { _local6 = _local3[_local5]; _local7 = (_local5 + 1); while (_local7 < _local4) { _local8 = _local3[_local7]; _checks.push(_local6, _local8); _local7++; }; _local5++; }; } private function checkTwoCells(_arg1:int, _arg2:int, _arg3:int, _arg4:int):void{ var _local10:DisplayObject; var _local11:int; var _local12:DisplayObject; if ((((((_arg3 > _numCols)) || ((_arg3 < 0)))) || ((_arg4 >= _numRows)))){ return; }; var _local5:Array = _grid[((_arg2 * _numCols) + _arg1)]; var _local6:Array = _grid[((_arg4 * _numCols) + _arg3)]; if ((((_local5 == null)) || ((_local6 == null)))){ return; }; var _local7:int = _local5.length; var _local8:int = _local6.length; var _local9:int; while (_local9 < _local7) { _local10 = _local5[_local9]; _local11 = 0; while (_local11 < _local8) { _local12 = _local6[_local11]; _checks.push(_local10, _local12); _local11++; }; _local9++; }; } public function drawGrid(_arg1:Graphics):void{ _arg1.lineStyle(0, 0.5); var _local2:int; while (_local2 <= _width) { _arg1.moveTo(_local2, 0); _arg1.lineTo(_local2, _height); _local2 = (_local2 + _gridSize); }; _local2 = 0; while (_local2 <= _height) { _arg1.moveTo(0, _local2); _arg1.lineTo(_width, _local2); _local2 = (_local2 + _gridSize); }; } public function get checks():Array{ return (_checks); } private function checkGrid():void{ var _local2:int; var _local1:int; while (_local1 < _numCols) { _local2 = 0; while (_local2 < _numRows) { checkOneCell(_local1, _local2); checkTwoCells(_local1, _local2, (_local1 + 1), _local2); checkTwoCells(_local1, _local2, (_local1 - 1), (_local2 + 1)); checkTwoCells(_local1, _local2, _local1, (_local2 + 1)); checkTwoCells(_local1, _local2, (_local1 + 1), (_local2 + 1)); _local2++; }; _local1++; }; } } }//package
Section 33
//fog_1 (fog_1) package { import flash.display.*; public dynamic class fog_1 extends MovieClip { public function fog_1(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package
Section 34
//gameOverMC (gameOverMC) package { import flash.display.*; public dynamic class gameOverMC extends MovieClip { public var b_more:SimpleButton; public var b_again:SimpleButton; public var b_free:SimpleButton; public var scored_btn:SimpleButton; } }//package
Section 35
//HitTest (HitTest) package { import flash.display.*; import flash.geom.*; public class HitTest { protected static function getDrawMatrix(_arg1:DisplayObject, _arg2:Rectangle, _arg3:Number):Matrix{ var _local4:Point; var _local5:Matrix; var _local6:Matrix = _arg1.root.transform.concatenatedMatrix; _local4 = _arg1.localToGlobal(new Point()); _local5 = _arg1.transform.concatenatedMatrix; _local5.tx = (_local4.x - _arg2.x); _local5.ty = (_local4.y - _arg2.y); _local5.a = (_local5.a / _local6.a); _local5.d = (_local5.d / _local6.d); if (_arg3 != 1){ _local5.scale(_arg3, _arg3); }; return (_local5); } public static function complexHitTestObject(_arg1:DisplayObject, _arg2:DisplayObject, _arg3:Number=1):Boolean{ return (!((complexIntersectionRectangle(_arg1, _arg2, _arg3).width == 0))); } public static function complexIntersectionRectangle(_arg1:DisplayObject, _arg2:DisplayObject, _arg3:Number=1):Rectangle{ if (_arg3 <= 0){ throw (new Error("ArgumentError: Error #5001: Invalid value for accurracy", 5001)); }; if (!_arg1.hitTestObject(_arg2)){ return (new Rectangle()); }; var _local4:Rectangle = intersectionRectangle(_arg1, _arg2); if (((((_local4.width * _arg3) < 1)) || (((_local4.height * _arg3) < 1)))){ return (new Rectangle()); }; var _local5:BitmapData = new BitmapData((_local4.width * _arg3), (_local4.height * _arg3), false, 0); _local5.draw(_arg1, HitTest.getDrawMatrix(_arg1, _local4, _arg3), new ColorTransform(1, 1, 1, 1, 0xFF, -255, -255, 0xFF)); _local5.draw(_arg2, HitTest.getDrawMatrix(_arg2, _local4, _arg3), new ColorTransform(1, 1, 1, 1, 0xFF, 0xFF, 0xFF, 0xFF), BlendMode.DIFFERENCE); var _local6:Rectangle = _local5.getColorBoundsRect(4294967295, 4278255615); _local5.dispose(); if (_arg3 != 1){ _local6.x = (_local6.x / _arg3); _local6.y = (_local6.y / _arg3); _local6.width = (_local6.width / _arg3); _local6.height = (_local6.height / _arg3); }; _local6.x = (_local6.x + _local4.x); _local6.y = (_local6.y + _local4.y); return (_local6); } public static function intersectionRectangle(_arg1:DisplayObject, _arg2:DisplayObject):Rectangle{ if (((((!(_arg1.root)) || (!(_arg2.root)))) || (!(_arg1.hitTestObject(_arg2))))){ return (new Rectangle()); }; var _local3:Rectangle = _arg1.getBounds(_arg1.root); var _local4:Rectangle = _arg2.getBounds(_arg2.root); var _local5:Rectangle = new Rectangle(); _local5.x = Math.max(_local3.x, _local4.x); _local5.y = Math.max(_local3.y, _local4.y); _local5.width = Math.min(((_local3.x + _local3.width) - _local5.x), ((_local4.x + _local4.width) - _local5.x)); _local5.height = Math.min(((_local3.y + _local3.height) - _local5.y), ((_local4.y + _local4.height) - _local5.y)); return (_local5); } } }//package
Section 36
//impact1_sound (impact1_sound) package { import flash.media.*; public dynamic class impact1_sound extends Sound { } }//package
Section 37
//impact2_sound (impact2_sound) package { import flash.media.*; public dynamic class impact2_sound extends Sound { } }//package
Section 38
//jeep_sound (jeep_sound) package { import flash.media.*; public dynamic class jeep_sound extends Sound { } }//package
Section 39
//LockedNotice (LockedNotice) package { import flash.display.*; public dynamic class LockedNotice extends MovieClip { } }//package
Section 40
//LogoFly (LogoFly) package { import flash.display.*; public dynamic class LogoFly extends MovieClip { public function LogoFly(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package
Section 41
//LogoSpin (LogoSpin) package { import flash.display.*; public dynamic class LogoSpin extends MovieClip { } }//package
Section 42
//man1 (man1) package { import flash.display.*; public dynamic class man1 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; public function man1(){ addFrameScript(20, frame21, 44, frame45, 81, frame82, 82, frame83); } function frame82(){ stop(); } function frame83(){ stop(); } function frame21(){ gotoAndPlay("walk"); } function frame45(){ stop(); } } }//package
Section 43
//man2 (man2) package { import flash.display.*; public dynamic class man2 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; public function man2(){ addFrameScript(20, frame21, 44, frame45, 81, frame82, 82, frame83); } function frame82(){ stop(); } function frame83(){ stop(); } function frame21(){ gotoAndPlay("walk"); } function frame45(){ stop(); } } }//package
Section 44
//man3 (man3) package { import flash.display.*; public dynamic class man3 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; public function man3(){ addFrameScript(20, frame21, 44, frame45, 81, frame82, 82, frame83); } function frame82(){ stop(); } function frame83(){ stop(); } function frame21(){ gotoAndPlay("walk"); } function frame45(){ stop(); } } }//package
Section 45
//man4 (man4) package { import flash.display.*; public dynamic class man4 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; public function man4(){ addFrameScript(20, frame21, 44, frame45, 81, frame82, 82, frame83); } function frame82(){ stop(); } function frame83(){ stop(); } function frame21(){ gotoAndPlay("walk"); } function frame45(){ stop(); } } }//package
Section 46
//man5 (man5) package { import flash.display.*; public dynamic class man5 extends MovieClip { public var hitobject:MovieClip; public var prevhitobj:MovieClip; public function man5(){ addFrameScript(20, frame21, 44, frame45, 81, frame82, 82, frame83); } function frame82(){ stop(); } function frame83(){ stop(); } function frame21(){ gotoAndPlay("walk"); } function frame45(){ stop(); } } }//package
Section 47
//mini_target (mini_target) package { import flash.display.*; public dynamic class mini_target extends MovieClip { public function mini_target(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4); } function frame1(){ stop(); } function frame2(){ stop(); } function frame3(){ stop(); } function frame4(){ stop(); } } }//package
Section 48
//motor_sound (motor_sound) package { import flash.media.*; public dynamic class motor_sound extends Sound { } }//package
Section 49
//npcCar (npcCar) package { import flash.display.*; import flash.geom.*; public class npcCar extends MovieClip { private const _MAXSPEED:Number = 3; private const REASON_NODEOCCUPIED:Number = 3; private const REASON_COLLISION:Number = 1; private const REASON_NOFREEPLACE:Number = 2; public var prevhit:MovieClip; private var _slowstart:Boolean; private var _ox:Number; private var _oy:Number; private var _stopped:Boolean; private var _a1:Number; private var _car:MovieClip; private var _main:Object; private var _xp:Number; private var _a2:Number; public var checkPlayer:Boolean; private var _pos:Object; public var hitobj:MovieClip; private var _nxp:Number; private var _dx:Number; private var _dy:Number; private var _yp:Number; public var gridStopped:Boolean; private var _nyp:Number; private var _speed:Number; private var _nextpos:Object; private var _dir:Number; private var _axp:Number; private var _rad:Number; private var _slowstop:Boolean; private var _d:Number; private var _places:npcCarPlaces; private var _stopreason:Number; private var _t:Number; private var _ayp:Number; public function npcCar(_arg1:Point, _arg2:Object, _arg3:npcCarPlaces){ addFrameScript(0, frame1); _main = _arg2; _places = _arg3; switch (Math.round((Math.random() * 7))){ case 0: _car = new car01(); break; case 1: _car = new car02(); break; case 2: _car = new car03(); break; case 3: _car = new car04(); break; case 4: _car = new car05(); break; case 5: _car = new car06(); break; case 6: _car = new car07(); break; case 7: _car = new car08(); break; }; this.addChild(_car); _speed = _MAXSPEED; _pos = _places.getRandomPlace(); if (_pos.node != 0){ if (!_places.isNodeOccupied(_pos.node)){ _places.setNodeOccupied(_pos.node); } else { stopThis(); _stopreason = REASON_NODEOCCUPIED; }; }; var _local4:Number = 0; if (_pos.next.length > 1){ _local4 = Math.round((Math.random() * (_pos.next.length - 1))); }; _nextpos = _places.getPlace(_pos.next[_local4].id); _places.addOccupied(_pos.id); _dir = (_nextpos.rot - _pos.rot); if (_dir > 100){ _dir = (_dir - 360); }; if (_dir < -100){ _dir = (_dir + 360); }; _xp = _pos.xp; _yp = _pos.yp; _nxp = _nextpos.xp; _nyp = _nextpos.yp; _axp = _xp; _ayp = _yp; calcVars(); this.x = (_axp + _arg1.x); this.y = (_ayp + _arg1.y); this.rotation = _pos.rot; _t = 0; hitobj = _car.hitobject; hitobj.visible = false; prevhit = _car.prevhitobj; prevhit.visible = false; _stopped = false; _slowstop = false; _slowstart = false; _stopreason = 0; checkPlayer = false; gridStopped = false; } private function getNewTarget():void{ var _local1:Object; var _local2:Array; if (_places.isNodeOccupied(_pos.node)){ _places.setNodeFree(_pos.node); }; _local1 = _pos; _pos = _nextpos; if (_pos.node != 0){ if (!_places.isNodeOccupied(_pos.node)){ _places.setNodeOccupied(_pos.node); } else { stopThis(); _stopreason = REASON_NODEOCCUPIED; }; }; var _local3:Number = 0; _local2 = new Array(); var _local4:Number = 0; while (_local4 < _pos.next.length) { if (!_places.isOccupied(_pos.next[_local4].id)){ _local2.push(_pos.next[_local4].id); }; _local4++; }; if (_local2.length == 0){ if (_pos.next.length > 1){ _local3 = Math.round((Math.random() * (_pos.next.length - 1))); }; _nextpos = _places.getPlace(_pos.next[_local3].id); } else { if (_local2.length > 1){ _local3 = Math.round((Math.random() * (_local2.length - 1))); }; _nextpos = _places.getPlace(_local2[_local3]); }; _places.subOccupied(_local1.id); _places.addOccupied(_pos.id); _dir = (_nextpos.rot - _pos.rot); if (_dir > 100){ _dir = (_dir - 360); }; if (_dir < -100){ _dir = (_dir + 360); }; _xp = _pos.xp; _yp = _pos.yp; _nxp = _nextpos.xp; _nyp = _nextpos.yp; calcVars(); } private function calcVars():void{ var _local1:Number; var _local2:Number; var _local3:Number; var _local4:Number; if (_dir == 0){ _dx = (_nxp - _xp); _dy = (_nyp - _yp); _d = Math.sqrt((Math.pow(_dx, 2) + Math.pow(_dy, 2))); } else { _local1 = 0.25; if (Math.abs(_dir) < 90){ _local1 = 0.125; }; if (_dir < 0){ _local1 = (1 - _local1); }; _ox = ((_xp + _nxp) / 2); _oy = ((_yp + _nyp) / 2); _dx = (_nxp - _xp); _dy = (_nyp - _yp); _d = Math.sqrt(((_dx * _dx) + (_dy * _dy))); _local2 = (_d / 2); _local3 = (_local2 / Math.tan((_local1 * Math.PI))); _rad = (_local2 / Math.sin((_local1 * Math.PI))); _local4 = (Math.atan2(_dy, _dx) + (Math.PI / 2)); _ox = (_ox + (Math.cos(_local4) * _local3)); _oy = (_oy + (Math.sin(_local4) * _local3)); _a1 = Math.atan2((_yp - _oy), (_xp - _ox)); _a2 = Math.atan2((_nyp - _oy), (_nxp - _ox)); if (_dir > 0){ if (_a2 < _a1){ _a2 = (_a2 + (Math.PI * 2)); }; } else { if (_a1 < _a2){ _a1 = (_a1 + (Math.PI * 2)); }; }; _d = (_rad * Math.abs((_a2 - _a1))); }; } public function startThis(_arg1:Number):void{ if (_stopreason != _arg1){ return; }; _stopped = false; _stopreason = 0; _slowstop = false; gridStopped = false; } public function slowStop():void{ _slowstart = false; _slowstop = true; } public function getStopped():Boolean{ return (_slowstop); } public function stopThis():void{ _stopped = true; _stopreason = REASON_COLLISION; } public function isStopped():Boolean{ return (_stopped); } public function isMoving():Boolean{ if (((!(_slowstop)) && (!(_stopped)))){ return (true); }; return (false); } public function updateNpcCar(_arg1:Point):void{ var _local2:Number; var _local3:Number; var _local4:Boolean; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Number; var _local9:Number; var _local10:Number; if (!_stopped){ if (_slowstop){ _speed = (_speed - 0.6); if (_speed < 0){ _speed = 0; _stopped = true; }; }; if (_slowstart){ _speed = (_speed + 0.4); if (_speed > _MAXSPEED){ _speed = _MAXSPEED; _slowstart = false; }; }; if (_t > 1){ _t = (_t - 1); _t = (_d * _t); getNewTarget(); _t = (_t / _d); }; if (_dir == 0){ _axp = (_xp + (_dx * _t)); _ayp = (_yp + (_dy * _t)); this.rotation = _pos.rot; } else { _local6 = (_a1 + ((_a2 - _a1) * _t)); _axp = (_ox + (Math.cos(_local6) * _rad)); _ayp = (_oy + (Math.sin(_local6) * _rad)); this.rotation = (_pos.rot + (_dir * _t)); }; _t = (_t + (_speed / _d)); } else { if (_stopreason == REASON_NODEOCCUPIED){ if (!_places.isNodeOccupied(_pos.node)){ startThis(REASON_NODEOCCUPIED); _places.setNodeOccupied(_pos.node); }; }; }; _local2 = this.x; _local3 = this.y; this.x = (_axp + _arg1.x); this.y = (_ayp + _arg1.y); if (((checkPlayer) && (!(_stopped)))){ _local4 = HitTest.complexHitTestObject(prevhit, _main._player.hitobj, 1); if (_local4){ if (!_slowstop){ slowStop(); }; }; _local4 = HitTest.complexHitTestObject(hitobj, _main._player.hitobj, 1); if (_local4){ _local7 = (this.x - _local2); _local8 = (this.y - _local3); _local9 = 0; _local10 = 0; _local5 = 0; while (_local5 < 2) { _local7 = (_local7 / 2); _local8 = (_local8 / 2); _local9 = (_local9 + _local7); _local10 = (_local10 + _local8); this.x = (_local2 + _local9); this.y = (_local3 + _local10); _local4 = HitTest.complexHitTestObject(hitobj, _main._player.hitobj, 1); if (_local4){ _local9 = (_local9 - _local7); _local10 = (_local10 - _local8); }; _local5++; }; _main._player.doCollision(); stopThis(); }; }; } public function slowStart():void{ _stopped = false; _slowstop = false; _slowstart = true; gridStopped = false; _stopreason = 0; } function frame1(){ stop(); } } }//package
Section 50
//npcCarPlaces (npcCarPlaces) package { public class npcCarPlaces { private var _places:Array; private var _nodes:Array; private var _main:Object; public function npcCarPlaces(_arg1:Object){ var _local3:Number; super(); _main = _arg1; _places = new Array({id:1, xp:451, yp:404, node:0, occ:0, rot:0, next:new Array({id:19})}, {id:2, xp:451, yp:561, node:0, occ:0, rot:0, next:new Array({id:46}, {id:1}, {id:43})}, {id:3, xp:409, yp:369, node:0, occ:0, rot:180, next:new Array({id:43}, {id:4}, {id:46})}, {id:4, xp:409, yp:526, node:0, occ:0, rot:180, next:new Array({id:6})}, {id:5, xp:451, yp:691, node:0, occ:0, rot:0, next:new Array({id:2})}, {id:6, xp:409, yp:656, node:0, occ:0, rot:180, next:new Array({id:55}, {id:698}, {id:58})}, {id:7, xp:163, yp:561, node:0, occ:0, rot:0, next:new Array({id:50}, {id:47})}, {id:8, xp:121, yp:526, node:0, occ:0, rot:180, next:new Array({id:10})}, {id:9, xp:163, yp:691, node:0, occ:0, rot:0, next:new Array({id:7})}, {id:10, xp:121, yp:656, node:0, occ:0, rot:180, next:new Array({id:59}, {id:702}, {id:62})}, {id:11, xp:739, yp:561, node:0, occ:0, rot:0, next:new Array({id:42}, {id:15})}, {id:12, xp:697, yp:526, node:0, occ:0, rot:180, next:new Array({id:30})}, {id:13, xp:-125, yp:691, node:0, occ:0, rot:0, next:new Array({id:31})}, {id:14, xp:-167, yp:656, node:0, occ:0, rot:180, next:new Array({id:63}, {id:722}, {id:830})}, {id:15, xp:739, yp:404, node:0, occ:0, rot:0, next:new Array({id:17})}, {id:16, xp:697, yp:369, node:0, occ:0, rot:180, next:new Array({id:12}, {id:42})}, {id:17, xp:739, yp:273, node:0, occ:0, rot:0, next:new Array({id:79})}, {id:18, xp:697, yp:238, node:0, occ:0, rot:180, next:new Array({id:16})}, {id:19, xp:451, yp:-16, node:0, occ:0, rot:0, next:new Array({id:21}, {id:67})}, {id:20, xp:409, yp:-51, node:0, occ:0, rot:180, next:new Array({id:3})}, {id:21, xp:451, yp:-174, node:0, occ:0, rot:0, next:new Array({id:23})}, {id:22, xp:409, yp:-209, node:0, occ:0, rot:180, next:new Array({id:20}, {id:67})}, {id:23, xp:451, yp:-304, node:0, occ:0, rot:0, next:new Array({id:94}, {id:71})}, {id:24, xp:409, yp:-339, node:0, occ:0, rot:180, next:new Array({id:22})}, {id:25, xp:739, yp:-174, node:0, occ:0, rot:0, next:new Array({id:27})}, {id:26, xp:697, yp:-209, node:0, occ:0, rot:180, next:new Array({id:66})}, {id:27, xp:739, yp:-304, node:0, occ:0, rot:0, next:new Array({id:70}, {id:133}, {id:75})}, {id:28, xp:697, yp:-339, node:0, occ:0, rot:180, next:new Array({id:26})}, {id:29, xp:739, yp:633, node:0, occ:0, rot:0, next:new Array({id:11})}, {id:30, xp:697, yp:589, node:0, occ:0, rot:180, next:new Array({id:82})}, {id:31, xp:-125, yp:628, node:0, occ:0, rot:0, next:new Array({id:85})}, {id:32, xp:-167, yp:582, node:0, occ:0, rot:180, next:new Array({id:14})}, {id:33, xp:1027, yp:-174, node:0, occ:0, rot:0, next:new Array({id:35})}, {id:34, xp:985, yp:-209, node:0, occ:0, rot:180, next:new Array({id:163}, {id:40})}, {id:35, xp:1027, yp:-304, node:0, occ:0, rot:0, next:new Array({id:74}, {id:141}, {id:155})}, {id:36, xp:985, yp:-339, node:0, occ:0, rot:180, next:new Array({id:34})}, {id:37, xp:1027, yp:114, node:0, occ:0, rot:0, next:new Array({id:39})}, {id:38, xp:985, yp:79, node:0, occ:0, rot:180, next:new Array({id:171}, {id:78})}, {id:39, xp:1027, yp:-16, node:0, occ:0, rot:0, next:new Array({id:33}, {id:163})}, {id:40, xp:985, yp:-51, node:0, occ:0, rot:180, next:new Array({id:38})}, {id:41, xp:619, yp:485, node:0, occ:0, rot:90, next:new Array({id:15}, {id:12})}, {id:42, xp:654, yp:443, node:0, occ:0, rot:270, next:new Array({id:44})}, {id:43, xp:492, yp:485, node:0, occ:0, rot:90, next:new Array({id:41})}, {id:44, xp:527, yp:443, node:0, occ:0, rot:270, next:new Array({id:4}, {id:46}, {id:1})}, {id:45, xp:332, yp:485, node:0, occ:0, rot:90, next:new Array({id:1}, {id:43}, {id:4})}, {id:46, xp:367, yp:443, node:0, occ:0, rot:270, next:new Array({id:48})}, {id:47, xp:205, yp:485, node:0, occ:0, rot:90, next:new Array({id:45})}, {id:48, xp:240, yp:443, node:0, occ:0, rot:270, next:new Array({id:8}, {id:50})}, {id:49, xp:45, yp:485, node:0, occ:0, rot:90, next:new Array({id:47}, {id:8})}, {id:50, xp:80, yp:443, node:0, occ:0, rot:270, next:new Array({id:52})}, {id:51, xp:-16, yp:485, node:0, occ:0, rot:90, next:new Array({id:49})}, {id:52, xp:7, yp:443, node:0, occ:0, rot:270, next:new Array({id:88})}, {id:53, xp:564, yp:773, node:0, occ:0, rot:90, next:new Array({id:83})}, {id:54, xp:588, yp:731, node:0, occ:0, rot:270, next:new Array({id:56})}, {id:55, xp:492, yp:773, node:0, occ:0, rot:90, next:new Array({id:53})}, {id:56, xp:527, yp:731, node:0, occ:0, rot:270, next:new Array({id:698}, {id:58}, {id:5})}, {id:57, xp:332, yp:773, node:0, occ:0, rot:90, next:new Array({id:5}, {id:55}, {id:698})}, {id:58, xp:367, yp:731, node:0, occ:0, rot:270, next:new Array({id:60})}, {id:59, xp:205, yp:773, node:0, occ:0, rot:90, next:new Array({id:57})}, {id:60, xp:240, yp:731, node:0, occ:0, rot:270, next:new Array({id:702}, {id:62}, {id:9})}, {id:61, xp:43, yp:773, node:0, occ:0, rot:90, next:new Array({id:9}, {id:59}, {id:702})}, {id:62, xp:78, yp:731, node:0, occ:0, rot:270, next:new Array({id:64})}, {id:63, xp:-84, yp:773, node:0, occ:0, rot:90, next:new Array({id:61})}, {id:64, xp:-49, yp:731, node:0, occ:0, rot:270, next:new Array({id:722}, {id:830}, {id:13})}, {id:65, xp:619, yp:-91, node:0, occ:0, rot:90, next:new Array({id:25})}, {id:66, xp:654, yp:-133, node:0, occ:0, rot:270, next:new Array({id:68})}, {id:67, xp:492, yp:-91, node:0, occ:0, rot:90, next:new Array({id:65})}, {id:68, xp:527, yp:-133, node:0, occ:0, rot:270, next:new Array({id:20}, {id:21})}, {id:69, xp:619, yp:-379, node:0, occ:0, rot:90, next:new Array({id:133}, {id:75}, {id:28})}, {id:70, xp:654, yp:-421, node:0, occ:0, rot:270, next:new Array({id:72})}, {id:71, xp:492, yp:-379, node:0, occ:0, rot:90, next:new Array({id:69})}, {id:72, xp:527, yp:-421, node:0, occ:0, rot:270, next:new Array({id:24}, {id:94})}, {id:73, xp:909, yp:-379, node:0, occ:0, rot:90, next:new Array({id:141}, {id:155}, {id:36})}, {id:74, xp:944, yp:-421, node:0, occ:0, rot:270, next:new Array({id:76})}, {id:75, xp:782, yp:-379, node:0, occ:0, rot:90, next:new Array({id:73})}, {id:76, xp:817, yp:-421, node:0, occ:0, rot:270, next:new Array({id:28}, {id:70}, {id:133})}, {id:77, xp:909, yp:197, node:0, occ:0, rot:90, next:new Array({id:37}, {id:171})}, {id:78, xp:944, yp:155, node:0, occ:0, rot:270, next:new Array({id:80})}, {id:79, xp:782, yp:197, node:0, occ:0, rot:90, next:new Array({id:77})}, {id:80, xp:817, yp:155, node:0, occ:0, rot:270, next:new Array({id:18})}, {id:81, xp:702.45, yp:685.25, node:0, occ:0, rot:45, next:new Array({id:29})}, {id:82, xp:692.5, yp:635.8, node:0, occ:0, rot:225, next:new Array({id:84})}, {id:83, xp:626.95, yp:760.75, node:0, occ:0, rot:45, next:new Array({id:81})}, {id:84, xp:627, yp:701.3, node:0, occ:0, rot:225, next:new Array({id:54})}, {id:85, xp:-118.5, yp:577.55, node:0, occ:0, rot:45, next:new Array({id:87})}, {id:86, xp:-128.45, yp:528.1, node:0, occ:0, rot:225, next:new Array({id:32})}, {id:87, xp:-55.5, yp:514.55, node:0, occ:0, rot:45, next:new Array({id:51})}, {id:88, xp:-55.45, yp:455.1, node:0, occ:0, rot:225, next:new Array({id:86})}, {id:89, xp:163, yp:-231, node:0, occ:0, rot:0, next:new Array({id:91})}, {id:90, xp:121, yp:-276, node:0, occ:0, rot:180, next:new Array({id:218})}, {id:91, xp:163, yp:-304, node:0, occ:0, rot:0, next:new Array({id:102}, {id:121}, {id:95})}, {id:92, xp:121, yp:-339, node:0, occ:0, rot:180, next:new Array({id:90})}, {id:93, xp:331, yp:-379, node:0, occ:0, rot:90, next:new Array({id:71}, {id:24})}, {id:94, xp:366, yp:-421, node:0, occ:0, rot:270, next:new Array({id:96})}, {id:95, xp:204, yp:-379, node:0, occ:0, rot:90, next:new Array({id:93})}, {id:96, xp:239, yp:-421, node:0, occ:0, rot:270, next:new Array({id:92}, {id:102}, {id:121})}, {id:97, xp:-125, yp:-174, node:0, occ:0, rot:0, next:new Array({id:99})}, {id:98, xp:-167, yp:-209, node:0, occ:0, rot:180, next:new Array({id:211}, {id:408}, {id:214})}, {id:99, xp:-125, yp:-304, node:0, occ:0, rot:0, next:new Array({id:110}, {id:113}, {id:103})}, {id:100, xp:-167, yp:-339, node:0, occ:0, rot:180, next:new Array({id:98})}, {id:101, xp:43, yp:-379, node:0, occ:0, rot:90, next:new Array({id:121}, {id:95}, {id:92})}, {id:102, xp:78, yp:-421, node:0, occ:0, rot:270, next:new Array({id:104})}, {id:103, xp:-84, yp:-379, node:0, occ:0, rot:90, next:new Array({id:101})}, {id:104, xp:-49, yp:-421, node:0, occ:0, rot:270, next:new Array({id:100}, {id:110}, {id:113})}, {id:105, xp:-413, yp:-174, node:0, occ:0, rot:0, next:new Array({id:107})}, {id:106, xp:-455, yp:-209, node:0, occ:0, rot:180, next:new Array({id:215}, {id:402})}, {id:107, xp:-413, yp:-304, node:0, occ:0, rot:0, next:new Array({id:430}, {id:421}, {id:111})}, {id:108, xp:-455, yp:-339, node:0, occ:0, rot:180, next:new Array({id:106})}, {id:109, xp:-245, yp:-379, node:0, occ:0, rot:90, next:new Array({id:113}, {id:103}, {id:100})}, {id:110, xp:-210, yp:-421, node:0, occ:0, rot:270, next:new Array({id:112})}, {id:111, xp:-372, yp:-379, node:0, occ:0, rot:90, next:new Array({id:109})}, {id:112, xp:-337, yp:-421, node:0, occ:0, rot:270, next:new Array({id:108}, {id:430}, {id:421})}, {id:113, xp:-125, yp:-462, node:0, occ:0, rot:0, next:new Array({id:115})}, {id:114, xp:-167, yp:-497, node:0, occ:0, rot:180, next:new Array({id:103}, {id:100}, {id:110})}, {id:115, xp:-125, yp:-592, node:0, occ:0, rot:0, next:new Array({id:189}, {id:119})}, {id:116, xp:-167, yp:-627, node:0, occ:0, rot:180, next:new Array({id:114})}, {id:117, xp:43, yp:-667, node:0, occ:0, rot:90, next:new Array({id:197}, {id:127}, {id:124})}, {id:118, xp:78, yp:-709, node:0, occ:0, rot:270, next:new Array({id:120})}, {id:119, xp:-84, yp:-667, node:0, occ:0, rot:90, next:new Array({id:117})}, {id:120, xp:-49, yp:-709, node:0, occ:0, rot:270, next:new Array({id:116}, {id:189})}, {id:121, xp:163, yp:-462, node:0, occ:0, rot:0, next:new Array({id:123})}, {id:122, xp:121, yp:-497, node:0, occ:0, rot:180, next:new Array({id:95}, {id:92}, {id:102})}, {id:123, xp:163, yp:-592, node:0, occ:0, rot:0, next:new Array({id:118}, {id:197}, {id:127})}, {id:124, xp:121, yp:-627, node:0, occ:0, rot:180, next:new Array({id:122})}, {id:125, xp:331, yp:-667, node:0, occ:0, rot:90, next:new Array({id:205}, {id:131})}, {id:126, xp:366, yp:-709, node:0, occ:0, rot:270, next:new Array({id:128})}, {id:127, xp:204, yp:-667, node:0, occ:0, rot:90, next:new Array({id:125})}, {id:128, xp:239, yp:-709, node:0, occ:0, rot:270, next:new Array({id:124}, {id:118}, {id:197})}, {id:129, xp:619, yp:-667, node:0, occ:0, rot:90, next:new Array({id:177}, {id:139}, {id:136})}, {id:130, xp:654, yp:-709, node:0, occ:0, rot:270, next:new Array({id:132})}, {id:131, xp:492, yp:-667, node:0, occ:0, rot:90, next:new Array({id:129})}, {id:132, xp:527, yp:-709, node:0, occ:0, rot:270, next:new Array({id:126}, {id:205})}, {id:133, xp:739, yp:-462, node:0, occ:0, rot:0, next:new Array({id:135})}, {id:134, xp:697, yp:-497, node:0, occ:0, rot:180, next:new Array({id:75}, {id:28}, {id:70})}, {id:135, xp:739, yp:-592, node:0, occ:0, rot:0, next:new Array({id:130}, {id:177}, {id:139})}, {id:136, xp:697, yp:-627, node:0, occ:0, rot:180, next:new Array({id:134})}, {id:137, xp:909, yp:-667, node:0, occ:0, rot:90, next:new Array({id:147}, {id:144})}, {id:138, xp:944, yp:-709, node:0, occ:0, rot:270, next:new Array({id:140})}, {id:139, xp:782, yp:-667, node:0, occ:0, rot:90, next:new Array({id:137})}, {id:140, xp:817, yp:-709, node:0, occ:0, rot:270, next:new Array({id:136}, {id:130}, {id:177})}, {id:141, xp:1027, yp:-462, node:0, occ:0, rot:0, next:new Array({id:143})}, {id:142, xp:985, yp:-497, node:0, occ:0, rot:180, next:new Array({id:155}, {id:36}, {id:74})}, {id:143, xp:1027, yp:-592, node:0, occ:0, rot:0, next:new Array({id:138}, {id:147})}, {id:144, xp:985, yp:-627, node:0, occ:0, rot:180, next:new Array({id:142})}, {id:145, xp:1197, yp:-667, node:0, occ:0, rot:90, next:new Array({id:185}, {id:223}, {id:152})}, {id:146, xp:1232, yp:-709, node:0, occ:0, rot:270, next:new Array({id:148})}, {id:147, xp:1070, yp:-667, node:0, occ:0, rot:90, next:new Array({id:145})}, {id:148, xp:1105, yp:-709, node:0, occ:0, rot:270, next:new Array({id:144}, {id:138})}, {id:149, xp:1315, yp:-462, node:0, occ:0, rot:0, next:new Array({id:151})}, {id:150, xp:1273, yp:-497, node:0, occ:0, rot:180, next:new Array({id:231}, {id:160}, {id:154})}, {id:151, xp:1315, yp:-592, node:0, occ:0, rot:0, next:new Array({id:146}, {id:185}, {id:223})}, {id:152, xp:1273, yp:-627, node:0, occ:0, rot:180, next:new Array({id:150})}, {id:153, xp:1197, yp:-379, node:0, occ:0, rot:90, next:new Array({id:149}, {id:231}, {id:160})}, {id:154, xp:1232, yp:-421, node:0, occ:0, rot:270, next:new Array({id:156})}, {id:155, xp:1070, yp:-379, node:0, occ:0, rot:90, next:new Array({id:153})}, {id:156, xp:1105, yp:-421, node:0, occ:0, rot:270, next:new Array({id:36}, {id:74}, {id:141})}, {id:157, xp:1315, yp:-174, node:0, occ:0, rot:0, next:new Array({id:159})}, {id:158, xp:1273, yp:-209, node:0, occ:0, rot:180, next:new Array({id:239}, {id:168}, {id:162})}, {id:159, xp:1315, yp:-304, node:0, occ:0, rot:0, next:new Array({id:154}, {id:149}, {id:231})}, {id:160, xp:1273, yp:-339, node:0, occ:0, rot:180, next:new Array({id:158})}, {id:161, xp:1197, yp:-91, node:0, occ:0, rot:90, next:new Array({id:157}, {id:239}, {id:168})}, {id:162, xp:1232, yp:-133, node:0, occ:0, rot:270, next:new Array({id:164})}, {id:163, xp:1070, yp:-91, node:0, occ:0, rot:90, next:new Array({id:161})}, {id:164, xp:1105, yp:-133, node:0, occ:0, rot:270, next:new Array({id:40}, {id:33})}, {id:165, xp:1315, yp:114, node:0, occ:0, rot:0, next:new Array({id:167})}, {id:166, xp:1273, yp:79, node:0, occ:0, rot:180, next:new Array({id:247}, {id:176}, {id:170})}, {id:167, xp:1315, yp:-16, node:0, occ:0, rot:0, next:new Array({id:162}, {id:157}, {id:239})}, {id:168, xp:1273, yp:-51, node:0, occ:0, rot:180, next:new Array({id:166})}, {id:169, xp:1197, yp:197, node:0, occ:0, rot:90, next:new Array({id:165}, {id:247}, {id:176})}, {id:170, xp:1232, yp:155, node:0, occ:0, rot:270, next:new Array({id:172})}, {id:171, xp:1070, yp:197, node:0, occ:0, rot:90, next:new Array({id:169})}, {id:172, xp:1105, yp:155, node:0, occ:0, rot:270, next:new Array({id:78}, {id:37})}, {id:173, xp:1315, yp:402, node:0, occ:0, rot:0, next:new Array({id:175})}, {id:174, xp:1273, yp:367, node:0, occ:0, rot:180, next:new Array({id:531}, {id:528}, {id:522})}, {id:175, xp:1315, yp:272, node:0, occ:0, rot:0, next:new Array({id:170}, {id:165}, {id:247})}, {id:176, xp:1273, yp:237, node:0, occ:0, rot:180, next:new Array({id:174})}, {id:177, xp:739, yp:-750, node:0, occ:0, rot:0, next:new Array({id:179})}, {id:178, xp:697, yp:-785, node:0, occ:0, rot:180, next:new Array({id:139}, {id:136}, {id:130})}, {id:179, xp:739, yp:-880, node:0, occ:0, rot:0, next:new Array({id:181})}, {id:180, xp:697, yp:-915, node:0, occ:0, rot:180, next:new Array({id:178})}, {id:181, xp:782, yp:-955, node:0, occ:0, rot:90, next:new Array({id:183})}, {id:182, xp:817, yp:-997, node:0, occ:0, rot:270, next:new Array({id:180})}, {id:183, xp:1197, yp:-955, node:0, occ:0, rot:90, next:new Array({id:287}, {id:188})}, {id:184, xp:1232, yp:-997, node:0, occ:0, rot:270, next:new Array({id:182})}, {id:185, xp:1315, yp:-750, node:0, occ:0, rot:0, next:new Array({id:187})}, {id:186, xp:1273, yp:-785, node:0, occ:0, rot:180, next:new Array({id:223}, {id:152}, {id:146})}, {id:187, xp:1315, yp:-880, node:0, occ:0, rot:0, next:new Array({id:184}, {id:287})}, {id:188, xp:1273, yp:-915, node:0, occ:0, rot:180, next:new Array({id:186})}, {id:189, xp:-125, yp:-750, node:0, occ:0, rot:0, next:new Array({id:191})}, {id:190, xp:-167, yp:-785, node:0, occ:0, rot:180, next:new Array({id:119}, {id:116})}, {id:191, xp:-125, yp:-880, node:0, occ:0, rot:0, next:new Array({id:310}, {id:195})}, {id:192, xp:-167, yp:-915, node:0, occ:0, rot:180, next:new Array({id:190})}, {id:193, xp:43, yp:-955, node:0, occ:0, rot:90, next:new Array({id:203}, {id:200})}, {id:194, xp:78, yp:-997, node:0, occ:0, rot:270, next:new Array({id:196})}, {id:195, xp:-84, yp:-955, node:0, occ:0, rot:90, next:new Array({id:193})}, {id:196, xp:-49, yp:-997, node:0, occ:0, rot:270, next:new Array({id:192}, {id:310})}, {id:197, xp:163, yp:-750, node:0, occ:0, rot:0, next:new Array({id:199})}, {id:198, xp:121, yp:-785, node:0, occ:0, rot:180, next:new Array({id:127}, {id:124}, {id:118})}, {id:199, xp:163, yp:-880, node:0, occ:0, rot:0, next:new Array({id:194}, {id:203})}, {id:200, xp:121, yp:-915, node:0, occ:0, rot:180, next:new Array({id:198})}, {id:201, xp:266, yp:-955, node:0, occ:0, rot:90, next:new Array({id:293})}, {id:202, xp:311, yp:-997, node:0, occ:0, rot:270, next:new Array({id:204})}, {id:203, xp:204, yp:-955, node:0, occ:0, rot:90, next:new Array({id:201})}, {id:204, xp:239, yp:-997, node:0, occ:0, rot:270, next:new Array({id:200}, {id:194})}, {id:205, xp:451, yp:-750, node:0, occ:0, rot:0, next:new Array({id:207})}, {id:206, xp:409, yp:-785, node:0, occ:0, rot:180, next:new Array({id:131}, {id:126})}, {id:207, xp:451, yp:-821, node:0, occ:0, rot:0, next:new Array({id:296})}, {id:208, xp:409, yp:-846, node:0, occ:0, rot:180, next:new Array({id:206})}, {id:209, xp:-13, yp:-91, node:0, occ:0, rot:90, next:new Array({id:219})}, {id:210, xp:11, yp:-133, node:0, occ:0, rot:270, next:new Array({id:212})}, {id:211, xp:-85, yp:-91, node:0, occ:0, rot:90, next:new Array({id:209})}, {id:212, xp:-50, yp:-133, node:0, occ:0, rot:270, next:new Array({id:408}, {id:214}, {id:97})}, {id:213, xp:-245, yp:-91, node:0, occ:0, rot:90, next:new Array({id:97}, {id:211}, {id:408})}, {id:214, xp:-210, yp:-133, node:0, occ:0, rot:270, next:new Array({id:216})}, {id:215, xp:-372, yp:-91, node:0, occ:0, rot:90, next:new Array({id:213})}, {id:216, xp:-337, yp:-133, node:0, occ:0, rot:270, next:new Array({id:402}, {id:105})}, {id:217, xp:125.45, yp:-178.75, node:0, occ:0, rot:45, next:new Array({id:89})}, {id:218, xp:115.5, yp:-228.2, node:0, occ:0, rot:225, next:new Array({id:220})}, {id:219, xp:49.95, yp:-103.25, node:0, occ:0, rot:45, next:new Array({id:217})}, {id:220, xp:50, yp:-162.7, node:0, occ:0, rot:225, next:new Array({id:210})}, {id:221, xp:1485, yp:-667, node:0, occ:0, rot:90, next:new Array({id:253}, {id:259}, {id:228})}, {id:222, xp:1520, yp:-709, node:0, occ:0, rot:270, next:new Array({id:224})}, {id:223, xp:1358, yp:-667, node:0, occ:0, rot:90, next:new Array({id:221})}, {id:224, xp:1393, yp:-709, node:0, occ:0, rot:270, next:new Array({id:152}, {id:146}, {id:185})}, {id:225, xp:1603, yp:-462, node:0, occ:0, rot:0, next:new Array({id:227})}, {id:226, xp:1561, yp:-497, node:0, occ:0, rot:180, next:new Array({id:263}, {id:236}, {id:230})}, {id:227, xp:1603, yp:-592, node:0, occ:0, rot:0, next:new Array({id:222}, {id:253}, {id:259})}, {id:228, xp:1561, yp:-627, node:0, occ:0, rot:180, next:new Array({id:226})}, {id:229, xp:1485, yp:-379, node:0, occ:0, rot:90, next:new Array({id:225}, {id:263}, {id:236})}, {id:230, xp:1520, yp:-421, node:0, occ:0, rot:270, next:new Array({id:232})}, {id:231, xp:1358, yp:-379, node:0, occ:0, rot:90, next:new Array({id:229})}, {id:232, xp:1393, yp:-421, node:0, occ:0, rot:270, next:new Array({id:160}, {id:154}, {id:149})}, {id:233, xp:1603, yp:-174, node:0, occ:0, rot:0, next:new Array({id:235})}, {id:234, xp:1561, yp:-209, node:0, occ:0, rot:180, next:new Array({id:244}, {id:238})}, {id:235, xp:1603, yp:-304, node:0, occ:0, rot:0, next:new Array({id:230}, {id:225}, {id:263})}, {id:236, xp:1561, yp:-339, node:0, occ:0, rot:180, next:new Array({id:234})}, {id:237, xp:1485, yp:-91, node:0, occ:0, rot:90, next:new Array({id:233}, {id:244})}, {id:238, xp:1520, yp:-133, node:0, occ:0, rot:270, next:new Array({id:240})}, {id:239, xp:1358, yp:-91, node:0, occ:0, rot:90, next:new Array({id:237})}, {id:240, xp:1393, yp:-133, node:0, occ:0, rot:270, next:new Array({id:168}, {id:162}, {id:157})}, {id:241, xp:1603, yp:114, node:0, occ:0, rot:0, next:new Array({id:243})}, {id:242, xp:1561, yp:79, node:0, occ:0, rot:180, next:new Array({id:275}, {id:252}, {id:246})}, {id:243, xp:1603, yp:-16, node:0, occ:0, rot:0, next:new Array({id:238}, {id:233})}, {id:244, xp:1561, yp:-51, node:0, occ:0, rot:180, next:new Array({id:242})}, {id:245, xp:1485, yp:197, node:0, occ:0, rot:90, next:new Array({id:241}, {id:275}, {id:252})}, {id:246, xp:1520, yp:155, node:0, occ:0, rot:270, next:new Array({id:248})}, {id:247, xp:1358, yp:197, node:0, occ:0, rot:90, next:new Array({id:245})}, {id:248, xp:1393, yp:155, node:0, occ:0, rot:270, next:new Array({id:176}, {id:170}, {id:165})}, {id:249, xp:1603, yp:402, node:0, occ:0, rot:0, next:new Array({id:251})}, {id:250, xp:1561, yp:367, node:0, occ:0, rot:180, next:new Array({id:535}, {id:530})}, {id:251, xp:1603, yp:272, node:0, occ:0, rot:0, next:new Array({id:246}, {id:241}, {id:275})}, {id:252, xp:1561, yp:237, node:0, occ:0, rot:180, next:new Array({id:250})}, {id:253, xp:1603, yp:-750, node:0, occ:0, rot:0, next:new Array({id:0xFF})}, {id:254, xp:1561, yp:-785, node:0, occ:0, rot:180, next:new Array({id:259}, {id:228}, {id:222})}, {id:0xFF, xp:1603, yp:-880, node:0, occ:0, rot:0, next:new Array({id:286}, {id:291})}, {id:0x0100, xp:1561, yp:-915, node:0, occ:0, rot:180, next:new Array({id:254})}, {id:0x0101, xp:1773, yp:-667, node:0, occ:0, rot:90, next:new Array({id:281}, {id:439})}, {id:258, xp:1808, yp:-709, node:0, occ:0, rot:270, next:new Array({id:260})}, {id:259, xp:1646, yp:-667, node:0, occ:0, rot:90, next:new Array({id:0x0101})}, {id:260, xp:1681, yp:-709, node:0, occ:0, rot:270, next:new Array({id:228}, {id:222}, {id:253})}, {id:261, xp:1773, yp:-379, node:0, occ:0, rot:90, next:new Array({id:443}, {id:268})}, {id:262, xp:1808, yp:-421, node:0, occ:0, rot:270, next:new Array({id:264})}, {id:263, xp:1646, yp:-379, node:0, occ:0, rot:90, next:new Array({id:261})}, {id:264, xp:1681, yp:-421, node:0, occ:0, rot:270, next:new Array({id:236}, {id:230}, {id:225})}, {id:265, xp:1891, yp:-174, node:0, occ:0, rot:0, next:new Array({id:267})}, {id:266, xp:1849, yp:-209, node:0, occ:0, rot:180, next:new Array({id:455}, {id:272})}, {id:267, xp:1891, yp:-304, node:0, occ:0, rot:0, next:new Array({id:262}, {id:443})}, {id:268, xp:1849, yp:-339, node:0, occ:0, rot:180, next:new Array({id:266})}, {id:269, xp:1891, yp:114, node:0, occ:0, rot:0, next:new Array({id:271})}, {id:270, xp:1849, yp:79, node:0, occ:0, rot:180, next:new Array({id:459}, {id:280}, {id:274})}, {id:271, xp:1891, yp:-16, node:0, occ:0, rot:0, next:new Array({id:265}, {id:455})}, {id:272, xp:1849, yp:-51, node:0, occ:0, rot:180, next:new Array({id:270})}, {id:273, xp:1773, yp:197, node:0, occ:0, rot:90, next:new Array({id:269}, {id:459}, {id:280})}, {id:274, xp:1808, yp:155, node:0, occ:0, rot:270, next:new Array({id:276})}, {id:275, xp:1646, yp:197, node:0, occ:0, rot:90, next:new Array({id:273})}, {id:276, xp:1681, yp:155, node:0, occ:0, rot:270, next:new Array({id:252}, {id:246}, {id:241})}, {id:277, xp:1891, yp:402, node:0, occ:0, rot:0, next:new Array({id:279})}, {id:278, xp:1849, yp:367, node:0, occ:0, rot:180, next:new Array({id:543}, {id:540}, {id:534})}, {id:279, xp:1891, yp:272, node:0, occ:0, rot:0, next:new Array({id:274}, {id:269}, {id:459})}, {id:280, xp:1849, yp:237, node:0, occ:0, rot:180, next:new Array({id:278})}, {id:281, xp:1891, yp:-750, node:0, occ:0, rot:0, next:new Array({id:283})}, {id:282, xp:1849, yp:-785, node:0, occ:0, rot:180, next:new Array({id:439}, {id:258})}, {id:283, xp:1891, yp:-880, node:0, occ:0, rot:0, next:new Array({id:290})}, {id:284, xp:1849, yp:-915, node:0, occ:0, rot:180, next:new Array({id:282})}, {id:285, xp:1485, yp:-955, node:0, occ:0, rot:90, next:new Array({id:291}, {id:0x0100})}, {id:286, xp:1520, yp:-997, node:0, occ:0, rot:270, next:new Array({id:288})}, {id:287, xp:1358, yp:-955, node:0, occ:0, rot:90, next:new Array({id:285})}, {id:288, xp:1393, yp:-997, node:0, occ:0, rot:270, next:new Array({id:188}, {id:184})}, {id:289, xp:1773, yp:-955, node:0, occ:0, rot:90, next:new Array({id:284})}, {id:290, xp:1808, yp:-997, node:0, occ:0, rot:270, next:new Array({id:292})}, {id:291, xp:1646, yp:-955, node:0, occ:0, rot:90, next:new Array({id:289})}, {id:292, xp:1681, yp:-997, node:0, occ:0, rot:270, next:new Array({id:0x0100}, {id:286})}, {id:293, xp:316.3, yp:-948.5, node:0, occ:0, rot:135, next:new Array({id:295})}, {id:294, xp:364.75, yp:-959.45, node:0, occ:0, rot:315, next:new Array({id:202})}, {id:295, xp:380.3, yp:-884.5, node:0, occ:0, rot:135, next:new Array({id:208})}, {id:296, xp:440.75, yp:-883.45, node:0, occ:0, rot:315, next:new Array({id:294})}, {id:297, xp:-989, yp:-750, node:0, occ:0, rot:0, next:new Array({id:299})}, {id:298, xp:-1031, yp:-785, node:0, occ:0, rot:180, next:new Array({id:343}, {id:340}, {id:350})}, {id:299, xp:-989, yp:-880, node:0, occ:0, rot:0, next:new Array({id:303})}, {id:300, xp:-1031, yp:-915, node:0, occ:0, rot:180, next:new Array({id:298})}, {id:301, xp:-821, yp:-955, node:0, occ:0, rot:90, next:new Array({id:311}, {id:308})}, {id:302, xp:-786, yp:-997, node:0, occ:0, rot:270, next:new Array({id:304})}, {id:303, xp:-948, yp:-955, node:0, occ:0, rot:90, next:new Array({id:301})}, {id:304, xp:-913, yp:-997, node:0, occ:0, rot:270, next:new Array({id:300})}, {id:305, xp:-701, yp:-750, node:0, occ:0, rot:0, next:new Array({id:307})}, {id:306, xp:-743, yp:-785, node:0, occ:0, rot:180, next:new Array({id:419}, {id:348}, {id:342})}, {id:307, xp:-701, yp:-880, node:0, occ:0, rot:0, next:new Array({id:302}, {id:311})}, {id:308, xp:-743, yp:-915, node:0, occ:0, rot:180, next:new Array({id:306})}, {id:309, xp:-245, yp:-955, node:0, occ:0, rot:90, next:new Array({id:195}, {id:192})}, {id:310, xp:-210, yp:-997, node:0, occ:0, rot:270, next:new Array({id:312})}, {id:311, xp:-659, yp:-955, node:0, occ:0, rot:90, next:new Array({id:309})}, {id:312, xp:-624, yp:-997, node:0, occ:0, rot:270, next:new Array({id:308}, {id:302})}, {id:313, xp:-1565, yp:-750, node:0, occ:0, rot:0, next:new Array({id:315})}, {id:314, xp:-1607, yp:-785, node:0, occ:0, rot:180, next:new Array({id:331}, {id:328})}, {id:315, xp:-1565, yp:-880, node:0, occ:0, rot:0, next:new Array({id:319})}, {id:316, xp:-1607, yp:-915, node:0, occ:0, rot:180, next:new Array({id:314})}, {id:317, xp:-1397, yp:-955, node:0, occ:0, rot:90, next:new Array({id:324})}, {id:318, xp:-1362, yp:-997, node:0, occ:0, rot:270, next:new Array({id:320})}, {id:319, xp:-1524, yp:-955, node:0, occ:0, rot:90, next:new Array({id:317})}, {id:320, xp:-1489, yp:-997, node:0, occ:0, rot:270, next:new Array({id:316})}, {id:321, xp:-1277, yp:-750, node:0, occ:0, rot:0, next:new Array({id:323})}, {id:322, xp:-1319, yp:-785, node:0, occ:0, rot:180, next:new Array({id:351}, {id:336}, {id:330})}, {id:323, xp:-1277, yp:-880, node:0, occ:0, rot:0, next:new Array({id:318})}, {id:324, xp:-1319, yp:-915, node:0, occ:0, rot:180, next:new Array({id:322})}, {id:325, xp:-1565, yp:-174, node:0, occ:0, rot:0, next:new Array({id:327})}, {id:326, xp:-1607, yp:-209, node:0, occ:0, rot:180, next:new Array({id:383}, {id:380})}, {id:327, xp:-1565, yp:-592, node:0, occ:0, rot:0, next:new Array({id:313}, {id:331})}, {id:328, xp:-1607, yp:-627, node:0, occ:0, rot:180, next:new Array({id:326})}, {id:329, xp:-1397, yp:-667, node:0, occ:0, rot:90, next:new Array({id:321}, {id:351}, {id:336})}, {id:330, xp:-1362, yp:-709, node:0, occ:0, rot:270, next:new Array({id:332})}, {id:331, xp:-1524, yp:-667, node:0, occ:0, rot:90, next:new Array({id:329})}, {id:332, xp:-1489, yp:-709, node:0, occ:0, rot:270, next:new Array({id:328}, {id:313})}, {id:333, xp:-1277, yp:-462, node:0, occ:0, rot:0, next:new Array({id:335})}, {id:334, xp:-1319, yp:-497, node:0, occ:0, rot:180, next:new Array({id:363}, {id:356})}, {id:335, xp:-1277, yp:-592, node:0, occ:0, rot:0, next:new Array({id:330}, {id:321}, {id:351})}, {id:336, xp:-1319, yp:-627, node:0, occ:0, rot:180, next:new Array({id:334})}, {id:337, xp:-989, yp:-462, node:0, occ:0, rot:0, next:new Array({id:339})}, {id:338, xp:-1031, yp:-497, node:0, occ:0, rot:180, next:new Array({id:360}, {id:362})}, {id:339, xp:-989, yp:-592, node:0, occ:0, rot:0, next:new Array({id:350}, {id:297}, {id:343})}, {id:340, xp:-1031, yp:-627, node:0, occ:0, rot:180, next:new Array({id:338})}, {id:341, xp:-821, yp:-667, node:0, occ:0, rot:90, next:new Array({id:305}, {id:419}, {id:348})}, {id:342, xp:-786, yp:-709, node:0, occ:0, rot:270, next:new Array({id:344})}, {id:343, xp:-948, yp:-667, node:0, occ:0, rot:90, next:new Array({id:341})}, {id:344, xp:-913, yp:-709, node:0, occ:0, rot:270, next:new Array({id:340}, {id:350}, {id:297})}, {id:345, xp:-701, yp:-531, node:0, occ:0, rot:0, next:new Array({id:347})}, {id:346, xp:-743, yp:-556, node:0, occ:0, rot:180, next:new Array({id:434})}, {id:347, xp:-701, yp:-592, node:0, occ:0, rot:0, next:new Array({id:342}, {id:305}, {id:419})}, {id:348, xp:-743, yp:-627, node:0, occ:0, rot:180, next:new Array({id:346})}, {id:349, xp:-1109, yp:-667, node:0, occ:0, rot:90, next:new Array({id:297}, {id:343}, {id:340})}, {id:350, xp:-1074, yp:-709, node:0, occ:0, rot:270, next:new Array({id:352})}, {id:351, xp:-1236, yp:-667, node:0, occ:0, rot:90, next:new Array({id:349})}, {id:352, xp:-1201, yp:-709, node:0, occ:0, rot:270, next:new Array({id:336}, {id:330}, {id:321})}, {id:353, xp:-1277, yp:-174, node:0, occ:0, rot:0, next:new Array({id:355})}, {id:354, xp:-1319, yp:-209, node:0, occ:0, rot:180, next:new Array({id:391}, {id:388}, {id:382})}, {id:355, xp:-1277, yp:-304, node:0, occ:0, rot:0, next:new Array({id:333}, {id:363})}, {id:356, xp:-1319, yp:-339, node:0, occ:0, rot:180, next:new Array({id:354})}, {id:357, xp:-989, yp:-174, node:0, occ:0, rot:0, next:new Array({id:359})}, {id:358, xp:-1031, yp:-209, node:0, occ:0, rot:180, next:new Array({id:371}, {id:368}, {id:390})}, {id:359, xp:-989, yp:-304, node:0, occ:0, rot:0, next:new Array({id:362}, {id:337})}, {id:360, xp:-1031, yp:-339, node:0, occ:0, rot:180, next:new Array({id:358})}, {id:361, xp:-1109, yp:-379, node:0, occ:0, rot:90, next:new Array({id:337}, {id:360})}, {id:362, xp:-1074, yp:-421, node:0, occ:0, rot:270, next:new Array({id:364})}, {id:363, xp:-1236, yp:-379, node:0, occ:0, rot:90, next:new Array({id:361})}, {id:364, xp:-1201, yp:-421, node:0, occ:0, rot:270, next:new Array({id:356}, {id:333})}, {id:365, xp:-989, yp:114, node:0, occ:0, rot:0, next:new Array({id:367})}, {id:366, xp:-1031, yp:79, node:0, occ:0, rot:180, next:new Array({id:396}, {id:398})}, {id:367, xp:-989, yp:-16, node:0, occ:0, rot:0, next:new Array({id:390}, {id:357}, {id:371})}, {id:368, xp:-1031, yp:-51, node:0, occ:0, rot:180, next:new Array({id:366})}, {id:369, xp:-821, yp:-91, node:0, occ:0, rot:90, next:new Array({id:403}, {id:376})}, {id:370, xp:-786, yp:-133, node:0, occ:0, rot:270, next:new Array({id:372})}, {id:371, xp:-948, yp:-91, node:0, occ:0, rot:90, next:new Array({id:369})}, {id:372, xp:-913, yp:-133, node:0, occ:0, rot:270, next:new Array({id:368}, {id:390}, {id:357})}, {id:373, xp:-701, yp:114, node:0, occ:0, rot:0, next:new Array({id:375})}, {id:374, xp:-743, yp:79, node:0, occ:0, rot:180, next:new Array({id:411}, {id:416})}, {id:375, xp:-701, yp:-16, node:0, occ:0, rot:0, next:new Array({id:370}, {id:403})}, {id:376, xp:-743, yp:-51, node:0, occ:0, rot:180, next:new Array({id:374})}, {id:377, xp:-1565, yp:403, node:0, occ:0, rot:0, next:new Array({id:379})}, {id:378, xp:-1607, yp:368, node:0, occ:0, rot:180, next:new Array({id:803}, {id:924})}, {id:379, xp:-1565, yp:-16, node:0, occ:0, rot:0, next:new Array({id:325}, {id:383})}, {id:380, xp:-1607, yp:-51, node:0, occ:0, rot:180, next:new Array({id:378})}, {id:381, xp:-1397, yp:-91, node:0, occ:0, rot:90, next:new Array({id:353}, {id:391}, {id:388})}, {id:382, xp:-1362, yp:-133, node:0, occ:0, rot:270, next:new Array({id:384})}, {id:383, xp:-1524, yp:-91, node:0, occ:0, rot:90, next:new Array({id:381})}, {id:384, xp:-1489, yp:-133, node:0, occ:0, rot:270, next:new Array({id:380}, {id:325})}, {id:385, xp:-1277, yp:114, node:0, occ:0, rot:0, next:new Array({id:387})}, {id:386, xp:-1319, yp:79, node:0, occ:0, rot:180, next:new Array({id:399})}, {id:387, xp:-1277, yp:-16, node:0, occ:0, rot:0, next:new Array({id:382}, {id:353}, {id:391})}, {id:388, xp:-1319, yp:-51, node:0, occ:0, rot:180, next:new Array({id:386})}, {id:389, xp:-1109, yp:-91, node:0, occ:0, rot:90, next:new Array({id:357}, {id:371}, {id:368})}, {id:390, xp:-1074, yp:-133, node:0, occ:0, rot:270, next:new Array({id:392})}, {id:391, xp:-1236, yp:-91, node:0, occ:0, rot:90, next:new Array({id:389})}, {id:392, xp:-1201, yp:-133, node:0, occ:0, rot:270, next:new Array({id:388}, {id:382}, {id:353})}, {id:393, xp:-989, yp:403, node:0, occ:0, rot:0, next:new Array({id:395})}, {id:394, xp:-1031, yp:368, node:0, occ:0, rot:180, next:new Array({id:787}, {id:784}, {id:806})}, {id:395, xp:-989, yp:273, node:0, occ:0, rot:0, next:new Array({id:398}, {id:365})}, {id:396, xp:-1031, yp:238, node:0, occ:0, rot:180, next:new Array({id:394})}, {id:397, xp:-1109, yp:197, node:0, occ:0, rot:90, next:new Array({id:365}, {id:396})}, {id:398, xp:-1074, yp:155, node:0, occ:0, rot:270, next:new Array({id:400})}, {id:399, xp:-1236, yp:197, node:0, occ:0, rot:90, next:new Array({id:397})}, {id:400, xp:-1201, yp:155, node:0, occ:0, rot:270, next:new Array({id:385})}, {id:401, xp:-533, yp:-91, node:0, occ:0, rot:90, next:new Array({id:105}, {id:215})}, {id:402, xp:-498, yp:-133, node:0, occ:0, rot:270, next:new Array({id:404})}, {id:403, xp:-660, yp:-91, node:0, occ:0, rot:90, next:new Array({id:401})}, {id:404, xp:-625, yp:-133, node:0, occ:0, rot:270, next:new Array({id:376}, {id:370})}, {id:405, xp:-125, yp:114, node:0, occ:0, rot:0, next:new Array({id:407})}, {id:406, xp:-167, yp:79, node:0, occ:0, rot:180, next:new Array({id:410})}, {id:407, xp:-125, yp:-16, node:0, occ:0, rot:0, next:new Array({id:214}, {id:97}, {id:211})}, {id:408, xp:-167, yp:-51, node:0, occ:0, rot:180, next:new Array({id:406})}, {id:409, xp:-245, yp:197, node:0, occ:0, rot:90, next:new Array({id:405})}, {id:410, xp:-210, yp:155, node:0, occ:0, rot:270, next:new Array({id:412})}, {id:411, xp:-660, yp:197, node:0, occ:0, rot:90, next:new Array({id:409})}, {id:412, xp:-625, yp:155, node:0, occ:0, rot:270, next:new Array({id:416}, {id:373})}, {id:413, xp:-701, yp:403, node:0, occ:0, rot:0, next:new Array({id:415})}, {id:414, xp:-743, yp:368, node:0, occ:0, rot:180, next:new Array({id:795}, {id:792}, {id:786})}, {id:415, xp:-701, yp:273, node:0, occ:0, rot:0, next:new Array({id:373}, {id:411})}, {id:416, xp:-743, yp:238, node:0, occ:0, rot:180, next:new Array({id:414})}, {id:417, xp:-598, yp:-667, node:0, occ:0, rot:90, next:new Array({id:425})}, {id:418, xp:-553, yp:-709, node:0, occ:0, rot:270, next:new Array({id:420})}, {id:419, xp:-660, yp:-667, node:0, occ:0, rot:90, next:new Array({id:417})}, {id:420, xp:-625, yp:-709, node:0, occ:0, rot:270, next:new Array({id:348}, {id:342}, {id:305})}, {id:421, xp:-413, yp:-462, node:0, occ:0, rot:0, next:new Array({id:423})}, {id:422, xp:-455, yp:-497, node:0, occ:0, rot:180, next:new Array({id:111}, {id:108}, {id:430})}, {id:423, xp:-413, yp:-533, node:0, occ:0, rot:0, next:new Array({id:428})}, {id:424, xp:-455, yp:-558, node:0, occ:0, rot:180, next:new Array({id:422})}, {id:425, xp:-547.7, yp:-660.5, node:0, occ:0, rot:135, next:new Array({id:427})}, {id:426, xp:-499.25, yp:-671.45, node:0, occ:0, rot:315, next:new Array({id:418})}, {id:427, xp:-483.7, yp:-596.5, node:0, occ:0, rot:135, next:new Array({id:424})}, {id:428, xp:-423.25, yp:-595.45, node:0, occ:0, rot:315, next:new Array({id:426})}, {id:429, xp:-533, yp:-379, node:0, occ:0, rot:90, next:new Array({id:421}, {id:111}, {id:108})}, {id:430, xp:-498, yp:-421, node:0, occ:0, rot:270, next:new Array({id:432})}, {id:431, xp:-604, yp:-379, node:0, occ:0, rot:90, next:new Array({id:429})}, {id:432, xp:-559, yp:-421, node:0, occ:0, rot:270, next:new Array({id:435})}, {id:433, xp:-671.75, yp:-491.95, node:0, occ:0, rot:315, next:new Array({id:345})}, {id:434, xp:-732.2, yp:-493, node:0, occ:0, rot:135, next:new Array({id:436})}, {id:435, xp:-615.75, yp:-435.95, node:0, occ:0, rot:315, next:new Array({id:433})}, {id:436, xp:-655.2, yp:-416, node:0, occ:0, rot:135, next:new Array({id:431})}, {id:437, xp:2061, yp:-667, node:0, occ:0, rot:90, next:new Array({id:505}, {id:499}, {id:448})}, {id:438, xp:2096, yp:-709, node:0, occ:0, rot:270, next:new Array({id:440})}, {id:439, xp:1934, yp:-667, node:0, occ:0, rot:90, next:new Array({id:437})}, {id:440, xp:1969, yp:-709, node:0, occ:0, rot:270, next:new Array({id:258}, {id:281})}, {id:441, xp:2061, yp:-379, node:0, occ:0, rot:90, next:new Array({id:445}, {id:483}, {id:452})}, {id:442, xp:2096, yp:-421, node:0, occ:0, rot:270, next:new Array({id:444})}, {id:443, xp:1934, yp:-379, node:0, occ:0, rot:90, next:new Array({id:441})}, {id:444, xp:1969, yp:-421, node:0, occ:0, rot:270, next:new Array({id:268}, {id:262})}, {id:445, xp:2179, yp:-462, node:0, occ:0, rot:0, next:new Array({id:447})}, {id:446, xp:2137, yp:-497, node:0, occ:0, rot:180, next:new Array({id:483}, {id:452}, {id:442})}, {id:447, xp:2179, yp:-592, node:0, occ:0, rot:0, next:new Array({id:438}, {id:505}, {id:499})}, {id:448, xp:2137, yp:-627, node:0, occ:0, rot:180, next:new Array({id:446})}, {id:449, xp:2179, yp:-174, node:0, occ:0, rot:0, next:new Array({id:451})}, {id:450, xp:2137, yp:-209, node:0, occ:0, rot:180, next:new Array({id:463}, {id:454})}, {id:451, xp:2179, yp:-304, node:0, occ:0, rot:0, next:new Array({id:442}, {id:445}, {id:483})}, {id:452, xp:2137, yp:-339, node:0, occ:0, rot:180, next:new Array({id:450})}, {id:453, xp:2061, yp:-91, node:0, occ:0, rot:90, next:new Array({id:449}, {id:463})}, {id:454, xp:2096, yp:-133, node:0, occ:0, rot:270, next:new Array({id:456})}, {id:455, xp:1934, yp:-91, node:0, occ:0, rot:90, next:new Array({id:453})}, {id:456, xp:1969, yp:-133, node:0, occ:0, rot:270, next:new Array({id:272}, {id:265})}, {id:457, xp:2061, yp:197, node:0, occ:0, rot:90, next:new Array({id:467}, {id:472})}, {id:458, xp:2096, yp:155, node:0, occ:0, rot:270, next:new Array({id:460})}, {id:459, xp:1934, yp:197, node:0, occ:0, rot:90, next:new Array({id:457})}, {id:460, xp:1969, yp:155, node:0, occ:0, rot:270, next:new Array({id:280}, {id:274}, {id:269})}, {id:461, xp:2349, yp:-91, node:0, occ:0, rot:90, next:new Array({id:485}, {id:476})}, {id:462, xp:2384, yp:-133, node:0, occ:0, rot:270, next:new Array({id:464})}, {id:463, xp:2222, yp:-91, node:0, occ:0, rot:90, next:new Array({id:461})}, {id:464, xp:2257, yp:-133, node:0, occ:0, rot:270, next:new Array({id:454}, {id:449})}, {id:465, xp:2349, yp:197, node:0, occ:0, rot:90, next:new Array({id:473}, {id:480})}, {id:466, xp:2384, yp:155, node:0, occ:0, rot:270, next:new Array({id:468})}, {id:467, xp:2222, yp:197, node:0, occ:0, rot:90, next:new Array({id:465})}, {id:468, xp:2257, yp:155, node:0, occ:0, rot:270, next:new Array({id:472}, {id:458})}, {id:469, xp:2179, yp:402, node:0, occ:0, rot:0, next:new Array({id:471})}, {id:470, xp:2137, yp:367, node:0, occ:0, rot:180, next:new Array({id:547}, {id:542})}, {id:471, xp:2179, yp:272, node:0, occ:0, rot:0, next:new Array({id:458}, {id:467})}, {id:472, xp:2137, yp:237, node:0, occ:0, rot:180, next:new Array({id:470})}, {id:473, xp:2467, yp:114, node:0, occ:0, rot:0, next:new Array({id:475})}, {id:474, xp:2425, yp:79, node:0, occ:0, rot:180, next:new Array({id:480}, {id:466})}, {id:475, xp:2467, yp:-16, node:0, occ:0, rot:0, next:new Array({id:462}, {id:485})}, {id:476, xp:2425, yp:-51, node:0, occ:0, rot:180, next:new Array({id:474})}, {id:477, xp:2467, yp:402, node:0, occ:0, rot:0, next:new Array({id:479})}, {id:478, xp:2425, yp:367, node:0, occ:0, rot:180, next:new Array({id:552}, {id:546})}, {id:479, xp:2467, yp:272, node:0, occ:0, rot:0, next:new Array({id:466}, {id:473})}, {id:480, xp:2425, yp:237, node:0, occ:0, rot:180, next:new Array({id:478})}, {id:481, xp:2282, yp:-379, node:0, occ:0, rot:90, next:new Array({id:489})}, {id:482, xp:2327, yp:-421, node:0, occ:0, rot:270, next:new Array({id:484})}, {id:483, xp:2220, yp:-379, node:0, occ:0, rot:90, next:new Array({id:481})}, {id:484, xp:2255, yp:-421, node:0, occ:0, rot:270, next:new Array({id:452}, {id:442}, {id:445})}, {id:485, xp:2467, yp:-174, node:0, occ:0, rot:0, next:new Array({id:487})}, {id:486, xp:2425, yp:-209, node:0, occ:0, rot:180, next:new Array({id:476}, {id:462})}, {id:487, xp:2467, yp:-245, node:0, occ:0, rot:0, next:new Array({id:492})}, {id:488, xp:2425, yp:-270, node:0, occ:0, rot:180, next:new Array({id:486})}, {id:489, xp:2332.3, yp:-372.5, node:0, occ:0, rot:135, next:new Array({id:491})}, {id:490, xp:2380.75, yp:-383.45, node:0, occ:0, rot:315, next:new Array({id:482})}, {id:491, xp:2396.3, yp:-308.5, node:0, occ:0, rot:135, next:new Array({id:488})}, {id:492, xp:2456.75, yp:-307.45, node:0, occ:0, rot:315, next:new Array({id:490})}, {id:493, xp:2467, yp:-879, node:0, occ:0, rot:0, next:new Array({id:510})}, {id:494, xp:2425, yp:-914, node:0, occ:0, rot:180, next:new Array({id:496})}, {id:495, xp:2467, yp:-807, node:0, occ:0, rot:0, next:new Array({id:493})}, {id:496, xp:2425, yp:-851, node:0, occ:0, rot:180, next:new Array({id:502})}, {id:497, xp:2292, yp:-667, node:0, occ:0, rot:90, next:new Array({id:503})}, {id:498, xp:2316, yp:-709, node:0, occ:0, rot:270, next:new Array({id:500})}, {id:499, xp:2220, yp:-667, node:0, occ:0, rot:90, next:new Array({id:497})}, {id:500, xp:2255, yp:-709, node:0, occ:0, rot:270, next:new Array({id:448}, {id:438}, {id:505})}, {id:501, xp:2430.45, yp:-754.75, node:0, occ:0, rot:45, next:new Array({id:495})}, {id:502, xp:2420.5, yp:-804.2, node:0, occ:0, rot:225, next:new Array({id:504})}, {id:503, xp:2354.95, yp:-679.25, node:0, occ:0, rot:45, next:new Array({id:501})}, {id:504, xp:2355, yp:-738.7, node:0, occ:0, rot:225, next:new Array({id:498})}, {id:505, xp:2179, yp:-749, node:0, occ:0, rot:0, next:new Array({id:507})}, {id:506, xp:2137, yp:-784, node:0, occ:0, rot:180, next:new Array({id:499}, {id:448}, {id:438})}, {id:507, xp:2179, yp:-812, node:0, occ:0, rot:0, next:new Array({id:513})}, {id:508, xp:2137, yp:-858, node:0, occ:0, rot:180, next:new Array({id:506})}, {id:509, xp:2349, yp:-955, node:0, occ:0, rot:90, next:new Array({id:494})}, {id:510, xp:2384, yp:-997, node:0, occ:0, rot:270, next:new Array({id:0x0200})}, {id:511, xp:2288, yp:-955, node:0, occ:0, rot:90, next:new Array({id:509})}, {id:0x0200, xp:2311, yp:-997, node:0, occ:0, rot:270, next:new Array({id:516})}, {id:513, xp:2185.5, yp:-862.45, node:0, occ:0, rot:45, next:new Array({id:515})}, {id:0x0202, xp:2175.55, yp:-911.9, node:0, occ:0, rot:225, next:new Array({id:508})}, {id:515, xp:2248.5, yp:-925.45, node:0, occ:0, rot:45, next:new Array({id:511})}, {id:516, xp:2248.55, yp:-984.9, node:0, occ:0, rot:225, next:new Array({id:0x0202})}, {id:517, xp:1027, yp:690, node:0, occ:0, rot:0, next:new Array({id:519})}, {id:518, xp:985, yp:655, node:0, occ:0, rot:180, next:new Array({id:559}, {id:556})}, {id:519, xp:1027, yp:560, node:0, occ:0, rot:0, next:new Array({id:523})}, {id:520, xp:985, yp:525, node:0, occ:0, rot:180, next:new Array({id:518})}, {id:521, xp:1197, yp:485, node:0, occ:0, rot:90, next:new Array({id:173}, {id:531}, {id:528})}, {id:522, xp:1232, yp:443, node:0, occ:0, rot:270, next:new Array({id:524})}, {id:523, xp:1070, yp:485, node:0, occ:0, rot:90, next:new Array({id:521})}, {id:524, xp:1105, yp:443, node:0, occ:0, rot:270, next:new Array({id:520})}, {id:525, xp:1315, yp:690, node:0, occ:0, rot:0, next:new Array({id:527})}, {id:526, xp:1273, yp:655, node:0, occ:0, rot:180, next:new Array({id:567}, {id:564}, {id:558})}, {id:527, xp:1315, yp:560, node:0, occ:0, rot:0, next:new Array({id:522}, {id:173}, {id:531})}, {id:528, xp:1273, yp:525, node:0, occ:0, rot:180, next:new Array({id:526})}, {id:529, xp:1485, yp:485, node:0, occ:0, rot:90, next:new Array({id:249}, {id:535})}, {id:530, xp:1520, yp:443, node:0, occ:0, rot:270, next:new Array({id:532})}, {id:531, xp:1358, yp:485, node:0, occ:0, rot:90, next:new Array({id:529})}, {id:532, xp:1393, yp:443, node:0, occ:0, rot:270, next:new Array({id:528}, {id:522}, {id:173})}, {id:533, xp:1773, yp:485, node:0, occ:0, rot:90, next:new Array({id:277}, {id:543}, {id:540})}, {id:534, xp:1808, yp:443, node:0, occ:0, rot:270, next:new Array({id:536})}, {id:535, xp:1646, yp:485, node:0, occ:0, rot:90, next:new Array({id:533})}, {id:536, xp:1681, yp:443, node:0, occ:0, rot:270, next:new Array({id:530}, {id:249})}, {id:537, xp:1891, yp:690, node:0, occ:0, rot:0, next:new Array({id:539})}, {id:538, xp:1849, yp:655, node:0, occ:0, rot:180, next:new Array({id:583}, {id:580})}, {id:539, xp:1891, yp:560, node:0, occ:0, rot:0, next:new Array({id:534}, {id:277}, {id:543})}, {id:540, xp:1849, yp:525, node:0, occ:0, rot:180, next:new Array({id:538})}, {id:541, xp:2061, yp:485, node:0, occ:0, rot:90, next:new Array({id:469}, {id:547})}, {id:542, xp:2096, yp:443, node:0, occ:0, rot:270, next:new Array({id:544})}, {id:543, xp:1934, yp:485, node:0, occ:0, rot:90, next:new Array({id:541})}, {id:544, xp:1969, yp:443, node:0, occ:0, rot:270, next:new Array({id:540}, {id:534}, {id:277})}, {id:545, xp:2349, yp:485, node:0, occ:0, rot:90, next:new Array({id:477}, {id:552})}, {id:546, xp:2384, yp:443, node:0, occ:0, rot:270, next:new Array({id:548})}, {id:547, xp:2222, yp:485, node:0, occ:0, rot:90, next:new Array({id:545})}, {id:548, xp:2257, yp:443, node:0, occ:0, rot:270, next:new Array({id:542}, {id:469})}, {id:549, xp:2467, yp:690, node:0, occ:0, rot:0, next:new Array({id:551})}, {id:550, xp:2425, yp:655, node:0, occ:0, rot:180, next:new Array({id:596}, {id:586})}, {id:551, xp:2467, yp:560, node:0, occ:0, rot:0, next:new Array({id:546}, {id:477})}, {id:552, xp:2425, yp:525, node:0, occ:0, rot:180, next:new Array({id:550})}, {id:553, xp:1027, yp:978, node:0, occ:0, rot:0, next:new Array({id:555})}, {id:554, xp:985, yp:943, node:0, occ:0, rot:180, next:new Array({id:623}, {id:620})}, {id:555, xp:1027, yp:848, node:0, occ:0, rot:0, next:new Array({id:517}, {id:559})}, {id:556, xp:985, yp:813, node:0, occ:0, rot:180, next:new Array({id:554})}, {id:557, xp:1197, yp:773, node:0, occ:0, rot:90, next:new Array({id:525}, {id:567}, {id:564})}, {id:558, xp:1232, yp:731, node:0, occ:0, rot:270, next:new Array({id:560})}, {id:559, xp:1070, yp:773, node:0, occ:0, rot:90, next:new Array({id:557})}, {id:560, xp:1105, yp:731, node:0, occ:0, rot:270, next:new Array({id:556}, {id:517})}, {id:561, xp:1315, yp:978, node:0, occ:0, rot:0, next:new Array({id:563})}, {id:562, xp:1273, yp:943, node:0, occ:0, rot:180, next:new Array({id:627}, {id:622})}, {id:563, xp:1315, yp:848, node:0, occ:0, rot:0, next:new Array({id:558}, {id:525}, {id:567})}, {id:564, xp:1273, yp:813, node:0, occ:0, rot:180, next:new Array({id:562})}, {id:565, xp:1418, yp:773, node:0, occ:0, rot:90, next:new Array({id:573})}, {id:566, xp:1463, yp:731, node:0, occ:0, rot:270, next:new Array({id:568})}, {id:567, xp:1356, yp:773, node:0, occ:0, rot:90, next:new Array({id:565})}, {id:568, xp:1391, yp:731, node:0, occ:0, rot:270, next:new Array({id:564}, {id:558}, {id:525})}, {id:569, xp:1603, yp:978, node:0, occ:0, rot:0, next:new Array({id:571})}, {id:570, xp:1561, yp:943, node:0, occ:0, rot:180, next:new Array({id:635}, {id:632}, {id:626})}, {id:571, xp:1603, yp:907, node:0, occ:0, rot:0, next:new Array({id:576})}, {id:572, xp:1561, yp:882, node:0, occ:0, rot:180, next:new Array({id:570})}, {id:573, xp:1468.3, yp:779.5, node:0, occ:0, rot:135, next:new Array({id:575})}, {id:574, xp:1516.75, yp:768.55, node:0, occ:0, rot:315, next:new Array({id:566})}, {id:575, xp:1532.3, yp:843.5, node:0, occ:0, rot:135, next:new Array({id:572})}, {id:576, xp:1592.75, yp:844.55, node:0, occ:0, rot:315, next:new Array({id:574})}, {id:577, xp:1891, yp:978, node:0, occ:0, rot:0, next:new Array({id:579})}, {id:578, xp:1849, yp:943, node:0, occ:0, rot:180, next:new Array({id:603}, {id:600}, {id:634})}, {id:579, xp:1891, yp:848, node:0, occ:0, rot:0, next:new Array({id:537}, {id:583})}, {id:580, xp:1849, yp:813, node:0, occ:0, rot:180, next:new Array({id:578})}, {id:581, xp:2061, yp:773, node:0, occ:0, rot:90, next:new Array({id:587}, {id:592})}, {id:582, xp:2096, yp:731, node:0, occ:0, rot:270, next:new Array({id:584})}, {id:583, xp:1934, yp:773, node:0, occ:0, rot:90, next:new Array({id:581})}, {id:584, xp:1969, yp:731, node:0, occ:0, rot:270, next:new Array({id:580}, {id:537})}, {id:585, xp:2349, yp:773, node:0, occ:0, rot:90, next:new Array({id:549}, {id:596})}, {id:586, xp:2384, yp:731, node:0, occ:0, rot:270, next:new Array({id:588})}, {id:587, xp:2222, yp:773, node:0, occ:0, rot:90, next:new Array({id:585})}, {id:588, xp:2257, yp:731, node:0, occ:0, rot:270, next:new Array({id:592}, {id:582})}, {id:589, xp:2179, yp:978, node:0, occ:0, rot:0, next:new Array({id:591})}, {id:590, xp:2137, yp:943, node:0, occ:0, rot:180, next:new Array({id:607}, {id:612}, {id:602})}, {id:591, xp:2179, yp:848, node:0, occ:0, rot:0, next:new Array({id:582}, {id:587})}, {id:592, xp:2137, yp:813, node:0, occ:0, rot:180, next:new Array({id:590})}, {id:593, xp:2467, yp:978, node:0, occ:0, rot:0, next:new Array({id:595})}, {id:594, xp:2425, yp:943, node:0, occ:0, rot:180, next:new Array({id:616}, {id:606})}, {id:595, xp:2467, yp:848, node:0, occ:0, rot:0, next:new Array({id:586}, {id:549})}, {id:596, xp:2425, yp:813, node:0, occ:0, rot:180, next:new Array({id:594})}, {id:597, xp:1891, yp:1266, node:0, occ:0, rot:0, next:new Array({id:599})}, {id:598, xp:1849, yp:1231, node:0, occ:0, rot:180, next:new Array({id:643}, {id:640}, {id:662})}, {id:599, xp:1891, yp:1136, node:0, occ:0, rot:0, next:new Array({id:634}, {id:577}, {id:603})}, {id:600, xp:1849, yp:1101, node:0, occ:0, rot:180, next:new Array({id:598})}, {id:601, xp:2061, yp:1061, node:0, occ:0, rot:90, next:new Array({id:589}, {id:607}, {id:612})}, {id:602, xp:2096, yp:1019, node:0, occ:0, rot:270, next:new Array({id:604})}, {id:603, xp:1934, yp:1061, node:0, occ:0, rot:90, next:new Array({id:601})}, {id:604, xp:1969, yp:1019, node:0, occ:0, rot:270, next:new Array({id:600}, {id:634}, {id:577})}, {id:605, xp:2349, yp:1061, node:0, occ:0, rot:90, next:new Array({id:593}, {id:616})}, {id:606, xp:2384, yp:1019, node:0, occ:0, rot:270, next:new Array({id:608})}, {id:607, xp:2222, yp:1061, node:0, occ:0, rot:90, next:new Array({id:605})}, {id:608, xp:2257, yp:1019, node:0, occ:0, rot:270, next:new Array({id:612}, {id:602}, {id:589})}, {id:609, xp:2179, yp:1266, node:0, occ:0, rot:0, next:new Array({id:611})}, {id:610, xp:2137, yp:1231, node:0, occ:0, rot:180, next:new Array({id:647}, {id:652}, {id:642})}, {id:611, xp:2179, yp:1136, node:0, occ:0, rot:0, next:new Array({id:602}, {id:589}, {id:607})}, {id:612, xp:2137, yp:1101, node:0, occ:0, rot:180, next:new Array({id:610})}, {id:613, xp:2467, yp:1266, node:0, occ:0, rot:0, next:new Array({id:615})}, {id:614, xp:2425, yp:1231, node:0, occ:0, rot:180, next:new Array({id:686}, {id:646})}, {id:615, xp:2467, yp:1136, node:0, occ:0, rot:0, next:new Array({id:606}, {id:593})}, {id:616, xp:2425, yp:1101, node:0, occ:0, rot:180, next:new Array({id:614})}, {id:617, xp:1027, yp:1266, node:0, occ:0, rot:0, next:new Array({id:619})}, {id:618, xp:985, yp:1231, node:0, occ:0, rot:180, next:new Array({id:671}, {id:668}, {id:762})}, {id:619, xp:1027, yp:1136, node:0, occ:0, rot:0, next:new Array({id:553}, {id:623})}, {id:620, xp:985, yp:1101, node:0, occ:0, rot:180, next:new Array({id:618})}, {id:621, xp:1197, yp:1061, node:0, occ:0, rot:90, next:new Array({id:561}, {id:627})}, {id:622, xp:1232, yp:1019, node:0, occ:0, rot:270, next:new Array({id:624})}, {id:623, xp:1070, yp:1061, node:0, occ:0, rot:90, next:new Array({id:621})}, {id:624, xp:1105, yp:1019, node:0, occ:0, rot:270, next:new Array({id:620}, {id:553})}, {id:625, xp:1485, yp:1061, node:0, occ:0, rot:90, next:new Array({id:569}, {id:635}, {id:632})}, {id:626, xp:1520, yp:1019, node:0, occ:0, rot:270, next:new Array({id:628})}, {id:627, xp:1358, yp:1061, node:0, occ:0, rot:90, next:new Array({id:625})}, {id:628, xp:1393, yp:1019, node:0, occ:0, rot:270, next:new Array({id:622}, {id:561})}, {id:629, xp:1603, yp:1266, node:0, occ:0, rot:0, next:new Array({id:631})}, {id:630, xp:1561, yp:1231, node:0, occ:0, rot:180, next:new Array({id:663}, {id:660}, {id:654})}, {id:631, xp:1603, yp:1136, node:0, occ:0, rot:0, next:new Array({id:626}, {id:569}, {id:635})}, {id:632, xp:1561, yp:1101, node:0, occ:0, rot:180, next:new Array({id:630})}, {id:633, xp:1773, yp:1061, node:0, occ:0, rot:90, next:new Array({id:577}, {id:603}, {id:600})}, {id:634, xp:1808, yp:1019, node:0, occ:0, rot:270, next:new Array({id:636})}, {id:635, xp:1646, yp:1061, node:0, occ:0, rot:90, next:new Array({id:633})}, {id:636, xp:1681, yp:1019, node:0, occ:0, rot:270, next:new Array({id:632}, {id:626}, {id:569})}, {id:637, xp:1891, yp:1554, node:0, occ:0, rot:0, next:new Array({id:639})}, {id:638, xp:1849, yp:1519, node:0, occ:0, rot:180, next:new Array({id:682})}, {id:639, xp:1891, yp:1424, node:0, occ:0, rot:0, next:new Array({id:662}, {id:597}, {id:643})}, {id:640, xp:1849, yp:1389, node:0, occ:0, rot:180, next:new Array({id:638})}, {id:641, xp:2061, yp:1349, node:0, occ:0, rot:90, next:new Array({id:609}, {id:647}, {id:652})}, {id:642, xp:2096, yp:1307, node:0, occ:0, rot:270, next:new Array({id:644})}, {id:643, xp:1934, yp:1349, node:0, occ:0, rot:90, next:new Array({id:641})}, {id:644, xp:1969, yp:1307, node:0, occ:0, rot:270, next:new Array({id:640}, {id:662}, {id:597})}, {id:645, xp:2349, yp:1349, node:0, occ:0, rot:90, next:new Array({id:613}, {id:686})}, {id:646, xp:2384, yp:1307, node:0, occ:0, rot:270, next:new Array({id:648})}, {id:647, xp:2222, yp:1349, node:0, occ:0, rot:90, next:new Array({id:645})}, {id:648, xp:2257, yp:1307, node:0, occ:0, rot:270, next:new Array({id:652}, {id:642}, {id:609})}, {id:649, xp:2179, yp:1554, node:0, occ:0, rot:0, next:new Array({id:651})}, {id:650, xp:2137, yp:1519, node:0, occ:0, rot:180, next:new Array({id:691})}, {id:651, xp:2179, yp:1424, node:0, occ:0, rot:0, next:new Array({id:642}, {id:609}, {id:647})}, {id:652, xp:2137, yp:1389, node:0, occ:0, rot:180, next:new Array({id:650})}, {id:653, xp:1485, yp:1349, node:0, occ:0, rot:90, next:new Array({id:629}, {id:663}, {id:660})}, {id:654, xp:1520, yp:1307, node:0, occ:0, rot:270, next:new Array({id:656})}, {id:655, xp:1358, yp:1349, node:0, occ:0, rot:90, next:new Array({id:653})}, {id:656, xp:1393, yp:1307, node:0, occ:0, rot:270, next:new Array({id:676}, {id:670})}, {id:657, xp:1603, yp:1554, node:0, occ:0, rot:0, next:new Array({id:659})}, {id:658, xp:1561, yp:1519, node:0, occ:0, rot:180, next:new Array({id:683}, {id:678})}, {id:659, xp:1603, yp:1424, node:0, occ:0, rot:0, next:new Array({id:654}, {id:629}, {id:663})}, {id:660, xp:1561, yp:1389, node:0, occ:0, rot:180, next:new Array({id:658})}, {id:661, xp:1773, yp:1349, node:0, occ:0, rot:90, next:new Array({id:597}, {id:643}, {id:640})}, {id:662, xp:1808, yp:1307, node:0, occ:0, rot:270, next:new Array({id:664})}, {id:663, xp:1646, yp:1349, node:0, occ:0, rot:90, next:new Array({id:661})}, {id:664, xp:1681, yp:1307, node:0, occ:0, rot:270, next:new Array({id:660}, {id:654}, {id:629})}, {id:665, xp:1027, yp:1554, node:0, occ:0, rot:0, next:new Array({id:667})}, {id:666, xp:985, yp:1519, node:0, occ:0, rot:180, next:new Array({id:766})}, {id:667, xp:1027, yp:1424, node:0, occ:0, rot:0, next:new Array({id:762}, {id:617}, {id:671})}, {id:668, xp:985, yp:1389, node:0, occ:0, rot:180, next:new Array({id:666})}, {id:669, xp:1197, yp:1349, node:0, occ:0, rot:90, next:new Array({id:655}, {id:676})}, {id:670, xp:1232, yp:1307, node:0, occ:0, rot:270, next:new Array({id:672})}, {id:671, xp:1070, yp:1349, node:0, occ:0, rot:90, next:new Array({id:669})}, {id:672, xp:1105, yp:1307, node:0, occ:0, rot:270, next:new Array({id:668}, {id:762}, {id:617})}, {id:673, xp:1315, yp:1554, node:0, occ:0, rot:0, next:new Array({id:675})}, {id:674, xp:1273, yp:1519, node:0, occ:0, rot:180, next:new Array({id:679})}, {id:675, xp:1315, yp:1424, node:0, occ:0, rot:0, next:new Array({id:670}, {id:655})}, {id:676, xp:1273, yp:1389, node:0, occ:0, rot:180, next:new Array({id:674})}, {id:677, xp:1485, yp:1637, node:0, occ:0, rot:90, next:new Array({id:657}, {id:683})}, {id:678, xp:1520, yp:1595, node:0, occ:0, rot:270, next:new Array({id:680})}, {id:679, xp:1358, yp:1637, node:0, occ:0, rot:90, next:new Array({id:677})}, {id:680, xp:1393, yp:1595, node:0, occ:0, rot:270, next:new Array({id:673})}, {id:681, xp:1773, yp:1637, node:0, occ:0, rot:90, next:new Array({id:637})}, {id:682, xp:1808, yp:1595, node:0, occ:0, rot:270, next:new Array({id:684})}, {id:683, xp:1646, yp:1637, node:0, occ:0, rot:90, next:new Array({id:681})}, {id:684, xp:1681, yp:1595, node:0, occ:0, rot:270, next:new Array({id:678}, {id:657})}, {id:685, xp:2467, yp:1425, node:0, occ:0, rot:0, next:new Array({id:646}, {id:613})}, {id:686, xp:2425, yp:1390, node:0, occ:0, rot:180, next:new Array({id:688})}, {id:687, xp:2467, yp:1497, node:0, occ:0, rot:0, next:new Array({id:685})}, {id:688, xp:2425, yp:1453, node:0, occ:0, rot:180, next:new Array({id:694})}, {id:689, xp:2292, yp:1637, node:0, occ:0, rot:90, next:new Array({id:695})}, {id:690, xp:2316, yp:1595, node:0, occ:0, rot:270, next:new Array({id:692})}, {id:691, xp:2220, yp:1637, node:0, occ:0, rot:90, next:new Array({id:689})}, {id:692, xp:2255, yp:1595, node:0, occ:0, rot:270, next:new Array({id:649})}, {id:693, xp:2430.45, yp:1549.25, node:0, occ:0, rot:45, next:new Array({id:687})}, {id:694, xp:2420.5, yp:1499.8, node:0, occ:0, rot:225, next:new Array({id:696})}, {id:695, xp:2354.95, yp:1624.75, node:0, occ:0, rot:45, next:new Array({id:693})}, {id:696, xp:2355, yp:1565.3, node:0, occ:0, rot:225, next:new Array({id:690})}, {id:697, xp:451, yp:849, node:0, occ:0, rot:0, next:new Array({id:58}, {id:5}, {id:55})}, {id:698, xp:409, yp:814, node:0, occ:0, rot:180, next:new Array({id:700})}, {id:699, xp:451, yp:979, node:0, occ:0, rot:0, next:new Array({id:697})}, {id:700, xp:409, yp:944, node:0, occ:0, rot:180, next:new Array({id:735}, {id:706})}, {id:701, xp:163, yp:849, node:0, occ:0, rot:0, next:new Array({id:62}, {id:9}, {id:59})}, {id:702, xp:121, yp:814, node:0, occ:0, rot:180, next:new Array({id:704})}, {id:703, xp:163, yp:979, node:0, occ:0, rot:0, next:new Array({id:701})}, {id:704, xp:121, yp:944, node:0, occ:0, rot:180, next:new Array({id:707}, {id:710})}, {id:705, xp:332, yp:1061, node:0, occ:0, rot:90, next:new Array({id:699}, {id:735})}, {id:706, xp:367, yp:1019, node:0, occ:0, rot:270, next:new Array({id:708})}, {id:707, xp:205, yp:1061, node:0, occ:0, rot:90, next:new Array({id:705})}, {id:708, xp:240, yp:1019, node:0, occ:0, rot:270, next:new Array({id:710}, {id:703})}, {id:709, xp:163, yp:1137, node:0, occ:0, rot:0, next:new Array({id:703}, {id:707})}, {id:710, xp:121, yp:1102, node:0, occ:0, rot:180, next:new Array({id:712})}, {id:711, xp:163, yp:1209, node:0, occ:0, rot:0, next:new Array({id:709})}, {id:712, xp:121, yp:1165, node:0, occ:0, rot:180, next:new Array({id:718})}, {id:713, xp:-12, yp:1349, node:0, occ:0, rot:90, next:new Array({id:719})}, {id:714, xp:12, yp:1307, node:0, occ:0, rot:270, next:new Array({id:716})}, {id:715, xp:-84, yp:1349, node:0, occ:0, rot:90, next:new Array({id:713})}, {id:716, xp:-49, yp:1307, node:0, occ:0, rot:270, next:new Array({id:778}, {id:866})}, {id:717, xp:126.45, yp:1261.25, node:0, occ:0, rot:45, next:new Array({id:711})}, {id:718, xp:116.5, yp:1211.8, node:0, occ:0, rot:225, next:new Array({id:720})}, {id:719, xp:50.95, yp:1336.75, node:0, occ:0, rot:45, next:new Array({id:717})}, {id:720, xp:51, yp:1277.3, node:0, occ:0, rot:225, next:new Array({id:714})}, {id:721, xp:-125, yp:849, node:0, occ:0, rot:0, next:new Array({id:830}, {id:13}, {id:63})}, {id:722, xp:-167, yp:814, node:0, occ:0, rot:180, next:new Array({id:724})}, {id:723, xp:-125, yp:921, node:0, occ:0, rot:0, next:new Array({id:721})}, {id:724, xp:-167, yp:877, node:0, occ:0, rot:180, next:new Array({id:730})}, {id:725, xp:-300, yp:1061, node:0, occ:0, rot:90, next:new Array({id:731})}, {id:726, xp:-276, yp:1019, node:0, occ:0, rot:270, next:new Array({id:728})}, {id:727, xp:-372, yp:1061, node:0, occ:0, rot:90, next:new Array({id:725})}, {id:728, xp:-337, yp:1019, node:0, occ:0, rot:270, next:new Array({id:825})}, {id:729, xp:-161.55, yp:973.25, node:0, occ:0, rot:45, next:new Array({id:723})}, {id:730, xp:-171.5, yp:923.8, node:0, occ:0, rot:225, next:new Array({id:732})}, {id:731, xp:-237.05, yp:1048.75, node:0, occ:0, rot:45, next:new Array({id:729})}, {id:732, xp:-237, yp:989.3, node:0, occ:0, rot:225, next:new Array({id:726})}, {id:733, xp:554, yp:1061, node:0, occ:0, rot:90, next:new Array({id:741})}, {id:734, xp:599, yp:1019, node:0, occ:0, rot:270, next:new Array({id:736})}, {id:735, xp:492, yp:1061, node:0, occ:0, rot:90, next:new Array({id:733})}, {id:736, xp:527, yp:1019, node:0, occ:0, rot:270, next:new Array({id:706}, {id:699})}, {id:737, xp:739, yp:1266, node:0, occ:0, rot:0, next:new Array({id:739})}, {id:738, xp:697, yp:1231, node:0, occ:0, rot:180, next:new Array({id:763}, {id:760}, {id:750})}, {id:739, xp:739, yp:1195, node:0, occ:0, rot:0, next:new Array({id:744})}, {id:740, xp:697, yp:1170, node:0, occ:0, rot:180, next:new Array({id:738})}, {id:741, xp:604.3, yp:1067.5, node:0, occ:0, rot:135, next:new Array({id:743})}, {id:742, xp:652.75, yp:1056.55, node:0, occ:0, rot:315, next:new Array({id:734})}, {id:743, xp:668.3, yp:1131.5, node:0, occ:0, rot:135, next:new Array({id:740})}, {id:744, xp:728.75, yp:1132.55, node:0, occ:0, rot:315, next:new Array({id:742})}, {id:745, xp:451, yp:1555, node:0, occ:0, rot:0, next:new Array({id:747})}, {id:746, xp:409, yp:1520, node:0, occ:0, rot:180, next:new Array({id:0x0303}, {id:774})}, {id:747, xp:451, yp:1492, node:0, occ:0, rot:0, next:new Array({id:753})}, {id:748, xp:409, yp:1446, node:0, occ:0, rot:180, next:new Array({id:746})}, {id:749, xp:621, yp:1349, node:0, occ:0, rot:90, next:new Array({id:737}, {id:763}, {id:760})}, {id:750, xp:656, yp:1307, node:0, occ:0, rot:270, next:new Array({id:752})}, {id:751, xp:560, yp:1349, node:0, occ:0, rot:90, next:new Array({id:749})}, {id:752, xp:583, yp:1307, node:0, occ:0, rot:270, next:new Array({id:756})}, {id:753, xp:457.5, yp:1441.55, node:0, occ:0, rot:45, next:new Array({id:755})}, {id:754, xp:447.55, yp:1392.1, node:0, occ:0, rot:225, next:new Array({id:748})}, {id:755, xp:520.5, yp:1378.55, node:0, occ:0, rot:45, next:new Array({id:751})}, {id:756, xp:520.55, yp:1319.1, node:0, occ:0, rot:225, next:new Array({id:754})}, {id:757, xp:739, yp:1554, node:0, occ:0, rot:0, next:new Array({id:759})}, {id:758, xp:697, yp:1519, node:0, occ:0, rot:180, next:new Array({id:767}, {id:770})}, {id:759, xp:739, yp:1424, node:0, occ:0, rot:0, next:new Array({id:750}, {id:737}, {id:763})}, {id:760, xp:697, yp:1389, node:0, occ:0, rot:180, next:new Array({id:758})}, {id:761, xp:909, yp:1349, node:0, occ:0, rot:90, next:new Array({id:617}, {id:671}, {id:668})}, {id:762, xp:944, yp:1307, node:0, occ:0, rot:270, next:new Array({id:764})}, {id:763, xp:782, yp:1349, node:0, occ:0, rot:90, next:new Array({id:761})}, {id:764, xp:817, yp:1307, node:0, occ:0, rot:270, next:new Array({id:760}, {id:750}, {id:737})}, {id:765, xp:909, yp:1637, node:0, occ:0, rot:90, next:new Array({id:665})}, {id:766, xp:944, yp:1595, node:0, occ:0, rot:270, next:new Array({id:0x0300})}, {id:767, xp:782, yp:1637, node:0, occ:0, rot:90, next:new Array({id:765})}, {id:0x0300, xp:817, yp:1595, node:0, occ:0, rot:270, next:new Array({id:770}, {id:757})}, {id:769, xp:621, yp:1637, node:0, occ:0, rot:90, next:new Array({id:757}, {id:767})}, {id:770, xp:656, yp:1595, node:0, occ:0, rot:270, next:new Array({id:772})}, {id:0x0303, xp:494, yp:1637, node:0, occ:0, rot:90, next:new Array({id:769})}, {id:772, xp:529, yp:1595, node:0, occ:0, rot:270, next:new Array({id:774}, {id:745})}, {id:773, xp:333, yp:1637, node:0, occ:0, rot:90, next:new Array({id:745}, {id:0x0303})}, {id:774, xp:368, yp:1595, node:0, occ:0, rot:270, next:new Array({id:780})}, {id:775, xp:-125, yp:1554, node:0, occ:0, rot:0, next:new Array({id:777})}, {id:776, xp:-167, yp:1519, node:0, occ:0, rot:180, next:new Array({id:779})}, {id:777, xp:-125, yp:1424, node:0, occ:0, rot:0, next:new Array({id:866}, {id:715})}, {id:778, xp:-167, yp:1389, node:0, occ:0, rot:180, next:new Array({id:776})}, {id:779, xp:-82, yp:1637, node:0, occ:0, rot:90, next:new Array({id:773})}, {id:780, xp:-47, yp:1595, node:0, occ:0, rot:270, next:new Array({id:775})}, {id:781, xp:-989, yp:690, node:0, occ:0, rot:0, next:new Array({id:783})}, {id:782, xp:-1031, yp:655, node:0, occ:0, rot:180, next:new Array({id:815}, {id:812}, {id:838})}, {id:783, xp:-989, yp:560, node:0, occ:0, rot:0, next:new Array({id:806}, {id:393}, {id:787})}, {id:784, xp:-1031, yp:525, node:0, occ:0, rot:180, next:new Array({id:782})}, {id:785, xp:-821, yp:485, node:0, occ:0, rot:90, next:new Array({id:413}, {id:795}, {id:792})}, {id:786, xp:-786, yp:443, node:0, occ:0, rot:270, next:new Array({id:788})}, {id:787, xp:-948, yp:485, node:0, occ:0, rot:90, next:new Array({id:785})}, {id:788, xp:-913, yp:443, node:0, occ:0, rot:270, next:new Array({id:784}, {id:806}, {id:393})}, {id:789, xp:-701, yp:690, node:0, occ:0, rot:0, next:new Array({id:791})}, {id:790, xp:-743, yp:655, node:0, occ:0, rot:180, next:new Array({id:823}, {id:820}, {id:814})}, {id:791, xp:-701, yp:560, node:0, occ:0, rot:0, next:new Array({id:786}, {id:413}, {id:795})}, {id:792, xp:-743, yp:525, node:0, occ:0, rot:180, next:new Array({id:790})}, {id:793, xp:-533, yp:485, node:0, occ:0, rot:90, next:new Array({id:800})}, {id:794, xp:-498, yp:443, node:0, occ:0, rot:270, next:new Array({id:796})}, {id:795, xp:-660, yp:485, node:0, occ:0, rot:90, next:new Array({id:793})}, {id:796, xp:-625, yp:443, node:0, occ:0, rot:270, next:new Array({id:792}, {id:786}, {id:413})}, {id:797, xp:-413, yp:690, node:0, occ:0, rot:0, next:new Array({id:799})}, {id:798, xp:-455, yp:655, node:0, occ:0, rot:180, next:new Array({id:831}, {id:828}, {id:822})}, {id:799, xp:-413, yp:560, node:0, occ:0, rot:0, next:new Array({id:794})}, {id:800, xp:-455, yp:525, node:0, occ:0, rot:180, next:new Array({id:798})}, {id:801, xp:-1397, yp:485, node:0, occ:0, rot:90, next:new Array({id:807}, {id:836})}, {id:802, xp:-1362, yp:443, node:0, occ:0, rot:270, next:new Array({id:804})}, {id:803, xp:-1524, yp:485, node:0, occ:0, rot:90, next:new Array({id:801})}, {id:804, xp:-1489, yp:443, node:0, occ:0, rot:270, next:new Array({id:924}, {id:377})}, {id:805, xp:-1109, yp:485, node:0, occ:0, rot:90, next:new Array({id:393}, {id:787}, {id:784})}, {id:806, xp:-1074, yp:443, node:0, occ:0, rot:270, next:new Array({id:808})}, {id:807, xp:-1236, yp:485, node:0, occ:0, rot:90, next:new Array({id:805})}, {id:808, xp:-1201, yp:443, node:0, occ:0, rot:270, next:new Array({id:836}, {id:802})}, {id:809, xp:-989, yp:978, node:0, occ:0, rot:0, next:new Array({id:811})}, {id:810, xp:-1031, yp:943, node:0, occ:0, rot:180, next:new Array({id:847}, {id:878})}, {id:811, xp:-989, yp:848, node:0, occ:0, rot:0, next:new Array({id:838}, {id:781}, {id:815})}, {id:812, xp:-1031, yp:813, node:0, occ:0, rot:180, next:new Array({id:810})}, {id:813, xp:-821, yp:773, node:0, occ:0, rot:90, next:new Array({id:789}, {id:823}, {id:820})}, {id:814, xp:-786, yp:731, node:0, occ:0, rot:270, next:new Array({id:816})}, {id:815, xp:-948, yp:773, node:0, occ:0, rot:90, next:new Array({id:813})}, {id:816, xp:-913, yp:731, node:0, occ:0, rot:270, next:new Array({id:812}, {id:838}, {id:781})}, {id:817, xp:-701, yp:978, node:0, occ:0, rot:0, next:new Array({id:819})}, {id:818, xp:-743, yp:943, node:0, occ:0, rot:180, next:new Array({id:852}, {id:846})}, {id:819, xp:-701, yp:848, node:0, occ:0, rot:0, next:new Array({id:814}, {id:789}, {id:823})}, {id:820, xp:-743, yp:813, node:0, occ:0, rot:180, next:new Array({id:818})}, {id:821, xp:-533, yp:773, node:0, occ:0, rot:90, next:new Array({id:797}, {id:831}, {id:828})}, {id:822, xp:-498, yp:731, node:0, occ:0, rot:270, next:new Array({id:824})}, {id:823, xp:-660, yp:773, node:0, occ:0, rot:90, next:new Array({id:821})}, {id:824, xp:-625, yp:731, node:0, occ:0, rot:270, next:new Array({id:820}, {id:814}, {id:789})}, {id:825, xp:-413, yp:978, node:0, occ:0, rot:0, next:new Array({id:827})}, {id:826, xp:-455, yp:943, node:0, occ:0, rot:180, next:new Array({id:727})}, {id:827, xp:-413, yp:848, node:0, occ:0, rot:0, next:new Array({id:822}, {id:797}, {id:831})}, {id:828, xp:-455, yp:813, node:0, occ:0, rot:180, next:new Array({id:826})}, {id:829, xp:-245, yp:773, node:0, occ:0, rot:90, next:new Array({id:13}, {id:63}, {id:722})}, {id:830, xp:-210, yp:731, node:0, occ:0, rot:270, next:new Array({id:832})}, {id:831, xp:-372, yp:773, node:0, occ:0, rot:90, next:new Array({id:829})}, {id:832, xp:-337, yp:731, node:0, occ:0, rot:270, next:new Array({id:828}, {id:822}, {id:797})}, {id:833, xp:-1277, yp:621, node:0, occ:0, rot:0, next:new Array({id:835})}, {id:834, xp:-1319, yp:596, node:0, occ:0, rot:180, next:new Array({id:842})}, {id:835, xp:-1277, yp:560, node:0, occ:0, rot:0, next:new Array({id:802}, {id:807})}, {id:836, xp:-1319, yp:525, node:0, occ:0, rot:180, next:new Array({id:834})}, {id:837, xp:-1109, yp:773, node:0, occ:0, rot:90, next:new Array({id:781}, {id:815}, {id:812})}, {id:838, xp:-1074, yp:731, node:0, occ:0, rot:270, next:new Array({id:840})}, {id:839, xp:-1180, yp:773, node:0, occ:0, rot:90, next:new Array({id:837})}, {id:840, xp:-1135, yp:731, node:0, occ:0, rot:270, next:new Array({id:843})}, {id:841, xp:-1247.75, yp:660.05, node:0, occ:0, rot:315, next:new Array({id:833})}, {id:842, xp:-1308.2, yp:659, node:0, occ:0, rot:135, next:new Array({id:844})}, {id:843, xp:-1191.75, yp:716.05, node:0, occ:0, rot:315, next:new Array({id:841})}, {id:844, xp:-1231.2, yp:736, node:0, occ:0, rot:135, next:new Array({id:839})}, {id:845, xp:-821, yp:1061, node:0, occ:0, rot:90, next:new Array({id:817}, {id:852})}, {id:846, xp:-786, yp:1019, node:0, occ:0, rot:270, next:new Array({id:848})}, {id:847, xp:-948, yp:1061, node:0, occ:0, rot:90, next:new Array({id:845})}, {id:848, xp:-913, yp:1019, node:0, occ:0, rot:270, next:new Array({id:878}, {id:809})}, {id:849, xp:-701, yp:1197, node:0, occ:0, rot:0, next:new Array({id:851})}, {id:850, xp:-743, yp:1172, node:0, occ:0, rot:180, next:new Array({id:858})}, {id:851, xp:-701, yp:1136, node:0, occ:0, rot:0, next:new Array({id:846}, {id:817})}, {id:852, xp:-743, yp:1101, node:0, occ:0, rot:180, next:new Array({id:850})}, {id:853, xp:-533, yp:1349, node:0, occ:0, rot:90, next:new Array({id:867}, {id:864})}, {id:854, xp:-498, yp:1307, node:0, occ:0, rot:270, next:new Array({id:856})}, {id:855, xp:-604, yp:1349, node:0, occ:0, rot:90, next:new Array({id:853})}, {id:856, xp:-559, yp:1307, node:0, occ:0, rot:270, next:new Array({id:859})}, {id:857, xp:-671.75, yp:1236.05, node:0, occ:0, rot:315, next:new Array({id:849})}, {id:858, xp:-732.2, yp:1235, node:0, occ:0, rot:135, next:new Array({id:860})}, {id:859, xp:-615.75, yp:1292.05, node:0, occ:0, rot:315, next:new Array({id:857})}, {id:860, xp:-655.2, yp:1312, node:0, occ:0, rot:135, next:new Array({id:855})}, {id:861, xp:-413, yp:1554, node:0, occ:0, rot:0, next:new Array({id:863})}, {id:862, xp:-455, yp:1519, node:0, occ:0, rot:180, next:new Array({id:872})}, {id:863, xp:-413, yp:1424, node:0, occ:0, rot:0, next:new Array({id:854}, {id:867})}, {id:864, xp:-455, yp:1389, node:0, occ:0, rot:180, next:new Array({id:862})}, {id:865, xp:-245, yp:1349, node:0, occ:0, rot:90, next:new Array({id:715}, {id:778})}, {id:866, xp:-210, yp:1307, node:0, occ:0, rot:270, next:new Array({id:868})}, {id:867, xp:-372, yp:1349, node:0, occ:0, rot:90, next:new Array({id:865})}, {id:868, xp:-337, yp:1307, node:0, occ:0, rot:270, next:new Array({id:864}, {id:854})}, {id:869, xp:-948, yp:1637, node:0, occ:0, rot:90, next:new Array({id:871})}, {id:870, xp:-913, yp:1595, node:0, occ:0, rot:270, next:new Array({id:914}, {id:889})}, {id:871, xp:-533, yp:1637, node:0, occ:0, rot:90, next:new Array({id:861})}, {id:872, xp:-498, yp:1595, node:0, occ:0, rot:270, next:new Array({id:870})}, {id:873, xp:-1277, yp:1267, node:0, occ:0, rot:0, next:new Array({id:875})}, {id:874, xp:-1319, yp:1232, node:0, occ:0, rot:180, next:new Array({id:887}, {id:908}, {id:902})}, {id:875, xp:-1277, yp:1204, node:0, occ:0, rot:0, next:new Array({id:881})}, {id:876, xp:-1319, yp:1158, node:0, occ:0, rot:180, next:new Array({id:874})}, {id:877, xp:-1107, yp:1061, node:0, occ:0, rot:90, next:new Array({id:809}, {id:847})}, {id:878, xp:-1072, yp:1019, node:0, occ:0, rot:270, next:new Array({id:880})}, {id:879, xp:-1168, yp:1061, node:0, occ:0, rot:90, next:new Array({id:877})}, {id:880, xp:-1145, yp:1019, node:0, occ:0, rot:270, next:new Array({id:884})}, {id:881, xp:-1270.5, yp:1153.55, node:0, occ:0, rot:45, next:new Array({id:883})}, {id:882, xp:-1280.45, yp:1104.1, node:0, occ:0, rot:225, next:new Array({id:876})}, {id:883, xp:-1207.5, yp:1090.55, node:0, occ:0, rot:45, next:new Array({id:879})}, {id:884, xp:-1207.45, yp:1031.1, node:0, occ:0, rot:225, next:new Array({id:882})}, {id:885, xp:-1174, yp:1349, node:0, occ:0, rot:90, next:new Array({id:893})}, {id:886, xp:-1129, yp:1307, node:0, occ:0, rot:270, next:new Array({id:888})}, {id:887, xp:-1236, yp:1349, node:0, occ:0, rot:90, next:new Array({id:885})}, {id:888, xp:-1201, yp:1307, node:0, occ:0, rot:270, next:new Array({id:908}, {id:902}, {id:873})}, {id:889, xp:-989, yp:1554, node:0, occ:0, rot:0, next:new Array({id:891})}, {id:890, xp:-1031, yp:1519, node:0, occ:0, rot:180, next:new Array({id:869}, {id:914})}, {id:891, xp:-989, yp:1483, node:0, occ:0, rot:0, next:new Array({id:896})}, {id:892, xp:-1031, yp:1458, node:0, occ:0, rot:180, next:new Array({id:890})}, {id:893, xp:-1123.7, yp:1355.5, node:0, occ:0, rot:135, next:new Array({id:895})}, {id:894, xp:-1075.25, yp:1344.55, node:0, occ:0, rot:315, next:new Array({id:886})}, {id:895, xp:-1059.7, yp:1419.5, node:0, occ:0, rot:135, next:new Array({id:892})}, {id:896, xp:-999.25, yp:1420.55, node:0, occ:0, rot:315, next:new Array({id:894})}, {id:897, xp:-1565, yp:1554, node:0, occ:0, rot:0, next:new Array({id:899})}, {id:898, xp:-1607, yp:1519, node:0, occ:0, rot:180, next:new Array({id:911})}, {id:899, xp:-1565, yp:1424, node:0, occ:0, rot:0, next:new Array({id:917}, {id:903})}, {id:900, xp:-1607, yp:1389, node:0, occ:0, rot:180, next:new Array({id:898})}, {id:901, xp:-1397, yp:1349, node:0, occ:0, rot:90, next:new Array({id:873}, {id:887}, {id:908})}, {id:902, xp:-1362, yp:1307, node:0, occ:0, rot:270, next:new Array({id:904})}, {id:903, xp:-1524, yp:1349, node:0, occ:0, rot:90, next:new Array({id:901})}, {id:904, xp:-1489, yp:1307, node:0, occ:0, rot:270, next:new Array({id:900}, {id:917})}, {id:905, xp:-1277, yp:1554, node:0, occ:0, rot:0, next:new Array({id:907})}, {id:906, xp:-1319, yp:1519, node:0, occ:0, rot:180, next:new Array({id:915}, {id:910})}, {id:907, xp:-1277, yp:1424, node:0, occ:0, rot:0, next:new Array({id:902}, {id:873}, {id:887})}, {id:908, xp:-1319, yp:1389, node:0, occ:0, rot:180, next:new Array({id:906})}, {id:909, xp:-1397, yp:1637, node:0, occ:0, rot:90, next:new Array({id:905}, {id:915})}, {id:910, xp:-1362, yp:1595, node:0, occ:0, rot:270, next:new Array({id:912})}, {id:911, xp:-1524, yp:1637, node:0, occ:0, rot:90, next:new Array({id:909})}, {id:912, xp:-1489, yp:1595, node:0, occ:0, rot:270, next:new Array({id:897})}, {id:913, xp:-1109, yp:1637, node:0, occ:0, rot:90, next:new Array({id:889}, {id:869})}, {id:914, xp:-1074, yp:1595, node:0, occ:0, rot:270, next:new Array({id:916})}, {id:915, xp:-1236, yp:1637, node:0, occ:0, rot:90, next:new Array({id:913})}, {id:916, xp:-1201, yp:1595, node:0, occ:0, rot:270, next:new Array({id:910}, {id:905})}, {id:917, xp:-1565, yp:1266, node:0, occ:0, rot:0, next:new Array({id:919})}, {id:918, xp:-1607, yp:1231, node:0, occ:0, rot:180, next:new Array({id:903}, {id:900})}, {id:919, xp:-1565, yp:1171, node:0, occ:0, rot:0, next:new Array({id:925})}, {id:920, xp:-1607, yp:1136, node:0, occ:0, rot:180, next:new Array({id:918})}, {id:921, xp:-1565, yp:660, node:0, occ:0, rot:0, next:new Array({id:923})}, {id:922, xp:-1607, yp:625, node:0, occ:0, rot:180, next:new Array({id:928})}, {id:923, xp:-1565, yp:560, node:0, occ:0, rot:0, next:new Array({id:377}, {id:803})}, {id:924, xp:-1607, yp:525, node:0, occ:0, rot:180, next:new Array({id:922})}, {id:925, xp:-1555, yp:1077, node:0, occ:0, rot:0, next:new Array({id:927})}, {id:926, xp:-1617, yp:1042, node:0, occ:0, rot:180, next:new Array({id:920})}, {id:927, xp:-1555, yp:750, node:0, occ:0, rot:0, next:new Array({id:921})}, {id:928, xp:-1617, yp:715, node:0, occ:0, rot:180, next:new Array({id:926})}); _nodes = new Array({id:1, occ:0, nodes:new Array({id:312}, {id:307}, {id:301})}, {id:2, occ:0, nodes:new Array({id:196}, {id:191}, {id:309})}, {id:3, occ:0, nodes:new Array({id:204}, {id:199}, {id:193})}, {id:4, occ:0, nodes:new Array({id:288}, {id:187}, {id:183})}, {id:5, occ:0, nodes:new Array({id:292}, {id:0xFF}, {id:285})}, {id:6, occ:0, nodes:new Array({id:506}, {id:500}, {id:447}, {id:437})}, {id:7, occ:0, nodes:new Array({id:282}, {id:440}, {id:0x0101})}, {id:8, occ:0, nodes:new Array({id:254}, {id:260}, {id:227}, {id:221})}, {id:9, occ:0, nodes:new Array({id:186}, {id:224}, {id:151}, {id:145})}, {id:10, occ:0, nodes:new Array({id:148}, {id:143}, {id:137})}, {id:11, occ:0, nodes:new Array({id:178}, {id:140}, {id:135}, {id:129})}, {id:12, occ:0, nodes:new Array({id:206}, {id:132}, {id:125})}, {id:13, occ:0, nodes:new Array({id:198}, {id:128}, {id:123}, {id:117})}, {id:14, occ:0, nodes:new Array({id:190}, {id:120}, {id:115})}, {id:15, occ:0, nodes:new Array({id:306}, {id:420}, {id:347}, {id:341})}, {id:16, occ:0, nodes:new Array({id:298}, {id:344}, {id:339}, {id:349})}, {id:17, occ:0, nodes:new Array({id:332}, {id:352}, {id:335}, {id:329})}, {id:18, occ:0, nodes:new Array({id:314}, {id:332}, {id:327})}, {id:19, occ:0, nodes:new Array({id:334}, {id:364}, {id:355})}, {id:20, occ:0, nodes:new Array({id:338}, {id:359}, {id:361})}, {id:21, occ:0, nodes:new Array({id:422}, {id:112}, {id:107}, {id:429})}, {id:22, occ:0, nodes:new Array({id:114}, {id:104}, {id:99}, {id:109})}, {id:23, occ:0, nodes:new Array({id:122}, {id:96}, {id:91}, {id:101})}, {id:24, occ:0, nodes:new Array({id:72}, {id:23}, {id:93})}, {id:25, occ:0, nodes:new Array({id:134}, {id:76}, {id:27}, {id:69})}, {id:26, occ:0, nodes:new Array({id:142}, {id:156}, {id:35}, {id:73})}, {id:27, occ:0, nodes:new Array({id:150}, {id:232}, {id:159}, {id:153})}, {id:28, occ:0, nodes:new Array({id:226}, {id:264}, {id:235}, {id:229})}, {id:29, occ:0, nodes:new Array({id:444}, {id:267}, {id:261})}, {id:30, occ:0, nodes:new Array({id:446}, {id:484}, {id:451}, {id:441})}, {id:31, occ:0, nodes:new Array({id:486}, {id:475}, {id:461})}, {id:32, occ:0, nodes:new Array({id:450}, {id:464}, {id:453})}, {id:33, occ:0, nodes:new Array({id:266}, {id:456}, {id:271})}, {id:34, occ:0, nodes:new Array({id:234}, {id:243}, {id:237})}, {id:35, occ:0, nodes:new Array({id:158}, {id:240}, {id:167}, {id:161})}, {id:36, occ:0, nodes:new Array({id:34}, {id:164}, {id:39})}, {id:37, occ:0, nodes:new Array({id:22}, {id:68}, {id:19})}, {id:38, occ:0, nodes:new Array({id:98}, {id:212}, {id:407}, {id:213})}, {id:39, occ:0, nodes:new Array({id:106}, {id:216}, {id:401})}, {id:40, occ:0, nodes:new Array({id:404}, {id:375}, {id:369})}, {id:41, occ:0, nodes:new Array({id:358}, {id:372}, {id:367}, {id:389})}, {id:42, occ:0, nodes:new Array({id:354}, {id:392}, {id:387}, {id:381})}, {id:43, occ:0, nodes:new Array({id:326}, {id:384}, {id:379})}, {id:44, occ:0, nodes:new Array({id:366}, {id:395}, {id:397})}, {id:45, occ:0, nodes:new Array({id:374}, {id:412}, {id:415})}, {id:46, occ:0, nodes:new Array({id:38}, {id:172}, {id:77})}, {id:47, occ:0, nodes:new Array({id:166}, {id:248}, {id:175}, {id:169})}, {id:48, occ:0, nodes:new Array({id:242}, {id:276}, {id:251}, {id:245})}, {id:49, occ:0, nodes:new Array({id:270}, {id:460}, {id:279}, {id:273})}, {id:50, occ:0, nodes:new Array({id:468}, {id:471}, {id:457})}, {id:51, occ:0, nodes:new Array({id:474}, {id:479}, {id:465})}, {id:52, occ:0, nodes:new Array({id:478}, {id:551}, {id:545})}, {id:53, occ:0, nodes:new Array({id:470}, {id:548}, {id:541})}, {id:54, occ:0, nodes:new Array({id:278}, {id:544}, {id:539}, {id:533})}, {id:55, occ:0, nodes:new Array({id:250}, {id:536}, {id:529})}, {id:56, occ:0, nodes:new Array({id:174}, {id:532}, {id:527}, {id:521})}, {id:57, occ:0, nodes:new Array({id:16}, {id:11}, {id:41})}, {id:58, occ:0, nodes:new Array({id:3}, {id:44}, {id:2}, {id:45})}, {id:59, occ:0, nodes:new Array({id:48}, {id:7}, {id:49})}, {id:60, occ:0, nodes:new Array({id:414}, {id:796}, {id:791}, {id:785})}, {id:61, occ:0, nodes:new Array({id:394}, {id:788}, {id:783}, {id:805})}, {id:62, occ:0, nodes:new Array({id:808}, {id:835}, {id:801})}, {id:63, occ:0, nodes:new Array({id:378}, {id:804}, {id:923})}, {id:64, occ:0, nodes:new Array({id:782}, {id:816}, {id:811}, {id:837})}, {id:65, occ:0, nodes:new Array({id:790}, {id:824}, {id:819}, {id:813})}, {id:66, occ:0, nodes:new Array({id:798}, {id:832}, {id:827}, {id:821})}, {id:67, occ:0, nodes:new Array({id:14}, {id:64}, {id:721}, {id:829})}, {id:68, occ:0, nodes:new Array({id:10}, {id:60}, {id:701}, {id:61})}, {id:69, occ:0, nodes:new Array({id:6}, {id:56}, {id:697}, {id:57})}, {id:70, occ:0, nodes:new Array({id:518}, {id:560}, {id:555})}, {id:71, occ:0, nodes:new Array({id:526}, {id:568}, {id:563}, {id:557})}, {id:72, occ:0, nodes:new Array({id:538}, {id:584}, {id:579})}, {id:73, occ:0, nodes:new Array({id:588}, {id:591}, {id:581})}, {id:74, occ:0, nodes:new Array({id:550}, {id:595}, {id:585})}, {id:75, occ:0, nodes:new Array({id:594}, {id:615}, {id:605})}, {id:76, occ:0, nodes:new Array({id:590}, {id:608}, {id:611}, {id:601})}, {id:77, occ:0, nodes:new Array({id:578}, {id:604}, {id:599}, {id:633})}, {id:78, occ:0, nodes:new Array({id:570}, {id:636}, {id:631}, {id:625})}, {id:79, occ:0, nodes:new Array({id:562}, {id:628}, {id:621})}, {id:80, occ:0, nodes:new Array({id:554}, {id:624}, {id:619})}, {id:81, occ:0, nodes:new Array({id:700}, {id:736}, {id:705})}, {id:82, occ:0, nodes:new Array({id:704}, {id:708}, {id:709})}, {id:83, occ:0, nodes:new Array({id:818}, {id:851}, {id:845})}, {id:84, occ:0, nodes:new Array({id:810}, {id:848}, {id:877})}, {id:85, occ:0, nodes:new Array({id:918}, {id:904}, {id:899})}, {id:86, occ:0, nodes:new Array({id:874}, {id:888}, {id:907}, {id:901})}, {id:87, occ:0, nodes:new Array({id:868}, {id:863}, {id:853})}, {id:88, occ:0, nodes:new Array({id:716}, {id:777}, {id:865})}, {id:89, occ:0, nodes:new Array({id:738}, {id:764}, {id:759}, {id:749})}, {id:90, occ:0, nodes:new Array({id:618}, {id:672}, {id:667}, {id:761})}, {id:91, occ:0, nodes:new Array({id:656}, {id:675}, {id:669})}, {id:92, occ:0, nodes:new Array({id:630}, {id:664}, {id:659}, {id:653})}, {id:93, occ:0, nodes:new Array({id:598}, {id:644}, {id:639}, {id:661})}, {id:94, occ:0, nodes:new Array({id:610}, {id:648}, {id:651}, {id:641})}, {id:95, occ:0, nodes:new Array({id:614}, {id:685}, {id:645})}, {id:96, occ:0, nodes:new Array({id:658}, {id:684}, {id:677})}, {id:97, occ:0, nodes:new Array({id:758}, {id:0x0300}, {id:769})}, {id:98, occ:0, nodes:new Array({id:746}, {id:772}, {id:773})}, {id:99, occ:0, nodes:new Array({id:890}, {id:870}, {id:913})}, {id:100, occ:0, nodes:new Array({id:906}, {id:916}, {id:909})}); var _local2:Number = 0; while (_local2 < _nodes.length) { _local3 = 0; while (_local3 < _nodes[_local2].nodes.length) { _places[(_nodes[_local2].nodes[_local3].id - 1)].node = _nodes[_local2].id; _local3++; }; _local2++; }; } public function setNodeOccupied(_arg1:Number):void{ _nodes[(_arg1 - 1)].occ = 1; } public function isOccupied(_arg1:Number):Boolean{ return (!((_places[(_arg1 - 1)].occ == 0))); } public function isNodeOccupied(_arg1:Number):Boolean{ if (_arg1 < 1){ return (false); }; return (!((_nodes[(_arg1 - 1)].occ == 0))); } public function initOccupied():void{ var _local1:Number; _local1 = 0; while (_local1 < _places.length) { _places[_local1].occ = 0; _local1++; }; _local1 = 0; while (_local1 < _nodes.length) { _nodes[_local1].occ = 0; _local1++; }; } public function getPlace(_arg1:Number):Object{ return (_places[(_arg1 - 1)]); } public function getOccupied(_arg1:Number):Number{ return (_places[(_arg1 - 1)].occ); } public function getRandomPlace():Object{ var _local1:Number; do { _local1 = Math.round((Math.random() * (_places.length - 1))); } while (_places[_local1].occ > 0); _places[_local1].occ = (_places[_local1].occ + 1); return (_places[_local1]); } public function setNodeFree(_arg1:Number):void{ _nodes[(_arg1 - 1)].occ = 0; } public function subOccupied(_arg1:Number):void{ _places[(_arg1 - 1)].occ = (_places[(_arg1 - 1)].occ - 1); if (_places[(_arg1 - 1)].occ < 0){ _places[(_arg1 - 1)].occ = 0; }; } public function addOccupied(_arg1:Number):void{ _places[(_arg1 - 1)].occ = (_places[(_arg1 - 1)].occ + 1); } } }//package
Section 51
//npcHuman (npcHuman) package { import flash.display.*; import flash.geom.*; public class npcHuman extends MovieClip { private const _MAXSPEED:Number = 0.5; public var prevhit:MovieClip; private var _slowstart:Boolean; public var checkPlayer:Boolean; public var hitobj:MovieClip; private var _pos:Object; private var _xp:Number; private var _main:Object; private var _man:MovieClip; private var _stopped:Boolean; private var _splashed:Boolean; private var _nxp:Number; private var _dx:Number; private var _dy:Number; private var _yp:Number; public var gridStopped:Boolean; private var _nyp:Number; private var _crashed:Boolean; private var _speed:Number; private var _nextpos:Object; private var _gridstoppedtimer:Number; private var _axp:Number; private var _slowstop:Boolean; private var _d:Number; private var _places:npcHumanPlaces; private var _t:Number; private var _ayp:Number; public function npcHuman(_arg1:Point, _arg2:Object, _arg3:npcHumanPlaces){ addFrameScript(0, frame1); _main = _arg2; _places = _arg3; switch (Math.round((Math.random() * 4))){ case 0: _man = new man1(); break; case 1: _man = new man2(); break; case 2: _man = new man3(); break; case 3: _man = new man4(); break; case 4: _man = new man5(); break; }; this.addChild(_man); _speed = _MAXSPEED; _pos = _places.getRandomPlace(); _nextpos = _places.getNextPlace(_pos.id, 0); _xp = _pos.xp; _yp = _pos.yp; _nxp = _nextpos.xp; _nyp = _nextpos.yp; _axp = _xp; _ayp = _yp; calcVars(); this.x = (_axp + _arg1.x); this.y = (_ayp + _arg1.y); this.rotation = (((Math.atan2((_nyp - _yp), (_nxp - _xp)) * 180) / Math.PI) + 90); _t = 0; hitobj = _man.hitobject; hitobj.visible = false; prevhit = _man.prevhitobj; prevhit.visible = false; _stopped = false; _slowstop = false; _slowstart = false; _splashed = false; _crashed = false; checkPlayer = false; gridStopped = false; _gridstoppedtimer = 0; } public function resumeThis():void{ if (isMoving()){ this._man.gotoAndPlay("walk"); }; } public function getStopped():Boolean{ return (_slowstop); } public function isMoving():Boolean{ if (((!(_slowstop)) && (((!(_splashed)) || (!(_crashed)))))){ return (true); }; return (false); } private function reverseStart():void{ var _local1:Object = _nextpos; _nextpos = _pos; _pos = _nextpos; _xp = _pos.xp; _yp = _pos.yp; _nxp = _nextpos.xp; _nyp = _nextpos.yp; calcVars(); _t = (1 - _t); this.rotation = (((Math.atan2((_nyp - _yp), (_nxp - _xp)) * 180) / Math.PI) + 90); slowStart(); } private function calcVars():void{ _dx = (_nxp - _xp); _dy = (_nyp - _yp); _d = Math.sqrt((Math.pow(_dx, 2) + Math.pow(_dy, 2))); } private function getNewTarget():void{ var _local1:Object; _local1 = _pos; _pos = _nextpos; _nextpos = _places.getNextPlace(_pos.id, _local1.id); _xp = _pos.xp; _yp = _pos.yp; _nxp = _nextpos.xp; _nyp = _nextpos.yp; calcVars(); this.rotation = (((Math.atan2((_nyp - _yp), (_nxp - _xp)) * 180) / Math.PI) + 90); } public function killThis(_arg1:Number):void{ _stopped = true; if (_arg1 > 4){ _splashed = true; this._man.gotoAndStop("splash"); } else { _splashed = true; _crashed = true; this._man.gotoAndPlay("crash"); }; } public function slowStop():void{ _stopped = true; _slowstart = false; _slowstop = true; this._man.gotoAndStop("stand"); } public function updateNpcHuman(_arg1:Point):void{ var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Boolean; var _local6:Number; if (this._man.currentFrame == 82){ slowStart(); }; if (gridStopped){ _gridstoppedtimer++; }; if (_gridstoppedtimer > 70){ gridStopped = false; _gridstoppedtimer = 0; reverseStart(); }; if (((!(_stopped)) || (!(_splashed)))){ if (_slowstop){ _speed = 0; }; if (_slowstart){ _speed = _MAXSPEED; _slowstart = false; }; if (_t > 1){ _t = (_t - 1); _t = (_d * _t); getNewTarget(); _t = (_t / _d); }; _axp = (_xp + (_dx * _t)); _ayp = (_yp + (_dy * _t)); _local4 = _t; _t = (_t + (_speed / _d)); }; _local2 = this.x; _local3 = this.y; this.x = (_axp + _arg1.x); this.y = (_ayp + _arg1.y); if (((checkPlayer) && (!(_stopped)))){ _local5 = HitTest.complexHitTestObject(prevhit, _main._player.hitobj, 1); if (_local5){ if (!_slowstop){ slowStop(); }; }; _local5 = HitTest.complexHitTestObject(hitobj, _main._player.hitobj, 1); if (_local5){ _t = _local4; this.x = _local2; this.y = _local3; stopThis(); }; }; } public function getSplashed():Boolean{ return (_splashed); } public function stopThis():void{ _stopped = true; _slowstop = true; this._man.gotoAndStop("stand"); } public function pauseThis():void{ if (!_splashed){ this._man.gotoAndStop("stand"); }; } public function getCrashed():Boolean{ return (_crashed); } public function slowStart():void{ _stopped = false; _splashed = false; _crashed = false; _slowstop = false; _slowstart = true; gridStopped = false; this._man.gotoAndPlay("walk"); } function frame1(){ stop(); } public function crashStart():void{ this._man.gotoAndPlay("standup"); } } }//package
Section 52
//npcHumanPlaces (npcHumanPlaces) package { public class npcHumanPlaces { private var _main:Object; private var _places:Array; private var _occupied:Array; public function npcHumanPlaces(_arg1:Object){ _main = _arg1; _places = new Array({id:1, xp:373, yp:407, next:new Array({id:3}, {id:475})}, {id:2, xp:487, yp:407, next:new Array({id:101}, {id:4})}, {id:3, xp:373, yp:-1, next:new Array({id:5}, {id:4}, {id:1})}, {id:4, xp:487, yp:-1, next:new Array({id:2}, {id:3}, {id:6})}, {id:5, xp:373, yp:-25, next:new Array({id:9}, {id:6}, {id:3})}, {id:6, xp:487, yp:-25, next:new Array({id:4}, {id:5}, {id:7})}, {id:7, xp:487, yp:-55, next:new Array({id:6}, {id:16})}, {id:8, xp:487, yp:-168, next:new Array({id:15}, {id:10})}, {id:9, xp:373, yp:-301, next:new Array({id:11}, {id:10}, {id:5})}, {id:10, xp:487, yp:-301, next:new Array({id:8}, {id:9}, {id:12})}, {id:11, xp:373, yp:-324, next:new Array({id:13}, {id:12}, {id:9})}, {id:12, xp:487, yp:-324, next:new Array({id:10}, {id:11}, {id:14})}, {id:13, xp:373, yp:-344, next:new Array({id:29}, {id:11})}, {id:14, xp:487, yp:-344, next:new Array({id:12}, {id:24})}, {id:15, xp:661, yp:-168, next:new Array({id:17}, {id:8})}, {id:16, xp:775, yp:-55, next:new Array({id:7}, {id:18})}, {id:17, xp:661, yp:-301, next:new Array({id:19}, {id:18}, {id:15})}, {id:18, xp:775, yp:-301, next:new Array({id:16}, {id:17}, {id:20})}, {id:19, xp:661, yp:-324, next:new Array({id:21}, {id:20}, {id:17})}, {id:20, xp:775, yp:-324, next:new Array({id:18}, {id:19}, {id:22})}, {id:21, xp:661, yp:-344, next:new Array({id:23}, {id:19})}, {id:22, xp:775, yp:-344, next:new Array({id:20}, {id:51})}, {id:23, xp:639, yp:-344, next:new Array({id:24}, {id:26}, {id:21})}, {id:24, xp:617, yp:-344, next:new Array({id:14}, {id:27}, {id:23})}, {id:25, xp:661, yp:-457, next:new Array({id:32}, {id:26})}, {id:26, xp:639, yp:-457, next:new Array({id:25}, {id:23}, {id:27})}, {id:27, xp:617, yp:-457, next:new Array({id:26}, {id:24}, {id:31})}, {id:28, xp:85, yp:-344, next:new Array({id:278}, {id:281})}, {id:29, xp:199, yp:-344, next:new Array({id:291}, {id:13})}, {id:30, xp:85, yp:-457, next:new Array({id:37}, {id:252})}, {id:31, xp:199, yp:-457, next:new Array({id:27}, {id:38})}, {id:32, xp:661, yp:-632, next:new Array({id:266}, {id:25})}, {id:33, xp:85, yp:-632, next:new Array({id:268}, {id:35})}, {id:34, xp:199, yp:-632, next:new Array({id:36}, {id:264})}, {id:35, xp:85, yp:-614, next:new Array({id:33}, {id:36}, {id:37})}, {id:36, xp:199, yp:-614, next:new Array({id:38}, {id:35}, {id:34})}, {id:37, xp:85, yp:-592, next:new Array({id:35}, {id:38}, {id:30})}, {id:38, xp:199, yp:-592, next:new Array({id:31}, {id:37}, {id:36})}, {id:39, xp:1063, yp:-457, next:new Array({id:41}, {id:40})}, {id:40, xp:1063, yp:-632, next:new Array({id:39}, {id:161})}, {id:41, xp:1237, yp:-457, next:new Array({id:43}, {id:39})}, {id:42, xp:1351, yp:-457, next:new Array({id:135}, {id:44})}, {id:43, xp:1237, yp:-632, next:new Array({id:163}, {id:41})}, {id:44, xp:1351, yp:-632, next:new Array({id:42}, {id:47})}, {id:45, xp:1525, yp:-457, next:new Array({id:137}, {id:133})}, {id:46, xp:1639, yp:-457, next:new Array({id:129}, {id:138})}, {id:47, xp:1525, yp:-632, next:new Array({id:44}, {id:139})}, {id:48, xp:1639, yp:-632, next:new Array({id:140}, {id:379})}, {id:49, xp:949, yp:119, next:new Array({id:51}, {id:102})}, {id:50, xp:1063, yp:-169, next:new Array({id:73}, {id:52})}, {id:51, xp:949, yp:-344, next:new Array({id:22}, {id:49})}, {id:52, xp:1063, yp:-344, next:new Array({id:50}, {id:55})}, {id:53, xp:1237, yp:-169, next:new Array({id:55}, {id:75})}, {id:54, xp:1351, yp:-169, next:new Array({id:57}, {id:56})}, {id:55, xp:1237, yp:-344, next:new Array({id:52}, {id:53})}, {id:56, xp:1351, yp:-344, next:new Array({id:54}, {id:136})}, {id:57, xp:1525, yp:-169, next:new Array({id:71}, {id:54})}, {id:58, xp:1639, yp:119, next:new Array({id:128}, {id:72})}, {id:59, xp:1525, yp:-344, next:new Array({id:134}, {id:69})}, {id:60, xp:1639, yp:-344, next:new Array({id:70}, {id:130})}, {id:61, xp:1063, yp:119, next:new Array({id:63}, {id:62})}, {id:62, xp:1063, yp:-56, next:new Array({id:61}, {id:74})}, {id:63, xp:1237, yp:119, next:new Array({id:77}, {id:61})}, {id:64, xp:1351, yp:119, next:new Array({id:85}, {id:78})}, {id:65, xp:1237, yp:-56, next:new Array({id:76}, {id:79})}, {id:66, xp:1351, yp:-56, next:new Array({id:80}, {id:68})}, {id:67, xp:1525, yp:119, next:new Array({id:68}, {id:87})}, {id:68, xp:1525, yp:-56, next:new Array({id:66}, {id:67})}, {id:69, xp:1525, yp:-326, next:new Array({id:59}, {id:70}, {id:71})}, {id:70, xp:1639, yp:-326, next:new Array({id:72}, {id:69}, {id:60})}, {id:71, xp:1525, yp:-304, next:new Array({id:69}, {id:72}, {id:57})}, {id:72, xp:1639, yp:-304, next:new Array({id:58}, {id:71}, {id:70})}, {id:73, xp:1081, yp:-169, next:new Array({id:75}, {id:74}, {id:50})}, {id:74, xp:1081, yp:-56, next:new Array({id:62}, {id:73}, {id:76})}, {id:75, xp:1103, yp:-169, next:new Array({id:53}, {id:76}, {id:73})}, {id:76, xp:1103, yp:-56, next:new Array({id:74}, {id:75}, {id:65})}, {id:77, xp:1237, yp:102, next:new Array({id:79}, {id:78}, {id:63})}, {id:78, xp:1351, yp:102, next:new Array({id:64}, {id:77}, {id:80})}, {id:79, xp:1237, yp:80, next:new Array({id:65}, {id:80}, {id:77})}, {id:80, xp:1351, yp:80, next:new Array({id:78}, {id:79}, {id:66})}, {id:81, xp:1351, yp:407, next:new Array({id:83}, {id:82})}, {id:82, xp:1351, yp:232, next:new Array({id:81}, {id:86})}, {id:83, xp:1525, yp:407, next:new Array({id:84}, {id:81})}, {id:84, xp:1525, yp:232, next:new Array({id:88}, {id:83})}, {id:85, xp:1369, yp:119, next:new Array({id:87}, {id:86}, {id:64})}, {id:86, xp:1369, yp:232, next:new Array({id:82}, {id:85}, {id:88})}, {id:87, xp:1391, yp:119, next:new Array({id:67}, {id:88}, {id:85})}, {id:88, xp:1391, yp:232, next:new Array({id:86}, {id:87}, {id:84})}, {id:89, xp:1639, yp:407, next:new Array({id:401}, {id:90})}, {id:90, xp:1639, yp:232, next:new Array({id:89}, {id:127})}, {id:91, xp:1813, yp:407, next:new Array({id:92}, {id:399})}, {id:92, xp:1813, yp:232, next:new Array({id:125}, {id:91})}, {id:93, xp:949, yp:407, next:new Array({id:95}, {id:246})}, {id:94, xp:775, yp:232, next:new Array({id:423}, {id:96})}, {id:95, xp:1237, yp:407, next:new Array({id:96}, {id:93})}, {id:96, xp:1237, yp:232, next:new Array({id:94}, {id:95})}, {id:97, xp:1063, yp:695, next:new Array({id:243}, {id:99})}, {id:98, xp:1063, yp:520, next:new Array({id:245}, {id:100})}, {id:99, xp:1237, yp:695, next:new Array({id:100}, {id:97})}, {id:100, xp:1237, yp:520, next:new Array({id:98}, {id:99})}, {id:101, xp:661, yp:407, next:new Array({id:102}, {id:2})}, {id:102, xp:661, yp:119, next:new Array({id:49}, {id:101})}, {id:103, xp:1927, yp:407, next:new Array({id:171}, {id:104})}, {id:104, xp:1927, yp:232, next:new Array({id:103}, {id:121})}, {id:105, xp:2101, yp:407, next:new Array({id:106}, {id:173})}, {id:106, xp:2101, yp:232, next:new Array({id:123}, {id:105})}, {id:107, xp:1927, yp:119, next:new Array({id:122}, {id:108})}, {id:108, xp:1927, yp:-56, next:new Array({id:107}, {id:110})}, {id:109, xp:2389, yp:119, next:new Array({id:110}, {id:124})}, {id:110, xp:2389, yp:-56, next:new Array({id:108}, {id:109})}, {id:111, xp:1813, yp:119, next:new Array({id:120}, {id:126})}, {id:112, xp:1813, yp:-344, next:new Array({id:132}, {id:117})}, {id:113, xp:1927, yp:-169, next:new Array({id:115}, {id:119})}, {id:114, xp:1927, yp:-344, next:new Array({id:118}, {id:116})}, {id:115, xp:2101, yp:-169, next:new Array({id:116}, {id:113})}, {id:116, xp:2101, yp:-344, next:new Array({id:114}, {id:115})}, {id:117, xp:1813, yp:-330, next:new Array({id:112}, {id:118}, {id:120})}, {id:118, xp:1927, yp:-330, next:new Array({id:119}, {id:117}, {id:114})}, {id:119, xp:1927, yp:-308, next:new Array({id:113}, {id:120}, {id:118})}, {id:120, xp:1813, yp:-308, next:new Array({id:117}, {id:119}, {id:111})}, {id:121, xp:1947, yp:232, next:new Array({id:104}, {id:122}, {id:123})}, {id:122, xp:1947, yp:119, next:new Array({id:124}, {id:121}, {id:107})}, {id:123, xp:1969, yp:232, next:new Array({id:121}, {id:124}, {id:106})}, {id:124, xp:1969, yp:119, next:new Array({id:109}, {id:123}, {id:122})}, {id:125, xp:1795, yp:232, next:new Array({id:127}, {id:126}, {id:92})}, {id:126, xp:1795, yp:119, next:new Array({id:111}, {id:125}, {id:128})}, {id:127, xp:1773, yp:232, next:new Array({id:90}, {id:128}, {id:125})}, {id:128, xp:1773, yp:119, next:new Array({id:126}, {id:127}, {id:58})}, {id:129, xp:1663, yp:-457, next:new Array({id:131}, {id:130}, {id:46})}, {id:130, xp:1663, yp:-344, next:new Array({id:60}, {id:129}, {id:132})}, {id:131, xp:1685, yp:-457, next:new Array({id:165}, {id:132}, {id:129})}, {id:132, xp:1685, yp:-344, next:new Array({id:130}, {id:131}, {id:112})}, {id:133, xp:1502, yp:-457, next:new Array({id:45}, {id:134}, {id:135})}, {id:134, xp:1502, yp:-344, next:new Array({id:136}, {id:133}, {id:59})}, {id:135, xp:1480, yp:-457, next:new Array({id:133}, {id:136}, {id:42})}, {id:136, xp:1480, yp:-344, next:new Array({id:56}, {id:135}, {id:134})}, {id:137, xp:1525, yp:-467, next:new Array({id:139}, {id:138}, {id:45})}, {id:138, xp:1639, yp:-467, next:new Array({id:46}, {id:137}, {id:140})}, {id:139, xp:1525, yp:-489, next:new Array({id:47}, {id:140}, {id:137})}, {id:140, xp:1639, yp:-489, next:new Array({id:138}, {id:139}, {id:48})}, {id:141, xp:1351, yp:-745, next:new Array({id:143}, {id:157})}, {id:142, xp:1351, yp:-920, next:new Array({id:159}, {id:144})}, {id:143, xp:1525, yp:-745, next:new Array({id:149}, {id:141})}, {id:144, xp:1525, yp:-920, next:new Array({id:142}, {id:151})}, {id:145, xp:1639, yp:-745, next:new Array({id:147}, {id:150})}, {id:146, xp:1639, yp:-920, next:new Array({id:152}, {id:374})}, {id:147, xp:1813, yp:-745, next:new Array({id:148}, {id:145})}, {id:148, xp:1813, yp:-920, next:new Array({id:376}, {id:147})}, {id:149, xp:1525, yp:-760, next:new Array({id:151}, {id:150}, {id:143})}, {id:150, xp:1639, yp:-760, next:new Array({id:145}, {id:149}, {id:152})}, {id:151, xp:1525, yp:-782, next:new Array({id:144}, {id:152}, {id:149})}, {id:152, xp:1639, yp:-782, next:new Array({id:150}, {id:151}, {id:146})}, {id:153, xp:775, yp:-745, next:new Array({id:162}, {id:154})}, {id:154, xp:775, yp:-920, next:new Array({id:153}, {id:156})}, {id:155, xp:1237, yp:-745, next:new Array({id:158}, {id:164})}, {id:156, xp:1237, yp:-920, next:new Array({id:154}, {id:160})}, {id:157, xp:1351, yp:-760, next:new Array({id:141}, {id:158}, {id:159})}, {id:158, xp:1237, yp:-760, next:new Array({id:160}, {id:157}, {id:155})}, {id:159, xp:1351, yp:-782, next:new Array({id:157}, {id:160}, {id:142})}, {id:160, xp:1237, yp:-782, next:new Array({id:156}, {id:159}, {id:158})}, {id:161, xp:1077, yp:-632, next:new Array({id:40}, {id:162}, {id:163})}, {id:162, xp:1077, yp:-745, next:new Array({id:164}, {id:161}, {id:153})}, {id:163, xp:1099, yp:-632, next:new Array({id:161}, {id:164}, {id:43})}, {id:164, xp:1099, yp:-745, next:new Array({id:155}, {id:163}, {id:162})}, {id:165, xp:2101, yp:-457, next:new Array({id:388}, {id:131})}, {id:166, xp:2101, yp:-632, next:new Array({id:381}, {id:386})}, {id:167, xp:1927, yp:695, next:new Array({id:169}, {id:405})}, {id:168, xp:1927, yp:520, next:new Array({id:403}, {id:172})}, {id:169, xp:2389, yp:695, next:new Array({id:170}, {id:167})}, {id:170, xp:2389, yp:520, next:new Array({id:174}, {id:169})}, {id:171, xp:1955, yp:407, next:new Array({id:173}, {id:172}, {id:103})}, {id:172, xp:1955, yp:520, next:new Array({id:168}, {id:171}, {id:174})}, {id:173, xp:1977, yp:407, next:new Array({id:105}, {id:174}, {id:171})}, {id:174, xp:1977, yp:520, next:new Array({id:172}, {id:173}, {id:170})}, {id:175, xp:1927, yp:983, next:new Array({id:201}, {id:418})}, {id:176, xp:1927, yp:808, next:new Array({id:417}, {id:178})}, {id:177, xp:2101, yp:983, next:new Array({id:185}, {id:199})}, {id:178, xp:2101, yp:808, next:new Array({id:176}, {id:183})}, {id:179, xp:2215, yp:983, next:new Array({id:181}, {id:186})}, {id:180, xp:2215, yp:808, next:new Array({id:184}, {id:182})}, {id:181, xp:2389, yp:983, next:new Array({id:182}, {id:179})}, {id:182, xp:2389, yp:808, next:new Array({id:180}, {id:181})}, {id:183, xp:2101, yp:827, next:new Array({id:178}, {id:184}, {id:185})}, {id:184, xp:2215, yp:827, next:new Array({id:186}, {id:183}, {id:180})}, {id:185, xp:2101, yp:849, next:new Array({id:183}, {id:186}, {id:177})}, {id:186, xp:2215, yp:849, next:new Array({id:179}, {id:185}, {id:184})}, {id:187, xp:1927, yp:1271, next:new Array({id:189}, {id:207})}, {id:188, xp:1927, yp:1096, next:new Array({id:209}, {id:202})}, {id:189, xp:2101, yp:1271, next:new Array({id:203}, {id:187})}, {id:190, xp:2101, yp:1096, next:new Array({id:200}, {id:205})}, {id:191, xp:2215, yp:1271, next:new Array({id:309}, {id:204})}, {id:192, xp:2215, yp:1096, next:new Array({id:206}, {id:194})}, {id:193, xp:2389, yp:1271, next:new Array({id:192}, {id:311})}, {id:194, xp:2389, yp:1096, next:new Array({id:192}, {id:193})}, {id:195, xp:1639, yp:1271, next:new Array({id:223}, {id:227})}, {id:196, xp:1639, yp:1096, next:new Array({id:229}, {id:198})}, {id:197, xp:1813, yp:1271, next:new Array({id:208}, {id:225})}, {id:198, xp:1813, yp:1096, next:new Array({id:196}, {id:210})}, {id:199, xp:2070, yp:983, next:new Array({id:177}, {id:200}, {id:201})}, {id:200, xp:2070, yp:1096, next:new Array({id:202}, {id:199}, {id:190})}, {id:201, xp:0x0800, yp:983, next:new Array({id:199}, {id:202}, {id:175})}, {id:202, xp:0x0800, yp:1096, next:new Array({id:188}, {id:201}, {id:200})}, {id:203, xp:2101, yp:1258, next:new Array({id:205}, {id:204}, {id:189})}, {id:204, xp:2215, yp:1258, next:new Array({id:191}, {id:203}, {id:206})}, {id:205, xp:2101, yp:1236, next:new Array({id:190}, {id:206}, {id:203})}, {id:206, xp:2215, yp:1236, next:new Array({id:204}, {id:205}, {id:192})}, {id:207, xp:1927, yp:1258, next:new Array({id:187}, {id:208}, {id:209})}, {id:208, xp:1813, yp:1258, next:new Array({id:210}, {id:207}, {id:197})}, {id:209, xp:1927, yp:1236, next:new Array({id:207}, {id:210}, {id:188})}, {id:210, xp:1813, yp:1236, next:new Array({id:198}, {id:209}, {id:208})}, {id:211, xp:1639, yp:1559, next:new Array({id:213}, {id:233})}, {id:212, xp:1639, yp:1384, next:new Array({id:231}, {id:224})}, {id:213, xp:1813, yp:1559, next:new Array({id:214}, {id:211})}, {id:214, xp:1813, yp:1384, next:new Array({id:226}, {id:213})}, {id:215, xp:1351, yp:1559, next:new Array({id:217}, {id:216})}, {id:216, xp:1351, yp:1384, next:new Array({id:215}, {id:237})}, {id:217, xp:1525, yp:1559, next:new Array({id:234}, {id:215})}, {id:218, xp:1525, yp:1384, next:new Array({id:235}, {id:232})}, {id:219, xp:1063, yp:1271, next:new Array({id:238}, {id:220})}, {id:220, xp:1063, yp:1096, next:new Array({id:219}, {id:222})}, {id:221, xp:1525, yp:1271, next:new Array({id:228}, {id:236})}, {id:222, xp:1525, yp:1096, next:new Array({id:220}, {id:230})}, {id:223, xp:1659, yp:1271, next:new Array({id:225}, {id:224}, {id:195})}, {id:224, xp:1659, yp:1384, next:new Array({id:212}, {id:223}, {id:226})}, {id:225, xp:1681, yp:1271, next:new Array({id:197}, {id:226}, {id:223})}, {id:226, xp:1681, yp:1384, next:new Array({id:224}, {id:225}, {id:214})}, {id:227, xp:1639, yp:1248, next:new Array({id:195}, {id:228}, {id:229})}, {id:228, xp:1525, yp:1248, next:new Array({id:230}, {id:227}, {id:221})}, {id:229, xp:1639, yp:1226, next:new Array({id:227}, {id:230}, {id:196})}, {id:230, xp:1525, yp:1226, next:new Array({id:222}, {id:229}, {id:228})}, {id:231, xp:1639, yp:1404, next:new Array({id:233}, {id:232}, {id:212})}, {id:232, xp:1525, yp:1404, next:new Array({id:218}, {id:231}, {id:234})}, {id:233, xp:1639, yp:1426, next:new Array({id:211}, {id:234}, {id:231})}, {id:234, xp:1525, yp:1426, next:new Array({id:232}, {id:233}, {id:217})}, {id:235, xp:1496, yp:1384, next:new Array({id:237}, {id:236}, {id:218})}, {id:236, xp:1496, yp:1271, next:new Array({id:221}, {id:235}, {id:238})}, {id:237, xp:1474, yp:1384, next:new Array({id:216}, {id:238}, {id:235})}, {id:238, xp:1474, yp:1271, next:new Array({id:236}, {id:237}, {id:219})}, {id:239, xp:199, yp:695, next:new Array({id:444}, {id:240})}, {id:240, xp:199, yp:520, next:new Array({id:239}, {id:242})}, {id:241, xp:373, yp:695, next:new Array({id:438}, {id:442})}, {id:242, xp:373, yp:520, next:new Array({id:240}, {id:440})}, {id:243, xp:1063, yp:655, next:new Array({id:97}, {id:244}, {id:245})}, {id:244, xp:949, yp:655, next:new Array({id:246}, {id:243}, {id:329})}, {id:245, xp:1063, yp:633, next:new Array({id:243}, {id:246}, {id:98})}, {id:246, xp:949, yp:633, next:new Array({id:93}, {id:245}, {id:244})}, {id:247, xp:199, yp:983, next:new Array({id:249}, {id:486})}, {id:248, xp:199, yp:808, next:new Array({id:484}, {id:445})}, {id:249, xp:373, yp:983, next:new Array({id:448}, {id:247})}, {id:250, xp:373, yp:808, next:new Array({id:443}, {id:446})}, {id:251, xp:-203, yp:-457, next:new Array({id:253}, {id:464})}, {id:252, xp:-89, yp:-457, next:new Array({id:30}, {id:254})}, {id:253, xp:-203, yp:-920, next:new Array({id:495}, {id:251})}, {id:254, xp:-89, yp:-632, next:new Array({id:252}, {id:270})}, {id:0xFF, xp:85, yp:-745, next:new Array({id:274}, {id:269})}, {id:0x0100, xp:85, yp:-920, next:new Array({id:426}, {id:272})}, {id:0x0101, xp:-89, yp:-745, next:new Array({id:271}, {id:258})}, {id:258, xp:-89, yp:-920, next:new Array({id:0x0101}, {id:428})}, {id:259, xp:373, yp:-745, next:new Array({id:366}, {id:267})}, {id:260, xp:293, yp:-920, next:new Array({id:262}, {id:263})}, {id:261, xp:199, yp:-745, next:new Array({id:265}, {id:275})}, {id:262, xp:199, yp:-920, next:new Array({id:273}, {id:260})}, {id:263, xp:373, yp:-840, next:new Array({id:260}, {id:368})}, {id:264, xp:215, yp:-632, next:new Array({id:34}, {id:265}, {id:266})}, {id:265, xp:215, yp:-745, next:new Array({id:267}, {id:261}, {id:275})}, {id:266, xp:237, yp:-632, next:new Array({id:264}, {id:267}, {id:32})}, {id:267, xp:237, yp:-745, next:new Array({id:259}, {id:266}, {id:265})}, {id:268, xp:70, yp:-632, next:new Array({id:270}, {id:269}, {id:33})}, {id:269, xp:70, yp:-745, next:new Array({id:0xFF}, {id:268}, {id:271})}, {id:270, xp:48, yp:-632, next:new Array({id:254}, {id:271}, {id:268})}, {id:271, xp:48, yp:-745, next:new Array({id:269}, {id:270}, {id:0x0101})}, {id:272, xp:85, yp:-777, next:new Array({id:0x0100}, {id:273}, {id:274})}, {id:273, xp:199, yp:-777, next:new Array({id:275}, {id:272}, {id:262})}, {id:274, xp:85, yp:-755, next:new Array({id:272}, {id:275}, {id:0xFF})}, {id:275, xp:199, yp:-755, next:new Array({id:261}, {id:274}, {id:273})}, {id:276, xp:-89, yp:-168, next:new Array({id:296}, {id:278})}, {id:277, xp:-203, yp:-344, next:new Array({id:463}, {id:279})}, {id:278, xp:-89, yp:-344, next:new Array({id:276}, {id:28})}, {id:279, xp:-203, yp:-168, next:new Array({id:277}, {id:282})}, {id:280, xp:4, yp:-168, next:new Array({id:281}, {id:298})}, {id:281, xp:85, yp:-251, next:new Array({id:28}, {id:280})}, {id:282, xp:-377, yp:-168, next:new Array({id:279}, {id:520})}, {id:283, xp:-377, yp:-344, next:new Array({id:518}, {id:461})}, {id:284, xp:-203, yp:-56, next:new Array({id:287}, {id:292})}, {id:285, xp:-203, yp:120, next:new Array({id:294}, {id:286})}, {id:286, xp:-665, yp:120, next:new Array({id:285}, {id:287})}, {id:287, xp:-665, yp:-56, next:new Array({id:286}, {id:284})}, {id:288, xp:-89, yp:232, next:new Array({id:535}, {id:295})}, {id:289, xp:-89, yp:-56, next:new Array({id:293}, {id:297})}, {id:290, xp:54, yp:-56, next:new Array({id:299}, {id:291})}, {id:291, xp:199, yp:-201, next:new Array({id:290}, {id:29})}, {id:292, xp:-203, yp:-35, next:new Array({id:284}, {id:293}, {id:294})}, {id:293, xp:-89, yp:-35, next:new Array({id:295}, {id:292}, {id:289})}, {id:294, xp:-203, yp:-13, next:new Array({id:292}, {id:295}, {id:285})}, {id:295, xp:-89, yp:-13, next:new Array({id:288}, {id:294}, {id:293})}, {id:296, xp:-71, yp:-168, next:new Array({id:298}, {id:297}, {id:276})}, {id:297, xp:-71, yp:-56, next:new Array({id:289}, {id:296}, {id:299})}, {id:298, xp:-49, yp:-168, next:new Array({id:280}, {id:299}, {id:296})}, {id:299, xp:-49, yp:-56, next:new Array({id:297}, {id:298}, {id:290})}, {id:300, xp:1927, yp:1672, next:new Array({id:301}, {id:316})}, {id:301, xp:1927, yp:1384, next:new Array({id:303}, {id:300})}, {id:302, xp:2101, yp:1672, next:new Array({id:303}, {id:313})}, {id:303, xp:2101, yp:1384, next:new Array({id:301}, {id:302})}, {id:304, xp:2215, yp:1559, next:new Array({id:305}, {id:306})}, {id:305, xp:2215, yp:1384, next:new Array({id:310}, {id:304})}, {id:306, xp:2309, yp:1559, next:new Array({id:304}, {id:308})}, {id:307, xp:2389, yp:1384, next:new Array({id:312}, {id:308})}, {id:308, xp:2389, yp:1477, next:new Array({id:306}, {id:307})}, {id:309, xp:2229, yp:1271, next:new Array({id:311}, {id:310}, {id:191})}, {id:310, xp:2229, yp:1384, next:new Array({id:305}, {id:309}, {id:312})}, {id:311, xp:2251, yp:1271, next:new Array({id:193}, {id:312}, {id:309})}, {id:312, xp:2251, yp:1384, next:new Array({id:310}, {id:311}, {id:307})}, {id:313, xp:2359, yp:1672, next:new Array({id:394}, {id:302})}, {id:314, xp:1063, yp:1672, next:new Array({id:332}, {id:340})}, {id:315, xp:1063, yp:1384, next:new Array({id:330}, {id:317})}, {id:316, xp:1237, yp:1672, next:new Array({id:300}, {id:317})}, {id:317, xp:1237, yp:1384, next:new Array({id:315}, {id:316})}, {id:318, xp:775, yp:1559, next:new Array({id:339}, {id:319})}, {id:319, xp:775, yp:1384, next:new Array({id:318}, {id:336})}, {id:320, xp:949, yp:1559, next:new Array({id:333}, {id:341})}, {id:321, xp:949, yp:1384, next:new Array({id:334}, {id:331})}, {id:322, xp:487, yp:1559, next:new Array({id:324}, {id:346})}, {id:323, xp:567, yp:1384, next:new Array({id:326}, {id:325})}, {id:324, xp:661, yp:1559, next:new Array({id:325}, {id:322})}, {id:325, xp:661, yp:1384, next:new Array({id:323}, {id:324})}, {id:326, xp:487, yp:1466, next:new Array({id:348}, {id:323})}, {id:327, xp:775, yp:1271, next:new Array({id:337}, {id:328})}, {id:328, xp:775, yp:1127, next:new Array({id:327}, {id:436})}, {id:329, xp:949, yp:1271, next:new Array({id:244}, {id:335})}, {id:330, xp:1063, yp:1409, next:new Array({id:315}, {id:331}, {id:332})}, {id:331, xp:949, yp:1409, next:new Array({id:321}, {id:330}, {id:333})}, {id:332, xp:1063, yp:1431, next:new Array({id:330}, {id:333}, {id:314})}, {id:333, xp:949, yp:1431, next:new Array({id:331}, {id:332}, {id:320})}, {id:334, xp:927, yp:1384, next:new Array({id:336}, {id:335}, {id:321})}, {id:335, xp:927, yp:1271, next:new Array({id:329}, {id:334}, {id:337})}, {id:336, xp:905, yp:1384, next:new Array({id:319}, {id:337}, {id:334})}, {id:337, xp:905, yp:1271, next:new Array({id:335}, {id:336}, {id:327})}, {id:338, xp:795, yp:1672, next:new Array({id:351}, {id:339}, {id:340})}, {id:339, xp:795, yp:1559, next:new Array({id:341}, {id:338}, {id:318})}, {id:340, xp:817, yp:1672, next:new Array({id:338}, {id:341}, {id:314})}, {id:341, xp:817, yp:1559, next:new Array({id:320}, {id:340}, {id:339})}, {id:342, xp:-89, yp:1559, next:new Array({id:352}, {id:360})}, {id:343, xp:-89, yp:1384, next:new Array({id:358}, {id:489})}, {id:344, xp:373, yp:1559, next:new Array({id:347}, {id:350})}, {id:345, xp:373, yp:1414, next:new Array({id:459}, {id:349})}, {id:346, xp:487, yp:1544, next:new Array({id:322}, {id:347}, {id:348})}, {id:347, xp:373, yp:1544, next:new Array({id:349}, {id:346}, {id:344})}, {id:348, xp:487, yp:1522, next:new Array({id:346}, {id:349}, {id:326})}, {id:349, xp:373, yp:1522, next:new Array({id:345}, {id:348}, {id:347})}, {id:350, xp:347, yp:1559, next:new Array({id:344}, {id:351}, {id:352})}, {id:351, xp:347, yp:1672, next:new Array({id:353}, {id:350}, {id:338})}, {id:352, xp:325, yp:1559, next:new Array({id:350}, {id:353}, {id:342})}, {id:353, xp:325, yp:1672, next:new Array({id:356}, {id:352}, {id:351})}, {id:354, xp:-377, yp:1672, next:new Array({id:579}, {id:668})}, {id:355, xp:-377, yp:1384, next:new Array({id:577}, {id:357})}, {id:356, xp:-203, yp:1672, next:new Array({id:361}, {id:353})}, {id:357, xp:-203, yp:1384, next:new Array({id:355}, {id:359})}, {id:358, xp:-89, yp:1412, next:new Array({id:360}, {id:359}, {id:343})}, {id:359, xp:-203, yp:1412, next:new Array({id:357}, {id:358}, {id:361})}, {id:360, xp:-89, yp:1434, next:new Array({id:342}, {id:361}, {id:358})}, {id:361, xp:-203, yp:1434, next:new Array({id:359}, {id:360}, {id:356})}, {id:362, xp:661, yp:-745, next:new Array({id:364}, {id:363})}, {id:363, xp:661, yp:-1033, next:new Array({id:375}, {id:362})}, {id:364, xp:487, yp:-745, next:new Array({id:367}, {id:362})}, {id:365, xp:487, yp:-890, next:new Array({id:424}, {id:369})}, {id:366, xp:373, yp:-759, next:new Array({id:368}, {id:367}, {id:259})}, {id:367, xp:487, yp:-759, next:new Array({id:369}, {id:366}, {id:364})}, {id:368, xp:373, yp:-781, next:new Array({id:263}, {id:369}, {id:366})}, {id:369, xp:487, yp:-781, next:new Array({id:365}, {id:368}, {id:367})}, {id:370, xp:1927, yp:-745, next:new Array({id:371}, {id:378})}, {id:371, xp:1927, yp:-1033, next:new Array({id:377}, {id:370})}, {id:372, xp:2101, yp:-745, next:new Array({id:380}, {id:373})}, {id:373, xp:2101, yp:-890, next:new Array({id:372}, {id:391})}, {id:374, xp:1654, yp:-920, next:new Array({id:146}, {id:375}, {id:376})}, {id:375, xp:1654, yp:-1033, next:new Array({id:363}, {id:374}, {id:377})}, {id:376, xp:1676, yp:-920, next:new Array({id:374}, {id:377}, {id:148})}, {id:377, xp:1676, yp:-1033, next:new Array({id:375}, {id:376}, {id:371})}, {id:378, xp:1948, yp:-745, next:new Array({id:370}, {id:379}, {id:380})}, {id:379, xp:1948, yp:-632, next:new Array({id:48}, {id:378}, {id:381})}, {id:380, xp:1970, yp:-745, next:new Array({id:378}, {id:381}, {id:372})}, {id:381, xp:1970, yp:-632, next:new Array({id:379}, {id:380}, {id:166})}, {id:382, xp:2215, yp:-457, next:new Array({id:389}, {id:384})}, {id:383, xp:2215, yp:-632, next:new Array({id:385}, {id:387})}, {id:384, xp:2358, yp:-457, next:new Array({id:382}, {id:393})}, {id:385, xp:2358, yp:-632, next:new Array({id:392}, {id:383})}, {id:386, xp:2101, yp:-609, next:new Array({id:166}, {id:387}, {id:388})}, {id:387, xp:2215, yp:-609, next:new Array({id:383}, {id:386}, {id:389})}, {id:388, xp:2101, yp:-587, next:new Array({id:386}, {id:389}, {id:165})}, {id:389, xp:2215, yp:-587, next:new Array({id:387}, {id:388}, {id:382})}, {id:390, xp:2503, yp:-1033, next:new Array({id:391}, {id:392})}, {id:391, xp:2245, yp:-1033, next:new Array({id:373}, {id:390})}, {id:392, xp:2503, yp:-775, next:new Array({id:390}, {id:385})}, {id:393, xp:2503, yp:-314, next:new Array({id:384}, {id:394})}, {id:394, xp:2503, yp:1524, next:new Array({id:393}, {id:313})}, {id:395, xp:1351, yp:695, next:new Array({id:421}, {id:396})}, {id:396, xp:1351, yp:520, next:new Array({id:395}, {id:402})}, {id:397, xp:1813, yp:824, next:new Array({id:406}, {id:417}, {id:410})}, {id:398, xp:1813, yp:520, next:new Array({id:400}, {id:404})}, {id:399, xp:1790, yp:407, next:new Array({id:91}, {id:400}, {id:401})}, {id:400, xp:1790, yp:520, next:new Array({id:402}, {id:399}, {id:398})}, {id:401, xp:1768, yp:407, next:new Array({id:399}, {id:402}, {id:89})}, {id:402, xp:1768, yp:520, next:new Array({id:396}, {id:401}, {id:100})}, {id:403, xp:1927, yp:543, next:new Array({id:405}, {id:404}, {id:168})}, {id:404, xp:1813, yp:543, next:new Array({id:398}, {id:403}, {id:406})}, {id:405, xp:1927, yp:565, next:new Array({id:167}, {id:406}, {id:403})}, {id:406, xp:1813, yp:565, next:new Array({id:404}, {id:405}, {id:397})}, {id:407, xp:1639, yp:983, next:new Array({id:409}, {id:408})}, {id:408, xp:1639, yp:838, next:new Array({id:407}, {id:416})}, {id:409, xp:1813, yp:983, next:new Array({id:410}, {id:407})}, {id:410, xp:1813, yp:846, next:new Array({id:397}, {id:418}, {id:409})}, {id:411, xp:1351, yp:983, next:new Array({id:413}, {id:412})}, {id:412, xp:1351, yp:808, next:new Array({id:411}, {id:422})}, {id:413, xp:1525, yp:983, next:new Array({id:415}, {id:411})}, {id:414, xp:1445, yp:808, next:new Array({id:420}, {id:415})}, {id:415, xp:1525, yp:888, next:new Array({id:414}, {id:413})}, {id:416, xp:1491, yp:695, next:new Array({id:408}, {id:419})}, {id:417, xp:1927, yp:824, next:new Array({id:418}, {id:397}, {id:176})}, {id:418, xp:1927, yp:846, next:new Array({id:175}, {id:410}, {id:417})}, {id:419, xp:1387, yp:695, next:new Array({id:416}, {id:420}, {id:421})}, {id:420, xp:1387, yp:808, next:new Array({id:422}, {id:419}, {id:414})}, {id:421, xp:1365, yp:695, next:new Array({id:419}, {id:422}, {id:395})}, {id:422, xp:1365, yp:808, next:new Array({id:412}, {id:421}, {id:420})}, {id:423, xp:775, yp:660, next:new Array({id:437}, {id:94})}, {id:424, xp:343, yp:-1033, next:new Array({id:425}, {id:365})}, {id:425, xp:63, yp:-1033, next:new Array({id:427}, {id:426}, {id:424})}, {id:426, xp:63, yp:-920, next:new Array({id:428}, {id:425}, {id:0x0100})}, {id:427, xp:41, yp:-1033, next:new Array({id:509}, {id:425}, {id:528})}, {id:428, xp:41, yp:-920, next:new Array({id:258}, {id:427}, {id:426})}, {id:429, xp:487, yp:695, next:new Array({id:450}, {id:439})}, {id:430, xp:487, yp:520, next:new Array({id:441}, {id:432})}, {id:431, xp:661, yp:615, next:new Array({id:432}, {id:433})}, {id:432, xp:661, yp:520, next:new Array({id:430}, {id:431})}, {id:433, xp:581, yp:695, next:new Array({id:431}, {id:452})}, {id:434, xp:487, yp:983, next:new Array({id:436}, {id:449})}, {id:435, xp:487, yp:808, next:new Array({id:447}, {id:451})}, {id:436, xp:631, yp:983, next:new Array({id:328}, {id:434})}, {id:437, xp:631, yp:808, next:new Array({id:453}, {id:423})}, {id:438, xp:373, yp:673, next:new Array({id:440}, {id:439}, {id:241})}, {id:439, xp:487, yp:673, next:new Array({id:429}, {id:438}, {id:441})}, {id:440, xp:373, yp:651, next:new Array({id:242}, {id:441}, {id:438})}, {id:441, xp:487, yp:651, next:new Array({id:439}, {id:440}, {id:430})}, {id:442, xp:351, yp:695, next:new Array({id:241}, {id:443}, {id:444})}, {id:443, xp:351, yp:808, next:new Array({id:445}, {id:442}, {id:250})}, {id:444, xp:329, yp:695, next:new Array({id:442}, {id:445}, {id:239})}, {id:445, xp:329, yp:808, next:new Array({id:248}, {id:444}, {id:443})}, {id:446, xp:373, yp:834, next:new Array({id:250}, {id:447}, {id:448})}, {id:447, xp:487, yp:834, next:new Array({id:449}, {id:446}, {id:435})}, {id:448, xp:373, yp:856, next:new Array({id:446}, {id:449}, {id:249})}, {id:449, xp:487, yp:856, next:new Array({id:434}, {id:448}, {id:447})}, {id:450, xp:500, yp:695, next:new Array({id:452}, {id:451}, {id:429})}, {id:451, xp:500, yp:808, next:new Array({id:435}, {id:450}, {id:453})}, {id:452, xp:522, yp:695, next:new Array({id:433}, {id:453}, {id:450})}, {id:453, xp:522, yp:808, next:new Array({id:451}, {id:452}, {id:437})}, {id:454, xp:199, yp:1241, next:new Array({id:489}, {id:455})}, {id:455, xp:199, yp:1096, next:new Array({id:454}, {id:457})}, {id:456, xp:661, yp:1271, next:new Array({id:458}, {id:459})}, {id:457, xp:581, yp:1096, next:new Array({id:455}, {id:458})}, {id:458, xp:661, yp:1176, next:new Array({id:457}, {id:456})}, {id:459, xp:518, yp:1271, next:new Array({id:456}, {id:345})}, {id:460, xp:-377, yp:-456, next:new Array({id:462}, {id:465})}, {id:461, xp:-354, yp:-344, next:new Array({id:283}, {id:462}, {id:463})}, {id:462, xp:-354, yp:-456, next:new Array({id:464}, {id:461}, {id:460})}, {id:463, xp:-332, yp:-344, next:new Array({id:461}, {id:464}, {id:277})}, {id:464, xp:-332, yp:-456, next:new Array({id:251}, {id:463}, {id:462})}, {id:465, xp:-377, yp:-602, next:new Array({id:460}, {id:496})}, {id:466, xp:-89, yp:695, next:new Array({id:468}, {id:476})}, {id:467, xp:-89, yp:600, next:new Array({id:478}, {id:474})}, {id:468, xp:85, yp:695, next:new Array({id:469}, {id:466})}, {id:469, xp:85, yp:520, next:new Array({id:474}, {id:468})}, {id:470, xp:-377, yp:695, next:new Array({id:548}, {id:472})}, {id:471, xp:-377, yp:407, next:new Array({id:550}, {id:543})}, {id:472, xp:-203, yp:695, next:new Array({id:477}, {id:470})}, {id:473, xp:-203, yp:550, next:new Array({id:475}, {id:479})}, {id:474, xp:-9, yp:520, next:new Array({id:467}, {id:469})}, {id:475, xp:-60, yp:407, next:new Array({id:1}, {id:473})}, {id:476, xp:-89, yp:674, next:new Array({id:466}, {id:477}, {id:478})}, {id:477, xp:-203, yp:674, next:new Array({id:479}, {id:476}, {id:472})}, {id:478, xp:-89, yp:652, next:new Array({id:476}, {id:479}, {id:467})}, {id:479, xp:-203, yp:652, next:new Array({id:473}, {id:478}, {id:477})}, {id:480, xp:-89, yp:950, next:new Array({id:490}, {id:481})}, {id:481, xp:-89, yp:808, next:new Array({id:480}, {id:483})}, {id:482, xp:85, yp:1188, next:new Array({id:487}, {id:488})}, {id:483, xp:85, yp:808, next:new Array({id:481}, {id:485})}, {id:484, xp:199, yp:835, next:new Array({id:486}, {id:485}, {id:248})}, {id:485, xp:85, yp:835, next:new Array({id:483}, {id:484}, {id:487})}, {id:486, xp:199, yp:857, next:new Array({id:247}, {id:487}, {id:484})}, {id:487, xp:85, yp:857, next:new Array({id:485}, {id:486}, {id:482})}, {id:488, xp:4, yp:1271, next:new Array({id:482}, {id:576})}, {id:489, xp:51, yp:1384, next:new Array({id:343}, {id:454})}, {id:490, xp:-233, yp:1096, next:new Array({id:561}, {id:480})}, {id:491, xp:-491, yp:-344, next:new Array({id:494}, {id:519})}, {id:492, xp:-491, yp:-168, next:new Array({id:521}, {id:524})}, {id:493, xp:-953, yp:-168, next:new Array({id:642}, {id:522})}, {id:494, xp:-635, yp:-344, next:new Array({id:504}, {id:491})}, {id:495, xp:-491, yp:-920, next:new Array({id:508}, {id:253})}, {id:496, xp:-521, yp:-744, next:new Array({id:465}, {id:497})}, {id:497, xp:-665, yp:-744, next:new Array({id:496}, {id:498})}, {id:498, xp:-665, yp:-920, next:new Array({id:497}, {id:506})}, {id:499, xp:-779, yp:-920, next:new Array({id:502}, {id:500})}, {id:500, xp:-779, yp:-744, next:new Array({id:499}, {id:0x0200})}, {id:501, xp:-953, yp:-744, next:new Array({id:510}, {id:502})}, {id:502, xp:-953, yp:-920, next:new Array({id:501}, {id:499})}, {id:503, xp:-779, yp:-632, next:new Array({id:513}, {id:504})}, {id:504, xp:-779, yp:-486, next:new Array({id:503}, {id:494})}, {id:505, xp:-953, yp:-632, next:new Array({id:644}, {id:511})}, {id:506, xp:-640, yp:-920, next:new Array({id:498}, {id:507}, {id:508})}, {id:507, xp:-640, yp:-1033, next:new Array({id:617}, {id:509}, {id:506})}, {id:508, xp:-618, yp:-920, next:new Array({id:506}, {id:509}, {id:495})}, {id:509, xp:-618, yp:-1033, next:new Array({id:507}, {id:508}, {id:427})}, {id:510, xp:-923, yp:-744, next:new Array({id:0x0200}, {id:511}, {id:501})}, {id:511, xp:-923, yp:-632, next:new Array({id:505}, {id:510}, {id:513})}, {id:0x0200, xp:-901, yp:-744, next:new Array({id:500}, {id:513}, {id:510})}, {id:513, xp:-901, yp:-632, next:new Array({id:511}, {id:0x0200}, {id:503})}, {id:0x0202, xp:-779, yp:-56, next:new Array({id:525}, {id:537})}, {id:515, xp:-779, yp:408, next:new Array({id:539}, {id:546})}, {id:516, xp:-953, yp:408, next:new Array({id:544}, {id:517})}, {id:517, xp:-953, yp:-56, next:new Array({id:516}, {id:523})}, {id:518, xp:-377, yp:-322, next:new Array({id:520}, {id:519}, {id:283})}, {id:519, xp:-491, yp:-322, next:new Array({id:491}, {id:518}, {id:521})}, {id:520, xp:-377, yp:-300, next:new Array({id:282}, {id:521}, {id:518})}, {id:521, xp:-491, yp:-300, next:new Array({id:519}, {id:520}, {id:492})}, {id:522, xp:-921, yp:-168, next:new Array({id:524}, {id:523}, {id:493})}, {id:523, xp:-921, yp:-56, next:new Array({id:517}, {id:522}, {id:525})}, {id:524, xp:-899, yp:-168, next:new Array({id:492}, {id:525}, {id:522})}, {id:525, xp:-899, yp:-56, next:new Array({id:523}, {id:524}, {id:0x0202})}, {id:526, xp:-779, yp:520, next:new Array({id:547}, {id:554})}, {id:527, xp:-779, yp:696, next:new Array({id:552}, {id:528})}, {id:528, xp:-953, yp:696, next:new Array({id:527}, {id:529})}, {id:529, xp:-953, yp:520, next:new Array({id:545}, {id:528})}, {id:530, xp:-491, yp:520, next:new Array({id:542}, {id:551})}, {id:531, xp:-491, yp:696, next:new Array({id:549}, {id:566})}, {id:532, xp:-665, yp:696, next:new Array({id:564}, {id:553})}, {id:533, xp:-665, yp:520, next:new Array({id:555}, {id:540})}, {id:534, xp:-665, yp:408, next:new Array({id:541}, {id:538})}, {id:535, xp:-665, yp:232, next:new Array({id:536}, {id:288})}, {id:536, xp:-665, yp:270, next:new Array({id:538}, {id:537}, {id:535})}, {id:537, xp:-779, yp:270, next:new Array({id:0x0202}, {id:536}, {id:539})}, {id:538, xp:-665, yp:292, next:new Array({id:534}, {id:539}, {id:536})}, {id:539, xp:-779, yp:292, next:new Array({id:537}, {id:538}, {id:515})}, {id:540, xp:-635, yp:520, next:new Array({id:533}, {id:541}, {id:542})}, {id:541, xp:-635, yp:408, next:new Array({id:543}, {id:540}, {id:534})}, {id:542, xp:-613, yp:520, next:new Array({id:540}, {id:543}, {id:530})}, {id:543, xp:-613, yp:408, next:new Array({id:471}, {id:542}, {id:541})}, {id:544, xp:-928, yp:408, next:new Array({id:546}, {id:545}, {id:516})}, {id:545, xp:-928, yp:520, next:new Array({id:529}, {id:544}, {id:547})}, {id:546, xp:-906, yp:408, next:new Array({id:515}, {id:547}, {id:544})}, {id:547, xp:-906, yp:520, next:new Array({id:545}, {id:546}, {id:526})}, {id:548, xp:-377, yp:669, next:new Array({id:470}, {id:549}, {id:550})}, {id:549, xp:-491, yp:670, next:new Array({id:551}, {id:548}, {id:531})}, {id:550, xp:-377, yp:647, next:new Array({id:548}, {id:551}, {id:471})}, {id:551, xp:-491, yp:648, next:new Array({id:530}, {id:550}, {id:549})}, {id:552, xp:-779, yp:670, next:new Array({id:554}, {id:553}, {id:527})}, {id:553, xp:-665, yp:670, next:new Array({id:532}, {id:552}, {id:555})}, {id:554, xp:-779, yp:648, next:new Array({id:526}, {id:555}, {id:552})}, {id:555, xp:-665, yp:648, next:new Array({id:553}, {id:554}, {id:533})}, {id:556, xp:-779, yp:808, next:new Array({id:559}, {id:568})}, {id:557, xp:-779, yp:984, next:new Array({id:570}, {id:585})}, {id:558, xp:-953, yp:984, next:new Array({id:583}, {id:675})}, {id:559, xp:-953, yp:808, next:new Array({id:556}, {id:677})}, {id:560, xp:-491, yp:808, next:new Array({id:567}, {id:561})}, {id:561, xp:-491, yp:1096, next:new Array({id:560}, {id:490})}, {id:562, xp:-665, yp:1188, next:new Array({id:576}, {id:571})}, {id:563, xp:-665, yp:808, next:new Array({id:569}, {id:565})}, {id:564, xp:-640, yp:696, next:new Array({id:566}, {id:565}, {id:532})}, {id:565, xp:-640, yp:808, next:new Array({id:563}, {id:564}, {id:567})}, {id:566, xp:-618, yp:696, next:new Array({id:531}, {id:567}, {id:564})}, {id:567, xp:-618, yp:808, next:new Array({id:565}, {id:566}, {id:560})}, {id:568, xp:-779, yp:842, next:new Array({id:556}, {id:569}, {id:570})}, {id:569, xp:-665, yp:842, next:new Array({id:571}, {id:568}, {id:563})}, {id:570, xp:-779, yp:864, next:new Array({id:568}, {id:571}, {id:557})}, {id:571, xp:-665, yp:864, next:new Array({id:562}, {id:570}, {id:569})}, {id:572, xp:-491, yp:1384, next:new Array({id:575}, {id:578})}, {id:573, xp:-491, yp:1560, next:new Array({id:580}, {id:574})}, {id:574, xp:-953, yp:1560, next:new Array({id:573}, {id:613})}, {id:575, xp:-635, yp:1384, next:new Array({id:582}, {id:572})}, {id:576, xp:-585, yp:1271, next:new Array({id:488}, {id:562})}, {id:577, xp:-377, yp:1424, next:new Array({id:355}, {id:578}, {id:579})}, {id:578, xp:-491, yp:1424, next:new Array({id:572}, {id:577}, {id:580})}, {id:579, xp:-377, yp:1446, next:new Array({id:577}, {id:580}, {id:354})}, {id:580, xp:-491, yp:1446, next:new Array({id:578}, {id:579}, {id:573})}, {id:581, xp:-779, yp:1096, next:new Array({id:586}, {id:582})}, {id:582, xp:-779, yp:1239, next:new Array({id:581}, {id:575})}, {id:583, xp:-911, yp:984, next:new Array({id:585}, {id:584}, {id:558})}, {id:584, xp:-911, yp:1096, next:new Array({id:591}, {id:583}, {id:586})}, {id:585, xp:-889, yp:984, next:new Array({id:557}, {id:586}, {id:583})}, {id:586, xp:-889, yp:1096, next:new Array({id:584}, {id:585}, {id:581})}, {id:587, xp:-1067, yp:808, next:new Array({id:590}, {id:678})}, {id:588, xp:-1067, yp:984, next:new Array({id:676}, {id:589})}, {id:589, xp:-1211, yp:984, next:new Array({id:588}, {id:595})}, {id:590, xp:-1211, yp:808, next:new Array({id:661}, {id:587})}, {id:591, xp:-1157, yp:1096, next:new Array({id:594}, {id:584})}, {id:592, xp:-1097, yp:1272, next:new Array({id:604}, {id:607})}, {id:593, xp:-1241, yp:1272, next:new Array({id:605}, {id:609})}, {id:594, xp:-1241, yp:1176, next:new Array({id:611}, {id:591})}, {id:595, xp:-1355, yp:1126, next:new Array({id:589}, {id:612})}, {id:596, xp:-1355, yp:1272, next:new Array({id:610}, {id:597})}, {id:597, xp:-1529, yp:1272, next:new Array({id:596}, {id:598})}, {id:598, xp:-1529, yp:1146, next:new Array({id:673}, {id:597})}, {id:599, xp:-1147, yp:1384, next:new Array({id:608}, {id:603})}, {id:600, xp:-1067, yp:1560, next:new Array({id:614}, {id:601})}, {id:601, xp:-1241, yp:1560, next:new Array({id:600}, {id:602})}, {id:602, xp:-1241, yp:1384, next:new Array({id:606}, {id:601})}, {id:603, xp:-1067, yp:1464, next:new Array({id:599}, {id:616})}, {id:604, xp:-953, yp:1417, next:new Array({id:615}, {id:592})}, {id:605, xp:-1213, yp:1272, next:new Array({id:593}, {id:606}, {id:607})}, {id:606, xp:-1213, yp:1384, next:new Array({id:602}, {id:605}, {id:608})}, {id:607, xp:-1191, yp:1272, next:new Array({id:605}, {id:608}, {id:592})}, {id:608, xp:-1191, yp:1384, next:new Array({id:606}, {id:607}, {id:599})}, {id:609, xp:-1241, yp:1246, next:new Array({id:593}, {id:610}, {id:611})}, {id:610, xp:-1355, yp:1246, next:new Array({id:612}, {id:609}, {id:596})}, {id:611, xp:-1241, yp:1224, next:new Array({id:609}, {id:612}, {id:594})}, {id:612, xp:-1355, yp:1224, next:new Array({id:595}, {id:611}, {id:610})}, {id:613, xp:-953, yp:1534, next:new Array({id:574}, {id:614}, {id:615})}, {id:614, xp:-1067, yp:1534, next:new Array({id:616}, {id:613}, {id:600})}, {id:615, xp:-953, yp:1512, next:new Array({id:613}, {id:616}, {id:604})}, {id:616, xp:-1067, yp:1512, next:new Array({id:603}, {id:615}, {id:614})}, {id:617, xp:-1067, yp:-1033, next:new Array({id:507}, {id:618})}, {id:618, xp:-1067, yp:-744, next:new Array({id:617}, {id:619})}, {id:619, xp:-1241, yp:-744, next:new Array({id:633}, {id:618})}, {id:620, xp:-1241, yp:-1033, next:new Array({id:635}, {id:637})}, {id:621, xp:-1355, yp:-920, next:new Array({id:624}, {id:636})}, {id:622, xp:-1355, yp:-744, next:new Array({id:634}, {id:623})}, {id:623, xp:-1529, yp:-744, next:new Array({id:624}, {id:622})}, {id:624, xp:-1529, yp:-920, next:new Array({id:621}, {id:623})}, {id:625, xp:-1067, yp:-344, next:new Array({id:628}, {id:645})}, {id:626, xp:-1067, yp:-168, next:new Array({id:643}, {id:627})}, {id:627, xp:-1241, yp:-168, next:new Array({id:626}, {id:640})}, {id:628, xp:-1241, yp:-344, next:new Array({id:638}, {id:625})}, {id:629, xp:-1355, yp:-632, next:new Array({id:632}, {id:639})}, {id:630, xp:-1355, yp:-168, next:new Array({id:641}, {id:652})}, {id:631, xp:-1529, yp:-168, next:new Array({id:650}, {id:632})}, {id:632, xp:-1529, yp:-632, next:new Array({id:629}, {id:631})}, {id:633, xp:-1241, yp:-758, next:new Array({id:635}, {id:634}, {id:619})}, {id:634, xp:-1355, yp:-758, next:new Array({id:636}, {id:633}, {id:622})}, {id:635, xp:-1241, yp:-780, next:new Array({id:620}, {id:636}, {id:633})}, {id:636, xp:-1355, yp:-780, next:new Array({id:621}, {id:635}, {id:634})}, {id:637, xp:-1643, yp:-1033, next:new Array({id:620}, {id:655})}, {id:638, xp:-1241, yp:-334, next:new Array({id:628}, {id:639}, {id:640})}, {id:639, xp:-1355, yp:-334, next:new Array({id:629}, {id:638}, {id:641})}, {id:640, xp:-1241, yp:-312, next:new Array({id:627}, {id:641}, {id:638})}, {id:641, xp:-1355, yp:-312, next:new Array({id:639}, {id:640}, {id:630})}, {id:642, xp:-953, yp:-178, next:new Array({id:493}, {id:643}, {id:644})}, {id:643, xp:-1067, yp:-178, next:new Array({id:645}, {id:642}, {id:626})}, {id:644, xp:-953, yp:-200, next:new Array({id:642}, {id:645}, {id:505})}, {id:645, xp:-1067, yp:-200, next:new Array({id:625}, {id:644}, {id:643})}, {id:646, xp:-1355, yp:-56, next:new Array({id:653}, {id:647})}, {id:647, xp:-1355, yp:232, next:new Array({id:646}, {id:658})}, {id:648, xp:-1529, yp:408, next:new Array({id:664}, {id:656})}, {id:649, xp:-1529, yp:-56, next:new Array({id:654}, {id:651})}, {id:650, xp:-1505, yp:-168, next:new Array({id:631}, {id:651}, {id:652})}, {id:651, xp:-1505, yp:-56, next:new Array({id:649}, {id:650}, {id:653})}, {id:652, xp:-1483, yp:-168, next:new Array({id:630}, {id:653}, {id:650})}, {id:653, xp:-1483, yp:-56, next:new Array({id:651}, {id:652}, {id:646})}, {id:654, xp:-1529, yp:-40, next:new Array({id:656}, {id:655}, {id:649})}, {id:655, xp:-1643, yp:-40, next:new Array({id:637}, {id:654}, {id:657})}, {id:656, xp:-1529, yp:-18, next:new Array({id:648}, {id:657}, {id:654})}, {id:657, xp:-1643, yp:-18, next:new Array({id:670}, {id:656}, {id:655})}, {id:658, xp:-1067, yp:232, next:new Array({id:647}, {id:659})}, {id:659, xp:-1067, yp:408, next:new Array({id:658}, {id:666})}, {id:660, xp:-1355, yp:520, next:new Array({id:667}, {id:661})}, {id:661, xp:-1355, yp:666, next:new Array({id:660}, {id:590})}, {id:662, xp:-1529, yp:646, next:new Array({id:671}, {id:663})}, {id:663, xp:-1529, yp:520, next:new Array({id:662}, {id:665})}, {id:664, xp:-1489, yp:408, next:new Array({id:666}, {id:665}, {id:648})}, {id:665, xp:-1489, yp:520, next:new Array({id:663}, {id:664}, {id:667})}, {id:666, xp:-1467, yp:408, next:new Array({id:659}, {id:667}, {id:664})}, {id:667, xp:-1467, yp:520, next:new Array({id:665}, {id:666}, {id:660})}, {id:668, xp:-1643, yp:1672, next:new Array({id:354}, {id:669})}, {id:669, xp:-1643, yp:1146, next:new Array({id:668}, {id:674})}, {id:670, xp:-1643, yp:646, next:new Array({id:672}, {id:657})}, {id:671, xp:-1516, yp:676, next:new Array({id:662}, {id:673})}, {id:672, xp:-1656, yp:676, next:new Array({id:674}, {id:670})}, {id:673, xp:-1516, yp:1116, next:new Array({id:671}, {id:598})}, {id:674, xp:-1656, yp:1116, next:new Array({id:669}, {id:672})}, {id:675, xp:-953, yp:958, next:new Array({id:558}, {id:676}, {id:677})}, {id:676, xp:-1067, yp:958, next:new Array({id:678}, {id:675}, {id:588})}, {id:677, xp:-953, yp:936, next:new Array({id:675}, {id:678}, {id:559})}, {id:678, xp:-1067, yp:936, next:new Array({id:587}, {id:677}, {id:676})}); _occupied = new Array(_places.length); } public function getPlace(_arg1:Number):Object{ return (_places[(_arg1 - 1)]); } public function getNextPlace(_arg1:Number, _arg2:Number):Object{ var _local3:Number; var _local4:Array; _local4 = new Array(); var _local5:Number = 0; while (_local5 < _places[(_arg1 - 1)].next.length) { if (_places[(_arg1 - 1)].next[_local5].id != _arg2){ _local4.push(_places[(_arg1 - 1)].next[_local5]); }; _local5++; }; _local3 = 0; if (_local4.length > 1){ _local3 = Math.round((Math.random() * (_local4.length - 1))); }; return (_places[(_local4[_local3].id - 1)]); } public function getRandomPlace():Object{ var _local1:Number; do { _local1 = Math.round((Math.random() * (_places.length - 1))); } while (_occupied[_local1] > 0); _occupied[_local1] = (_occupied[_local1] + 1); return (_places[_local1]); } public function initOccupied():void{ var _local1:Number = 0; while (_local1 < _places.length) { _occupied[_local1] = 0; _local1++; }; } } }//package
Section 53
//pauseMC (pauseMC) package { import flash.display.*; public dynamic class pauseMC extends MovieClip { public var b_more:SimpleButton; public var b_again:SimpleButton; public var b_free:SimpleButton; public var b_resume:SimpleButton; } }//package
Section 54
//pizzaPlace (pizzaPlace) package { import flash.display.*; import flash.geom.*; public class pizzaPlace extends MovieClip { private var _num:Number; private var _time:Number; private var _addr:String; private var _yp:Number; private var _xp:Number; private var _tip:Number; public function pizzaPlace(_arg1:Object, _arg2:Point){ _xp = _arg1.xp; _yp = _arg1.yp; this.x = (_xp + _arg2.x); this.y = (_yp + _arg2.y); this.rotation = _arg1.rot; _addr = _arg1.addr; _tip = _arg1.tip; _num = _arg1.num; _time = _arg1.time; } public function updatePos(_arg1:Point):void{ this.x = (_xp + _arg1.x); this.y = (_yp + _arg1.y); } } }//package
Section 55
//playerBicycle (playerBicycle) package { import flash.display.*; import flash.geom.*; public class playerBicycle extends playerUnit { private var _forwardstartframe:Number; public var hitobject:MovieClip; private var _forwardendframe:Number; private var _crashing:Boolean; private var _actforwardframe:Number; public function playerBicycle(_arg1:Number, _arg2:Number, _arg3:Object){ addFrameScript(0, frame1, 1, frame2, 16, frame17, 81, frame82); MASS_CONST = 5; MIN_SPIN = 1; MAX_VELOCITY = 4.5; MAX_TORQUE = 1; MAX_TURN = 15; _maxaccel = 1; _turnRadius = 50; _drag = 0.08; _spinDrag = 0; leftturnframe = 2; rightturnframe = 17; _forwardstartframe = 83; _forwardendframe = 112; _actforwardframe = _forwardstartframe; maxhp = (hp = 5); capacity = 2; _dmgmult = 2; _vehicleName = "Bicycle"; _main = _arg3; this.hitobject.visible = false; hitobj = this.hitobject; carSound = new SoundPlayer(new bicycle_sound()); carSound.vol = 1; crashSound = new SoundPlayer(new impact1_sound()); crashSound.vol = 1; this.x = _arg1; this.y = _arg2; this.rotation = 0; this.gotoAndStop("stand"); _crashing = false; } function frame2(){ stop(); } function frame82(){ gotoAndStop("stand"); } override public function Update():Point{ var _local1:Point; if (!_crashing){ _local1 = super.Update(); if (_crashing){ return (_local1); }; if (_actturn == 0){ if (_accel == 0){ this.gotoAndStop("stand"); _actforwardframe = _forwardstartframe; } else { if (_accel > 0){ _actforwardframe++; } else { _actforwardframe--; }; if (_actforwardframe > _forwardendframe){ _actforwardframe = _forwardstartframe; }; if (_actforwardframe < _forwardstartframe){ _actforwardframe = _forwardendframe; }; gotoAndStop(_actforwardframe); }; } else { if (_actturn > 0){ this.gotoAndStop(((rightturnframe + _actturn) - 1)); _actforwardframe = _forwardstartframe; } else { this.gotoAndStop(((leftturnframe + Math.abs(_actturn)) - 1)); _actforwardframe = _forwardstartframe; }; }; } else { if (this.currentFrame == 1){ _crashing = false; }; _local1 = new Point(0, 0); }; return (_local1); } override public function playCrash():void{ this.gotoAndPlay("crash"); _actturn = 0; _crashing = true; } function frame17(){ stop(); } function frame1(){ stop(); } } }//package
Section 56
//playerCar (playerCar) package { import flash.display.*; import flash.geom.*; public class playerCar extends playerUnit { public var smokefx:MovieClip; public var hitobject:MovieClip; public var car:MovieClip; private var _damaged:Number; public function playerCar(_arg1:Number, _arg2:Number, _arg3:Object){ MASS_CONST = 10; MIN_SPIN = 1; MAX_VELOCITY = 6.5; MAX_TORQUE = 5; MAX_TURN = 10; _maxaccel = 1; _turnRadius = 80; _drag = 0.08; _spinDrag = 0.2; leftturnframe = 2; rightturnframe = 12; maxhp = (hp = 10); capacity = 4; _damaged = 0; _vehicleName = "Car"; _main = _arg3; this.hitobject.visible = false; hitobj = this.hitobject; this.smokefx.visible = false; carSound = new SoundPlayer(new car_sound()); carSound.vol = 1; crashSound = new SoundPlayer(new impact2_sound()); crashSound.vol = 1; this.x = _arg1; this.y = _arg2; this.rotation = 0; this.car.gotoAndStop("stand"); } override public function Update():Point{ var _local1:Point; _local1 = super.Update(); if (_damage < 50){ _damaged = 21; } else { _damaged = 0; }; if ((((_damage < 25)) && (!(_smokeon)))){ _smokeon = true; this.smokefx.visible = true; }; if (((_smokeon) && ((_damage > 24)))){ _smokeon = false; this.smokefx.visible = false; }; if (_actturn == 0){ this.car.gotoAndStop((1 + _damaged)); } else { if (_actturn > 0){ this.car.gotoAndStop((((rightturnframe + _actturn) - 1) + _damaged)); } else { this.car.gotoAndStop((((leftturnframe + Math.abs(_actturn)) - 1) + _damaged)); }; }; return (_local1); } } }//package
Section 57
//playerJeep (playerJeep) package { import flash.display.*; import flash.geom.*; public class playerJeep extends playerUnit { public var smokefx:MovieClip; public var hitobject:MovieClip; public var car:MovieClip; private var _damaged:Number; public function playerJeep(_arg1:Number, _arg2:Number, _arg3:Object){ MASS_CONST = 10; MIN_SPIN = 1; MAX_VELOCITY = 8; MAX_TORQUE = 5; MAX_TURN = 10; _maxaccel = 1; _turnRadius = 80; _drag = 0.08; _spinDrag = 0; leftturnframe = 2; rightturnframe = 12; maxhp = (hp = 12); capacity = 6; _dmgmult = 0.8; _damaged = 0; _vehicleName = "Jeep"; _main = _arg3; this.hitobject.visible = false; hitobj = this.hitobject; this.smokefx.visible = false; carSound = new SoundPlayer(new jeep_sound()); carSound.vol = 1; crashSound = new SoundPlayer(new impact2_sound()); crashSound.vol = 1; this.x = _arg1; this.y = _arg2; this.rotation = 0; this.car.gotoAndStop("stand"); } override public function Update():Point{ var _local1:Point; _local1 = super.Update(); if (_damage < 50){ _damaged = 21; } else { _damaged = 0; }; if ((((_damage < 25)) && (!(_smokeon)))){ _smokeon = true; this.smokefx.visible = true; }; if (((_smokeon) && ((_damage > 24)))){ _smokeon = false; this.smokefx.visible = false; }; if (_actturn == 0){ this.car.gotoAndStop((1 + _damaged)); } else { if (_actturn > 0){ this.car.gotoAndStop((((rightturnframe + _actturn) - 1) + _damaged)); } else { this.car.gotoAndStop((((leftturnframe + Math.abs(_actturn)) - 1) + _damaged)); }; }; return (_local1); } } }//package
Section 58
//playerMotor (playerMotor) package { import flash.display.*; import flash.geom.*; public class playerMotor extends playerUnit { public var smokefx:MovieClip; public var hitobject:MovieClip; public var car:MovieClip; private var _crashing:Boolean; public function playerMotor(_arg1:Number, _arg2:Number, _arg3:Object){ MASS_CONST = 8; MIN_SPIN = 1; MAX_VELOCITY = 5.5; MAX_TORQUE = 1; MAX_TURN = 15; _maxaccel = 1; _turnRadius = 70; _drag = 0.08; _spinDrag = 0; leftturnframe = 2; rightturnframe = 17; maxhp = (hp = 7); capacity = 3; _dmgmult = 1.6; _vehicleName = "Motor"; _main = _arg3; this.hitobject.visible = false; hitobj = this.hitobject; this.smokefx.visible = false; carSound = new SoundPlayer(new motor_sound()); carSound.vol = 1; crashSound = new SoundPlayer(new impact1_sound()); crashSound.vol = 1; this.x = _arg1; this.y = _arg2; this.rotation = 0; this.car.gotoAndStop("stand"); _crashing = false; } override public function playCrash():void{ this.car.gotoAndPlay("crash"); _actturn = 0; _crashing = true; } override public function Update():Point{ var _local1:Point; if (!_crashing){ _local1 = super.Update(); if ((((_damage < 25)) && (!(_smokeon)))){ _smokeon = true; this.smokefx.visible = true; }; if (((_smokeon) && ((_damage > 24)))){ _smokeon = false; this.smokefx.visible = false; }; if (_crashing){ return (_local1); }; if (_actturn == 0){ this.car.gotoAndStop("stand"); } else { if (_actturn > 0){ this.car.gotoAndStop(((rightturnframe + _actturn) - 1)); } else { this.car.gotoAndStop(((leftturnframe + Math.abs(_actturn)) - 1)); }; }; } else { if (this.car.currentFrame == 1){ _crashing = false; }; _local1 = new Point(0, 0); }; return (_local1); } } }//package
Section 59
//playerPorsche (playerPorsche) package { import flash.display.*; import flash.geom.*; public class playerPorsche extends playerUnit { public var smokefx:MovieClip; public var hitobject:MovieClip; public var car:MovieClip; private var _damaged:Number; public function playerPorsche(_arg1:Number, _arg2:Number, _arg3:Object){ MASS_CONST = 10; MIN_SPIN = 1; MAX_VELOCITY = 6; MAX_TORQUE = 5; MAX_TURN = 10; _maxaccel = 1.3; _turnRadius = 80; _drag = 0.08; _spinDrag = 0.2; leftturnframe = 2; rightturnframe = 12; maxhp = (hp = 10); capacity = 4; _damaged = 0; _vehicleName = "Old car"; _main = _arg3; this.hitobject.visible = false; hitobj = this.hitobject; this.smokefx.visible = false; carSound = new SoundPlayer(new porsche_sound()); carSound.vol = 1; crashSound = new SoundPlayer(new impact2_sound()); crashSound.vol = 1; this.x = _arg1; this.y = _arg2; this.rotation = 0; this.car.gotoAndStop("stand"); } override public function Update():Point{ var _local1:Point; _local1 = super.Update(); if (_damage < 50){ _damaged = 21; } else { _damaged = 0; }; if ((((_damage < 25)) && (!(_smokeon)))){ _smokeon = true; this.smokefx.visible = true; }; if (((_smokeon) && ((_damage > 24)))){ _smokeon = false; this.smokefx.visible = false; }; if (_actturn == 0){ this.car.gotoAndStop((1 + _damaged)); } else { if (_actturn > 0){ this.car.gotoAndStop((((rightturnframe + _actturn) - 1) + _damaged)); } else { this.car.gotoAndStop((((leftturnframe + Math.abs(_actturn)) - 1) + _damaged)); }; }; return (_local1); } } }//package
Section 60
//playerScooter (playerScooter) package { import flash.display.*; import flash.geom.*; public class playerScooter extends playerUnit { public var smokefx:MovieClip; public var hitobject:MovieClip; public var car:MovieClip; private var _crashing:Boolean; public function playerScooter(_arg1:Number, _arg2:Number, _arg3:Object){ MASS_CONST = 5; MIN_SPIN = 1; MAX_VELOCITY = 5; MAX_TORQUE = 1; MAX_TURN = 15; _maxaccel = 1; _turnRadius = 50; _drag = 0.08; _spinDrag = 0; leftturnframe = 2; rightturnframe = 17; maxhp = (hp = 6); capacity = 2; _dmgmult = 1.8; _vehicleName = "Scooter"; _main = _arg3; this.hitobject.visible = false; hitobj = this.hitobject; this.smokefx.visible = false; carSound = new SoundPlayer(new scooter_sound()); carSound.vol = 1; crashSound = new SoundPlayer(new impact1_sound()); crashSound.vol = 1; this.x = _arg1; this.y = _arg2; this.rotation = 0; this.car.gotoAndStop("stand"); _crashing = false; } override public function playCrash():void{ this.car.gotoAndPlay("crash"); _actturn = 0; _crashing = true; } override public function Update():Point{ var _local1:Point; if (!_crashing){ _local1 = super.Update(); if ((((_damage < 25)) && (!(_smokeon)))){ _smokeon = true; this.smokefx.visible = true; }; if (((_smokeon) && ((_damage > 24)))){ _smokeon = false; this.smokefx.visible = false; }; if (_crashing){ return (_local1); }; if (_actturn == 0){ this.car.gotoAndStop("stand"); } else { if (_actturn > 0){ this.car.gotoAndStop(((rightturnframe + _actturn) - 1)); } else { this.car.gotoAndStop(((leftturnframe + Math.abs(_actturn)) - 1)); }; }; } else { if (this.car.currentFrame == 1){ _crashing = false; }; _local1 = new Point(0, 0); }; return (_local1); } } }//package
Section 61
//playerUnit (playerUnit) package { import flash.display.*; import flash.geom.*; public class playerUnit extends MovieClip { private var _direction:Number; public var leftturnframe:int; private var _actdamage:Number; public var hp:Number; public var hitobj:MovieClip; public var _turnRadius:Number; public var _drag:Number; private var _stopped:Boolean; public var MAX_TURN:Number; public var carSound:SoundPlayer; private var _handbrake:Number; public var _main:Object; private var _spin:Number; public var _velMag:Number; private var _bouncevel:Point; public var crashSound:SoundPlayer; private var _stoppedcounter:Number; public var MIN_SPIN:Number; public var MASS_CONST:Number; public var capacity:Number; private var _heading:Number; public var _vehicleName:String; private var _spinImpact:Number; private var _possibleCollision:Boolean; private var _prevvel:Point; public var _smokeon:Boolean; public var _actturn:Number; private var _collobj:MovieClip; public var _damage:Number; private var _turn:Number; public var _onCollide:Boolean; public var _maxaccel:Number; public var MAX_TORQUE:Number; private var _oldrotation:Number; public var _accel:Number; public var maxhp:Number; private var _vel:Point; public var _dmgmult:Number; public var rightturnframe:int; public var _spinDrag:Number; public var MAX_VELOCITY:Number; public function playerUnit(){ MASS_CONST = 0; MIN_SPIN = 0; MAX_VELOCITY = 0; MAX_TORQUE = 0; MAX_TURN = 0; _maxaccel = 0; _turnRadius = 0; _drag = 0; _spinDrag = 0; leftturnframe = 0; rightturnframe = 0; _vel = new Point(0, 0); _prevvel = new Point(0, 0); _bouncevel = new Point(0, 0); _velMag = 0; _heading = 0; _spin = 0; _accel = 0; _handbrake = 0; _turn = 0; _actturn = 0; _spinImpact = 0; _direction = 1; _stopped = true; _stoppedcounter = 0; _onCollide = false; maxhp = (hp = 1); capacity = 1; _damage = 100; _dmgmult = 1; _actdamage = 0; _collobj = null; _vehicleName = ""; _main = null; hitobj = null; _smokeon = false; carSound = null; crashSound = null; } private function checkCollision():void{ var _local1:Number; var _local2:Boolean; _collobj = null; _local1 = 0; while (_local1 < _main._sectors.length) { if (_main._sectors[_local1]){ _local2 = HitTest.complexHitTestObject(hitobj, _main._sectormcs[(_local1 + (2 * _main._sectors.length))], 1); if (((_local2) && (!(_onCollide)))){ _possibleCollision = true; _actdamage = 5; _collobj = _main._sectormcs[(_local1 + (2 * _main._sectors.length))]; generateBounceVel(); crashSound.singlePlay(); }; }; _local1++; }; _local1 = 0; while (_local1 < _main.npccarpos.length) { _local2 = HitTest.complexHitTestObject(hitobj, _main.npccarpos[_local1].hitobj, 1); if (((_local2) && (!(_onCollide)))){ _main.npccarpos[_local1].stopThis(); _possibleCollision = true; _actdamage = 5; _collobj = _main.npccarpos[_local1].hitobj; generateBounceVel(); crashSound.singlePlay(); }; _local1++; }; _local1 = 0; while (_local1 < _main.npchumanpos.length) { _local2 = HitTest.complexHitTestObject(hitobj, _main.npchumanpos[_local1].hitobj, 1); if (((_local2) && (!(_onCollide)))){ _main.npchumanpos[_local1].killThis(Math.abs(_velMag)); _actdamage = 2; }; _local1++; }; } public function getSpeed():Number{ return (_velMag); } public function LeftTurnOff(){ _turn = 0; } public function ForwardOff(){ _accel = 0; } public function Update():Point{ var _local1:Number; var _local2:Boolean; var _local8:Number; var _local9:Number; var _local10:Point; if (_stopped){ _stoppedcounter--; return (new Point(0, 0)); }; _heading = ((Math.PI / 180) * this.rotation); if (_accel == 0){ _vel.x = (_vel.x * (1 - _drag)); _vel.y = (_vel.y * (1 - _drag)); }; var _local3:Number = (_accel * _maxaccel); if ((((_direction == -1)) && ((_accel == -1)))){ _local3 = (_local3 * 0.5); }; _vel.x = (_vel.x + (Math.sin(_heading) * _local3)); _vel.y = (_vel.y - (Math.cos(_heading) * _local3)); if ((((_velMag >= 0)) && ((_direction == 1)))){ if ((_velMag + _local3) < 0){ _vel.x = (_vel.y = 0); }; }; if ((((_velMag < 0)) && ((_direction == -1)))){ if ((_velMag + _local3) > 0){ _vel.x = (_vel.y = 0); }; }; _velMag = (_direction * Math.sqrt(((_vel.x * _vel.x) + (_vel.y * _vel.y)))); _spin = ((_velMag / _turnRadius) * _turn); var _local4:Number = (_heading + _spin); if ((((Math.abs(_velMag) < 0.1)) || (_onCollide))){ _stopped = true; _stoppedcounter = 10; _vel.x = 0; _vel.y = 0; _velMag = 0; _accel = 0; if (_possibleCollision){ _damage = (_damage - (_actdamage * _dmgmult)); if (_damage < 0){ _damage = 0; }; hp = ((maxhp * _damage) / 100); }; if (_onCollide){ _onCollide = false; _possibleCollision = false; return (_bouncevel); }; }; var _local5:Point = new Point(0, 0); _local5.x = ((Math.sin(_local4) * _velMag) - _vel.x); _local5.y = ((-(Math.cos(_local4)) * _velMag) - _vel.y); var _local6:* = Math.sqrt((Math.pow(_local5.x, 2) + Math.pow(_local5.y, 2))); if (_local6 > MAX_TORQUE){ _local5.x = ((MAX_TORQUE * _local5.x) / _local6); _local5.y = ((MAX_TORQUE * _local5.y) / _local6); }; _vel.x = (_vel.x + _local5.x); _vel.y = (_vel.y + _local5.y); _velMag = (_direction * Math.sqrt(((_vel.x * _vel.x) + (_vel.y * _vel.y)))); var _local7:Number = Math.abs(_velMag); if ((((_direction == 1)) && ((_local7 > MAX_VELOCITY)))){ _vel.x = ((MAX_VELOCITY * _vel.x) / _local7); _vel.y = ((MAX_VELOCITY * _vel.y) / _local7); _velMag = (_direction * Math.sqrt(((_vel.x * _vel.x) + (_vel.y * _vel.y)))); }; if ((((_direction == -1)) && ((_local7 > (MAX_VELOCITY / 2))))){ _vel.x = (((MAX_VELOCITY / 2) * _vel.x) / _local7); _vel.y = (((MAX_VELOCITY / 2) * _vel.y) / _local7); _velMag = (_direction * Math.sqrt(((_vel.x * _vel.x) + (_vel.y * _vel.y)))); }; if (_velMag != 0){ _local8 = _heading; _local9 = this.rotation; _heading = _local4; _oldrotation = this.rotation; this.rotation = ((_heading * 180) / Math.PI); if (_accel != 0){ if (_turn == 0){ if (_actturn > 0){ _actturn--; } else { if (_actturn < 0){ _actturn++; }; }; } else { _actturn = (_actturn + _turn); }; } else { if (_actturn > 0){ _actturn--; } else { if (_actturn < 0){ _actturn++; }; }; }; _actturn = Math.min(Math.max(_actturn, (0 - MAX_TURN)), MAX_TURN); }; this.x = (this.x + _vel.x); this.y = (this.y + _vel.y); _possibleCollision = false; checkCollision(); this.x = 335; this.y = 275; if (!_possibleCollision){ _onCollide = false; if (_velMag != 0){ _prevvel.x = (((-1 * _vel.x) / Math.abs(_velMag)) * 2); _prevvel.y = (((-1 * _vel.y) / Math.abs(_velMag)) * 2); } else { _prevvel.x = (_prevvel.y = 0); }; return (_vel); //unresolved jump }; _local10 = new Point(_vel.x, _vel.y); _vel.x = 0; _vel.y = 0; _local1 = 0; while (_local1 < 3) { _local10.x = (_local10.x / 2); _local10.y = (_local10.y / 2); _vel.x = (_vel.x + _local10.x); _vel.y = (_vel.y + _local10.y); this.x = (this.x + _vel.x); this.y = (this.y + _vel.y); _local2 = HitTest.complexHitTestObject(hitobj, _collobj, 1); if (_local2){ _vel.x = (_vel.x - _local10.x); _vel.y = (_vel.y - _local10.y); }; this.x = 335; this.y = 275; _local1++; }; _velMag = (_direction * Math.sqrt(((_vel.x * _vel.x) + (_vel.y * _vel.y)))); _onCollide = true; _accel = 0; playCrash(); if (_velMag != 0){ _prevvel.x = (((-1 * _vel.x) / Math.abs(_velMag)) * 2); _prevvel.y = (((-1 * _vel.y) / Math.abs(_velMag)) * 2); }; this.rotation = _oldrotation; return (_vel); } private function generateBounceVel():void{ var _local1:Rectangle; var _local2:Point; var _local3:Number; var _local4:Number; var _local5:Number; _local1 = HitTest.complexIntersectionRectangle(hitobj, _collobj, 1); _local2 = new Point((_local1.x + (_local1.width / 2)), (_local1.y + (_local1.height / 2))); _local3 = (this.x - _local2.x); _local4 = (this.y - _local2.y); _local5 = Math.sqrt(((_local3 * _local3) + (_local4 * _local4))); _bouncevel.x = ((_local3 / _local5) * 2); _bouncevel.y = ((_local4 / _local5) * 2); } public function HandbrakeOn(){ if (!_stopped){ _accel = 0; _handbrake = 1; }; } public function collide():void{ if (((!(_onCollide)) && ((hp > 0)))){ hp--; _onCollide = true; _stopped = true; _stoppedcounter = 0; }; } public function ReverseOff(){ _accel = 0; } public function playCrash():void{ } public function isStopped():Boolean{ return (_stopped); } public function RightTurnOn(){ _turn = 1; } public function HandbrakeOff(){ _accel = 0; _handbrake = 0; } public function ForwardOn(){ if (_stoppedcounter > 0){ return; }; if (_stopped){ _direction = 1; _stopped = false; }; if (_direction == -1){ _accel = 0.6; } else { _accel = 1; }; } public function doCollision():void{ _possibleCollision = true; _actdamage = 5; _onCollide = true; _accel = 0; if (_velMag != 0){ _prevvel.x = (((-1 * _vel.x) / Math.abs(_velMag)) * 2); _prevvel.y = (((-1 * _vel.y) / Math.abs(_velMag)) * 2); } else { _prevvel.x = (_prevvel.y = 0); }; _vel.x = (_vel.y = 0); _velMag = 0; crashSound.singlePlay(); } public function ReverseOn(){ if (_stoppedcounter > 0){ return; }; if (_stopped){ _direction = -1; _stopped = false; }; if (_direction == 1){ _accel = -0.6; } else { _accel = -1; }; } public function RightTurnOff(){ _turn = 0; } public function LeftTurnOn(){ _turn = -1; } } }//package
Section 62
//playerVan (playerVan) package { import flash.display.*; import flash.geom.*; public class playerVan extends playerUnit { public var smokefx:MovieClip; public var hitobject:MovieClip; public var car:MovieClip; private var _damaged:Number; public function playerVan(_arg1:Number, _arg2:Number, _arg3:Object){ MASS_CONST = 10; MIN_SPIN = 1; MAX_VELOCITY = 7; MAX_TORQUE = 5; MAX_TURN = 10; _maxaccel = 1; _turnRadius = 80; _drag = 0.08; _spinDrag = 0; leftturnframe = 2; rightturnframe = 12; maxhp = (hp = 11); capacity = 8; _dmgmult = 0.9; _damaged = 0; _vehicleName = "Van"; _main = _arg3; this.hitobject.visible = false; hitobj = this.hitobject; this.smokefx.visible = false; carSound = new SoundPlayer(new van_sound()); carSound.vol = 1; crashSound = new SoundPlayer(new impact2_sound()); crashSound.vol = 1; this.x = _arg1; this.y = _arg2; this.rotation = 0; this.car.gotoAndStop("stand"); } override public function Update():Point{ var _local1:Point; _local1 = super.Update(); if (_damage < 50){ _damaged = 21; } else { _damaged = 0; }; if ((((_damage < 25)) && (!(_smokeon)))){ _smokeon = true; this.smokefx.visible = true; }; if (((_smokeon) && ((_damage > 24)))){ _smokeon = false; this.smokefx.visible = false; }; if (_actturn == 0){ this.car.gotoAndStop((1 + _damaged)); } else { if (_actturn > 0){ this.car.gotoAndStop((((rightturnframe + _actturn) - 1) + _damaged)); } else { this.car.gotoAndStop((((leftturnframe + Math.abs(_actturn)) - 1) + _damaged)); }; }; return (_local1); } } }//package
Section 63
//porsche_sound (porsche_sound) package { import flash.media.*; public dynamic class porsche_sound extends Sound { } }//package
Section 64
//PreloaderBar (PreloaderBar) package { import flash.display.*; public dynamic class PreloaderBar extends SimpleButton { } }//package
Section 65
//PreloaderClip (PreloaderClip) package { import flash.display.*; import flash.text.*; public dynamic class PreloaderClip extends MovieClip { public var procent:TextField; public var ProgBar:PreloaderBar; public function PreloaderClip(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package
Section 66
//scooter_sound (scooter_sound) package { import flash.media.*; public dynamic class scooter_sound extends Sound { } }//package
Section 67
//serviceMC (serviceMC) package { import flash.display.*; import flash.text.*; public dynamic class serviceMC extends MovieClip { public var costs:TextField; public var b_yes:SimpleButton; public var b_no:SimpleButton; } }//package
Section 68
//SoundPlayer (SoundPlayer) package { import flash.media.*; public class SoundPlayer { private var _spos:Number; private var _channel:SoundChannel; private var _transform:SoundTransform; private var _volume:Number;// = 1 private var _actsound:Sound; private var _looping:Boolean; public function SoundPlayer(_arg1:Sound){ _channel = new SoundChannel(); _spos = 0; _transform = new SoundTransform(); _transform.volume = _volume; _channel.soundTransform = _transform; _actsound = _arg1; _looping = false; } public function resumePlay():void{ if (_looping){ _channel = _actsound.play(0, 100000, _transform); } else { _channel = _actsound.play(_spos, 0, _transform); }; } public function singlePlay():void{ _channel.stop(); _looping = false; _channel = _actsound.play(0, 0, _transform); } public function set vol(_arg1:Number):void{ _volume = _arg1; _transform.volume = _volume; _channel.soundTransform = _transform; } public function isPlaying():Boolean{ if (_channel.position != 0){ return (true); }; return (false); } public function loopPlay():void{ _channel.stop(); _looping = true; _channel = _actsound.play(0, 100000, _transform); } public function stopPlay():void{ _spos = _channel.position; _channel.stop(); } } }//package
Section 69
//ThePizzaGuy (ThePizzaGuy) package { import flash.display.*; import flash.geom.*; import FOG.AS3.*; import flash.events.*; import flash.text.*; import flash.ui.*; public class ThePizzaGuy extends MovieClip { public var _player:playerUnit; private var _stoppedhumans:Array; private var _accepted:Array; public var t_score:TextField; public var over_s22:MovieClip; public var over_s23:MovieClip; public var _pizzas:Number; private var _minitargets:Array; public var visibility:SimpleButton; public var _cap:Number; public var startbutton:SimpleButton; public var over_s21:MovieClip; private var _intheGrid:Array; public var b_menu:SimpleButton; private var _gridstopped:Array; public var npccarpos:Array; private var _grid:CollisionGrid; public var hit_s11:MovieClip; public var hit_s12:MovieClip; public var hit_s13:MovieClip; private var _dp:Point; public var t_money:TextField; private var _npccars:Array; public var cardamage:MovieClip; private var _ambientSound:SoundPlayer; public var hit_s21:MovieClip; public var hit_s22:MovieClip; public var hit_s23:MovieClip; private var _paused:Boolean; public var freegamesbutton:SimpleButton; private var _pizzeria:bigEddie; private var _cplaces:npcCarPlaces; private var _gomc:MovieClip; private var _vshop:vehicleShop; public var npc_layer:MovieClip; private var _hplaces:npcHumanPlaces; public var g_layer:MovieClip; public var t_cap:TextField; public var homeplace:MovieClip; public var pizz_layer:MovieClip; private var _npchumans:Array; private var _shopenable:Boolean; public var mini_logo:MovieClip; private var _hd:Point; public var delivered:MovieClip; public var FogAPI; public var _sectors:Array; private var _score:Number; private var _stoppedcars:Array; public var mt_layer:MovieClip; public var p_layer:MovieClip; private var _targets:Array; public var t_layer:MovieClip; public var morebutton:SimpleButton; public var _money:Number; public var mini_player:MovieClip; private var _pausemc:MovieClip; private var _playerbynum:Number; public var shopplace:MovieClip; public var od:Point; public var b_pause:SimpleButton; public var bg_s12:MovieClip; public var bg_s13:MovieClip; public var bg_s11:MovieClip; private var _homeenable:Boolean; public var over_s11:MovieClip; public var over_s12:MovieClip; public var over_s13:MovieClip; public var npchumanpos:Array; private var _sd:Point; public var bg_s21:MovieClip; public var bg_s22:MovieClip; public var bg_s23:MovieClip; public var _sectormcs:Array; public function ThePizzaGuy(){ addFrameScript(0, frame1, 1, frame2, 3, frame4); } private function removePause():void{ var _local1:*; _pausemc.b_resume.removeEventListener(MouseEvent.CLICK, pauseGame); _pausemc.b_again.removeEventListener(MouseEvent.CLICK, againClicked); _pausemc.b_more.removeEventListener(MouseEvent.CLICK, moreClicked); _pausemc.b_free.removeEventListener(MouseEvent.CLICK, freeClicked); pizz_layer.removeChild(_pausemc); for (_local1 in _npchumans) { _npchumans[_local1].resumeThis(); }; resumeSounds(); } private function checkCollision():void{ var _local1:Number; var _local2:Boolean; var _local3:Object; var _local5:*; var _local6:*; if (_shopenable){ _local2 = HitTest.complexHitTestObject(_player, shopplace, 1); if (((((_local2) && (_shopenable))) && (_player.isStopped()))){ _shopenable = false; carControlDisable(); for (_local6 in _npchumans) { _npchumans[_local6].pauseThis(); }; stopSounds(); _vshop.enterToShop(); }; } else { if (mcDistance(_player, shopplace) > 100){ _shopenable = true; }; }; if (_homeenable){ _local2 = HitTest.complexHitTestObject(_player, homeplace, 1); if (((((_local2) && (_homeenable))) && (_player.isStopped()))){ _homeenable = false; carControlDisable(); stopSounds(); deleteTargets(); _pizzeria.enterTo(_accepted); }; } else { if (mcDistance(_player, homeplace) > 100){ _homeenable = true; }; }; _local1 = 0; while (_local1 < _targets.length) { _local2 = HitTest.complexHitTestObject(_player, _targets[_local1], 1); if (((_local2) && (_player.isStopped()))){ deliverPizza(_local1); }; _local1++; }; _grid.check(_intheGrid); var _local4:int = _grid.checks.length; _local1 = 0; while (_local1 < _local4) { if ((((_grid.checks[_local1] is npcHuman)) && ((_grid.checks[(_local1 + 1)] is npcHuman)))){ } else { if ((((_grid.checks[_local1] is npcHuman)) && (_grid.checks[_local1].getSplashed()))){ } else { if ((((_grid.checks[(_local1 + 1)] is npcHuman)) && (_grid.checks[(_local1 + 1)].getSplashed()))){ } else { if (_grid.checks[_local1].isMoving()){ _local2 = HitTest.complexHitTestObject(_grid.checks[_local1].prevhit, _grid.checks[(_local1 + 1)].hitobj, 1); if (((_local2) && (!(_grid.checks[_local1].getStopped())))){ _grid.checks[_local1].slowStop(); _local3 = new Object(); _local3 = {t:_grid.checks[_local1], s:_grid.checks[_local1].prevhit, o:_grid.checks[(_local1 + 1)].hitobj}; _gridstopped.push(_local3); _grid.checks[_local1].gridStopped = true; }; }; if (_grid.checks[(_local1 + 1)].isMoving()){ _local2 = HitTest.complexHitTestObject(_grid.checks[(_local1 + 1)].prevhit, _grid.checks[_local1].hitobj, 1); if (((_local2) && (!(_grid.checks[(_local1 + 1)].getStopped())))){ _grid.checks[(_local1 + 1)].slowStop(); _local3 = new Object(); _local3 = {t:_grid.checks[(_local1 + 1)], s:_grid.checks[(_local1 + 1)].prevhit, o:_grid.checks[_local1].hitobj}; _gridstopped.push(_local3); _grid.checks[(_local1 + 1)].gridStopped = true; }; }; }; }; }; _local1 = (_local1 + 2); }; _local1 = 0; while (_local1 < _gridstopped.length) { _local2 = HitTest.complexHitTestObject(_gridstopped[_local1].s, _gridstopped[_local1].o, 1); if (!_local2){ _gridstopped[_local1].t.slowStart(); }; _local1++; }; for (_local5 in _gridstopped) { if (!_gridstopped[_local5].t.getStopped()){ _gridstopped.splice(_local5, 1); }; }; } public function mini_logoClicked(_arg1:MouseEvent):void{ FogAPI.Tracking.Click(); } public function gameInit():void{ var _local1:Number; var _local2:Number; var _local3:Number; var _local4:Number; var _local5:npcHuman; var _local6:npcCar; _pizzeria = new bigEddie(this); pizz_layer.addChild(_pizzeria); _vshop = new vehicleShop(this); g_layer.addChild(_vshop); _player = new playerBicycle((stage.stageWidth / 2), (stage.stageHeight / 2), this); if (FogAPI.Storage.Get("Pvehicle") >= 0){ _playerbynum = FogAPI.Storage.Get("Pvehicle"); } else { _playerbynum = 0; }; _local2 = _player.x; _local3 = _player.y; _local4 = _player.rotation; switch (_playerbynum){ case 0: _player = new playerBicycle(_local2, _local3, this); break; case 1: _player = new playerScooter(_local2, _local3, this); break; case 2: _player = new playerMotor(_local2, _local3, this); break; case 3: _player = new playerPorsche(_local2, _local3, this); break; case 4: _player = new playerCar(_local2, _local3, this); break; case 5: _player = new playerJeep(_local2, _local3, this); break; case 6: _player = new playerVan(_local2, _local3, this); break; }; _player.rotation = _local4; p_layer.addChild(_player); _cap = _player.capacity; _cplaces = new npcCarPlaces(this); _cplaces.initOccupied(); _hplaces = new npcHumanPlaces(this); _hplaces.initOccupied(); _score = (_pizzas = 0); if (FogAPI.Storage.Get("Pscore") >= 0){ _score = FogAPI.Storage.Get("Pscore"); } else { _score = 0; }; if (FogAPI.Storage.Get("money") >= 0){ _money = FogAPI.Storage.Get("money"); } else { _money = 0; }; textUpdate(); _vshop.setCarName(_player._vehicleName); _dp = new Point(0, 0); od = new Point(0, 0); _hd = new Point(0, 0); _sd = new Point(0, 0); _targets = new Array(); _minitargets = new Array(); _sectors = new Array(6); _sectormcs = new Array(bg_s11, bg_s12, bg_s13, bg_s21, bg_s22, bg_s23, over_s11, over_s12, over_s13, over_s21, over_s22, over_s23, hit_s11, hit_s12, hit_s13, hit_s21, hit_s22, hit_s23); bg_s11.x = -1010; bg_s11.y = -400; _hd.x = (homeplace.x - bg_s11.x); _hd.y = (homeplace.y - bg_s11.y); _sd.x = (shopplace.x - bg_s11.x); _sd.y = (shopplace.y - bg_s11.y); _local1 = 0; while (_local1 < _sectors.length) { _sectors[_local1] = false; _local1++; }; backgroundUpdate(new Point(0, 0)); hit_s11.visible = false; hit_s12.visible = false; hit_s13.visible = false; hit_s21.visible = false; hit_s22.visible = false; hit_s23.visible = false; homeplace.visible = false; shopplace.visible = false; delivered.visible = false; _shopenable = true; _homeenable = false; _npchumans = new Array(); _local1 = 0; while (_local1 < 150) { _local5 = new npcHuman(new Point(0, 0), this, _hplaces); npc_layer.addChild(_local5); _npchumans.push(_local5); _local1++; }; _hplaces.initOccupied(); npchumanpos = new Array(); _npccars = new Array(); _local1 = 0; while (_local1 < 100) { _local6 = new npcCar(new Point(0, 0), this, _cplaces); npc_layer.addChild(_local6); _npccars.push(_local6); _local1++; }; _cplaces.initOccupied(); npccarpos = new Array(); _stoppedcars = new Array(); _stoppedhumans = new Array(); _grid = new CollisionGrid(670, 550, 80); _intheGrid = new Array(); _gridstopped = new Array(); _ambientSound = new SoundPlayer(new ambient_sound()); _ambientSound.vol = 0.1; _paused = false; _pizzeria.enterTo(null); } private function pauseGame(_arg1:MouseEvent):void{ if (!_paused){ stage.removeEventListener(KeyboardEvent.KEY_DOWN, keyPressed); removeEventListener(Event.ENTER_FRAME, gameLoop); doPause(); _paused = true; } else { stage.addEventListener(KeyboardEvent.KEY_DOWN, keyPressed); addEventListener(Event.ENTER_FRAME, gameLoop); removePause(); _paused = false; }; } private function doPause():void{ var _local1:*; stopSounds(); _pausemc = new pauseMC(); _pausemc.x = 26; _pausemc.y = 35; pizz_layer.addChild(_pausemc); _pausemc.b_resume.addEventListener(MouseEvent.CLICK, pauseGame); _pausemc.b_again.addEventListener(MouseEvent.CLICK, againClicked); _pausemc.b_more.addEventListener(MouseEvent.CLICK, moreClicked); _pausemc.b_free.addEventListener(MouseEvent.CLICK, freeClicked); for (_local1 in _npchumans) { _npchumans[_local1].pauseThis(); }; } public function returnFromShop(_arg1:Number):void{ var _local2:*; if (_playerbynum != _arg1){ changePlayer(_arg1); }; textUpdate(); _vshop.setCarName(_player._vehicleName); for (_local2 in _npchumans) { _npchumans[_local2].resumeThis(); }; carControlEnable(); resumeSounds(); } function moreClicked(_arg1:MouseEvent){ FogAPI.Tracking.Click(); } function freeClicked(_arg1:MouseEvent){ FogAPI.Tracking.Click("http://www.freegamesforyourwebsite.com"); } private function updateTargets(_arg1:Point):void{ var _local2:*; if (_targets.length == 0){ return; }; for (_local2 in _targets) { _targets[_local2].updatePos(_arg1); }; } private function updateNpcHumans(_arg1:Point):void{ var _local2:Number; var _local3:Number; var _local4:*; if (_npchumans.length == 0){ return; }; npchumanpos = new Array(); for (_local4 in _npchumans) { _local2 = _npchumans[_local4].x; _local3 = _npchumans[_local4].y; if ((((((((_local2 > 235)) && ((_local2 < 435)))) && ((_local3 > 175)))) && ((_local3 < 375)))){ if (!_npchumans[_local4].getSplashed()){ _npchumans[_local4].checkPlayer = true; npchumanpos.push(_npchumans[_local4]); }; } else { if (_npchumans[_local4].getCrashed()){ _npchumans[_local4].crashStart(); }; if (!_npchumans[_local4].gridStopped){ if (_npchumans[_local4].getStopped()){ _npchumans[_local4].slowStart(); }; }; _npchumans[_local4].checkPlayer = false; }; if ((((((((_local2 > -670)) && ((_local2 < 1340)))) && ((_local3 > -550)))) && ((_local3 < 1100)))){ if (!_npchumans[_local4].getSplashed()){ _intheGrid.push(_npchumans[_local4]); }; } else { if (((_npchumans[_local4].getSplashed()) || (_npchumans[_local4].getStopped()))){ _npchumans[_local4].slowStart(); }; _npchumans[_local4].gridStopped = false; }; _npchumans[_local4].updateNpcHuman(_arg1); }; } private function deliverPizza(_arg1:Number):void{ delivered.mtext.money.text = (String((_accepted[_arg1].tip * _accepted[_arg1].num)) + "$"); delivered.visible = true; delivered.gotoAndPlay(1); mt_layer.removeChild(_minitargets[_arg1].mt); t_layer.removeChild(_targets[_arg1]); _pizzas = (_pizzas - _accepted[_arg1].num); _money = (_money + (_accepted[_arg1].tip * _accepted[_arg1].num)); _score = (_score + 100); _minitargets.splice(_arg1, 1); _targets.splice(_arg1, 1); _accepted.splice(_arg1, 1); textUpdate(); FogAPI.Storage.Set("Pscore", _score); FogAPI.Storage.Set("money", _money); } public function startClicked(_arg1:MouseEvent){ gotoAndStop("playgame"); } private function createTargets():void{ var _local1:Number; var _local2:Object; var _local3:pizzaPlace; _minitargets = new Array(); _targets = new Array(); _local1 = 0; while (_local1 < _accepted.length) { _local2 = new Object(); _local2.id = _accepted[_local1].id; _local2.mt = new mini_target(); _local2.mt.gotoAndStop(1); _local2.mt.x = (532 + (((_accepted[_local1].xp + 1634) / 4140) * 134)); _local2.mt.y = (4 + (((_accepted[_local1].yp + 0x0400) / 2690) * 88)); mt_layer.addChild(_local2.mt); _minitargets.push(_local2); _local3 = new pizzaPlace(_accepted[_local1], od); t_layer.addChild(_local3); _targets.push(_local3); _local1++; }; } function frame4(){ stop(); mini_logo.addEventListener(MouseEvent.CLICK, mini_logoClicked); gameInit(); } function frame1(){ stop(); FogAPI = new CoreAPI({game:{id:11, fogid:20289, name:"the-pizza-guy", title:"The Pizza Guy", category:"racing-games", res:"670x550"}, remote:true, Preloader:{locked:false, domains:["freeonlinegames.com"]}, root:root}); FogAPI.Storage.Load(); FogAPI.Preloader.Start(); } public function textUpdate():void{ t_score.text = String(_score); t_money.text = (String(_money) + "$"); t_cap.text = ((String(_pizzas) + "/") + String(_cap)); FogAPI.Scores.Update(_score); cardamage.x = (434 + ((503 - 434) * (_player.hp / _player.maxhp))); } private function endGame():void{ var _local1:Number; _local1 = 0; while (_local1 < _npccars.length) { npc_layer.removeChild(_npccars[_local1]); _local1++; }; _npccars = new Array(); _local1 = 0; while (_local1 < _npchumans.length) { npc_layer.removeChild(_npchumans[_local1]); _local1++; }; _npchumans = new Array(); if (_paused){ pizz_layer.removeChild(_pausemc); }; p_layer.removeChild(_player); g_layer.removeChild(_vshop); pizz_layer.removeChild(_pizzeria); } function scored_btnCLICKED(_arg1:MouseEvent){ FogAPI.Scores.Publish(); } function frame2(){ startbutton.addEventListener(MouseEvent.CLICK, startClicked); morebutton.addEventListener(MouseEvent.CLICK, moregamesClicked); freegamesbutton.addEventListener(MouseEvent.CLICK, freegamesClicked); mini_logo.addEventListener(MouseEvent.CLICK, moregamesClicked); stop(); } private function inWhichSector(_arg1:DisplayObject){ var _local5:Rectangle; var _local6:Rectangle; var _local7:Rectangle; var _local2:Rectangle = _arg1.getBounds(this); var _local3:Rectangle = visibility.getBounds(this); var _local4:Number = 0; while (_local4 < _sectors.length) { _local5 = _sectormcs[_local4].getBounds(this); _local6 = _sectormcs[(_local4 + _sectors.length)].getBounds(this); _local7 = _sectormcs[(_local4 + (2 * _sectors.length))].getBounds(this); _local5.top = Math.min(Math.min(_local5.top, _local6.top), _local7.top); _local5.left = Math.min(Math.min(_local5.left, _local6.left), _local7.left); _local5.bottom = Math.max(Math.max(_local5.bottom, _local6.bottom), _local7.bottom); _local5.right = Math.max(Math.max(_local5.right, _local6.right), _local7.right); if ((((((_local2.right < _local5.left)) || ((_local5.right < _local2.left)))) || ((((_local2.bottom < _local5.top)) || ((_local5.bottom < _local2.top)))))){ _sectors[_local4] = false; } else { _sectors[_local4] = true; }; if ((((((_local3.right < _local5.left)) || ((_local5.right < _local3.left)))) || ((((_local3.bottom < _local5.top)) || ((_local5.bottom < _local3.top)))))){ _sectormcs[_local4].visible = false; _sectormcs[(_local4 + _sectors.length)].visible = false; } else { _sectormcs[_local4].visible = true; _sectormcs[(_local4 + _sectors.length)].visible = true; }; _local4++; }; } private function backgroundUpdate(_arg1:Point){ var _local2:Number; bg_s11.x = (bg_s11.x - _arg1.x); bg_s11.y = (bg_s11.y - _arg1.y); bg_s12.x = (bg_s11.x + 1440); bg_s12.y = bg_s11.y; bg_s13.x = (bg_s11.x + 2880); bg_s13.y = bg_s11.y; bg_s21.x = bg_s11.x; bg_s21.y = (bg_s11.y + 1440); bg_s22.x = (bg_s11.x + 1440); bg_s22.y = (bg_s11.y + 1440); bg_s23.x = (bg_s11.x + 2880); bg_s23.y = (bg_s11.y + 1440); hit_s11.x = bg_s11.x; hit_s11.y = bg_s11.y; hit_s12.x = (bg_s11.x + 1440); hit_s12.y = bg_s11.y; hit_s13.x = (bg_s11.x + 2880); hit_s13.y = bg_s11.y; hit_s21.x = bg_s11.x; hit_s21.y = (bg_s11.y + 1440); hit_s22.x = (bg_s11.x + 1440); hit_s22.y = (bg_s11.y + 1440); hit_s23.x = (bg_s11.x + 2880); hit_s23.y = (bg_s11.y + 1440); over_s11.x = bg_s11.x; over_s11.y = bg_s11.y; over_s12.x = (bg_s11.x + 1440); over_s12.y = bg_s11.y; over_s13.x = (bg_s11.x + 2880); over_s13.y = bg_s11.y; over_s21.x = bg_s11.x; over_s21.y = (bg_s11.y + 1440); over_s22.x = (bg_s11.x + 1440); over_s22.y = (bg_s11.y + 1440); over_s23.x = (bg_s11.x + 2880); over_s23.y = (bg_s11.y + 1440); homeplace.x = (bg_s11.x + _hd.x); homeplace.y = (bg_s11.y + _hd.y); shopplace.x = (bg_s11.x + _sd.x); shopplace.y = (bg_s11.y + _sd.y); } public function freegamesClicked(_arg1:MouseEvent){ FogAPI.Tracking.Click("http://www.freegamesforyourwebsite.com"); } private function playAgain(_arg1:MouseEvent):void{ _gomc.b_again.removeEventListener(MouseEvent.CLICK, playAgain); _gomc.b_more.removeEventListener(MouseEvent.CLICK, moreClicked); _gomc.b_free.removeEventListener(MouseEvent.CLICK, freeClicked); pizz_layer.removeChild(_gomc); FogAPI.Storage.Set("money", 0); FogAPI.Storage.Set("Pscore", 0); FogAPI.Storage.Set("Pvehicle", 0); endGame(); gotoAndPlay("playagain"); } private function againClicked(_arg1:MouseEvent):void{ removePause(); _paused = false; endGame(); gotoAndPlay("playagain"); } public function returnToStreet(_arg1:Array):void{ _accepted = _arg1; createTargets(); t_cap.text = ((String(_pizzas) + "/") + String(_cap)); carControlEnable(); resumeSounds(); } private function updateNpcCars(_arg1:Point):void{ var _local2:Number; var _local3:Number; var _local4:*; if (_npccars.length == 0){ return; }; npccarpos = new Array(); for (_local4 in _npccars) { _local2 = _npccars[_local4].x; _local3 = _npccars[_local4].y; if ((((((((_local2 > 185)) && ((_local2 < 485)))) && ((_local3 > 125)))) && ((_local3 < 425)))){ npccarpos.push(_npccars[_local4]); _npccars[_local4].checkPlayer = true; } else { if (!_npccars[_local4].gridStopped){ if (_npccars[_local4].getStopped()){ _npccars[_local4].slowStart(); }; if (_npccars[_local4].isStopped()){ _npccars[_local4].startThis(1); }; }; _npccars[_local4].checkPlayer = false; }; if ((((((((_local2 > -670)) && ((_local2 < 1340)))) && ((_local3 > -550)))) && ((_local3 < 1100)))){ _intheGrid.push(_npccars[_local4]); } else { if (_npccars[_local4].isStopped()){ _npccars[_local4].startThis(1); }; if (_npccars[_local4].getStopped()){ _npccars[_local4].slowStart(); }; _npccars[_local4].gridStopped = false; }; _npccars[_local4].updateNpcCar(_arg1); }; } private function changePlayer(_arg1:Number):void{ var _local2:Number; var _local3:Number; var _local4:Number; _local2 = _player.x; _local3 = _player.y; _local4 = _player.rotation; p_layer.removeChild(_player); switch (_arg1){ case 0: _player = new playerBicycle(_local2, _local3, this); break; case 1: _player = new playerScooter(_local2, _local3, this); break; case 2: _player = new playerMotor(_local2, _local3, this); break; case 3: _player = new playerPorsche(_local2, _local3, this); break; case 4: _player = new playerCar(_local2, _local3, this); break; case 5: _player = new playerJeep(_local2, _local3, this); break; case 6: _player = new playerVan(_local2, _local3, this); break; }; _player.rotation = _local4; p_layer.addChild(_player); _cap = _player.capacity; _playerbynum = _arg1; FogAPI.Storage.Set("Pvehicle", _playerbynum); } private function mainMenu(_arg1:MouseEvent):void{ carControlDisable(); stopSounds(); endGame(); gotoAndStop("mainmenu"); } private function keyReleased(_arg1:KeyboardEvent){ if (!_paused){ switch (_arg1.keyCode){ case Keyboard.LEFT: _player.LeftTurnOff(); break; case Keyboard.UP: _player.ForwardOff(); break; case Keyboard.RIGHT: _player.RightTurnOff(); break; case Keyboard.DOWN: _player.ReverseOff(); break; case Keyboard.SPACE: _player.HandbrakeOff(); break; case 80: stage.removeEventListener(KeyboardEvent.KEY_DOWN, keyPressed); removeEventListener(Event.ENTER_FRAME, gameLoop); doPause(); _paused = true; break; default: break; }; } else { switch (_arg1.keyCode){ case 80: stage.addEventListener(KeyboardEvent.KEY_DOWN, keyPressed); addEventListener(Event.ENTER_FRAME, gameLoop); removePause(); _paused = false; break; default: break; }; }; } private function gameLoop(_arg1:Event):void{ if (_player.hp == 0){ gameOver(); }; inWhichSector(_player); _dp = _player.Update(); backgroundUpdate(_dp); od.x = (bg_s11.x + 1010); od.y = (bg_s11.y + 400); updateTargets(od); _intheGrid = new Array(); updateNpcCars(od); updateNpcHumans(od); checkCollision(); minimapUpdate(); textUpdate(); } private function carControlDisable():void{ stage.removeEventListener(KeyboardEvent.KEY_DOWN, keyPressed); stage.removeEventListener(KeyboardEvent.KEY_UP, keyReleased); removeEventListener(Event.ENTER_FRAME, gameLoop); b_pause.removeEventListener(MouseEvent.CLICK, pauseGame); b_menu.removeEventListener(MouseEvent.CLICK, mainMenu); } private function keyPressed(_arg1:KeyboardEvent){ switch (_arg1.keyCode){ case Keyboard.LEFT: _player.LeftTurnOn(); break; case Keyboard.UP: _player.ForwardOn(); break; case Keyboard.RIGHT: _player.RightTurnOn(); break; case Keyboard.DOWN: _player.ReverseOn(); break; case Keyboard.SPACE: _player.HandbrakeOn(); break; default: break; }; } private function carControlEnable():void{ stage.addEventListener(KeyboardEvent.KEY_DOWN, keyPressed); stage.addEventListener(KeyboardEvent.KEY_UP, keyReleased); addEventListener(Event.ENTER_FRAME, gameLoop); b_pause.addEventListener(MouseEvent.CLICK, pauseGame); b_menu.addEventListener(MouseEvent.CLICK, mainMenu); } private function minimapUpdate():void{ mini_player.x = (532 + (((980 - bg_s11.x) / 4140) * 134)); mini_player.y = (4 + (((900 - bg_s11.y) / 2680) * 88)); } private function resumeSounds():void{ _ambientSound.loopPlay(); _player.carSound.loopPlay(); } private function deleteTargets():void{ var _local1:Number; _local1 = 0; while (_local1 < _accepted.length) { mt_layer.removeChild(_minitargets[_local1].mt); t_layer.removeChild(_targets[_local1]); _local1++; }; } private function mcDistance(_arg1:MovieClip, _arg2:MovieClip):Number{ return (Math.sqrt((Math.pow((_arg2.x - _arg1.x), 2) + Math.pow((_arg2.y - _arg1.y), 2)))); } private function gameOver():void{ carControlDisable(); stopSounds(); _gomc = new gameOverMC(); pizz_layer.addChild(_gomc); _gomc.b_again.addEventListener(MouseEvent.CLICK, playAgain); _gomc.b_more.addEventListener(MouseEvent.CLICK, moreClicked); _gomc.b_free.addEventListener(MouseEvent.CLICK, freeClicked); _gomc.scored_btn.addEventListener(MouseEvent.CLICK, scored_btnCLICKED); if (FogAPI.Connect.Linked){ _gomc.scored_btn.visible = false; }; } private function stopSounds():void{ _ambientSound.stopPlay(); _player.carSound.stopPlay(); if (_player.crashSound.isPlaying()){ _player.crashSound.stopPlay(); }; } public function moregamesClicked(_arg1:MouseEvent){ FogAPI.Tracking.Click(); } } }//package
Section 70
//van_sound (van_sound) package { import flash.media.*; public dynamic class van_sound extends Sound { } }//package
Section 71
//vehicleShop (vehicleShop) package { import flash.display.*; import flash.events.*; import fl.transitions.*; import fl.transitions.easing.*; import flash.text.*; import flash.ui.*; public class vehicleShop extends MovieClip { public var p_car:TextField; private var _repaircost:Number; private var _playername:String; public var p_jeep:TextField; private var _main:Object; public var porsche:MovieClip; public var van:MovieClip; public var jeep:MovieClip; public var p_scooter:TextField; private var _speeds:Array; private var _playervehicle:Number; private var _vehicles:Array; private var _caps:Array; private var _names:Array; private var _vmcs:Array; private var _tw1:Tween; public var p_bike:TextField; public var p_porsche:TextField; public var p_van:TextField; public var car:MovieClip; public var bike:MovieClip; public var b_exit:SimpleButton; public var p_motor:TextField; private var _prices:Array; public var scooter:MovieClip; public var motor:MovieClip; public var t_vname:TextField; private var _actvehicle:Number; private var _service:MovieClip; public function vehicleShop(_arg1:Object){ this.x = 298; this.y = 0; _main = _arg1; _vmcs = new Array(bike, scooter, motor, porsche, car, jeep, van, p_bike, p_scooter, p_motor, p_porsche, p_car, p_jeep, p_van); _vehicles = new Array(-1, 0, 0, 0, 0, 0, 0); _prices = new Array(0, 60, 200, 800, 1200, 3000, 6000); _names = new Array("Bicycle", "Scooter", "Motor", "Old car", "Car", "Jeep", "Van"); _caps = new Array(2, 2, 3, 4, 4, 6, 8); _speeds = new Array(20, 40, 60, 60, 80, 90, 80); _service = new serviceMC(); _actvehicle = 0; if (_main.FogAPI.Storage.Get("Pvehicle")){ _playervehicle = _main.FogAPI.Storage.Get("Pvehicle"); } else { _playervehicle = 0; }; } public function enterToShop():void{ _tw1 = new Tween(this, "y", Regular.easeOut, 0, 93, 1, true); _tw1.addEventListener(TweenEvent.MOTION_FINISH, enteredInShop); _tw1.start(); } private function prevVehicle():void{ _actvehicle = ((_actvehicle + 1) % _vehicles.length); displayUpdate(); } private function enteredInShop(_arg1:TweenEvent):void{ var _local2:Number; trace((("This is the Actvehicle" + " ") + _actvehicle)); trace((("This is the PlayerVehicle" + " ") + _playervehicle)); _tw1.removeEventListener(TweenEvent.MOTION_FINISH, enteredInShop); _actvehicle = _playervehicle; _local2 = 0; while (_local2 < _vehicles.length) { if (_vehicles[_local2] > -1){ if (_main._money >= _prices[_local2]){ _vehicles[_local2] = 1; } else { _vehicles[_local2] = 0; }; }; _local2++; }; displayUpdate(); if (_main._player.hp < _main._player.maxhp){ _repaircost = Math.ceil((((1 - (_main._player.hp / _main._player.maxhp)) * 100) / _main._player._dmgmult)); _service.costs.text = (("It costs " + String(_repaircost)) + "$."); _main.pizz_layer.addChild(_service); _service.x = 136; _service.y = 180; serviceControlEnable(); } else { vshopControlEnable(); }; trace((("This is the Actvehicle after entered shop" + " ") + _actvehicle)); trace((("This is the PlayerVehicle after entered shop" + " ") + _playervehicle)); } private function serviceControlEnable():void{ _service.b_yes.addEventListener(MouseEvent.CLICK, yesClicked); _service.b_no.addEventListener(MouseEvent.CLICK, noClicked); } private function exitedFromShop(_arg1:TweenEvent):void{ _tw1.removeEventListener(TweenEvent.MOTION_FINISH, exitedFromShop); vshopControlDisable(); t_vname.text = _playername; _main.returnFromShop(_playervehicle); } private function displayUpdate():void{ var _local1:Number; _local1 = 0; while (_local1 < _vehicles.length) { if (_vehicles[_local1] == -1){ _vmcs[(_local1 + _vehicles.length)].visible = false; _vmcs[_local1].gotoAndStop(2); } else { _vmcs[(_local1 + _vehicles.length)].visible = true; _vmcs[_local1].gotoAndStop((1 + _vehicles[_local1])); }; _local1++; }; if (_vehicles[_actvehicle] == 0){ _vmcs[_actvehicle].gotoAndStop(3); } else { _vmcs[_actvehicle].gotoAndStop(4); t_vname.text = (((((_names[_actvehicle] + " Cap: ") + _caps[_actvehicle]) + " Speed: ") + _speeds[_actvehicle]) + "mph"); }; } private function vshopControlEnable():void{ stage.addEventListener(KeyboardEvent.KEY_UP, keyReleasedShop); b_exit.addEventListener(MouseEvent.CLICK, mouseExit); } private function noClicked(_arg1:MouseEvent):void{ serviceControlDisable(); vshopControlEnable(); } private function nextVehicle():void{ _actvehicle--; if (_actvehicle < 0){ _actvehicle = (_actvehicle + _vehicles.length); }; displayUpdate(); } public function setCarName(_arg1:String):void{ _playername = _arg1; t_vname.text = _playername; } private function buyVehicle():void{ if ((((((_vehicles[_actvehicle] > 0)) && ((_main._money >= _prices[_actvehicle])))) || ((_vehicles[_actvehicle] == -1)))){ if (_vehicles[_actvehicle] > 0){ _main._money = (_main._money - _prices[_actvehicle]); }; _vehicles[_actvehicle] = -1; _playervehicle = _actvehicle; }; _main.FogAPI.Storage.Set("money", _main._money); _main.textUpdate(); displayUpdate(); } private function vshopControlDisable():void{ stage.removeEventListener(KeyboardEvent.KEY_UP, keyReleasedShop); b_exit.removeEventListener(MouseEvent.CLICK, mouseExit); } private function keyReleasedShop(_arg1:KeyboardEvent){ switch (_arg1.keyCode){ case Keyboard.LEFT: prevVehicle(); break; case Keyboard.RIGHT: nextVehicle(); break; case Keyboard.ENTER: buyVehicle(); break; case Keyboard.ESCAPE: exitFrom(); break; default: break; }; } private function serviceControlDisable():void{ _main.pizz_layer.removeChild(_service); _service.b_yes.removeEventListener(MouseEvent.CLICK, yesClicked); _service.b_no.removeEventListener(MouseEvent.CLICK, noClicked); } private function mouseExit(_arg1:MouseEvent):void{ exitFrom(); } private function exitFrom():void{ _tw1 = new Tween(this, "y", Regular.easeIn, 93, 0, 1, true); _tw1.addEventListener(TweenEvent.MOTION_FINISH, exitedFromShop); _tw1.start(); } private function yesClicked(_arg1:MouseEvent):void{ _main._money = (_main._money - _repaircost); _main._player.hp = _main._player.maxhp; _main._player._damage = 100; _main.textUpdate(); serviceControlDisable(); vshopControlEnable(); } } }//package
Section 72
//VoiceOver (VoiceOver) package { import flash.media.*; public dynamic class VoiceOver extends Sound { } }//package

Library Items

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

Instance Names

"startbutton"Frame 2Symbol 2046 Button
"morebutton"Frame 2Symbol 923 Button
"freegamesbutton"Frame 2Symbol 930 Button
"mini_logo"Frame 2Symbol 2088 MovieClip
"bg_s11"Frame 4Symbol 2112 MovieClip
"bg_s12"Frame 4Symbol 2121 MovieClip
"bg_s13"Frame 4Symbol 2123 MovieClip
"bg_s21"Frame 4Symbol 2126 MovieClip
"bg_s23"Frame 4Symbol 2128 MovieClip
"bg_s22"Frame 4Symbol 2132 MovieClip
"hit_s11"Frame 4Symbol 2134 MovieClip
"hit_s12"Frame 4Symbol 2136 MovieClip
"hit_s13"Frame 4Symbol 2138 MovieClip
"hit_s21"Frame 4Symbol 2140 MovieClip
"hit_s22"Frame 4Symbol 2142 MovieClip
"hit_s23"Frame 4Symbol 2144 MovieClip
"homeplace"Frame 4Symbol 2146 MovieClip
"shopplace"Frame 4Symbol 2147 MovieClip
"t_layer"Frame 4Symbol 1782 MovieClip
"npc_layer"Frame 4Symbol 1782 MovieClip
"visibility"Frame 4Symbol 2149 Button
"p_layer"Frame 4Symbol 1782 MovieClip
"over_s13"Frame 4Symbol 2225 MovieClip
"over_s12"Frame 4Symbol 2249 MovieClip
"over_s11"Frame 4Symbol 2275 MovieClip
"over_s23"Frame 4Symbol 2281 MovieClip
"over_s22"Frame 4Symbol 2296 MovieClip
"over_s21"Frame 4Symbol 2321 MovieClip
"cardamage"Frame 4Symbol 2322 MovieClip
"startbutton"Frame 4Symbol 2046 Button
"morebutton"Frame 4Symbol 923 Button
"freegamesbutton"Frame 4Symbol 930 Button
"mini_logo"Frame 4Symbol 2088 MovieClip
"b_pause"Frame 4Symbol 2332 Button
"b_menu"Frame 4Symbol 2341 Button
"g_layer"Frame 4Symbol 1782 MovieClip
"t_score"Frame 4Symbol 2348 EditableText
"t_money"Frame 4Symbol 2349 EditableText
"t_cap"Frame 4Symbol 2350 EditableText
"mt_layer"Frame 4Symbol 1782 MovieClip
"mini_player"Frame 4Symbol 2353 MovieClip
"delivered"Frame 4Symbol 2361 MovieClip {pizza_fla.delivered_31}
"pizz_layer"Frame 4Symbol 1782 MovieClip
"hitobject"Symbol 181 MovieClip {man2} Frame 1Symbol 15 MovieClip
"prevhitobj"Symbol 181 MovieClip {man2} Frame 1Symbol 17 MovieClip
"hitobject"Symbol 347 MovieClip {man5} Frame 1Symbol 15 MovieClip
"prevhitobj"Symbol 347 MovieClip {man5} Frame 1Symbol 17 MovieClip
"hitobject"Symbol 513 MovieClip {man1} Frame 1Symbol 15 MovieClip
"prevhitobj"Symbol 513 MovieClip {man1} Frame 1Symbol 17 MovieClip
"hitobject"Symbol 679 MovieClip {man4} Frame 1Symbol 15 MovieClip
"prevhitobj"Symbol 679 MovieClip {man4} Frame 1Symbol 17 MovieClip
"hitobject"Symbol 845 MovieClip {man3} Frame 1Symbol 15 MovieClip
"prevhitobj"Symbol 845 MovieClip {man3} Frame 1Symbol 17 MovieClip
"hitobject"Symbol 852 MovieClip {car07} Frame 1Symbol 849 MovieClip
"prevhitobj"Symbol 852 MovieClip {car07} Frame 1Symbol 851 MovieClip
"hitobject"Symbol 857 MovieClip {car03} Frame 1Symbol 856 MovieClip
"prevhitobj"Symbol 857 MovieClip {car03} Frame 1Symbol 851 MovieClip
"hitobject"Symbol 862 MovieClip {car05} Frame 1Symbol 861 MovieClip
"prevhitobj"Symbol 862 MovieClip {car05} Frame 1Symbol 851 MovieClip
"hitobject"Symbol 867 MovieClip {car02} Frame 1Symbol 866 MovieClip
"prevhitobj"Symbol 867 MovieClip {car02} Frame 1Symbol 851 MovieClip
"hitobject"Symbol 872 MovieClip {car01} Frame 1Symbol 871 MovieClip
"prevhitobj"Symbol 872 MovieClip {car01} Frame 1Symbol 851 MovieClip
"hitobject"Symbol 877 MovieClip {car08} Frame 1Symbol 876 MovieClip
"prevhitobj"Symbol 877 MovieClip {car08} Frame 1Symbol 851 MovieClip
"hitobject"Symbol 882 MovieClip {car04} Frame 1Symbol 881 MovieClip
"prevhitobj"Symbol 882 MovieClip {car04} Frame 1Symbol 851 MovieClip
"hitobject"Symbol 887 MovieClip {car06} Frame 1Symbol 886 MovieClip
"prevhitobj"Symbol 887 MovieClip {car06} Frame 1Symbol 851 MovieClip
"b_yes"Symbol 907 MovieClip {serviceMC} Frame 1Symbol 896 Button
"b_no"Symbol 907 MovieClip {serviceMC} Frame 1Symbol 903 Button
"costs"Symbol 907 MovieClip {serviceMC} Frame 1Symbol 906 EditableText
"b_again"Symbol 936 MovieClip {gameOverMC} Frame 1Symbol 916 Button
"b_more"Symbol 936 MovieClip {gameOverMC} Frame 1Symbol 923 Button
"b_free"Symbol 936 MovieClip {gameOverMC} Frame 1Symbol 930 Button
"scored_btn"Symbol 936 MovieClip {gameOverMC} Frame 1Symbol 935 Button
"car"Symbol 1028 MovieClip {playerPorsche} Frame 1Symbol 1021 MovieClip
"hitobject"Symbol 1028 MovieClip {playerPorsche} Frame 1Symbol 1023 MovieClip
"smokefx"Symbol 1028 MovieClip {playerPorsche} Frame 1Symbol 1027 MovieClip {pizza_fla.fust_car_39}
"b_more"Symbol 1041 MovieClip {pauseMC} Frame 1Symbol 923 Button
"b_free"Symbol 1041 MovieClip {pauseMC} Frame 1Symbol 930 Button
"b_again"Symbol 1041 MovieClip {pauseMC} Frame 1Symbol 916 Button
"b_resume"Symbol 1041 MovieClip {pauseMC} Frame 1Symbol 1040 Button
"car"Symbol 1210 MovieClip {playerMotor} Frame 1Symbol 1206 MovieClip
"hitobject"Symbol 1210 MovieClip {playerMotor} Frame 1Symbol 1208 MovieClip
"smokefx"Symbol 1210 MovieClip {playerMotor} Frame 1Symbol 1209 MovieClip {pizza_fla.fust_motor_44}
"car"Symbol 1298 MovieClip Frame 1Symbol 1295 MovieClip {playerCar}
"hitobject"Symbol 1298 MovieClip Frame 1Symbol 1297 MovieClip
"smokefx"Symbol 1298 MovieClip Frame 1Symbol 1027 MovieClip {pizza_fla.fust_car_39}
"car"Symbol 1386 MovieClip {playerJeep} Frame 1Symbol 1383 MovieClip
"hitobject"Symbol 1386 MovieClip {playerJeep} Frame 1Symbol 1385 MovieClip
"smokefx"Symbol 1386 MovieClip {playerJeep} Frame 1Symbol 1027 MovieClip {pizza_fla.fust_car_39}
"t_vname"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1391 EditableText
"p_van"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1392 EditableText
"p_jeep"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1393 EditableText
"p_car"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1394 EditableText
"p_porsche"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1395 EditableText
"p_motor"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1396 EditableText
"p_scooter"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1397 EditableText
"p_bike"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1398 EditableText
"van"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1406 MovieClip
"jeep"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1414 MovieClip
"car"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1422 MovieClip
"porsche"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1430 MovieClip
"motor"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1438 MovieClip
"scooter"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1446 MovieClip
"bike"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1452 MovieClip
"b_exit"Symbol 1456 MovieClip {vehicleShop} Frame 1Symbol 1454 Button
"procent"Symbol 1508 MovieClip {PreloaderClip} Frame 1Symbol 1504 EditableText
"ProgBar"Symbol 1508 MovieClip {PreloaderClip} Frame 1Symbol 1506 Button {PreloaderBar}
"hitobject"Symbol 1739 MovieClip {playerBicycle} Frame 1Symbol 1518 MovieClip
"pizzatype"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1752 EditableText
"address"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1753 EditableText
"tipamount"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1754 EditableText
"timelimit"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1755 EditableText
"b_accept"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1762 Button
"b_exit"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1766 Button
"capacity"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1767 EditableText
"pizzasincar"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1768 EditableText
"b_decline"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1773 Button
"b_prev"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1780 Button
"b_next"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1780 Button
"eddietext"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1781 EditableText
"minimap_layer"Symbol 1783 MovieClip {bigEddie} Frame 1Symbol 1782 MovieClip
"car"Symbol 1951 MovieClip {playerScooter} Frame 1Symbol 1948 MovieClip {pizza_fla.p_scooter_42}
"hitobject"Symbol 1951 MovieClip {playerScooter} Frame 1Symbol 1950 MovieClip
"smokefx"Symbol 1951 MovieClip {playerScooter} Frame 1Symbol 1209 MovieClip {pizza_fla.fust_motor_44}
"car"Symbol 2039 MovieClip {playerVan} Frame 1Symbol 2036 MovieClip {pizza_fla.p_van_37}
"hitobject"Symbol 2039 MovieClip {playerVan} Frame 1Symbol 2038 MovieClip
"smokefx"Symbol 2039 MovieClip {playerVan} Frame 1Symbol 1027 MovieClip {pizza_fla.fust_car_39}
"money"Symbol 2360 MovieClip Frame 1Symbol 2359 EditableText
"mtext"Symbol 2361 MovieClip {pizza_fla.delivered_31} Frame 1Symbol 2360 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS3.

Labels

"mainmenu"Frame 2
"playagain"Frame 3
"playgame"Frame 4
"walk"Symbol 181 MovieClip {man2} Frame 1
"stand"Symbol 181 MovieClip {man2} Frame 6
"crash"Symbol 181 MovieClip {man2} Frame 22
"standup"Symbol 181 MovieClip {man2} Frame 46
"splash"Symbol 181 MovieClip {man2} Frame 83
"walk"Symbol 347 MovieClip {man5} Frame 1
"stand"Symbol 347 MovieClip {man5} Frame 6
"crash"Symbol 347 MovieClip {man5} Frame 22
"standup"Symbol 347 MovieClip {man5} Frame 46
"splash"Symbol 347 MovieClip {man5} Frame 83
"walk"Symbol 513 MovieClip {man1} Frame 1
"stand"Symbol 513 MovieClip {man1} Frame 6
"crash"Symbol 513 MovieClip {man1} Frame 22
"standup"Symbol 513 MovieClip {man1} Frame 46
"splash"Symbol 513 MovieClip {man1} Frame 83
"walk"Symbol 679 MovieClip {man4} Frame 1
"stand"Symbol 679 MovieClip {man4} Frame 6
"crash"Symbol 679 MovieClip {man4} Frame 22
"standup"Symbol 679 MovieClip {man4} Frame 46
"splash"Symbol 679 MovieClip {man4} Frame 83
"walk"Symbol 845 MovieClip {man3} Frame 1
"stand"Symbol 845 MovieClip {man3} Frame 6
"crash"Symbol 845 MovieClip {man3} Frame 22
"standup"Symbol 845 MovieClip {man3} Frame 46
"splash"Symbol 845 MovieClip {man3} Frame 83
"stand"Symbol 1021 MovieClip Frame 1
"turnleft"Symbol 1021 MovieClip Frame 2
"turnright"Symbol 1021 MovieClip Frame 12
"standc1"Symbol 1021 MovieClip Frame 22
"turnleftc1"Symbol 1021 MovieClip Frame 23
"turnrightc1"Symbol 1021 MovieClip Frame 33
"stand"Symbol 1206 MovieClip Frame 1
"turnleft"Symbol 1206 MovieClip Frame 2
"turnright"Symbol 1206 MovieClip Frame 17
"crash"Symbol 1206 MovieClip Frame 32
"stand"Symbol 1295 MovieClip {playerCar} Frame 1
"turnleft"Symbol 1295 MovieClip {playerCar} Frame 2
"turnright"Symbol 1295 MovieClip {playerCar} Frame 12
"standc1"Symbol 1295 MovieClip {playerCar} Frame 22
"turnleftc1"Symbol 1295 MovieClip {playerCar} Frame 23
"turnrightc1"Symbol 1295 MovieClip {playerCar} Frame 33
"stand"Symbol 1383 MovieClip Frame 1
"turnleft"Symbol 1383 MovieClip Frame 2
"turnright"Symbol 1383 MovieClip Frame 12
"standc1"Symbol 1383 MovieClip Frame 22
"turnleftc1"Symbol 1383 MovieClip Frame 23
"turnrightc1"Symbol 1383 MovieClip Frame 33
"stand"Symbol 1739 MovieClip {playerBicycle} Frame 1
"turnleft"Symbol 1739 MovieClip {playerBicycle} Frame 2
"turnright"Symbol 1739 MovieClip {playerBicycle} Frame 17
"crash"Symbol 1739 MovieClip {playerBicycle} Frame 32
"forward"Symbol 1739 MovieClip {playerBicycle} Frame 83
"stand"Symbol 1948 MovieClip {pizza_fla.p_scooter_42} Frame 1
"turnleft"Symbol 1948 MovieClip {pizza_fla.p_scooter_42} Frame 2
"turnright"Symbol 1948 MovieClip {pizza_fla.p_scooter_42} Frame 17
"crash"Symbol 1948 MovieClip {pizza_fla.p_scooter_42} Frame 32
"stand"Symbol 2036 MovieClip {pizza_fla.p_van_37} Frame 1
"turnleft"Symbol 2036 MovieClip {pizza_fla.p_van_37} Frame 2
"turnright"Symbol 2036 MovieClip {pizza_fla.p_van_37} Frame 12
"standc1"Symbol 2036 MovieClip {pizza_fla.p_van_37} Frame 22
"turnleftc1"Symbol 2036 MovieClip {pizza_fla.p_van_37} Frame 23
"turnrightc1"Symbol 2036 MovieClip {pizza_fla.p_van_37} Frame 33




http://swfchan.com/22/108576/info.shtml
Created: 10/8 -2019 11:33:22 Last modified: 10/8 -2019 11:33:22 Server time: 19/04 -2024 10:49:36