Frame 1
stop();
trace("loading");
_global.SCALE = 2;
var randInterface = ("loadInterface" + Math.floor(Math.random() * 2));
this.attachMovie(randInterface, "loadInterface", 0, {filename:"resources"});
this.loadInterface._xscale = (this.loadInterface._yscale = SCALE * 100);
var total = this.getBytesTotal();
this.onEnterFrame = function () {
var _local2 = this.getBytesLoaded();
this.loadInterface.fill_mc._xscale = (_local2 * 100) / total;
if (_local2 == total) {
this.loadInterface.removeMovieClip();
this.play();
delete randInterface;
delete total;
this.onEnterFrame = function () {
};
}
};
Frame 3
stop();
if (!ZigoEngine) {
com.mosesSupposes.fuse.ZigoEngine.simpleSetup(com.mosesSupposes.fuse.Shortcuts, com.mosesSupposes.fuse.PennerEasing);
}
this._quality = "LOW";
_global.nextDepth = function (this_mc) {
this_mc = (this_mc ? (this_mc) : _root);
var _local4 = 1;
var _local5 = 1048676 /* 0x100064 */;
for (var _local6 in this_mc) {
var _local2 = this_mc[_local6].getDepth();
if ((_local2 < _local5) && (_local2 >= _local4)) {
_local4 = _local2 + 1;
}
}
return(_local4);
};
makeLoopManager = function () {
var _this = new Object();
_this.loopSets = new Object();
_this.loop = function () {
for (var _local3 in _this.loopSets) {
var _local2 = _this.loopSets[_local3];
var _local1 = 0;
while (_local1 < _local2.length) {
if (!_local2[_local1].isPaused) {
_local2[_local1].loop();
}
_local1++;
}
}
};
_this.loopInterval = setInterval(_this.loop, 33.3333333333333);
_this.addObject = function (newObject, setName) {
if (_this.loopSets[setName] == undefined) {
_this.loopSets[setName] = new Array();
}
var _local2 = _this.loopSets[setName];
var _local3 = false;
var _local1 = 0;
while (_local1 < _local2.length) {
if (_local2[_local1] == newObject) {
_local3 = true;
}
_local1++;
}
if (!_local3) {
_local2.push(newObject);
}
};
_this.removeObject = function (findObject, setName) {
var _local2 = _this.loopSets[setName];
var _local1 = 0;
while (_local1 < _local2.length) {
if (_local2[_local1] == findObject) {
_local2.splice(_local1, 1);
}
_local1++;
}
};
_this.removeSet = function (setName) {
delete _this.loopSets[setName];
};
_this.pauseSet = function (setName, pauseValue) {
var _local1 = _this.loopSets[setName];
for (var _local2 in _local1) {
_local1[_local2].isPaused = pauseValue;
}
};
_this.pauseObject = function (myObject, pauseValue) {
myObject.isPaused = pauseValue;
};
return(_this);
};
_global.LOOP = makeLoopManager();
makeStreamingMusic = function (target_mc, newName, newDepth) {
target_mc = ((target_mc != undefined) ? (target_mc) : this);
newName = ((newName != undefined) ? (newName) : "musicSystem_mc");
_global.nextDepth = function (this_mc) {
this_mc = (this_mc ? (this_mc) : _root);
var _local4 = 1;
var _local5 = 1048676 /* 0x100064 */;
for (var _local6 in this_mc) {
var _local2 = this_mc[_local6].getDepth();
if ((_local2 < _local5) && (_local2 >= _local4)) {
_local4 = _local2 + 1;
}
}
return(_local4);
};
newDepth = (newDepth ? (newDepth) : (nextDepth(target_mc)));
var _this = target_mc.createEmptyMovieClip(newName, newDepth);
_this.music = new Sound();
_this.volume = 100;
_this.isPlaying = false;
_this.songName = "";
_this.play = function (songName) {
if (_this.songName != songName) {
_this.music.loadSound(songName, true);
_this.songName = songName;
_this.isPlaying = false;
}
if (_this.isPlaying == false) {
_this.music.start();
_this.volume = 100;
_this.music.setVolume(_this.volume);
_this.isPlaying = true;
}
};
_this.music.onSoundComplete = function () {
_this.music.start();
};
_this.stopMusic = function () {
_this.music.stop();
_this.isPlaying = false;
};
_this.setVolume = function (newVolume) {
_this.music.setVolume(newVolume);
};
_this.getVolume = function () {
return(_this.music.getVolume());
};
_this.stop = _this.stopMusic;
_this.fadeOut = function (seconds) {
if ((_this.volume > 0) && (_this.fade == undefined)) {
var _local2 = _this.music.getVolume();
_this.fade = new mx.transitions.Tween(_this, "volume", null, _local2, 0, seconds, true);
_this.fade.onMotionChanged = function () {
_this.music.setVolume(this.position);
};
_this.fade.onMotionFinished = function () {
delete _this.fade;
_this.stopMusic();
};
}
};
return(_this);
};
_global.MUSIC = makeStreamingMusic(this, "music_mc", 42);
_global.placeSprite = function (spriteProg_mc, charset, pose, dir, anim, name, spriteLayer) {
function makeSprite(target, newCharset, newName, depth, spriteWidth, spriteHeight, maxAnimFrames, maxDirections, maxPoseColumns, maxPoseRows, newAnimSpeed) {
newName = (newName ? (newName) : (String("sprite_" + Math.round(Math.random() * 99999))));
depth = (depth ? (depth) : 1);
spriteWidth = (spriteWidth ? (spriteWidth) : 24);
spriteHeight = (spriteHeight ? (spriteHeight) : 32);
maxAnimFrames = (maxAnimFrames ? (maxAnimFrames) : 3);
maxDirections = (maxDirections ? (maxDirections) : 4);
maxPoseColumns = (maxPoseColumns ? (maxPoseColumns) : 4);
maxPoseRows = (maxPoseRows ? (maxPoseRows) : 2);
newAnimSpeed = (newAnimSpeed ? (newAnimSpeed) : 3);
var _this = target.createEmptyMovieClip(newName, depth);
_this.createEmptyMovieClip("image_mc", 1);
_this.image_mc._x = (_this.image_mc._y = 9999);
_this.createEmptyMovieClip("mask_mc", 2);
_this.mask_mc.beginFill(0, 0);
_this.mask_mc.moveTo(0, 0);
_this.mask_mc.lineTo(16, 0);
_this.mask_mc.lineTo(16, 16);
_this.mask_mc.lineTo(0, 16);
_this.mask_mc.lineTo(0, 0);
_this.mask_mc.endFill();
_this.image_mc.setMask(_this.mask_mc);
_this.setDirection = function (newDirection) {
if (isNaN(newDirection)) {
switch (newDirection) {
case "up" :
newDirection = 0;
break;
case "right" :
newDirection = 1;
break;
case "down" :
newDirection = 2;
break;
case "left" :
newDirection = 3;
}
}
_this.direction = newDirection;
};
_this.setPose = function (newPose, newAnimYoyo) {
_this.pose = newPose;
_this.animYoyo = (newAnimYoyo ? (newAnimYoyo) : (_this.animYoyo));
};
_this.setAnim = function (isAnimating) {
if (((_this.anim == true) && (isAnimating == false)) && (_this.maxAnimFrames > 1)) {
_this.animFrame = 1;
}
_this.anim = isAnimating;
};
_this.setSpeed = function (newSpeed) {
newSpeed = Math.floor(newSpeed);
if ((newSpeed <= 0) || (newSpeed == undefined)) {
newSpeed = 1;
}
_this.animSpeed = newSpeed;
};
_this.setFrame = function (newFrame) {
_this.animFrame = newFrame;
};
_this.setCharset = function (newCharset) {
_this.charset = newCharset;
_this.setupCharset();
};
_this.setAll = function (charset, pose, direction, anim, frame, speed) {
if (charset != undefined) {
_this.setCharset(charset);
}
if (pose != undefined) {
_this.setPose(pose);
}
if (direction != undefined) {
_this.setDirection(direction);
}
if (anim != undefined) {
_this.setAnim(anim);
}
if (frame != undefined) {
_this.setFrame(frame);
}
if (speed != undefined) {
_this.setSpeed(speed);
}
};
_this.updateDirection = function () {
_this.direction = _this.direction % _this.maxDirections;
_this.y = _this.y - (_this.direction * _this.spriteHeight);
};
_this.updatePose = function () {
var _local4 = _this.maxPoseColumns * _this.maxPoseRows;
_this.pose = _this.pose % _local4;
var _local5 = _this.pose % _this.maxPoseColumns;
var _local3 = _this.spriteWidth * _this.maxAnimFrames;
var _local2 = Math.floor(_this.pose / _this.maxPoseColumns);
var _local1 = _this.spriteHeight * _this.maxDirections;
_this.x = _this.x - (_local5 * _local3);
_this.y = _this.y - (_local2 * _local1);
};
_this.updateAnimation = function () {
if (_this.animYoyo) {
if (_this.animFrame >= (_this.maxAnimFrames - 1)) {
_this.animDirection = -1;
} else if (_this.animFrame <= 0) {
_this.animDirection = 1;
}
} else {
_this.animFrame = _this.animFrame % _this.maxAnimFrames;
_this.animDirection = 1;
}
_this.x = _this.x - (_this.animFrame * _this.spriteWidth);
if (_this.anim) {
_this.animFrame = _this.animFrame + _this.animDirection;
}
};
_this.setupMask = function () {
_this.image_mc.setMask(_this.mask_mc);
_this.mask_mc._width = _this.spriteWidth;
_this.mask_mc._height = _this.spriteHeight;
_this.mask_mc._x = _this.imageOffsetX;
_this.mask_mc._y = _this.imageOffsetY;
};
_this.setupCharset = function () {
if (_this.charset != _this.oldCharset) {
_this.image_mc._x = (_this.image_mc._y = 9999);
var _local1 = flash.display.BitmapData.loadBitmap(_this.charset);
if (_local1.width > -1) {
_this.image_mc.attachBitmap(_local1, 0);
} else {
_this.loader = new MovieClipLoader();
_this.loader.loadClip(_this.charset, _this.image_mc);
_this.loader.onLoadError = function () {
_this.image_mc.removeMovieClip();
_this.attachMovie(_this.charset, "image_mc", 0);
_this.image_mc.setMask(_this.mask_mc);
delete _this.loader;
};
}
_this.oldCharset = _this.charset;
}
};
_this.lookAt = function (sprite1, sprite2) {
var _local2 = sprite2._x - sprite1._x;
var _local1 = sprite2._y - sprite1._y;
var _local3 = Math.sqrt((_local2 * _local2) + (_local1 * _local1));
var _local4 = _local2 / _local3;
var _local5 = _local1 / _local3;
if (Math.abs(_local5) > Math.abs(_local4)) {
if (_local5 < 0) {
_this.setDirection("up");
} else {
_this.setDirection("down");
}
} else if (_local4 < 0) {
_this.setDirection("left");
} else {
_this.setDirection("right");
}
};
_this.spriteWidth = (spriteWidth ? (spriteWidth) : 16);
_this.spriteHeight = (spriteHeight ? (spriteHeight) : 16);
_this.maxAnimFrames = (maxAnimFrames ? (maxAnimFrames) : 1);
_this.maxDirections = (maxDirections ? (maxDirections) : 1);
_this.maxPoseColumns = (maxPoseColumns ? (maxPoseColumns) : 1);
_this.maxPoseRows = (maxPoseRows ? (maxPoseRows) : 1);
_this.setCharset(newCharset);
_this.animDirection = 1;
_this.setSpeed(newAnimSpeed);
_this.x = 0;
_this.y = 0;
_this.imageOffsetX = -1 * (spriteWidth / 2);
_this.imageOffsetY = (-1 * (spriteHeight / 2)) - 8;
_this.animDelay = 0;
_this.direction = 0;
_this.pose = 0;
_this.anim = true;
_this.animYoyo = true;
if (maxAnimFrames > 1) {
_this.animFrame = 1;
} else {
_this.animFrame = 0;
}
_this.onEnterFrame = function () {
_this.setupCharset();
_this.setupMask();
if (_this.animDelay == 0) {
_this.x = 0;
_this.y = 0;
_this.updateDirection();
_this.updatePose();
_this.updateAnimation();
_this.image_mc._x = _this.x + _this.imageOffsetX;
_this.image_mc._y = _this.y + _this.imageOffsetY;
}
_this.animDelay++;
_this.animDelay = _this.animDelay % _this.animSpeed;
};
return(_this);
}
pose = ((pose != undefined) ? (pose) : 0);
dir = ((dir != undefined) ? (dir) : 2);
anim = ((anim != undefined) ? (anim) : false);
name = (name ? (name) : ("person_" + Math.floor(Math.random() * 999)));
spriteLayer = (spriteLayer ? (spriteLayer) : (SPRITES_MC));
while (spriteLayer[name]) {
name = "person_" + Math.floor(Math.random() * 999);
}
var _this = ((spriteProg_mc._this = spriteLayer.createEmptyMovieClip(name, nextDepth(spriteLayer))));
var _local5 = makeSprite(_this, charset, "image_mc");
_local5._x = 8;
_local5._y = 7;
_this._x = spriteProg_mc._x;
_this._y = spriteProg_mc._y;
_local5.setPose(pose);
_local5.setAnim(anim);
_local5.setDirection(dir);
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
spriteProg_mc.talkEvents = makeScriptSystem(_this);
spriteProg_mc.move = makeScriptSystem(_this);
};
_global.event_talk = function (eventSystem, message, sprite) {
sprite = (sprite ? (sprite) : (eventSystem.sprite));
var _local1 = BALLOONS_MC.setMessage(message, sprite);
_local1.onClose = function () {
eventSystem.nextEvent();
};
};
_global.event_message = function (eventSystem, message, position, faceImage, choices) {
var thisTextBox = TEXTBOX_MC.setMessage(message, position, faceImage, choices);
thisTextBox.onClose = function () {
eventSystem.choice = thisTextBox.choiceCursor_mc.selection;
eventSystem.nextEvent();
};
};
_global.event_wait = function (eventSystem, seconds) {
setTimeout(eventSystem.nextEvent, seconds * 1000);
};
_global.event_teleport = function (destMap, xDest, yDest) {
this.teleport = function () {
MAP_SELECT.resetSpriteLayer();
MAP_SELECT.gotoAndStop(destMap);
};
PLAYER_OBJ.x = xDest;
PLAYER_OBJ.y = yDest;
PLAYER_OBJ.charset = PLAYER_MC.image_mc.charset;
PLAYER_OBJ.pose = PLAYER_MC.image_mc.pose;
PLAYER_OBJ.direction = PLAYER_MC.image_mc.direction;
PLAYER_MC.removeMovieClip();
TRANSITION_MC.onTransitionDone = function () {
teleport();
};
TRANSITION_MC.fadeOut();
};
if (!com.mosesSupposes.fuse.ZigoEngine) {
com.mosesSupposes.fuse.ZigoEngine.simpleSetup(com.mosesSupposes.fuse.Shortcuts, com.mosesSupposes.fuse.PennerEasing);
}
_global.event_move = function (moveSystem, xDist, yDist, autoPose, speed, thisSprite) {
xDist = (xDist ? (xDist) : 0);
yDist = (yDist ? (yDist) : 0);
autoPose = ((autoPose != undefined) ? (autoPose) : true);
speed = (speed ? (speed) : 0.26);
thisSprite = (thisSprite ? (thisSprite) : (moveSystem.sprite));
if (autoPose) {
if (yDist < 0) {
thisSprite.image_mc.setDirection("up");
}
if (yDist > 0) {
thisSprite.image_mc.setDirection("down");
}
if (xDist < 0) {
thisSprite.image_mc.setDirection("left");
}
if (xDist > 0) {
thisSprite.image_mc.setDirection("right");
}
if (xDist || (yDist)) {
thisSprite.image_mc.setAnim(true);
}
}
var _local6 = thisSprite._x + (xDist * 16);
var _local5 = thisSprite._y + (yDist * 16);
var _local9 = Math.sqrt((xDist * xDist) + (yDist * yDist));
var _local7 = speed * _local9;
thisSprite.slideTo(_local6, _local5, _local7, "linear", 0, moveSystem.nextEvent);
};
if (!com.mosesSupposes.fuse.ZigoEngine) {
com.mosesSupposes.fuse.ZigoEngine.simpleSetup(com.mosesSupposes.fuse.Shortcuts, com.mosesSupposes.fuse.PennerEasing);
}
_global.event_moveTo = function (moveSystem, xDest, yDest, autoPose, speed) {
xDest = (xDest ? (xDest) : (moveSystem.sprite._x / 16));
yDest = (yDest ? (yDest) : (moveSystem.sprite._y / 16));
autoPose = ((autoPose != undefined) ? (autoPose) : true);
speed = (speed ? (speed) : 0.26);
var _local3 = moveSystem.sprite;
var _local9 = xDest * 16;
var _local8 = yDest * 16;
var _local2 = xDest - (moveSystem.sprite._x / 16);
var _local1 = yDest - (moveSystem.sprite._y / 16);
var _local12 = Math.sqrt((_local2 * _local2) + (_local1 * _local1));
var _local10 = speed * _local12;
if (autoPose) {
if (Math.abs(_local2) < Math.abs(_local1)) {
if (_local1 < 0) {
_local3.image_mc.setDirection("up");
}
if (_local1 > 0) {
_local3.image_mc.setDirection("down");
}
} else {
if (_local2 < 0) {
_local3.image_mc.setDirection("left");
}
if (_local2 > 0) {
_local3.image_mc.setDirection("right");
}
}
if (_local2 || (_local1)) {
_local3.image_mc.setAnim(true);
}
}
moveSystem.sprite.slideTo(_local9, _local8, _local10, "linear", 0, moveSystem.nextEvent);
};
_global.PLAYER_OBJ = new Object();
_global.FLAGS = new Object();
nextFrame();
Frame 4
_global.UPDATE_APPEARANCE = function () {
FLAGS.clothes = ((FLAGS.clothes > 0) ? (FLAGS.clothes) : 0);
if (FLAGS.character == 0) {
PLAYER_MC.image_mc.setCharset("ridingHood3.png");
switch (FLAGS.clothes) {
case 4 :
PLAYER_MC.image_mc.setPose(0);
break;
case 3 :
PLAYER_MC.image_mc.setPose(1);
break;
case 2 :
PLAYER_MC.image_mc.setPose(2);
break;
case 1 :
PLAYER_MC.image_mc.setPose(3);
break;
case 0 :
PLAYER_MC.image_mc.setPose(4);
}
}
if (FLAGS.character == 1) {
PLAYER_MC.image_mc.setCharset("freej_halloween.png");
switch (FLAGS.clothes) {
case 3 :
PLAYER_MC.image_mc.setPose(0);
return;
case 2 :
PLAYER_MC.image_mc.setPose(1);
return;
case 1 :
PLAYER_MC.image_mc.setPose(2);
return;
case 0 :
PLAYER_MC.image_mc.setPose(7);
}
}
};
_global.UPDATE_SETTINGS = function () {
if (FLAGS.character == 0) {
FLAGS.clothes = 4;
FLAGS.houses = 4;
}
if (FLAGS.character == 1) {
FLAGS.clothes = 3;
FLAGS.houses = 6;
}
FLAGS.candy = 0;
FLAGS.houseVisited = new Array(9);
FLAGS.candyFound = new Array(3);
if (FLAGS.freestyle == true) {
FLAGS.houses = Infinity;
}
};
_global.TEXTBOX_MC = this.attachMovie("textBoxes_mc", "textBoxes_mc", 0);
TEXTBOX_MC._xscale = (TEXTBOX_MC._yscale = SCALE * 100);
_global.TRANSITION_MC = this.attachMovie("transition_mc", "transition_mc", 1);
TRANSITION_MC._xscale = (TRANSITION_MC._yscale = SCALE * 100);
makeStereoMusic = function (target_mc, newName, newDepth) {
target_mc = ((target_mc != undefined) ? (target_mc) : this);
newName = ((newName != undefined) ? (newName) : "musicSystem_mc");
_global.nextDepth = function (this_mc) {
this_mc = (this_mc ? (this_mc) : _root);
var _local4 = 1;
var _local5 = 1048676 /* 0x100064 */;
for (var _local6 in this_mc) {
var _local2 = this_mc[_local6].getDepth();
if ((_local2 < _local5) && (_local2 >= _local4)) {
_local4 = _local2 + 1;
}
}
return(_local4);
};
newDepth = (newDepth ? (newDepth) : (nextDepth(target_mc)));
var _this = target_mc.createEmptyMovieClip(newName, newDepth);
_this.createEmptyMovieClip("left_mc", 0);
_this.createEmptyMovieClip("right_mc", 1);
_this.leftSound = new Sound(_this.left_mc);
_this.rightSound = new Sound(_this.right_mc);
_this.songName = "";
_this.startAt = 0;
_this.loops = 999999 /* 0x0F423F */;
_this.stereoDelay = 0.02;
_this.volume = 100;
_this.isPlaying = false;
_this.onID3 = function () {
};
_this.onLoad = function () {
};
_this.onSoundComplete = function () {
};
_this.play = function (songName) {
_this.startAt = 0;
if (_this.songName != songName) {
_this.leftSound.attachSound(songName);
_this.rightSound.attachSound(songName);
_this.songName = songName;
_this.isPlaying = false;
}
if (_this.isPlaying == false) {
_this.leftSound.stop(_this.songName);
_this.rightSound.stop(_this.songName);
_this.rightSound.start(_this.startAt + _this.stereoDelay, _this.loops);
_this.leftSound.start(_this.startAt, _this.loops);
_this.setChannels();
if (_this.volume == 0) {
trace("_this.setVolume: " + _this.setVolume);
_this.setVolume(100);
}
_this.isPlaying = true;
}
};
_this.stop = function () {
_this.startAt = _this.leftSound.position / 1000;
_this.leftSound.stop(_this.songName);
_this.rightSound.stop(_this.songName);
_this.isPlaying = false;
};
_this.stopMusic = _this.stop;
_this.getVolume = function () {
return(_this.volume);
};
_this.setVolume = function (newVolume) {
_this.leftSound.setVolume(newVolume);
_this.rightSound.setVolume(newVolume);
_this.volume = newVolume;
};
_this.addProperty("volume", _this.getVolume, _this.setVolume);
_this.getPosition = function () {
return(_this.leftSound.position);
};
_this.setPosition = function (newStart) {
var _local1 = _this.isPlaying;
_this.stop();
_this.startAt = newStart;
if (_local1 == true) {
_this.play();
}
};
_this.addProperty("position", _this.getPosition, _this.setPosition);
_this.getDuration = function () {
return(_this.leftSound.duration);
};
_this.addProperty("duration", _this.getDuration, null);
_this.fadeOut = function (seconds) {
if ((_this.volume > 0) && (_this.fade == undefined)) {
var _local2 = _this.getVolume();
_this.fade = new mx.transitions.Tween(_this, "volume", null, _local2, 0, seconds, true);
_this.fade.onMotionChanged = function () {
_this.setVolume(this.position);
};
_this.fade.onMotionFinished = function () {
delete _this.fade;
_this.stop();
};
}
};
_this.setChannels = function () {
_this.rightSound.setPan(100);
_this.leftSound.setPan(-100);
};
_this.passSoundEvents = function () {
_this.leftSound.onID3 = function () {
_this.broadcastMessage("onID3");
_this.onID3();
};
_this.leftSound.onLoad = function (success) {
_this.broadcastMessage("onLoad");
_this.onLoad(success);
};
_this.leftSound.onSoundComplete = function () {
_this.broadcastMessage("onSoundComplete");
_this.onSoundComplete();
};
};
AsBroadcaster.initialize(this);
_this.setChannels();
_this.passSoundEvents();
return(_this);
};
_global.MUSIC = makeStereoMusic(this, "music_mc", 10);
makeSoundSystem = function (target_mc, name, depth) {
target_mc = ((target_mc != undefined) ? (target_mc) : this);
name = ((target_mc != undefined) ? (name) : "soundSystem_mc");
_global.nextDepth = function (this_mc) {
this_mc = (this_mc ? (this_mc) : _root);
var _local4 = 1;
var _local5 = 1048676 /* 0x100064 */;
for (var _local6 in this_mc) {
var _local2 = this_mc[_local6].getDepth();
if ((_local2 < _local5) && (_local2 >= _local4)) {
_local4 = _local2 + 1;
}
}
return(_local4);
};
depth = ((depth != undefined) ? (depth) : (nextDepth(target_mc)));
var _this = target_mc.createEmptyMovieClip(name, depth);
_this.sound_array = new Array();
_this.volume = 100;
_this.play = function (soundName, volume) {
volume = ((volume != undefined) ? (volume) : 100);
var _local4 = "transformClip_" + Math.floor(Math.random() * 999);
var _local3 = _this.createEmptyMovieClip(_local4, nextDepth(_this));
var new_sound = new Sound(_local3);
_this.sound_array.push(new_sound);
new_sound.transformClip = _local3;
new_sound.volume = volume;
new_sound.setVolume(new_sound.volume * (_this.volume / 100));
new_sound.attachSound(soundName);
new_sound.start();
new_sound.remove = function () {
var _local2 = 0;
while (_local2 < _this.sound_array.length) {
if (this == _this.sound_array[_local2]) {
_this.sound_array[_local2].transformClip.removeMovieClip();
_this.sound_array.splice(_local2, 1);
break;
}
_local2++;
}
};
new_sound.onSoundComplete = function () {
_this[nam].stop();
new_sound.remove();
};
};
_this.stopAll = function () {
for (var _local1 in _this.sound_array) {
_this.sound_array.pop();
}
};
_this.setVolume = function (newVolume) {
_this.volume = newVolume;
var _local1 = 0;
while (_local1 < _this.sound_array.length) {
_this.sound_array[_local1].setVolume(_this.sound_array[_local1].volume * (_this.volume / 100));
_local1++;
}
};
return(_this);
};
_global.SOUND = makeSoundSystem(this, "sound_mc", 11);
FLAGS.character = 0;
PLAYER_OBJ.x = 2;
PLAYER_OBJ.y = 41;
PLAYER_OBJ.direction = "up";
mapSelect_mc.gotoAndStop("town_young");
MUSIC.play("music/halloween.mp3");
Symbol 9 MovieClip [loadInterface1] Frame 1
Symbol 20 MovieClip [loadInterface0] Frame 1
this.onEnterFrame = function () {
glow_mc._x = fill_mc._x + fill_mc._width;
};
Symbol 23 MovieClip [transition_mc] Frame 1
function fadeOut() {
gotoAndPlay ("fadeOut");
}
function fadeIn() {
gotoAndPlay ("fadeIn");
}
stop();
Symbol 23 MovieClip [transition_mc] Frame 10
stop();
onTransitionDone();
Symbol 23 MovieClip [transition_mc] Frame 19
stop();
onTransitionDone();
Symbol 24 MovieClip [balloons_mc] Frame 1
function setMessage(message_txt, sprite_mc) {
var _local2 = MAP_MC.balloonLayer_mc;
var _local1 = "balloon_" + Math.floor(Math.random() * 999);
var _local3 = _local2.attachMovie("textBalloon_mc", _local1, 0, {message:message_txt, sprite_mc:sprite_mc});
return(_local3);
}
Symbol 25 MovieClip [textBoxes_mc] Frame 1
function setMessage(message_txt, position, faceImage, choices) {
if (position == undefined) {
var _local9 = new flash.geom.Point(0, 0);
PLAYER_MC.localToGlobal(_local9);
if (_local9.y < 120) {
position = 2;
} else {
position = 0;
}
}
_global.nextDepth = function (this_mc) {
this_mc = (this_mc ? (this_mc) : _root);
var _local4 = 1;
var _local5 = 1048676 /* 0x100064 */;
for (var _local6 in this_mc) {
var _local2 = this_mc[_local6].getDepth();
if ((_local2 < _local5) && (_local2 >= _local4)) {
_local4 = _local2 + 1;
}
}
return(_local4);
};
var _local6 = "textbox_" + Math.floor(Math.random() * 999);
while (this[_local6]) {
_local6 = "textbox_" + Math.floor(Math.random() * 999);
}
var _local10 = this.attachMovie("textBox_mc", _local6, nextDepth(this), {message:message_txt, faceImage:faceImage, choices:choices});
_local10._y = position * 80;
return(_local10);
}
Symbol 39 MovieClip [hud_mc] Frame 1
this.onEnterFrame = function () {
houses_txt.text = FLAGS.houses;
candy_txt.text = FLAGS.candy;
};
Symbol 47 MovieClip [choiceCursor] Frame 1
_this = this;
selection = 0;
maxSelection = choices.length - 1;
this.onEnterFrame = function () {
if (Key.isDown(40)) {
if (selection < maxSelection) {
selection++;
_this._y = _this._y + 16;
}
}
if (Key.isDown(38)) {
if (selection > 0) {
selection--;
_this._y = _this._y - 16;
}
}
};
Symbol 66 MovieClip [textBox_mc] Frame 1
function expand() {
var _local5 = this._x;
var _local4 = this._y + (this._height / 2);
var _local2 = this._x;
var _local3 = this._y;
this._x = _local5;
this._y = _local4;
this.slideTo(_local2, _local3, 0.1, "easeOutQuad");
this._yscale = 0;
com.mosesSupposes.fuse.ZigoEngine.doTween(this, "_yscale", 100, 0.1, "easeOutQuad");
}
if (!ZigoEngine) {
com.mosesSupposes.fuse.ZigoEngine.simpleSetup(com.mosesSupposes.fuse.Shortcuts, com.mosesSupposes.fuse.PennerEasing);
}
expand();
_global.makeHtml = function (myText) {
var _local3 = 0;
while (myText.indexOf("&", _local3) != -1) {
var _local2 = myText.indexOf("&", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 1);
myText = (_local6 + "&") + _local5;
_local3 = _local2;
_local3 = _local3 + 5;
}
_local3 = 0;
while (myText.indexOf("<", _local3) != -1) {
var _local2 = myText.indexOf("<", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 1);
myText = (_local6 + "<") + _local5;
_local3 = _local2;
_local3 = _local3 + 4;
}
_local3 = 0;
while (myText.indexOf(">", _local3) != -1) {
var _local2 = myText.indexOf(">", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 1);
myText = (_local6 + ">") + _local5;
_local3 = _local2;
_local3 = _local3 + 4;
}
_local3 = 0;
while (myText.indexOf("\"", _local3) != -1) {
var _local2 = myText.indexOf("\"", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 1);
myText = (_local6 + """) + _local5;
_local3 = _local2;
_local3 = _local3 + 6;
}
_local3 = 0;
while (myText.indexOf("'", _local3) != -1) {
var _local2 = myText.indexOf("'", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 1);
myText = (_local6 + "'") + _local5;
_local3 = _local2;
_local3 = _local3 + 6;
}
_local3 = 0;
while (myText.indexOf("[l]", _local3) != -1) {
var _local2 = myText.indexOf("[l]", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 3);
myText = (_local6 + "<p align=\"left\">") + _local5;
_local3 = _local2;
_local3 = _local3 + 16;
}
_local3 = 0;
while (myText.indexOf("[m]", _local3) != -1) {
var _local2 = myText.indexOf("[m]", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 3);
myText = (_local6 + "<p align=\"center\">") + _local5;
_local3 = _local2;
_local3 = _local3 + 18;
}
_local3 = 0;
while (myText.indexOf("[r]", _local3) != -1) {
var _local2 = myText.indexOf("[r]", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 3);
myText = (_local6 + "<p align=\"right\">") + _local5;
_local3 = _local2;
_local3 = _local3 + 17;
}
_local3 = 0;
while (myText.indexOf("[#", _local3) != -1) {
var _local2 = myText.indexOf("[#", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 9);
var _local4 = myText.slice(_local2 + 2, _local2 + 8);
myText = (((_local6 + "<font color=\"#") + _local4) + "\">") + _local5;
_local3 = _local2;
_local3 = _local3 + 17;
}
return(myText);
};
if (faceImage) {
message2_txt.htmlText = makeHtml(message);
var face = this.attachMovie(faceImage, "face_mc", 0);
face._x = faceArea._x;
face._y = faceArea._y;
} else {
message_txt.htmlText = makeHtml(message);
}
if (choices == undefined) {
this.onEnterFrame = function () {
if (Key.isDown(32) && (lastKey == false)) {
this.onClose();
this.removeMovieClip();
}
lastKey = Key.isDown(32);
};
this.onMouseDown = function () {
this.onClose();
this.removeMovieClip();
};
} else {
var startAt = 0;
var lines = 1;
var enterCode = String.fromCharCode(10);
while (message.indexOf(enterCode, startAt) != -1) {
lines++;
startAt = message.indexOf(enterCode, startAt) + 1;
}
var yCursor = (10 + (lines * 16));
var i = 0;
while (i < choices.length) {
if (faceImage) {
message2_txt.htmlText = message2_txt.htmlText + makeHtml("\t" + choices[i]);
var xCursor = 72;
} else {
message_txt.htmlText = message_txt.htmlText + makeHtml("\t" + choices[i]);
var xCursor = 8;
}
i++;
}
this.attachMovie("choiceCursor", "choiceCursor_mc", 1, {choices:choices});
choiceCursor_mc._x = xCursor;
choiceCursor_mc._y = yCursor;
this.onEnterFrame = function () {
if (Key.isDown(32) && (lastKey == false)) {
this.onClose();
this.removeMovieClip();
}
lastKey = Key.isDown(32);
};
}
Symbol 94 MovieClip [maps/halloween_town.xml] Frame 1
data_txt = "<map width=\"27\" height=\"45\" chipset=\"chipset/iog_freejia.png\" xmlType=\"object\"><collision xmlType=\"array\"><26 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"1\" xmlType=\"variable\" /><31 value=\"1\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"0\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></26><25 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"0\" xmlType=\"variable\" /><36 value=\"0\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"0\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"0\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></25><24 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"0\" xmlType=\"variable\" /><36 value=\"0\" xmlType=\"variable\" /><35 value=\"0\" xmlType=\"variable\" /><34 value=\"0\" xmlType=\"variable\" /><33 value=\"0\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"0\" xmlType=\"variable\" /><23 value=\"0\" xmlType=\"variable\" /><22 value=\"0\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"0\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"0\" xmlType=\"variable\" /><17 value=\"0\" xmlType=\"variable\" /><16 value=\"0\" xmlType=\"variable\" /><15 value=\"0\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></24><23 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"0\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"0\" xmlType=\"variable\" /><36 value=\"0\" xmlType=\"variable\" /><35 value=\"0\" xmlType=\"variable\" /><34 value=\"0\" xmlType=\"variable\" /><33 value=\"0\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></23><22 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"0\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"0\" xmlType=\"variable\" /><36 value=\"0\" xmlType=\"variable\" /><35 value=\"0\" xmlType=\"variable\" /><34 value=\"0\" xmlType=\"variable\" /><33 value=\"0\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></22><21 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"0\" xmlType=\"variable\" /><23 value=\"0\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></21><20 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></20><19 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></19><18 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"1\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"0\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></18><17 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"0\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"0\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></17><16 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"0\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"0\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></16><15 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"0\" xmlType=\"variable\" /><23 value=\"0\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"0\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></15><14 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></14><13 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></13><12 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"0\" xmlType=\"variable\" /><23 value=\"0\" xmlType=\"variable\" /><22 value=\"0\" xmlType=\"variable\" /><21 value=\"0\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"0\" xmlType=\"variable\" /><18 value=\"0\" xmlType=\"variable\" /><17 value=\"0\" xmlType=\"variable\" /><16 value=\"0\" xmlType=\"variable\" /><15 value=\"0\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></12><11 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"1\" xmlType=\"variable\" /><31 value=\"1\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></11><10 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"0\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"0\" xmlType=\"variable\" /><36 value=\"0\" xmlType=\"variable\" /><35 value=\"0\" xmlType=\"variable\" /><34 value=\"0\" xmlType=\"variable\" /><33 value=\"0\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"0\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></10><9 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"0\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"0\" xmlType=\"variable\" /><36 value=\"0\" xmlType=\"variable\" /><35 value=\"0\" xmlType=\"variable\" /><34 value=\"0\" xmlType=\"variable\" /><33 value=\"0\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"0\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"0\" xmlType=\"variable\" /><23 value=\"0\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></9><8 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"0\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"0\" xmlType=\"variable\" /><36 value=\"0\" xmlType=\"variable\" /><35 value=\"0\" xmlType=\"variable\" /><34 value=\"0\" xmlType=\"variable\" /><33 value=\"0\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"0\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></8><7 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"0\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"0\" xmlType=\"variable\" /><36 value=\"0\" xmlType=\"variable\" /><35 value=\"0\" xmlType=\"variable\" /><34 value=\"0\" xmlType=\"variable\" /><33 value=\"0\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"0\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"0\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></7><6 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"0\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"0\" xmlType=\"variable\" /><36 value=\"0\" xmlType=\"variable\" /><35 value=\"0\" xmlType=\"variable\" /><34 value=\"0\" xmlType=\"variable\" /><33 value=\"0\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"0\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"0\" xmlType=\"variable\" /><23 value=\"0\" xmlType=\"variable\" /><22 value=\"0\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"0\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"0\" xmlType=\"variable\" /><17 value=\"0\" xmlType=\"variable\" /><16 value=\"0\" xmlType=\"variable\" /><15 value=\"0\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"0\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></6><5 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"0\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"0\" xmlType=\"variable\" /><36 value=\"0\" xmlType=\"variable\" /><35 value=\"0\" xmlType=\"variable\" /><34 value=\"0\" xmlType=\"variable\" /><33 value=\"0\" xmlType=\"variable\" /><32 value=\"0\" xmlType=\"variable\" /><31 value=\"0\" xmlType=\"variable\" /><30 value=\"0\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></5><4 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"1\" xmlType=\"variable\" /><31 value=\"1\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></4><3 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"1\" xmlType=\"variable\" /><31 value=\"1\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"0\" xmlType=\"variable\" /><23 value=\"0\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></3><2 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"0\" xmlType=\"variable\" /><38 value=\"0\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"1\" xmlType=\"variable\" /><31 value=\"1\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></2><1 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"1\" xmlType=\"variable\" /><31 value=\"1\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"1\" xmlType=\"variable\" /><23 value=\"1\" xmlType=\"variable\" /><22 value=\"1\" xmlType=\"variable\" /><21 value=\"1\" xmlType=\"variable\" /><20 value=\"1\" xmlType=\"variable\" /><19 value=\"1\" xmlType=\"variable\" /><18 value=\"1\" xmlType=\"variable\" /><17 value=\"1\" xmlType=\"variable\" /><16 value=\"1\" xmlType=\"variable\" /><15 value=\"1\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></1><0 xmlType=\"array\"><44 value=\"0\" xmlType=\"variable\" /><43 value=\"0\" xmlType=\"variable\" /><42 value=\"0\" xmlType=\"variable\" /><41 value=\"0\" xmlType=\"variable\" /><40 value=\"0\" xmlType=\"variable\" /><39 value=\"1\" xmlType=\"variable\" /><38 value=\"1\" xmlType=\"variable\" /><37 value=\"1\" xmlType=\"variable\" /><36 value=\"1\" xmlType=\"variable\" /><35 value=\"1\" xmlType=\"variable\" /><34 value=\"1\" xmlType=\"variable\" /><33 value=\"1\" xmlType=\"variable\" /><32 value=\"1\" xmlType=\"variable\" /><31 value=\"1\" xmlType=\"variable\" /><30 value=\"1\" xmlType=\"variable\" /><29 value=\"0\" xmlType=\"variable\" /><28 value=\"0\" xmlType=\"variable\" /><27 value=\"0\" xmlType=\"variable\" /><26 value=\"0\" xmlType=\"variable\" /><25 value=\"0\" xmlType=\"variable\" /><24 value=\"0\" xmlType=\"variable\" /><23 value=\"0\" xmlType=\"variable\" /><22 value=\"0\" xmlType=\"variable\" /><21 value=\"0\" xmlType=\"variable\" /><20 value=\"0\" xmlType=\"variable\" /><19 value=\"0\" xmlType=\"variable\" /><18 value=\"0\" xmlType=\"variable\" /><17 value=\"0\" xmlType=\"variable\" /><16 value=\"0\" xmlType=\"variable\" /><15 value=\"0\" xmlType=\"variable\" /><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></0></collision><layers xmlType=\"array\"><2 xmlType=\"array\"><26 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"435\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></26><25 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" />";
data_txt = data_txt + "<36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></25><24 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></24><23 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"437\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></23><22 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"437\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"436\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></22><21 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"436\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"435\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></21><20 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"435\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></20><19 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"228\" xmlType=\"variable\" /><6 value=\"228\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></19><18 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"437\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></18><17 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"437\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"436\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></17><16 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"436\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"437\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"435\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></16><15 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"435\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"436\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"228\" xmlType=\"variable\" /><7 value=\"228\" xmlType=\"variable\" /><6 value=\"228\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></15><14 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"435\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></14><13 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"437\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></13><12 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"436\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></12><11 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"435\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></11><10 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"437\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></10><9 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"436\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></9><8 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"435\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></8><7 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></7><6 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></6><5 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></5><4 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"437\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></4><3 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"437\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"436\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"437\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></3><2 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"436\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"435\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"436\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></2><1 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"435\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"435\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></1><0 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></0></2><1 xmlType=\"array\"><26 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"439\" xmlType=\"variable\" /><38 value=\"409\" xmlType=\"variable\" /><37 value=\"409\" xmlType=\"variable\" /><36 value=\"409\" xmlType=\"variable\" /><35 value=\"409\" xmlType=\"variable\" /><34 value=\"409\" xmlType=\"variable\" /><33 value=\"409\" xmlType=\"variable\" /><32 value=\"409\" xmlType=\"variable\" /><31 value=\"409\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"348\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></26>";
data_txt = data_txt + "<25 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"439\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"442\" xmlType=\"variable\" /><12 value=\"412\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"348\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></25><24 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"439\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"289\" xmlType=\"variable\" /><20 value=\"259\" xmlType=\"variable\" /><19 value=\"289\" xmlType=\"variable\" /><18 value=\"259\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></24><23 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"409\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"441\" xmlType=\"variable\" /><24 value=\"411\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></23><22 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"228\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"293\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></22><21 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"228\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"292\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></21><20 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"228\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></20><19 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"228\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"289\" xmlType=\"variable\" /><9 value=\"259\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"442\" xmlType=\"variable\" /><6 value=\"412\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></19><18 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"441\" xmlType=\"variable\" /><40 value=\"411\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"293\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"228\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"228\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></18><17 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"228\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"228\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"292\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></17><16 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"228\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"228\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></16><15 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"228\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"292\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"442\" xmlType=\"variable\" /><12 value=\"412\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"228\" xmlType=\"variable\" /><6 value=\"228\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></15><14 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"228\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></14><13 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"441\" xmlType=\"variable\" /><24 value=\"411\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></13><12 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"439\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"289\" xmlType=\"variable\" /><19 value=\"259\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"293\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></12><11 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"409\" xmlType=\"variable\" /><31 value=\"409\" xmlType=\"variable\" /><30 value=\"409\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"438\" xmlType=\"variable\" /><23 value=\"408\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></11><10 xmlType=\"array\"><44 value=\"228\" xmlType=\"variable\" /><43 value=\"228\" xmlType=\"variable\" /><42 value=\"228\" xmlType=\"variable\" /><41 value=\"228\" xmlType=\"variable\" /><40 value=\"228\" xmlType=\"variable\" /><39 value=\"228\" xmlType=\"variable\" /><38 value=\"228\" xmlType=\"variable\" /><37 value=\"228\" xmlType=\"variable\" /><36 value=\"228\" xmlType=\"variable\" /><35 value=\"228\" xmlType=\"variable\" /><34 value=\"228\" xmlType=\"variable\" /><33 value=\"228\" xmlType=\"variable\" /><32 value=\"228\" xmlType=\"variable\" /><31 value=\"228\" xmlType=\"variable\" /><30 value=\"228\" xmlType=\"variable\" /><29 value=\"228\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"228\" xmlType=\"variable\" /><10 value=\"228\" xmlType=\"variable\" /><9 value=\"228\" xmlType=\"variable\" /><8 value=\"228\" xmlType=\"variable\" /><7 value=\"228\" xmlType=\"variable\" /><6 value=\"228\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></10><9 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"292\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"228\" xmlType=\"variable\" /><10 value=\"319\" xmlType=\"variable\" /><9 value=\"228\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"348\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></9><8 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"318\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"348\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></8><7 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"441\" xmlType=\"variable\" /><24 value=\"411\" xmlType=\"variable\" /><23 value=\"408\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"348\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></7><6 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"289\" xmlType=\"variable\" /><20 value=\"259\" xmlType=\"variable\" /><19 value=\"289\" xmlType=\"variable\" /><18 value=\"259\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"348\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></6><5 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"291\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"261\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"442\" xmlType=\"variable\" /><12 value=\"412\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"289\" xmlType=\"variable\" /><9 value=\"259\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"348\" xmlType=\"variable\" /><5 value=\"228\" xmlType=\"variable\" /><4 value=\"228\" xmlType=\"variable\" /><3 value=\"228\" xmlType=\"variable\" /><2 value=\"228\" xmlType=\"variable\" /><1 value=\"228\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></5><4 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"441\" xmlType=\"variable\" /><39 value=\"411\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"438\" xmlType=\"variable\" /><11 value=\"408\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></4><3 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"293\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></3><2 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"292\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"293\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></2><1 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"441\" xmlType=\"variable\" /><24 value=\"411\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"228\" xmlType=\"variable\" /></1><0 xmlType=\"array\"><44 value=\"258\" xmlType=\"variable\" /><43 value=\"258\" xmlType=\"variable\" /><42 value=\"258\" xmlType=\"variable\" /><41 value=\"258\" xmlType=\"variable\" /><40 value=\"258\" xmlType=\"variable\" /><39 value=\"258\" xmlType=\"variable\" /><38 value=\"258\" xmlType=\"variable\" /><37 value=\"258\" xmlType=\"variable\" /><36 value=\"258\" xmlType=\"variable\" /><35 value=\"258\" xmlType=\"variable\" /><34 value=\"258\" xmlType=\"variable\" /><33 value=\"258\" xmlType=\"variable\" /><32 value=\"258\" xmlType=\"variable\" /><31 value=\"258\" xmlType=\"variable\" /><30 value=\"258\" xmlType=\"variable\" /><29 value=\"258\" xmlType=\"variable\" /><28 value=\"258\" xmlType=\"variable\" /><27 value=\"258\" xmlType=\"variable\" /><26 value=\"258\" xmlType=\"variable\" /><25 value=\"258\" xmlType=\"variable\" /><24 value=\"258\" xmlType=\"variable\" /><23 value=\"258\" xmlType=\"variable\" /><22 value=\"258\" xmlType=\"variable\" /><21 value=\"258\" xmlType=\"variable\" /><20 value=\"258\" xmlType=\"variable\" /><19 value=\"258\" xmlType=\"variable\" /><18 value=\"258\" xmlType=\"variable\" /><17 value=\"258\" xmlType=\"variable\" /><16 value=\"258\" xmlType=\"variable\" /><15 value=\"258\" xmlType=\"variable\" /><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"438\" xmlType=\"variable\" /><11 value=\"408\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></0></1><0 xmlType=\"array\"><26 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"139\" xmlType=\"variable\" /><39 value=\"240\" xmlType=\"variable\" /><38 value=\"240\" xmlType=\"variable\" /><37 value=\"240\" xmlType=\"variable\" /><36 value=\"240\" xmlType=\"variable\" /><35 value=\"240\" xmlType=\"variable\" /><34 value=\"240\" xmlType=\"variable\" /><33 value=\"240\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"105\" xmlType=\"variable\" /><24 value=\"465\" xmlType=\"variable\" /><23 value=\"465\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"256\" xmlType=\"variable\" /><20 value=\"52\" xmlType=\"variable\" /><19 value=\"22\" xmlType=\"variable\" /><18 value=\"463\" xmlType=\"variable\" /><17 value=\"433\" xmlType=\"variable\" /><16 value=\"363\" xmlType=\"variable\" /><15 value=\"373\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" />";
data_txt = data_txt + "<7 value=\"360\" xmlType=\"variable\" /><6 value=\"360\" xmlType=\"variable\" /><5 value=\"76\" xmlType=\"variable\" /><4 value=\"46\" xmlType=\"variable\" /><3 value=\"76\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></26><25 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"78\" xmlType=\"variable\" /><39 value=\"240\" xmlType=\"variable\" /><38 value=\"240\" xmlType=\"variable\" /><37 value=\"240\" xmlType=\"variable\" /><36 value=\"240\" xmlType=\"variable\" /><35 value=\"133\" xmlType=\"variable\" /><34 value=\"103\" xmlType=\"variable\" /><33 value=\"240\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"224\" xmlType=\"variable\" /><23 value=\"255\" xmlType=\"variable\" /><22 value=\"224\" xmlType=\"variable\" /><21 value=\"255\" xmlType=\"variable\" /><20 value=\"224\" xmlType=\"variable\" /><19 value=\"255\" xmlType=\"variable\" /><18 value=\"462\" xmlType=\"variable\" /><17 value=\"432\" xmlType=\"variable\" /><16 value=\"402\" xmlType=\"variable\" /><15 value=\"372\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"360\" xmlType=\"variable\" /><5 value=\"76\" xmlType=\"variable\" /><4 value=\"46\" xmlType=\"variable\" /><3 value=\"76\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></25><24 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"138\" xmlType=\"variable\" /><39 value=\"240\" xmlType=\"variable\" /><38 value=\"240\" xmlType=\"variable\" /><37 value=\"240\" xmlType=\"variable\" /><36 value=\"240\" xmlType=\"variable\" /><35 value=\"240\" xmlType=\"variable\" /><34 value=\"240\" xmlType=\"variable\" /><33 value=\"240\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"360\" xmlType=\"variable\" /><23 value=\"360\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"360\" xmlType=\"variable\" /><20 value=\"360\" xmlType=\"variable\" /><19 value=\"360\" xmlType=\"variable\" /><18 value=\"360\" xmlType=\"variable\" /><17 value=\"360\" xmlType=\"variable\" /><16 value=\"360\" xmlType=\"variable\" /><15 value=\"360\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"224\" xmlType=\"variable\" /><11 value=\"137\" xmlType=\"variable\" /><10 value=\"137\" xmlType=\"variable\" /><9 value=\"137\" xmlType=\"variable\" /><8 value=\"137\" xmlType=\"variable\" /><7 value=\"137\" xmlType=\"variable\" /><6 value=\"344\" xmlType=\"variable\" /><5 value=\"314\" xmlType=\"variable\" /><4 value=\"284\" xmlType=\"variable\" /><3 value=\"254\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></24><23 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"360\" xmlType=\"variable\" /><39 value=\"360\" xmlType=\"variable\" /><38 value=\"240\" xmlType=\"variable\" /><37 value=\"240\" xmlType=\"variable\" /><36 value=\"240\" xmlType=\"variable\" /><35 value=\"240\" xmlType=\"variable\" /><34 value=\"240\" xmlType=\"variable\" /><33 value=\"240\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"403\" xmlType=\"variable\" /><23 value=\"317\" xmlType=\"variable\" /><22 value=\"317\" xmlType=\"variable\" /><21 value=\"287\" xmlType=\"variable\" /><20 value=\"317\" xmlType=\"variable\" /><19 value=\"317\" xmlType=\"variable\" /><18 value=\"344\" xmlType=\"variable\" /><17 value=\"314\" xmlType=\"variable\" /><16 value=\"284\" xmlType=\"variable\" /><15 value=\"254\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"467\" xmlType=\"variable\" /><11 value=\"467\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"136\" xmlType=\"variable\" /><8 value=\"53\" xmlType=\"variable\" /><7 value=\"23\" xmlType=\"variable\" /><6 value=\"343\" xmlType=\"variable\" /><5 value=\"313\" xmlType=\"variable\" /><4 value=\"335\" xmlType=\"variable\" /><3 value=\"275\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></23><22 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"360\" xmlType=\"variable\" /><39 value=\"360\" xmlType=\"variable\" /><38 value=\"240\" xmlType=\"variable\" /><37 value=\"240\" xmlType=\"variable\" /><36 value=\"240\" xmlType=\"variable\" /><35 value=\"240\" xmlType=\"variable\" /><34 value=\"240\" xmlType=\"variable\" /><33 value=\"240\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"107\" xmlType=\"variable\" /><24 value=\"467\" xmlType=\"variable\" /><23 value=\"467\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"286\" xmlType=\"variable\" /><20 value=\"53\" xmlType=\"variable\" /><19 value=\"23\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"335\" xmlType=\"variable\" /><15 value=\"275\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"466\" xmlType=\"variable\" /><11 value=\"466\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"136\" xmlType=\"variable\" /><8 value=\"52\" xmlType=\"variable\" /><7 value=\"22\" xmlType=\"variable\" /><6 value=\"343\" xmlType=\"variable\" /><5 value=\"313\" xmlType=\"variable\" /><4 value=\"334\" xmlType=\"variable\" /><3 value=\"274\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></22><21 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"139\" xmlType=\"variable\" /><39 value=\"224\" xmlType=\"variable\" /><38 value=\"257\" xmlType=\"variable\" /><37 value=\"224\" xmlType=\"variable\" /><36 value=\"344\" xmlType=\"variable\" /><35 value=\"314\" xmlType=\"variable\" /><34 value=\"284\" xmlType=\"variable\" /><33 value=\"254\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"106\" xmlType=\"variable\" /><24 value=\"466\" xmlType=\"variable\" /><23 value=\"466\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"286\" xmlType=\"variable\" /><20 value=\"52\" xmlType=\"variable\" /><19 value=\"22\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"334\" xmlType=\"variable\" /><15 value=\"274\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"465\" xmlType=\"variable\" /><11 value=\"465\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"136\" xmlType=\"variable\" /><8 value=\"136\" xmlType=\"variable\" /><7 value=\"136\" xmlType=\"variable\" /><6 value=\"343\" xmlType=\"variable\" /><5 value=\"313\" xmlType=\"variable\" /><4 value=\"333\" xmlType=\"variable\" /><3 value=\"273\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></21><20 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"78\" xmlType=\"variable\" /><39 value=\"224\" xmlType=\"variable\" /><38 value=\"53\" xmlType=\"variable\" /><37 value=\"23\" xmlType=\"variable\" /><36 value=\"343\" xmlType=\"variable\" /><35 value=\"313\" xmlType=\"variable\" /><34 value=\"335\" xmlType=\"variable\" /><33 value=\"275\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"105\" xmlType=\"variable\" /><24 value=\"465\" xmlType=\"variable\" /><23 value=\"465\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"286\" xmlType=\"variable\" /><20 value=\"316\" xmlType=\"variable\" /><19 value=\"316\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"334\" xmlType=\"variable\" /><15 value=\"274\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"224\" xmlType=\"variable\" /><11 value=\"135\" xmlType=\"variable\" /><10 value=\"135\" xmlType=\"variable\" /><9 value=\"135\" xmlType=\"variable\" /><8 value=\"135\" xmlType=\"variable\" /><7 value=\"135\" xmlType=\"variable\" /><6 value=\"342\" xmlType=\"variable\" /><5 value=\"312\" xmlType=\"variable\" /><4 value=\"282\" xmlType=\"variable\" /><3 value=\"252\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></20><19 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"78\" xmlType=\"variable\" /><39 value=\"224\" xmlType=\"variable\" /><38 value=\"52\" xmlType=\"variable\" /><37 value=\"22\" xmlType=\"variable\" /><36 value=\"343\" xmlType=\"variable\" /><35 value=\"313\" xmlType=\"variable\" /><34 value=\"334\" xmlType=\"variable\" /><33 value=\"274\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"139\" xmlType=\"variable\" /><24 value=\"403\" xmlType=\"variable\" /><23 value=\"316\" xmlType=\"variable\" /><22 value=\"316\" xmlType=\"variable\" /><21 value=\"286\" xmlType=\"variable\" /><20 value=\"316\" xmlType=\"variable\" /><19 value=\"316\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"334\" xmlType=\"variable\" /><15 value=\"274\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"347\" xmlType=\"variable\" /><5 value=\"317\" xmlType=\"variable\" /><4 value=\"317\" xmlType=\"variable\" /><3 value=\"317\" xmlType=\"variable\" /><2 value=\"317\" xmlType=\"variable\" /><1 value=\"287\" xmlType=\"variable\" /><0 value=\"464\" xmlType=\"variable\" /></19><18 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"138\" xmlType=\"variable\" /><39 value=\"224\" xmlType=\"variable\" /><38 value=\"256\" xmlType=\"variable\" /><37 value=\"256\" xmlType=\"variable\" /><36 value=\"343\" xmlType=\"variable\" /><35 value=\"313\" xmlType=\"variable\" /><34 value=\"334\" xmlType=\"variable\" /><33 value=\"274\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"78\" xmlType=\"variable\" /><24 value=\"403\" xmlType=\"variable\" /><23 value=\"316\" xmlType=\"variable\" /><22 value=\"316\" xmlType=\"variable\" /><21 value=\"286\" xmlType=\"variable\" /><20 value=\"316\" xmlType=\"variable\" /><19 value=\"316\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"334\" xmlType=\"variable\" /><15 value=\"274\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"467\" xmlType=\"variable\" /><5 value=\"467\" xmlType=\"variable\" /><4 value=\"316\" xmlType=\"variable\" /><3 value=\"316\" xmlType=\"variable\" /><2 value=\"53\" xmlType=\"variable\" /><1 value=\"23\" xmlType=\"variable\" /><0 value=\"463\" xmlType=\"variable\" /></18><17 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"107\" xmlType=\"variable\" /><39 value=\"467\" xmlType=\"variable\" /><38 value=\"467\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"343\" xmlType=\"variable\" /><35 value=\"313\" xmlType=\"variable\" /><34 value=\"334\" xmlType=\"variable\" /><33 value=\"274\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"138\" xmlType=\"variable\" /><24 value=\"403\" xmlType=\"variable\" /><23 value=\"316\" xmlType=\"variable\" /><22 value=\"316\" xmlType=\"variable\" /><21 value=\"286\" xmlType=\"variable\" /><20 value=\"316\" xmlType=\"variable\" /><19 value=\"316\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"334\" xmlType=\"variable\" /><15 value=\"274\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"466\" xmlType=\"variable\" /><5 value=\"466\" xmlType=\"variable\" /><4 value=\"316\" xmlType=\"variable\" /><3 value=\"316\" xmlType=\"variable\" /><2 value=\"52\" xmlType=\"variable\" /><1 value=\"22\" xmlType=\"variable\" /><0 value=\"463\" xmlType=\"variable\" /></17><16 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"106\" xmlType=\"variable\" /><39 value=\"466\" xmlType=\"variable\" /><38 value=\"466\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"343\" xmlType=\"variable\" /><35 value=\"313\" xmlType=\"variable\" /><34 value=\"334\" xmlType=\"variable\" /><33 value=\"274\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"107\" xmlType=\"variable\" /><24 value=\"467\" xmlType=\"variable\" /><23 value=\"467\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"286\" xmlType=\"variable\" /><20 value=\"53\" xmlType=\"variable\" /><19 value=\"23\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"334\" xmlType=\"variable\" /><15 value=\"274\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"465\" xmlType=\"variable\" /><5 value=\"465\" xmlType=\"variable\" /><4 value=\"316\" xmlType=\"variable\" /><3 value=\"316\" xmlType=\"variable\" /><2 value=\"316\" xmlType=\"variable\" /><1 value=\"286\" xmlType=\"variable\" /><0 value=\"463\" xmlType=\"variable\" /></16><15 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"105\" xmlType=\"variable\" /><39 value=\"465\" xmlType=\"variable\" /><38 value=\"465\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"343\" xmlType=\"variable\" /><35 value=\"313\" xmlType=\"variable\" /><34 value=\"334\" xmlType=\"variable\" /><33 value=\"274\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"106\" xmlType=\"variable\" /><24 value=\"466\" xmlType=\"variable\" /><23 value=\"466\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"286\" xmlType=\"variable\" /><20 value=\"52\" xmlType=\"variable\" /><19 value=\"22\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"334\" xmlType=\"variable\" /><15 value=\"274\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"345\" xmlType=\"variable\" /><5 value=\"315\" xmlType=\"variable\" /><4 value=\"315\" xmlType=\"variable\" /><3 value=\"315\" xmlType=\"variable\" /><2 value=\"315\" xmlType=\"variable\" /><1 value=\"285\" xmlType=\"variable\" /><0 value=\"462\" xmlType=\"variable\" /></15><14 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"139\" xmlType=\"variable\" /><39 value=\"224\" xmlType=\"variable\" /><38 value=\"256\" xmlType=\"variable\" /><37 value=\"256\" xmlType=\"variable\" /><36 value=\"343\" xmlType=\"variable\" /><35 value=\"313\" xmlType=\"variable\" /><34 value=\"334\" xmlType=\"variable\" /><33 value=\"274\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"105\" xmlType=\"variable\" /><24 value=\"465\" xmlType=\"variable\" /><23 value=\"465\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"286\" xmlType=\"variable\" /><20 value=\"316\" xmlType=\"variable\" /><19 value=\"316\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"333\" xmlType=\"variable\" /><15 value=\"273\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"104\" xmlType=\"variable\" /><11 value=\"197\" xmlType=\"variable\" /><10 value=\"197\" xmlType=\"variable\" /><9 value=\"197\" xmlType=\"variable\" /><8 value=\"167\" xmlType=\"variable\" /><7 value=\"197\" xmlType=\"variable\" /><6 value=\"344\" xmlType=\"variable\" /><5 value=\"314\" xmlType=\"variable\" /><4 value=\"284\" xmlType=\"variable\" /><3 value=\"254\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></14><13 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"78\" xmlType=\"variable\" /><39 value=\"224\" xmlType=\"variable\" /><38 value=\"53\" xmlType=\"variable\" /><37 value=\"23\" xmlType=\"variable\" /><36 value=\"343\" xmlType=\"variable\" /><35 value=\"313\" xmlType=\"variable\" /><34 value=\"334\" xmlType=\"variable\" /><33 value=\"274\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"403\" xmlType=\"variable\" /><23 value=\"315\" xmlType=\"variable\" /><22 value=\"315\" xmlType=\"variable\" /><21 value=\"285\" xmlType=\"variable\" /><20 value=\"315\" xmlType=\"variable\" /><19 value=\"315\" xmlType=\"variable\" /><18 value=\"342\" xmlType=\"variable\" /><17 value=\"312\" xmlType=\"variable\" /><16 value=\"282\" xmlType=\"variable\" /><15 value=\"252\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"467\" xmlType=\"variable\" /><11 value=\"467\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"196\" xmlType=\"variable\" /><8 value=\"53\" xmlType=\"variable\" /><7 value=\"23\" xmlType=\"variable\" /><6 value=\"343\" xmlType=\"variable\" /><5 value=\"313\" xmlType=\"variable\" /><4 value=\"335\" xmlType=\"variable\" /><3 value=\"275\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></13><12 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"78\" xmlType=\"variable\" /><39 value=\"224\" xmlType=\"variable\" /><38 value=\"52\" xmlType=\"variable\" /><37 value=\"22\" xmlType=\"variable\" /><36 value=\"343\" xmlType=\"variable\" /><35 value=\"313\" xmlType=\"variable\" /><34 value=\"333\" xmlType=\"variable\" /><33 value=\"273\" xmlType=\"variable\" /><32 value=\"240\" xmlType=\"variable\" /><31 value=\"240\" xmlType=\"variable\" /><30 value=\"240\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"360\" xmlType=\"variable\" /><23 value=\"360\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"360\" xmlType=\"variable\" /><20 value=\"360\" xmlType=\"variable\" /><19 value=\"360\" xmlType=\"variable\" /><18 value=\"360\" xmlType=\"variable\" /><17 value=\"360\" xmlType=\"variable\" /><16 value=\"360\" xmlType=\"variable\" /><15 value=\"360\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"466\" xmlType=\"variable\" /><11 value=\"466\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"196\" xmlType=\"variable\" /><8 value=\"52\" xmlType=\"variable\" /><7 value=\"22\" xmlType=\"variable\" /><6 value=\"343\" xmlType=\"variable\" /><5 value=\"313\" xmlType=\"variable\" /><4 value=\"334\" xmlType=\"variable\" /><3 value=\"274\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></12><11 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"138\" xmlType=\"variable\" /><39 value=\"224\" xmlType=\"variable\" /><38 value=\"255\" xmlType=\"variable\" /><37 value=\"224\" xmlType=\"variable\" /><36 value=\"342\" xmlType=\"variable\" /><35 value=\"312\" xmlType=\"variable\" /><34 value=\"282\" xmlType=\"variable\" /><33 value=\"252\" xmlType=\"variable\" /><32 value=\"360\" xmlType=\"variable\" /><31 value=\"360\" xmlType=\"variable\" /><30 value=\"360\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"360\" xmlType=\"variable\" /><23 value=\"197\" xmlType=\"variable\" /><22 value=\"197\" xmlType=\"variable\" /><21 value=\"197\" xmlType=\"variable\" /><20 value=\"167\" xmlType=\"variable\" /><19 value=\"197\" xmlType=\"variable\" /><18 value=\"464\" xmlType=\"variable\" /><17 value=\"434\" xmlType=\"variable\" /><16 value=\"404\" xmlType=\"variable\" /><15 value=\"374\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"465\" xmlType=\"variable\" /><11 value=\"465\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"196\" xmlType=\"variable\" /><8 value=\"166\" xmlType=\"variable\" /><7 value=\"196\" xmlType=\"variable\" /><6 value=\"343\" xmlType=\"variable\" /><5 value=\"313\" xmlType=\"variable\" /><4 value=\"333\" xmlType=\"variable\" /><3 value=\"273\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></11><10 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"102\" xmlType=\"variable\" /><39 value=\"102\" xmlType=\"variable\" /><38 value=\"102\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"102\" xmlType=\"variable\" /><35 value=\"102\" xmlType=\"variable\" /><34 value=\"102\" xmlType=\"variable\" /><33 value=\"102\" xmlType=\"variable\" /><32 value=\"102\" xmlType=\"variable\" /><31 value=\"102\" xmlType=\"variable\" /><30 value=\"102\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"107\" xmlType=\"variable\" /><24 value=\"467\" xmlType=\"variable\" /><23 value=\"467\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"196\" xmlType=\"variable\" /><20 value=\"53\" xmlType=\"variable\" /><19 value=\"23\" xmlType=\"variable\" /><18 value=\"463\" xmlType=\"variable\" /><17 value=\"433\" xmlType=\"variable\" /><16 value=\"363\" xmlType=\"variable\" /><15 value=\"373\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"104\" xmlType=\"variable\" /><11 value=\"195\" xmlType=\"variable\" /><10 value=\"195\" xmlType=\"variable\" /><9 value=\"195\" xmlType=\"variable\" /><8 value=\"165\" xmlType=\"variable\" /><7 value=\"195\" xmlType=\"variable\" /><6 value=\"342\" xmlType=\"variable\" /><5 value=\"312\" xmlType=\"variable\" /><4 value=\"282\" xmlType=\"variable\" /><3 value=\"252\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></10><9 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"102\" xmlType=\"variable\" /><39 value=\"102\" xmlType=\"variable\" /><38 value=\"102\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"102\" xmlType=\"variable\" /><35 value=\"102\" xmlType=\"variable\" /><34 value=\"102\" xmlType=\"variable\" /><33 value=\"102\" xmlType=\"variable\" /><32 value=\"102\" xmlType=\"variable\" /><31 value=\"102\" xmlType=\"variable\" /><30 value=\"102\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"106\" xmlType=\"variable\" /><24 value=\"466\" xmlType=\"variable\" /><23 value=\"466\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"196\" xmlType=\"variable\" /><20 value=\"52\" xmlType=\"variable\" /><19 value=\"22\" xmlType=\"variable\" /><18 value=\"463\" xmlType=\"variable\" /><17 value=\"433\" xmlType=\"variable\" /><16 value=\"363\" xmlType=\"variable\" /><15 value=\"373\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"360\" xmlType=\"variable\" /><5 value=\"77\" xmlType=\"variable\" /><4 value=\"47\" xmlType=\"variable\" /><3 value=\"77\" xmlType=\"variable\" /><2 value=\"47\" xmlType=\"variable\" /><1 value=\"17\" xmlType=\"variable\" /><0 value=\"77\" xmlType=\"variable\" /></9><8 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"102\" xmlType=\"variable\" /><39 value=\"102\" xmlType=\"variable\" /><38 value=\"102\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"102\" xmlType=\"variable\" /><35 value=\"102\" xmlType=\"variable\" /><34 value=\"102\" xmlType=\"variable\" /><33 value=\"102\" xmlType=\"variable\" /><32 value=\"102\" xmlType=\"variable\" /><31 value=\"102\" xmlType=\"variable\" /><30 value=\"102\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"105\" xmlType=\"variable\" /><24 value=\"465\" xmlType=\"variable\" /><23 value=\"465\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"196\" xmlType=\"variable\" /><20 value=\"166\" xmlType=\"variable\" /><19 value=\"196\" xmlType=\"variable\" /><18 value=\"463\" xmlType=\"variable\" /><17 value=\"433\" xmlType=\"variable\" /><16 value=\"363\" xmlType=\"variable\" /><15 value=\"373\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"360\" xmlType=\"variable\" /><5 value=\"76\" xmlType=\"variable\" /><4 value=\"46\" xmlType=\"variable\" /><3 value=\"76\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></8><7 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"102\" xmlType=\"variable\" /><39 value=\"102\" xmlType=\"variable\" /><38 value=\"102\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"102\" xmlType=\"variable\" /><35 value=\"102\" xmlType=\"variable\" /><34 value=\"102\" xmlType=\"variable\" /><33 value=\"102\" xmlType=\"variable\" /><32 value=\"102\" xmlType=\"variable\" /><31 value=\"102\" xmlType=\"variable\" /><30 value=\"102\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"360\" xmlType=\"variable\" /><23 value=\"195\" xmlType=\"variable\" /><22 value=\"195\" xmlType=\"variable\" /><21 value=\"195\" xmlType=\"variable\" /><20 value=\"165\" xmlType=\"variable\" /><19 value=\"195\" xmlType=\"variable\" /><18 value=\"462\" xmlType=\"variable\" /><17 value=\"432\" xmlType=\"variable\" /><16 value=\"402\" xmlType=\"variable\" /><15 value=\"372\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"360\" xmlType=\"variable\" /><5 value=\"76\" xmlType=\"variable\" /><4 value=\"46\" xmlType=\"variable\" /><3 value=\"76\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></7><6 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"102\" xmlType=\"variable\" /><39 value=\"102\" xmlType=\"variable\" /><38 value=\"102\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"102\" xmlType=\"variable\" /><35 value=\"102\" xmlType=\"variable\" /><34 value=\"102\" xmlType=\"variable\" /><33 value=\"102\" xmlType=\"variable\" /><32 value=\"102\" xmlType=\"variable\" /><31 value=\"102\" xmlType=\"variable\" /><30 value=\"102\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"360\" xmlType=\"variable\" /><23 value=\"360\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"360\" xmlType=\"variable\" /><20 value=\"360\" xmlType=\"variable\" /><19 value=\"360\" xmlType=\"variable\" /><18 value=\"360\" xmlType=\"variable\" /><17 value=\"360\" xmlType=\"variable\" /><16 value=\"360\" xmlType=\"variable\" /><15 value=\"360\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"360\" xmlType=\"variable\" /><5 value=\"76\" xmlType=\"variable\" /><4 value=\"46\" xmlType=\"variable\" /><3 value=\"76\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></6><5 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"240\" xmlType=\"variable\" /><39 value=\"240\" xmlType=\"variable\" /><38 value=\"72\" xmlType=\"variable\" /><37 value=\"72\" xmlType=\"variable\" /><36 value=\"72\" xmlType=\"variable\" /><35 value=\"72\" xmlType=\"variable\" /><34 value=\"72\" xmlType=\"variable\" /><33 value=\"72\" xmlType=\"variable\" /><32 value=\"360\" xmlType=\"variable\" /><31 value=\"360\" xmlType=\"variable\" /><30 value=\"360\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"224\" xmlType=\"variable\" /><23 value=\"377\" xmlType=\"variable\" /><22 value=\"377\" xmlType=\"variable\" /><21 value=\"377\" xmlType=\"variable\" /><20 value=\"377\" xmlType=\"variable\" /><19 value=\"377\" xmlType=\"variable\" /><18 value=\"344\" xmlType=\"variable\" /><17 value=\"314\" xmlType=\"variable\" /><16 value=\"284\" xmlType=\"variable\" /><15 value=\"254\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"360\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"360\" xmlType=\"variable\" /><8 value=\"360\" xmlType=\"variable\" /><7 value=\"360\" xmlType=\"variable\" /><6 value=\"360\" xmlType=\"variable\" /><5 value=\"75\" xmlType=\"variable\" /><4 value=\"45\" xmlType=\"variable\" /><3 value=\"75\" xmlType=\"variable\" /><2 value=\"45\" xmlType=\"variable\" /><1 value=\"15\" xmlType=\"variable\" /><0 value=\"75\" xmlType=\"variable\" /></5><4 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"240\" xmlType=\"variable\" /><39 value=\"104\" xmlType=\"variable\" /><38 value=\"137\" xmlType=\"variable\" /><37 value=\"137\" xmlType=\"variable\" /><36 value=\"137\" xmlType=\"variable\" /><35 value=\"137\" xmlType=\"variable\" /><34 value=\"137\" xmlType=\"variable\" /><33 value=\"464\" xmlType=\"variable\" /><32 value=\"434\" xmlType=\"variable\" /><31 value=\"404\" xmlType=\"variable\" /><30 value=\"374\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"107\" xmlType=\"variable\" /><24 value=\"467\" xmlType=\"variable\" /><23 value=\"467\" xmlType=\"variable\" /><22 value=\"376\" xmlType=\"variable\" /><21 value=\"405\" xmlType=\"variable\" /><20 value=\"53\" xmlType=\"variable\" /><19 value=\"23\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"335\" xmlType=\"variable\" /><15 value=\"275\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"377\" xmlType=\"variable\" /><10 value=\"377\" xmlType=\"variable\" /><9 value=\"377\" xmlType=\"variable\" /><8 value=\"377\" xmlType=\"variable\" /><7 value=\"377\" xmlType=\"variable\" /><6 value=\"344\" xmlType=\"variable\" /><5 value=\"314\" xmlType=\"variable\" /><4 value=\"284\" xmlType=\"variable\" /><3 value=\"254\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></4><3 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"107\" xmlType=\"variable\" /><39 value=\"467\" xmlType=\"variable\" /><38 value=\"467\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"136\" xmlType=\"variable\" /><35 value=\"113\" xmlType=\"variable\" /><34 value=\"83\" xmlType=\"variable\" /><33 value=\"463\" xmlType=\"variable\" /><32 value=\"433\" xmlType=\"variable\" /><31 value=\"363\" xmlType=\"variable\" /><30 value=\"373\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"106\" xmlType=\"variable\" /><24 value=\"466\" xmlType=\"variable\" /><23 value=\"466\" xmlType=\"variable\" /><22 value=\"376\" xmlType=\"variable\" /><21 value=\"376\" xmlType=\"variable\" /><20 value=\"52\" xmlType=\"variable\" /><19 value=\"22\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"334\" xmlType=\"variable\" /><15 value=\"274\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"467\" xmlType=\"variable\" /><11 value=\"467\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"405\" xmlType=\"variable\" /><8 value=\"53\" xmlType=\"variable\" /><7 value=\"23\" xmlType=\"variable\" /><6 value=\"343\" xmlType=\"variable\" /><5 value=\"313\" xmlType=\"variable\" /><4 value=\"335\" xmlType=\"variable\" /><3 value=\"275\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></3><2 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"106\" xmlType=\"variable\" /><39 value=\"466\" xmlType=\"variable\" /><38 value=\"466\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"136\" xmlType=\"variable\" /><35 value=\"112\" xmlType=\"variable\" /><34 value=\"82\" xmlType=\"variable\" /><33 value=\"463\" xmlType=\"variable\" /><32 value=\"433\" xmlType=\"variable\" /><31 value=\"363\" xmlType=\"variable\" /><30 value=\"373\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"105\" xmlType=\"variable\" /><24 value=\"465\" xmlType=\"variable\" /><23 value=\"465\" xmlType=\"variable\" /><22 value=\"376\" xmlType=\"variable\" /><21 value=\"405\" xmlType=\"variable\" /><20 value=\"376\" xmlType=\"variable\" /><19 value=\"405\" xmlType=\"variable\" /><18 value=\"343\" xmlType=\"variable\" /><17 value=\"313\" xmlType=\"variable\" /><16 value=\"333\" xmlType=\"variable\" /><15 value=\"273\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"466\" xmlType=\"variable\" /><11 value=\"466\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"376\" xmlType=\"variable\" /><8 value=\"52\" xmlType=\"variable\" /><7 value=\"22\" xmlType=\"variable\" /><6 value=\"343\" xmlType=\"variable\" /><5 value=\"313\" xmlType=\"variable\" /><4 value=\"334\" xmlType=\"variable\" /><3 value=\"274\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></2><1 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"105\" xmlType=\"variable\" /><39 value=\"465\" xmlType=\"variable\" /><38 value=\"465\" xmlType=\"variable\" /><37 value=\"102\" xmlType=\"variable\" /><36 value=\"136\" xmlType=\"variable\" /><35 value=\"136\" xmlType=\"variable\" /><34 value=\"136\" xmlType=\"variable\" /><33 value=\"463\" xmlType=\"variable\" /><32 value=\"433\" xmlType=\"variable\" /><31 value=\"363\" xmlType=\"variable\" /><30 value=\"373\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"224\" xmlType=\"variable\" /><23 value=\"375\" xmlType=\"variable\" /><22 value=\"375\" xmlType=\"variable\" /><21 value=\"375\" xmlType=\"variable\" /><20 value=\"375\" xmlType=\"variable\" /><19 value=\"375\" xmlType=\"variable\" /><18 value=\"342\" xmlType=\"variable\" /><17 value=\"312\" xmlType=\"variable\" /><16 value=\"282\" xmlType=\"variable\" /><15 value=\"252\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"465\" xmlType=\"variable\" /><11 value=\"465\" xmlType=\"variable\" /><10 value=\"360\" xmlType=\"variable\" /><9 value=\"405\" xmlType=\"variable\" /><8 value=\"376\" xmlType=\"variable\" /><7 value=\"405\" xmlType=\"variable\" /><6 value=\"343\" xmlType=\"variable\" /><5 value=\"313\" xmlType=\"variable\" /><4 value=\"333\" xmlType=\"variable\" /><3 value=\"273\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></1><0 xmlType=\"array\"><44 value=\"102\" xmlType=\"variable\" /><43 value=\"102\" xmlType=\"variable\" /><42 value=\"102\" xmlType=\"variable\" /><41 value=\"102\" xmlType=\"variable\" /><40 value=\"240\" xmlType=\"variable\" /><39 value=\"104\" xmlType=\"variable\" /><38 value=\"135\" xmlType=\"variable\" /><37 value=\"135\" xmlType=\"variable\" /><36 value=\"135\" xmlType=\"variable\" /><35 value=\"135\" xmlType=\"variable\" /><34 value=\"135\" xmlType=\"variable\" /><33 value=\"462\" xmlType=\"variable\" /><32 value=\"432\" xmlType=\"variable\" /><31 value=\"402\" xmlType=\"variable\" /><30 value=\"372\" xmlType=\"variable\" /><29 value=\"102\" xmlType=\"variable\" /><28 value=\"102\" xmlType=\"variable\" /><27 value=\"102\" xmlType=\"variable\" /><26 value=\"102\" xmlType=\"variable\" /><25 value=\"240\" xmlType=\"variable\" /><24 value=\"360\" xmlType=\"variable\" /><23 value=\"360\" xmlType=\"variable\" /><22 value=\"360\" xmlType=\"variable\" /><21 value=\"360\" xmlType=\"variable\" /><20 value=\"360\" xmlType=\"variable\" /><19 value=\"360\" xmlType=\"variable\" /><18 value=\"360\" xmlType=\"variable\" /><17 value=\"360\" xmlType=\"variable\" /><16 value=\"360\" xmlType=\"variable\" /><15 value=\"360\" xmlType=\"variable\" /><14 value=\"360\" xmlType=\"variable\" /><13 value=\"360\" xmlType=\"variable\" /><12 value=\"360\" xmlType=\"variable\" /><11 value=\"375\" xmlType=\"variable\" /><10 value=\"375\" xmlType=\"variable\" /><9 value=\"375\" xmlType=\"variable\" /><8 value=\"375\" xmlType=\"variable\" /><7 value=\"375\" xmlType=\"variable\" /><6 value=\"342\" xmlType=\"variable\" /><5 value=\"312\" xmlType=\"variable\" /><4 value=\"282\" xmlType=\"variable\" /><3 value=\"252\" xmlType=\"variable\" /><2 value=\"46\" xmlType=\"variable\" /><1 value=\"16\" xmlType=\"variable\" /><0 value=\"76\" xmlType=\"variable\" /></0></0></layers></map>";
data = new XML(data_txt);
onLoad(data);
Symbol 108 MovieClip [textBalloon_mc] Frame 1
function setPosition(sprite_mc) {
var _local4 = 8;
var _local3 = 64;
spritePoint = new flash.geom.Point(8, -16);
sprite_mc.localToGlobal(spritePoint);
spritePoint.x = spritePoint.x / SCALE;
spritePoint.y = spritePoint.y / SCALE;
if (spritePoint.y < (_local3 + _local4)) {
spritePoint.y = spritePoint.y + 16;
var _local6 = (spritePoint.y + _local4) + (_local3 / 2);
pointEdge = "top";
} else {
var _local6 = (spritePoint.y - _local4) - (_local3 / 2);
pointEdge = "bottom";
}
var _local2 = 168;
var _local5 = spritePoint.x;
if (spritePoint.x < (_local2 / 2)) {
_local5 = _local2 / 2;
}
if (spritePoint.x > (320 - (_local2 / 2))) {
_local5 = 320 - (_local2 / 2);
}
var _local8 = -MAP_MC._x;
var _local7 = -MAP_MC._y;
this._x = _local5 + _local8;
this._y = _local6 + _local7;
}
function drawPoint(spritePoint, pointEdge) {
var _local2 = spritePoint.clone();
_local2.x = _local2.x * SCALE;
_local2.y = _local2.y * SCALE;
this.globalToLocal(_local2);
var _local3 = 8;
this.createEmptyMovieClip("point_mc", 0);
if (pointEdge == "top") {
yPoint = -31;
} else {
yPoint = 31;
}
point_mc.beginFill(16777215);
point_mc.moveTo(_local2.x - _local3, yPoint);
point_mc.lineTo(_local2.x, _local2.y);
point_mc.lineTo(_local2.x + _local3, yPoint);
point_mc.endFill();
}
function setStyle() {
this._alpha = 80;
var _local2 = new Array();
var _local4 = new flash.filters.BevelFilter(5, 45, 16777215, 0.5, 39321, 1, 8, 8, 0.5, 1, "inner", false);
var _local5 = new flash.filters.GlowFilter(0, 0.5, 1.1, 1.1, 255, 1, false, false);
var _local3 = new flash.filters.DropShadowFilter(4, 45, 0, 1, 4, 4, 0.5, 1, false, false, false);
_local2.push(_local5);
_local2.push(_local4);
_local2.push(_local3);
this.filters = _local2;
}
function bounce(spritePoint) {
var _local5 = spritePoint.x - MAP_MC._x;
var _local4 = spritePoint.y - MAP_MC._y;
var _local2 = this._x;
var _local3 = this._y;
this._x = _local5;
this._y = _local4;
this.slideTo(_local2, _local3, 0.2, "easeOutBack");
this._xscale = 0;
this._yscale = 0;
this.scaleTo(100, 0.2, "easeOutBack");
}
if (!ZigoEngine) {
com.mosesSupposes.fuse.ZigoEngine.simpleSetup(com.mosesSupposes.fuse.Shortcuts, com.mosesSupposes.fuse.PennerEasing);
}
setPosition(sprite_mc);
drawPoint(spritePoint, pointEdge);
setStyle();
bounce(spritePoint);
_global.makeHtml = function (myText) {
var _local3 = 0;
while (myText.indexOf("&", _local3) != -1) {
var _local2 = myText.indexOf("&", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 1);
myText = (_local6 + "&") + _local5;
_local3 = _local2;
_local3 = _local3 + 5;
}
_local3 = 0;
while (myText.indexOf("<", _local3) != -1) {
var _local2 = myText.indexOf("<", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 1);
myText = (_local6 + "<") + _local5;
_local3 = _local2;
_local3 = _local3 + 4;
}
_local3 = 0;
while (myText.indexOf(">", _local3) != -1) {
var _local2 = myText.indexOf(">", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 1);
myText = (_local6 + ">") + _local5;
_local3 = _local2;
_local3 = _local3 + 4;
}
_local3 = 0;
while (myText.indexOf("\"", _local3) != -1) {
var _local2 = myText.indexOf("\"", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 1);
myText = (_local6 + """) + _local5;
_local3 = _local2;
_local3 = _local3 + 6;
}
_local3 = 0;
while (myText.indexOf("'", _local3) != -1) {
var _local2 = myText.indexOf("'", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 1);
myText = (_local6 + "'") + _local5;
_local3 = _local2;
_local3 = _local3 + 6;
}
_local3 = 0;
while (myText.indexOf("[l]", _local3) != -1) {
var _local2 = myText.indexOf("[l]", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 3);
myText = (_local6 + "<p align=\"left\">") + _local5;
_local3 = _local2;
_local3 = _local3 + 16;
}
_local3 = 0;
while (myText.indexOf("[m]", _local3) != -1) {
var _local2 = myText.indexOf("[m]", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 3);
myText = (_local6 + "<p align=\"center\">") + _local5;
_local3 = _local2;
_local3 = _local3 + 18;
}
_local3 = 0;
while (myText.indexOf("[r]", _local3) != -1) {
var _local2 = myText.indexOf("[r]", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 3);
myText = (_local6 + "<p align=\"right\">") + _local5;
_local3 = _local2;
_local3 = _local3 + 17;
}
_local3 = 0;
while (myText.indexOf("[#", _local3) != -1) {
var _local2 = myText.indexOf("[#", _local3);
var _local6 = myText.slice(0, _local2);
var _local5 = myText.slice(_local2 + 9);
var _local4 = myText.slice(_local2 + 2, _local2 + 8);
myText = (((_local6 + "<font color=\"#") + _local4) + "\">") + _local5;
_local3 = _local2;
_local3 = _local3 + 17;
}
return(myText);
};
message_txt.htmlText = makeHtml(message);
this.onEnterFrame = function () {
if (Key.isDown(32) && (lastKey == false)) {
this.onClose();
this.removeMovieClip();
}
lastKey = Key.isDown(32);
};
this.onMouseDown = function () {
this.onClose();
this.removeMovieClip();
};
Symbol 143 MovieClip [maps/house.xml] Frame 1
data = new XML("<map width=\"20\" height=\"15\" chipset=\"chipset/SPO.png\" xmlType=\"object\"><collision xmlType=\"array\"><19 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"1\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></19><18 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"1\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></18><17 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"0\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"0\" xmlType=\"variable\" /><4 value=\"0\" xmlType=\"variable\" /><3 value=\"0\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></17><16 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"0\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></16><15 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"0\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></15><14 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"0\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></14><13 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"0\" xmlType=\"variable\" /><11 value=\"0\" xmlType=\"variable\" /><10 value=\"0\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"0\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></13><12 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"0\" xmlType=\"variable\" /><2 value=\"0\" xmlType=\"variable\" /><1 value=\"0\" xmlType=\"variable\" /><0 value=\"0\" xmlType=\"variable\" /></12><11 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></11><10 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></10><9 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></9><8 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"0\" xmlType=\"variable\" /><4 value=\"0\" xmlType=\"variable\" /><3 value=\"0\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></8><7 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"0\" xmlType=\"variable\" /><4 value=\"0\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></7><6 xmlType=\"array\"><14 value=\"0\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"0\" xmlType=\"variable\" /><8 value=\"0\" xmlType=\"variable\" /><7 value=\"0\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"0\" xmlType=\"variable\" /><4 value=\"0\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></6><5 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"0\" xmlType=\"variable\" /><4 value=\"0\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></5><4 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"0\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"0\" xmlType=\"variable\" /><5 value=\"0\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></4><3 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"1\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></3><2 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"1\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></2><1 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"1\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></1><0 xmlType=\"array\"><14 value=\"1\" xmlType=\"variable\" /><13 value=\"1\" xmlType=\"variable\" /><12 value=\"1\" xmlType=\"variable\" /><11 value=\"1\" xmlType=\"variable\" /><10 value=\"1\" xmlType=\"variable\" /><9 value=\"1\" xmlType=\"variable\" /><8 value=\"1\" xmlType=\"variable\" /><7 value=\"1\" xmlType=\"variable\" /><6 value=\"1\" xmlType=\"variable\" /><5 value=\"1\" xmlType=\"variable\" /><4 value=\"1\" xmlType=\"variable\" /><3 value=\"1\" xmlType=\"variable\" /><2 value=\"1\" xmlType=\"variable\" /><1 value=\"1\" xmlType=\"variable\" /><0 value=\"1\" xmlType=\"variable\" /></0></collision><layers xmlType=\"array\"><2 xmlType=\"array\"><19 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></19><18 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></18><17 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></17><16 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></16><15 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></15><14 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></14><13 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></13><12 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></12><11 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></11><10 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></10><9 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></9><8 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></8><7 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></7><6 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></6><5 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></5><4 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></4><3 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></3><2 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></2><1 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></1><0 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></0></2><1 xmlType=\"array\"><19 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></19><18 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></18><17 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"467\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></17><16 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></16><15 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"351\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"177\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></15><14 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"466\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></14><13 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"175\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></13><12 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"174\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></12><11 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"57\" xmlType=\"variable\" /><11 value=\"27\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></11><10 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"56\" xmlType=\"variable\" /><11 value=\"26\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"351\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></10><9 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></9><8 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"351\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"351\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></8><7 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></7><6 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"55\" xmlType=\"variable\" /><11 value=\"25\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"236\" xmlType=\"variable\" /><3 value=\"206\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></6><5 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"54\" xmlType=\"variable\" /><11 value=\"24\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></5><4 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"381\" xmlType=\"variable\" /><3 value=\"411\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"351\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></4><3 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></3><2 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></2><1 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></1><0 xmlType=\"array\"><14 value=\"258\" xmlType=\"variable\" /><13 value=\"258\" xmlType=\"variable\" /><12 value=\"258\" xmlType=\"variable\" /><11 value=\"258\" xmlType=\"variable\" /><10 value=\"258\" xmlType=\"variable\" /><9 value=\"258\" xmlType=\"variable\" /><8 value=\"258\" xmlType=\"variable\" /><7 value=\"258\" xmlType=\"variable\" /><6 value=\"258\" xmlType=\"variable\" /><5 value=\"258\" xmlType=\"variable\" /><4 value=\"258\" xmlType=\"variable\" /><3 value=\"258\" xmlType=\"variable\" /><2 value=\"258\" xmlType=\"variable\" /><1 value=\"258\" xmlType=\"variable\" /><0 value=\"258\" xmlType=\"variable\" /></0></1><0 xmlType=\"array\"><19 xmlType=\"array\"><14 value=\"430\" xmlType=\"variable\" /><13 value=\"430\" xmlType=\"variable\" /><12 value=\"430\" xmlType=\"variable\" /><11 value=\"430\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"257\" xmlType=\"variable\" /><7 value=\"227\" xmlType=\"variable\" /><6 value=\"460\" xmlType=\"variable\" /><5 value=\"430\" xmlType=\"variable\" /><4 value=\"430\" xmlType=\"variable\" /><3 value=\"430\" xmlType=\"variable\" /><2 value=\"430\" xmlType=\"variable\" /><1 value=\"430\" xmlType=\"variable\" /><0 value=\"430\" xmlType=\"variable\" /></19><18 xmlType=\"array\"><14 value=\"430\" xmlType=\"variable\" /><13 value=\"429\" xmlType=\"variable\" /><12 value=\"429\" xmlType=\"variable\" /><11 value=\"429\" xmlType=\"variable\" /><10 value=\"399\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"257\" xmlType=\"variable\" /><7 value=\"227\" xmlType=\"variable\" /><6 value=\"459\" xmlType=\"variable\" /><5 value=\"429\" xmlType=\"variable\" /><4 value=\"429\" xmlType=\"variable\" /><3 value=\"429\" xmlType=\"variable\" /><2 value=\"429\" xmlType=\"variable\" /><1 value=\"429\" xmlType=\"variable\" /><0 value=\"430\" xmlType=\"variable\" /></18><17 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"424\" xmlType=\"variable\" /><11 value=\"424\" xmlType=\"variable\" /><10 value=\"424\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"424\" xmlType=\"variable\" /><7 value=\"424\" xmlType=\"variable\" /><6 value=\"424\" xmlType=\"variable\" /><5 value=\"424\" xmlType=\"variable\" /><4 value=\"424\" xmlType=\"variable\" /><3 value=\"424\" xmlType=\"variable\" /><2 value=\"257\" xmlType=\"variable\" /><1 value=\"227\" xmlType=\"variable\" /><0 value=\"460\" xmlType=\"variable\" /></17><16 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"431\" xmlType=\"variable\" /><9 value=\"431\" xmlType=\"variable\" /><8 value=\"431\" xmlType=\"variable\" /><7 value=\"431\" xmlType=\"variable\" /><6 value=\"431\" xmlType=\"variable\" /><5 value=\"431\" xmlType=\"variable\" /><4 value=\"401\" xmlType=\"variable\" /><3 value=\"424\" xmlType=\"variable\" /><2 value=\"257\" xmlType=\"variable\" /><1 value=\"227\" xmlType=\"variable\" /><0 value=\"460\" xmlType=\"variable\" /></16><15 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"221\" xmlType=\"variable\" /><7 value=\"191\" xmlType=\"variable\" /><6 value=\"161\" xmlType=\"variable\" /><5 value=\"227\" xmlType=\"variable\" /><4 value=\"400\" xmlType=\"variable\" /><3 value=\"424\" xmlType=\"variable\" /><2 value=\"257\" xmlType=\"variable\" /><1 value=\"227\" xmlType=\"variable\" /><0 value=\"460\" xmlType=\"variable\" /></15><14 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"219\" xmlType=\"variable\" /><7 value=\"189\" xmlType=\"variable\" /><6 value=\"159\" xmlType=\"variable\" /><5 value=\"227\" xmlType=\"variable\" /><4 value=\"400\" xmlType=\"variable\" /><3 value=\"424\" xmlType=\"variable\" /><2 value=\"257\" xmlType=\"variable\" /><1 value=\"227\" xmlType=\"variable\" /><0 value=\"460\" xmlType=\"variable\" /></14><13 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"424\" xmlType=\"variable\" /><11 value=\"424\" xmlType=\"variable\" /><10 value=\"424\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"424\" xmlType=\"variable\" /><7 value=\"403\" xmlType=\"variable\" /><6 value=\"373\" xmlType=\"variable\" /><5 value=\"227\" xmlType=\"variable\" /><4 value=\"400\" xmlType=\"variable\" /><3 value=\"424\" xmlType=\"variable\" /><2 value=\"257\" xmlType=\"variable\" /><1 value=\"227\" xmlType=\"variable\" /><0 value=\"459\" xmlType=\"variable\" /></13><12 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"424\" xmlType=\"variable\" /><7 value=\"402\" xmlType=\"variable\" /><6 value=\"372\" xmlType=\"variable\" /><5 value=\"227\" xmlType=\"variable\" /><4 value=\"400\" xmlType=\"variable\" /><3 value=\"424\" xmlType=\"variable\" /><2 value=\"49\" xmlType=\"variable\" /><1 value=\"49\" xmlType=\"variable\" /><0 value=\"49\" xmlType=\"variable\" /></12><11 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"424\" xmlType=\"variable\" /><7 value=\"424\" xmlType=\"variable\" /><6 value=\"257\" xmlType=\"variable\" /><5 value=\"227\" xmlType=\"variable\" /><4 value=\"430\" xmlType=\"variable\" /><3 value=\"431\" xmlType=\"variable\" /><2 value=\"431\" xmlType=\"variable\" /><1 value=\"431\" xmlType=\"variable\" /><0 value=\"431\" xmlType=\"variable\" /></11><10 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"424\" xmlType=\"variable\" /><7 value=\"424\" xmlType=\"variable\" /><6 value=\"257\" xmlType=\"variable\" /><5 value=\"227\" xmlType=\"variable\" /><4 value=\"430\" xmlType=\"variable\" /><3 value=\"430\" xmlType=\"variable\" /><2 value=\"430\" xmlType=\"variable\" /><1 value=\"430\" xmlType=\"variable\" /><0 value=\"430\" xmlType=\"variable\" /></10><9 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"424\" xmlType=\"variable\" /><7 value=\"424\" xmlType=\"variable\" /><6 value=\"257\" xmlType=\"variable\" /><5 value=\"227\" xmlType=\"variable\" /><4 value=\"429\" xmlType=\"variable\" /><3 value=\"429\" xmlType=\"variable\" /><2 value=\"429\" xmlType=\"variable\" /><1 value=\"429\" xmlType=\"variable\" /><0 value=\"430\" xmlType=\"variable\" /></9><8 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"424\" xmlType=\"variable\" /><7 value=\"424\" xmlType=\"variable\" /><6 value=\"424\" xmlType=\"variable\" /><5 value=\"424\" xmlType=\"variable\" /><4 value=\"424\" xmlType=\"variable\" /><3 value=\"424\" xmlType=\"variable\" /><2 value=\"257\" xmlType=\"variable\" /><1 value=\"227\" xmlType=\"variable\" /><0 value=\"460\" xmlType=\"variable\" /></8><7 xmlType=\"array\"><14 value=\"399\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"424\" xmlType=\"variable\" /><7 value=\"424\" xmlType=\"variable\" /><6 value=\"424\" xmlType=\"variable\" /><5 value=\"424\" xmlType=\"variable\" /><4 value=\"424\" xmlType=\"variable\" /><3 value=\"221\" xmlType=\"variable\" /><2 value=\"161\" xmlType=\"variable\" /><1 value=\"227\" xmlType=\"variable\" /><0 value=\"460\" xmlType=\"variable\" /></7><6 xmlType=\"array\"><14 value=\"424\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"424\" xmlType=\"variable\" /><8 value=\"424\" xmlType=\"variable\" /><7 value=\"424\" xmlType=\"variable\" /><6 value=\"424\" xmlType=\"variable\" /><5 value=\"424\" xmlType=\"variable\" /><4 value=\"424\" xmlType=\"variable\" /><3 value=\"220\" xmlType=\"variable\" /><2 value=\"160\" xmlType=\"variable\" /><1 value=\"227\" xmlType=\"variable\" /><0 value=\"460\" xmlType=\"variable\" /></6><5 xmlType=\"array\"><14 value=\"401\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"229\" xmlType=\"variable\" /><8 value=\"199\" xmlType=\"variable\" /><7 value=\"169\" xmlType=\"variable\" /><6 value=\"424\" xmlType=\"variable\" /><5 value=\"424\" xmlType=\"variable\" /><4 value=\"424\" xmlType=\"variable\" /><3 value=\"219\" xmlType=\"variable\" /><2 value=\"159\" xmlType=\"variable\" /><1 value=\"227\" xmlType=\"variable\" /><0 value=\"460\" xmlType=\"variable\" /></5><4 xmlType=\"array\"><14 value=\"400\" xmlType=\"variable\" /><13 value=\"424\" xmlType=\"variable\" /><12 value=\"257\" xmlType=\"variable\" /><11 value=\"227\" xmlType=\"variable\" /><10 value=\"400\" xmlType=\"variable\" /><9 value=\"228\" xmlType=\"variable\" /><8 value=\"198\" xmlType=\"variable\" /><7 value=\"168\" xmlType=\"variable\" /><6 value=\"424\" xmlType=\"variable\" /><5 value=\"424\" xmlType=\"variable\" /><4 value=\"424\" xmlType=\"variable\" /><3 value=\"424\" xmlType=\"variable\" /><2 value=\"257\" xmlType=\"variable\" /><1 value=\"227\" xmlType=\"variable\" /><0 value=\"460\" xmlType=\"variable\" /></4><3 xmlType=\"array\"><14 value=\"430\" xmlType=\"variable\" /><13 value=\"431\" xmlType=\"variable\" /><12 value=\"431\" xmlType=\"variable\" /><11 value=\"431\" xmlType=\"variable\" /><10 value=\"430\" xmlType=\"variable\" /><9 value=\"431\" xmlType=\"variable\" /><8 value=\"431\" xmlType=\"variable\" /><7 value=\"431\" xmlType=\"variable\" /><6 value=\"431\" xmlType=\"variable\" /><5 value=\"431\" xmlType=\"variable\" /><4 value=\"431\" xmlType=\"variable\" /><3 value=\"431\" xmlType=\"variable\" /><2 value=\"431\" xmlType=\"variable\" /><1 value=\"431\" xmlType=\"variable\" /><0 value=\"430\" xmlType=\"variable\" /></3><2 xmlType=\"array\"><14 value=\"430\" xmlType=\"variable\" /><13 value=\"430\" xmlType=\"variable\" /><12 value=\"430\" xmlType=\"variable\" /><11 value=\"430\" xmlType=\"variable\" /><10 value=\"430\" xmlType=\"variable\" /><9 value=\"430\" xmlType=\"variable\" /><8 value=\"430\" xmlType=\"variable\" /><7 value=\"430\" xmlType=\"variable\" /><6 value=\"430\" xmlType=\"variable\" /><5 value=\"430\" xmlType=\"variable\" /><4 value=\"430\" xmlType=\"variable\" /><3 value=\"430\" xmlType=\"variable\" /><2 value=\"430\" xmlType=\"variable\" /><1 value=\"430\" xmlType=\"variable\" /><0 value=\"430\" xmlType=\"variable\" /></2><1 xmlType=\"array\"><14 value=\"430\" xmlType=\"variable\" /><13 value=\"430\" xmlType=\"variable\" /><12 value=\"430\" xmlType=\"variable\" /><11 value=\"430\" xmlType=\"variable\" /><10 value=\"430\" xmlType=\"variable\" /><9 value=\"430\" xmlType=\"variable\" /><8 value=\"430\" xmlType=\"variable\" /><7 value=\"430\" xmlType=\"variable\" /><6 value=\"430\" xmlType=\"variable\" /><5 value=\"430\" xmlType=\"variable\" /><4 value=\"430\" xmlType=\"variable\" /><3 value=\"430\" xmlType=\"variable\" /><2 value=\"430\" xmlType=\"variable\" /><1 value=\"430\" xmlType=\"variable\" /><0 value=\"430\" xmlType=\"variable\" /></1><0 xmlType=\"array\"><14 value=\"430\" xmlType=\"variable\" /><13 value=\"430\" xmlType=\"variable\" /><12 value=\"430\" xmlType=\"variable\" /><11 value=\"430\" xmlType=\"variable\" /><10 value=\"430\" xmlType=\"variable\" /><9 value=\"430\" xmlType=\"variable\" /><8 value=\"430\" xmlType=\"variable\" /><7 value=\"430\" xmlType=\"variable\" /><6 value=\"430\" xmlType=\"variable\" /><5 value=\"430\" xmlType=\"variable\" /><4 value=\"430\" xmlType=\"variable\" /><3 value=\"430\" xmlType=\"variable\" /><2 value=\"430\" xmlType=\"variable\" /><1 value=\"430\" xmlType=\"variable\" /><0 value=\"430\" xmlType=\"variable\" /></0></0></layers></map>");
onLoad(data);
Symbol 287 MovieClip Frame 1
stop();
Symbol 299 MovieClip [__Packages.com.mosesSupposes.fuse.Shortcuts] Frame 0
class com.mosesSupposes.fuse.Shortcuts
{
function Shortcuts () {
}
static function initialize() {
if (shortcuts == null) {
initShortcuts();
}
}
static function doShortcut(obj, methodName) {
initialize();
var _local5 = shortcuts[methodName];
if (_local5 == undefined) {
if (typeof(obj) == "movieclip") {
_local5 = mcshortcuts[methodName];
}
}
if (_local5 == undefined) {
return(null);
}
obj = arguments.shift();
methodName = String(arguments.shift());
if (!(obj instanceof Array)) {
obj = [obj];
}
var _local3 = "";
for (var _local6 in obj) {
var _local2 = String(_local5.apply(obj[_local6], arguments));
if ((_local2 != null) && (_local2.length > 0)) {
if (_local3.length > 0) {
_local3 = (_local2 + "|") + _local3;
} else {
_local3 = _local2;
}
}
}
return(((_local3 == "") ? null : (_local3)));
}
static function addShortcutsTo() {
initialize();
var _local5 = function (o, so) {
for (var _local5 in so) {
var _local2 = so[_local5];
if (_local2.getter || (_local2.setter)) {
o.addProperty(_local5, _local2.getter, _local2.setter);
_global.ASSetPropFlags(o, _local5, 3, 1);
} else {
o[_local5] = _local2;
_global.ASSetPropFlags(o, _local5, 7, 1);
}
}
};
for (var _local7 in arguments) {
var _local4 = arguments[_local7];
if ((_local4 == MovieClip.prototype) || (typeof(_local4) == "movieclip")) {
_local5(_local4, mcshortcuts);
}
_local5(_local4, shortcuts);
}
}
static function removeShortcutsFrom() {
initialize();
var _local5 = function (o, so) {
for (var _local5 in so) {
_global.ASSetPropFlags(o, _local5, 0, 2);
var _local2 = so[_local5];
if (_local2.getter || (_local2.setter)) {
o.addProperty(_local5, null, null);
}
delete o[_local5];
}
};
for (var _local7 in arguments) {
var _local3 = arguments[_local7];
if ((_local3 == MovieClip.prototype) || (typeof(_local3) == "movieclip")) {
_local5(_local3, mcshortcuts);
}
_local5(_local3, shortcuts);
}
}
static function parseStringTypeCallback(callbackStr) {
var evaluate = function (val) {
var first = val.charAt(0);
if ((first == val.slice(-1)) && ((first == "\"") || (first == "'"))) {
return(val.slice(1, -1));
}
if (val == "true") {
return(Object(true));
}
if (val == "false") {
return(Object(false));
}
if (val == "null") {
return(Object(null));
}
if (_global.isNaN(Number(val)) == false) {
return(Object(Number(val)));
}
return(Object(eval (val)));
};
var trimWhite = function (str) {
while (str.charAt(0) == " ") {
str = str.slice(1);
}
while (str.slice(-1) == " ") {
str = str.slice(0, -1);
}
return(str);
};
var evaluateList = function (list) {
var _local11 = [];
var _local4 = 0;
while (_local4 < list.length) {
var _local3 = list[_local4];
_local3 = trimWhite(_local3);
var _local5 = (_local3.charAt(0) == "{") && ((_local3.indexOf("}") > -1) || (_local3.indexOf(":") > -1));
var _local10 = _local3.charAt(0) == "[";
if ((_local5 || (_local10)) == true) {
var _local6 = ((_local5 == true) ? ({}) : ([]));
var _local2 = _local4;
while (_local2 < list.length) {
if (_local2 == _local4) {
_local3 = _local3.slice(1);
}
var _local1;
var _local8 = (_local1.slice(-1) == ((_local5 == true) ? "}" : "]")) || (_local2 == (list.length - 1));
if (_local8 == true) {
_local1 = _local1.slice(0, -1);
}
if ((_local5 == true) && (_local1.indexOf(":") > -1)) {
var _local7 = _local1.split(":");
_local6[trimWhite(_local7[0])] = evaluate(trimWhite(_local7[1]));
} else if (_local10 == true) {
_local6.push(evaluate(trimWhite(_local1)));
}
if (_local8 == true) {
_local11.push(_local6);
_local4 = _local2;
break;
}
_local2++;
}
} else {
_local11.push(evaluate(trimWhite(_local3)));
}
_local4++;
}
return(_local11);
};
var parts = callbackStr.split("(");
var p0 = parts[0];
var p1 = parts[1];
return({func:p0.slice(p0.lastIndexOf(".") + 1), scope:eval (p0.slice(0, p0.lastIndexOf("."))), args:evaluateList(p1.slice(0, p1.lastIndexOf(")")).split(","))});
}
static function initShortcuts() {
shortcuts = new Object();
var methods = {alphaTo:"_alpha", scaleTo:"_scale", sizeTo:"_size", rotateTo:"_rotation", brightnessTo:"_brightness", brightOffsetTo:"_brightOffset", contrastTo:"_contrast", colorTo:"_tint", tintPercentTo:"_tintPercent", colorResetTo:"_colorReset", invertColorTo:"_invertColor"};
var _local4 = _global.com.mosesSupposes.fuse.FuseFMP.getAllShortcuts();
var _local7 = {blur:1, blurX:1, blurY:1, strength:1, shadowAlpha:1, highlightAlpha:1, angle:1, distance:1, alpha:1, color:1};
for (var _local9 in _local4) {
if (_local7[_local4[_local9].split("_")[1]] === 1) {
methods[_local4[_local9] + "To"] = _local4[_local9];
}
}
var _local8 = {__resolve:function (name) {
var propName = methods[name];
return(function () {
var _local4 = _global.com.mosesSupposes.fuse.ZigoEngine.doTween.apply(com.mosesSupposes.fuse.ZigoEngine, new Array(this, propName).concat(arguments));
return(_local4);
});
}};
var _local5 = {__resolve:function (name) {
var _local3 = {setter:function (v) {
_global.com.mosesSupposes.fuse.ZigoEngine.doTween(this, ((name == "_tintString") ? "_tint" : (name)), v, 0);
}};
switch (name) {
case "_colorReset" :
_local3.getter = function () {
return(100 - _global.com.mosesSupposes.fuse.ZigoEngine.getColorKeysObj(this).tintPercent);
};
break;
case "_colorTransform" :
_local3.getter = function () {
return(Color(new Color(this)).getTransform());
};
break;
case "_fade" :
_local3.getter = function () {
return(this._alpha);
};
break;
case "_size" :
_local3.getter = function () {
return(((this._width == this._height) ? (this._width) : null));
};
break;
case "_scale" :
_local3.getter = function () {
return(((this._xscale == this._yscale) ? (this._xscale) : null));
};
break;
default :
_local3.getter = function () {
return(_global.com.mosesSupposes.fuse.ZigoEngine.getColorKeysObj(this)[name.slice(1)]);
};
}
return(_local3);
}};
for (var _local9 in methods) {
shortcuts[_local9] = _local8[_local9];
if ((_local9 != "alphaTo") && (_local9 != "rotateTo")) {
shortcuts[methods[_local9]] = _local5[methods[_local9]];
}
}
shortcuts._tintString = _local5._tintString;
shortcuts._colorTransform = _local5._colorTransform;
shortcuts._fade = _local5._fade;
shortcuts.tween = function (props, endVals, seconds, ease, delay, callback) {
if ((arguments.length == 1) && (typeof(props) == "object")) {
return(com.mosesSupposes.fuse.ZigoEngine.doTween({target:this, action:props}));
}
return(com.mosesSupposes.fuse.ZigoEngine.doTween(this, props, endVals, seconds, ease, delay, callback));
};
shortcuts.removeTween = (shortcuts.stopTween = function (props) {
com.mosesSupposes.fuse.ZigoEngine.removeTween(this, props);
});
shortcuts.removeAllTweens = (shortcuts.stopAllTweens = function () {
com.mosesSupposes.fuse.ZigoEngine.removeTween("ALL");
});
shortcuts.isTweening = function (prop) {
return(com.mosesSupposes.fuse.ZigoEngine.isTweening(this, prop));
};
shortcuts.getTweens = function () {
return(com.mosesSupposes.fuse.ZigoEngine.getTweens(this));
};
shortcuts.lockTween = function () {
com.mosesSupposes.fuse.ZigoEngine.lockTween(this, true);
};
shortcuts.unlockTween = function () {
com.mosesSupposes.fuse.ZigoEngine.lockTween(this, false);
};
shortcuts.isTweenLocked = function () {
return(com.mosesSupposes.fuse.ZigoEngine.isTweenLocked(this));
};
shortcuts.isTweenPaused = function (prop) {
return(com.mosesSupposes.fuse.ZigoEngine.isTweenPaused(this, prop));
};
shortcuts.pauseTween = function (props) {
com.mosesSupposes.fuse.ZigoEngine.pauseTween(this, props);
};
shortcuts.resumeTween = (shortcuts.unpauseTween = function (props) {
com.mosesSupposes.fuse.ZigoEngine.unpauseTween(this, props);
});
shortcuts.pauseAllTweens = function () {
com.mosesSupposes.fuse.ZigoEngine.pauseTween("ALL");
};
shortcuts.resumeAllTweens = (shortcuts.unpauseAllTweens = function () {
com.mosesSupposes.fuse.ZigoEngine.unpauseTween("ALL");
});
shortcuts.ffTween = function (props) {
com.mosesSupposes.fuse.ZigoEngine.ffTween(this, props);
};
shortcuts.rewTween = function (props, suppressStartEvents) {
com.mosesSupposes.fuse.ZigoEngine.rewTween(this, props, false, suppressStartEvents);
};
shortcuts.rewAndPauseTween = function (props, suppressStartEvents) {
com.mosesSupposes.fuse.ZigoEngine.rewTween(this, props, true, suppressStartEvents);
};
shortcuts.skipTweenTo = function (seconds, props) {
com.mosesSupposes.fuse.ZigoEngine.skipTweenTo(seconds, this, props);
};
shortcuts.bezierTo = function (destX, destY, controlX, controlY, seconds, ease, delay, callback) {
return(com.mosesSupposes.fuse.ZigoEngine.doTween(this, "_bezier_", {x:destX, y:destY, controlX:controlX, controlY:controlY}, seconds, ease, delay, callback));
};
shortcuts.colorTransformTo = function (ra, rb, ga, gb, ba, bb, aa, ab, seconds, ease, delay, callback) {
return(com.mosesSupposes.fuse.ZigoEngine.doTween(this, "_colorTransform", {ra:ra, rb:rb, ga:ga, gb:gb, ba:ba, bb:bb, aa:aa, ab:ab}, seconds, ease, delay, callback));
};
shortcuts.tintTo = function (rgb, percent, seconds, ease, delay, callback) {
return(com.mosesSupposes.fuse.ZigoEngine.doTween(this, "_tint", {tint:rgb, percent:percent}, seconds, ease, delay, callback));
};
shortcuts.slideTo = function (destX, destY, seconds, ease, delay, callback) {
return(com.mosesSupposes.fuse.ZigoEngine.doTween(this, "_x,_y", [destX, destY], seconds, ease, delay, callback));
};
shortcuts.fadeIn = function (seconds, ease, delay, callback) {
return(com.mosesSupposes.fuse.ZigoEngine.doTween(this, "_fade", 100, seconds, ease, delay, callback));
};
shortcuts.fadeOut = function (seconds, ease, delay, callback) {
return(com.mosesSupposes.fuse.ZigoEngine.doTween(this, "_fade", 0, seconds, ease, delay, callback));
};
mcshortcuts = new Object();
mcshortcuts._frame = {getter:function () {
return(this._currentframe);
}, setter:function (v) {
this.gotoAndStop(Math.round(v));
}};
mcshortcuts.frameTo = function (endframe, seconds, ease, delay, callback) {
return(com.mosesSupposes.fuse.ZigoEngine.doTween(this, "_frame", ((endframe != undefined) ? (endframe) : (this._totalframes)), seconds, ease, delay, callback));
};
}
static var registryKey = "shortcuts";
static var shortcuts = null;
static var mcshortcuts = null;
}
Symbol 300 MovieClip [__Packages.com.mosesSupposes.fuse.FuseKitCommon] Frame 0
class com.mosesSupposes.fuse.FuseKitCommon
{
static var logOutput;
function FuseKitCommon () {
}
static function _cts() {
return("|_tint|_tintPercent|_brightness|_brightOffset|_contrast|_invertColor|_colorReset|_colorTransform|");
}
static function _resetTo100() {
return("|_alpha|_contrast|_invertColor|_tintPercent|_xscale|_yscale|_scale|");
}
static function _resetTo0() {
return("|_brightness|_brightOffset|_colorReset|_rotation|");
}
static function _underscoreable() {
return(_cts() + "_frame|_x|_y|_xscale|_yscale|_scale|_width|_height|_size|_rotation|_alpha|_fade|_visible|");
}
static function _cbprops() {
return("|skipLevel|cycles|roundResults|extra1|extra2|func|scope|args|startfunc|startscope|startargs|updfunc|updscope|updargs|");
}
static function _fuseEvents() {
return("|onStart|onStop|onPause|onResume|onAdvance|onComplete|");
}
static function _fuseprops() {
return("|command|label|delay|event|eventparams|target|addTarget|trigger|startAt|ease|easing|seconds|duration|time|");
}
static function _validateFuseCommand(c, inGroup, hasArg, outputLevel, simple) {
var _local1 = false;
var _local2 = false;
switch (c) {
case "start" :
case "stop" :
case "pause" :
case "resume" :
case "setStartProps" :
if (inGroup != true) {
_local1 = true;
}
break;
case "delay" :
case "trigger" :
if (simple == true) {
if (hasArg == true) {
_local1 = true;
}
} else {
_local2 = true;
}
inGroup = false;
break;
case "skipTo" :
if (!((hasArg == true) && (inGroup != true))) {
break;
}
_local1 = true;
}
if ((outputLevel > 0) && (_local1 == false)) {
error("109", c, inGroup, _local2);
}
return(_local1);
}
static function output(s) {
if (typeof(logOutput) == "function") {
logOutput(s);
} else {
trace(s);
}
}
static function error(errorCode) {
var _local3 = arguments[1];
var _local4 = arguments[2];
var _local6 = arguments[3];
if (VERBOSE != true) {
output(("[FuseKitCommon#" + errorCode) + "]");
return(undefined);
}
var _local2 = "";
var _local5 = newline;
switch (errorCode) {
case "001" :
_local2 = _local2 + "** ERROR: When using simpleSetup to extend prototypes, you must pass the Shortcuts class. **";
_local2 = _local2 + (_local5 + " import com.mosesSupposes.fuse.*;");
_local2 = _local2 + ((_local5 + " ZigoEngine.simpleSetup(Shortcuts);") + _local5);
break;
case "002" :
_local2 = _local2 + "** ZigoEngine.doShortcut: shortcuts missing. Use the setup commands: import com.mosesSupposes.fuse.*; ZigoEngine.register(Shortcuts); **";
break;
case "003" :
_local2 = _local2 + ((_local5 + "*** Error: DO NOT use #include \"lmc_tween.as\" with this version of ZigoEngine! ***") + _local5);
break;
case "004" :
_local2 = _local2 + (("** ZigoEngine.doTween - too few arguments [" + _local3) + "].");
if (Boolean(_local4) == true) {
_local2 = _local2 + " If you are trying to use Object Syntax without Fuse, pass FuseItem in your register() or simpleSetup() call. **";
} else {
_local2 = _local2 + " Object syntax call failed. **";
}
break;
case "005" :
_local2 = _local2 + (((("** ZigoEngine.doTween - missing targets[" + _local3) + "] and/or props[") + _local4) + "] **");
break;
case "006" :
_local2 = _local2 + (("** Error: easing shortcut string not recognized (\"" + _local3) + "\"). You may need to pass the in PennerEasing class during register or simpleSetup. **");
break;
case "007" :
_local2 = _local2 + (((("- ZigoEngine: Target locked [" + _local3) + "], ignoring tween call [") + _local4) + "]");
break;
case "008" :
_local2 = _local2 + "** You must register the Shortcuts class in order to use easy string-type callback parsing. **";
break;
case "009" :
_local2 = _local2 + (("** ZigoEngine: A callback parameter \"" + _local3) + "\" was not recognized. **");
break;
case "010" :
_local2 = _local2 + ((((("** " + ((_local3 == true) ? "ZigoEngine" : "FuseItem")) + " unable to parse ") + ((_local4 == 1) ? "callback[" : (String(_local4) + " callbacks["))) + _local6) + "]. Try using the syntax {scope:this, func:\"myFunction\"} **");
break;
case "011" :
_local2 = _local2 + (((("- ZigoEngine: Callbacks discarded via skipLevel 2 option [" + _local3) + "|") + _local4) + "].");
break;
case "012" :
_local2 = _local2 + (((((("- Engine set props or ignored no-change tween on: " + _local3) + ", props passed:[") + _local4) + "], endvals passed:[") + _local6) + "]");
break;
case "013" :
_local2 = _local2 + (((((("- Engine added tween on:\n\ttargets:[" + _local3) + "]\n\tprops:[") + _local4) + "]\n\tendvals:[") + _local6) + "]");
break;
case "014" :
_local2 = _local2 + "** Error: easing function passed is not usable with this engine. Functions need to follow the Robert Penner model. **";
break;
case "015" :
_local2 = _local2 + "** Error: The CustomEasing class must be passed during setup (register or simpleSetup) to use custom easing Arrays. **";
break;
case "016" :
_local2 = _local2 + (("[ ZigoEngine.TIME_MULTIPLIER: " + String(Number(Number(_local3) * 100))) + "% ]");
break;
case "101" :
_local2 = _local2 + "** ERROR: Fuse simpleSetup was removed in version 2.0! **";
_local2 = _local2 + (_local5 + " You must now use the following commands:");
_local2 = _local2 + ((_local5 + _local5) + "\timport com.mosesSupposes.fuse.*;");
_local2 = _local2 + (_local5 + "\tZigoEngine.simpleSetup(Shortcuts, PennerEasing, Fuse);");
_local2 = _local2 + ((_local5 + "Note that PennerEasing is optional, and FuseFMP is also accepted. (FuseFMP.simpleSetup is run automatically if included.)") + _local5);
break;
case "102" :
_local2 = _local2 + (((("** Fuse " + _local3) + " index or label not found (") + _local4) + ") or out of range. **");
break;
case "103" :
_local2 = _local2 + (((("** Fuse skipTo (" + _local3) + ") ignored - targets the current index (") + _local4) + "). **");
break;
case "104" :
_local2 = _local2 + (("** Fuse fastForward index out of play range (" + _local3) + ") - skipTo has been called instead. **");
break;
case "105" :
_local2 = _local2 + "** An unsupported Array method was called on Fuse. **";
break;
case "106" :
_local2 = _local2 + "** ERROR: You have not set up Fuse correctly. **";
_local2 = _local2 + (_local5 + "You must now use the following commands (PennerEasing is optional).");
_local2 = _local2 + (_local5 + "\timport com.mosesSupposes.fuse.*;");
_local2 = _local2 + ((_local5 + "\tZigoEngine.simpleSetup(Shortcuts, PennerEasing, Fuse);") + _local5);
break;
case "107" :
_local2 = _local2 + "** Fuse :: id not found - Aborting open(). **";
break;
case "108" :
_local2 = _local2 + "** Fuse.startRecent: No recent Fuse found to start! **";
break;
case "109" :
_local2 = _local2 + (("** Command \"" + _local3) + "\" discarded. ");
if (_local4 == true) {
_local2 = _local2 + "Not allowed within a group. **";
} else if (_local6 == true) {
_local2 = _local2 + (("Not supported in Object Syntax, use the " + _local3) + " property instead. **");
} else {
_local2 = _local2 + "The command may be unrecognized or missing an argument. **";
}
break;
case "110" :
_local2 = _local2 + (((("** " + _local3) + " illegal Fuse property discarded:\"") + _local4) + "\". Bezier keywords other than x and y cannot be set as start values. **");
break;
case "112" :
_local2 = _local2 + "** Fuse: missing com.mosesSupposes.fuse.ZigoEngine! Cannot tween. **";
break;
case "113" :
_local2 = _local2 + "** FuseItem: A callback has been discarded. Actions with a command may only contain: label, delay, scope, args. **";
break;
case "115" :
_local2 = _local2 + ((_local3 + " overlapping prop discarded: ") + _local4);
break;
case "116" :
_local2 = _local2 + ("** FuseItem Error: Delays within groups (arrays) and start/update callbacks are not supported when using Fuse without ZigoEngine. Although you need to restructure your Fuse, it should be possible to achieve the same results. **" + _local5);
break;
case "117" :
_local2 = _local2 + (("** " + _local3) + ": infinite cycles are not allowed within Fuses - discarded. **");
break;
case "118" :
_local2 = _local2 + ((("** " + _local3) + ": No targets found!") + ((_local4 == true) ? " [Unable to set start props] **" : " [Skipping tween parameters in this action] **"));
break;
case "119" :
_local2 = _local2 + ((((("** " + _local3) + ": ") + ((_local4 == 1) ? "" : (_local4 + " actions in the group"))) + " missing targets") + ((_local6 == true) ? " during setStartProps **" : " **"));
break;
case "120" :
_local2 = _local2 + (((("** " + _local3) + ": conflict with \"") + _local4) + "\". Property might be doubled within a grouped-action array. **");
break;
case "121" :
_local2 = _local2 + "** Fuse timecode formatting requires \"00:\" formatting (example:\"01:01:33\" yields 61.33 seconds.) **";
break;
case "122" :
_local2 = _local2 + (("** Event \"" + _local3) + "\" reserved by Fuse. **");
break;
case "123" :
_local2 = _local2 + (("** A Fuse event parameter failed in " + _local3) + " **");
break;
case "124" :
_local2 = _local2 + (((("** " + _local3) + ": trigger:") + _local4) + " ignored - only one trigger is allowed per action **");
break;
case "125" :
_local2 = _local2 + (_local3 + " Warning - fastForward hit an item during its tween cycle, may malfunction.");
break;
case "201" :
_local2 = _local2 + (("**** FuseFMP cannot initialize argument " + _local3) + " (BitmapFilters cannot be applied to this object type) ****");
break;
case "202" :
_local2 = _local2 + (((("** FuseFMP error: A " + _local3) + " could not be created for ") + _local4) + " **");
break;
case "203" :
_local2 = _local2 + (("** FuseFMP.setFilterProps - too few arguments passed (" + _local3) + ") - minimum 2 required. **");
break;
case "204" :
_local2 = _local2 + (("** FuseFMP.setFilterProps could not locate the filter passed. (" + _local3) + ") **");
}
output(_local2);
}
static function parseCallback(callback, targets, outputLevel, callerIsEngine, addprefix) {
if (callback._vcb == true) {
return(callback);
}
var validCBs = {_vcb:true, skipLevel:_global.com.mosesSupposes.fuse.ZigoEngine.SKIP_LEVEL, cycles:1};
if (callback == undefined) {
return(validCBs);
}
var cbErrors = [];
if (typeof(callback) == "object") {
if (((callback.skipLevel != undefined) && (typeof(callback.skipLevel) == "number")) && (callback.skipLevel != _global.com.mosesSupposes.fuse.ZigoEngine.SKIP_LEVEL)) {
if ((callback.skipLevel >= 0) && (callback.skipLevel <= 2)) {
validCBs.skipLevel = callback.skipLevel;
}
}
if (callback.cycles != undefined) {
if ((typeof(callback.cycles) == "number") && (callback.cycles > -1)) {
validCBs.cycles = callback.cycles;
} else if (callback.cycles.toUpperCase() == "LOOP") {
validCBs.cycles = 0;
}
}
if (callback.extra1 != undefined) {
validCBs.extra1 = callback.extra1;
}
if (callback.extra2 != undefined) {
validCBs.extra2 = callback.extra2;
}
if ((callback.roundResults === true) || (callback.roundResults === false)) {
validCBs.roundResults = callback.roundResults;
}
} else {
callback = {func:callback};
}
var prefixes = ["start", "upd", ""];
var easyfuncparse = _global.com.mosesSupposes.fuse.Shortcuts.parseStringTypeCallback;
for (var i in prefixes) {
var prefix = prefixes[i];
var fstr = callback[prefix + "func"];
if (((fstr != undefined) && (typeof(fstr) == "string")) && (fstr.indexOf("(") > -1)) {
if (easyfuncparse != undefined) {
var efc = easyfuncparse(fstr);
if (efc.func != undefined) {
callback[prefix + "scope"] = efc.scope;
callback[prefix + "func"] = efc.func;
callback[prefix + "args"] = efc.args;
}
} else if (outputLevel > 0) {
error("008");
}
}
}
var basescope = callback.scope;
for (var i in callback) {
var fi = i.toLowerCase().indexOf("func");
if (fi > -1) {
var prefix = i.slice(0, fi);
var func = callback[i];
var args = callback[prefix + "args"];
var scope = ((callback[prefix + "scope"] == undefined) ? (basescope) : (callback[prefix + "scope"]));
if ((typeof(func) == "string") && (scope[func] == undefined)) {
for (var j in targets) {
var targ = targets[j];
if (typeof(targ[func]) == "function") {
scope = targ;
break;
}
if (typeof(targ._parent[func]) == "function") {
scope = targ._parent;
break;
}
}
if ((scope == undefined) && (_level0[func] != undefined)) {
scope = _level0;
}
if ((scope == undefined) && (_global[func] != undefined)) {
scope = _global;
}
}
if (typeof(func) != "function") {
if (typeof(scope[String(func)]) == "function") {
func = scope[String(func)];
} else {
func = eval (String(func));
}
}
if (func == undefined) {
cbErrors.push(String((((((((addprefix == null) ? (i) : (addprefix + i)) + ":") + ((typeof(callback[i]) == "string") ? (("\"" + callback[i]) + "\"") : (callback[i]))) + "/") + prefix) + "scope:") + scope));
} else {
if ((args != undefined) && (!(args instanceof Array))) {
args = [args];
}
if (prefix == "") {
prefix = "end";
}
validCBs[prefix] = {s:scope, f:func, a:args};
if (callerIsEngine == true) {
validCBs[prefix].id = ++cbTicker;
}
if (prefix == "start") {
validCBs.start.fired = false;
}
}
} else if (_cbprops().indexOf(("|" + i) + "|") == -1) {
error("009", i);
}
}
if ((cbErrors.length > 0) && (outputLevel > 0)) {
if (outputLevel > 0) {
error("010", callerIsEngine, cbErrors.length, cbErrors.toString());
}
}
return(validCBs);
}
static var VERSION = "Fuse Kit 2.1.3r1 Copyright (c) 2006 Moses Gunesch, MosesSupposes.com under MIT Open Source License";
static var VERBOSE = true;
static var ALL = "ALL";
static var ALLCOLOR = "ALLCOLOR";
static var cbTicker = 0;
}
Symbol 301 MovieClip [__Packages.com.mosesSupposes.fuse.ZigoEngine] Frame 0
class com.mosesSupposes.fuse.ZigoEngine
{
static var extensions, updateTime, tweenHolder, instance, _listeners, broadcastMessage, updateIntId;
function ZigoEngine () {
}
static function addListener(handler) {
AsBroadcaster.initialize(com.mosesSupposes.fuse.ZigoEngine);
addListener(handler);
}
static function removeListener(handler) {
}
static function isPlaying() {
return(_playing);
}
static function simpleSetup(shortcutsClass) {
if (arguments.length > 0) {
register.apply(com.mosesSupposes.fuse.ZigoEngine, arguments);
}
_global.ZigoEngine = com.mosesSupposes.fuse.ZigoEngine;
if (extensions.fuse != undefined) {
_global.Fuse = extensions.fuse;
}
if (extensions.fuseFMP != undefined) {
extensions.fuseFMP.simpleSetup();
}
initialize(MovieClip.prototype, Button.prototype, TextField.prototype);
if (extensions.shortcuts == undefined) {
com.mosesSupposes.fuse.FuseKitCommon.error("001");
}
}
static function register(classReference) {
if (extensions == undefined) {
extensions = {};
}
var _local3 = "|fuse|fuseItem|fuseFMP|shortcuts|pennerEasing|customEasing|";
for (var _local4 in arguments) {
var _local2 = arguments[_local4].registryKey;
if ((extensions[_local2] == undefined) && (_local3.indexOf(("|" + _local2) + "|") > -1)) {
extensions[_local2] = arguments[_local4];
if ((_local2 == "fuseFMP") || (_local2 == "shortcuts")) {
Object(extensions[_local2]).initialize();
}
}
}
}
static function initialize(target) {
if (arguments.length > 0) {
initializeTargets.apply(com.mosesSupposes.fuse.ZigoEngine, arguments);
if (extensions.shortcuts != undefined) {
extensions.shortcuts.addShortcutsTo.apply(extensions.shortcuts, arguments);
}
}
}
static function deinitialize(target) {
if ((arguments.length == 0) || (target == null)) {
arguments.push(MovieClip.prototype, Button.prototype, TextField.prototype);
}
deinitializeTargets.apply(com.mosesSupposes.fuse.ZigoEngine, arguments);
if (extensions.shortcuts != undefined) {
extensions.shortcuts.removeShortcutsFrom.apply(extensions.shortcuts, arguments);
}
}
static function getUpdateInterval() {
return(updateTime);
}
static function setUpdateInterval(time) {
if (_playing) {
setup(true);
updateTime = time;
setup();
} else {
updateTime = time;
}
}
static function getControllerDepth() {
return(tweenHolder.getDepth());
}
static function setControllerDepth(depth) {
if ((depth == null) || (_global.isNaN(depth) == true)) {
depth = 6789;
}
if (Object(tweenHolder).proof != null) {
tweenHolder.swapDepths(depth);
} else {
tweenHolder = _root.createEmptyMovieClip("ZigoEnginePulse", depth);
}
}
static function doShortcut(targets, methodName) {
if (extensions.shortcuts == undefined) {
if (OUTPUT_LEVEL > 0) {
com.mosesSupposes.fuse.FuseKitCommon.error("002");
}
return(null);
}
return(extensions.shortcuts.doShortcut.apply(extensions.shortcuts, arguments));
}
static function doTween(targets, props, endvals, seconds, ease, delay, callback) {
if (extensions.fuse.addBuildItem(arguments) == true) {
return(null);
}
if (TIME_MULTIPLIER != prevTimeMult) {
TIME_MULTIPLIER = Math.abs(TIME_MULTIPLIER);
if (_global.isNaN(TIME_MULTIPLIER) == true) {
TIME_MULTIPLIER = 1;
}
if (OUTPUT_LEVEL > 0) {
com.mosesSupposes.fuse.FuseKitCommon.error("016", TIME_MULTIPLIER);
}
prevTimeMult = TIME_MULTIPLIER;
}
if ((instance == undefined) || ((Object(tweenHolder).proof == undefined) && (updateTime == undefined))) {
if ((MovieClip.prototype.tween != null) && (typeof(_global.$tweenManager) == "object")) {
com.mosesSupposes.fuse.FuseKitCommon.error("003");
}
instance = new com.mosesSupposes.fuse.ZManager();
_playing = false;
}
var _local4 = instance.paramsObj(targets, props, endvals, true);
var _local7 = (((_local4.tg[0] == null) || (_local4.tg.length == 0)) ? undefined : (_local4.tg));
if (((_local4.pa == undefined) || (_local7 == undefined)) || (arguments.length < 3)) {
if (((extensions.fuseItem != null) && (arguments.length == 1)) && (typeof(arguments[0]) == "object")) {
return(extensions.fuseItem.doTween(arguments[0]));
}
if (OUTPUT_LEVEL > 0) {
if (arguments.length < 3) {
com.mosesSupposes.fuse.FuseKitCommon.error("004", (((arguments.length == 1) && (arguments[0] == null)) ? "1 (null)" : (String(arguments.length))), Boolean(extensions.fuseItem == null));
} else {
com.mosesSupposes.fuse.FuseKitCommon.error("005", _local7.toString(), _local4.pa.toString());
}
}
return(null);
}
if (_playing != true) {
setup();
}
if ((seconds == null) || (_global.isNaN(seconds) == true)) {
seconds = DURATION || 1;
} else if (seconds < 0.01) {
seconds = 0;
}
seconds = seconds * TIME_MULTIPLIER;
if (((delay < 0.01) || (delay == null)) || (_global.isNaN(delay) == true)) {
delay = 0;
}
delay = delay * TIME_MULTIPLIER;
var _local12 = com.mosesSupposes.fuse.FuseKitCommon.parseCallback(callback, _local7, OUTPUT_LEVEL, true);
var _local9;
if (typeof(ease) == "function") {
if (typeof(Function(ease).call(null, 1, 1, 1, 1)) == "number") {
_local9 = Function(ease);
} else if (OUTPUT_LEVEL > 0) {
com.mosesSupposes.fuse.FuseKitCommon.error("014", ease);
}
} else if ((ease == null) || (ease == "")) {
if (EASING instanceof Function) {
_local9 = Function(EASING);
} else if (extensions.pennerEasing != undefined) {
ease = EASING;
}
}
if ((typeof(ease) == "string") && (ease != "")) {
if (extensions.pennerEasing[ease] != undefined) {
_local9 = extensions.pennerEasing[ease];
} else if (OUTPUT_LEVEL > 0) {
com.mosesSupposes.fuse.FuseKitCommon.error("006", ease);
}
} else if (ease instanceof Array) {
if (extensions.customEasing != undefined) {
_local12.extra1 = ease;
if (typeof(ease[0]) == "number") {
_local9 = extensions.customEasing.precalced;
} else {
_local9 = extensions.customEasing.fromCurve;
}
} else if (OUTPUT_LEVEL > 0) {
com.mosesSupposes.fuse.FuseKitCommon.error("015", ease);
}
}
if (typeof(_local9) != "function") {
_local9 = function (t, b, c, d) {
t = (t / d) - 1;
return((c * (((((t * t) * t) * t) * t) + 1)) + b);
};
}
if (_listeners.length > 0) {
broadcastMessage.call(com.mosesSupposes.fuse.ZigoEngine, "onTweenAdd", _local7, _local4.pa, _local4.va, seconds, _local9, delay, _local12);
}
var _local6 = "";
for (var _local13 in _local7) {
var _local3 = _local7[_local13];
if (_local3.__zigoID__ == null) {
initializeTargets(_local3);
} else if (instance.getStatus("locked", _local3) == true) {
if (OUTPUT_LEVEL > 0) {
com.mosesSupposes.fuse.FuseKitCommon.error("007", ((_local3._name != undefined) ? (_local3._name) : (_local3.toString())), _local4.pa.toString());
}
continue;
}
var _local5 = instance.addTween(_local3, _local4.pa, _local4.va, seconds, _local9, delay, _local12);
_local6 = ((_local5 == null) ? "|" : (_local5 + "|")) + _local6;
}
_local6 = _local6.slice(0, -1);
return((((_local6 == "") || (_local6 == "|")) ? null : (_local6)));
}
static function removeTween(targs, props) {
instance.removeTween(targs, props);
}
static function isTweening(targ, prop) {
return(Boolean(instance.getStatus("active", targ, prop)));
}
static function getTweens(targ) {
if (instance == undefined) {
return(0);
}
return(Number(instance.getStatus("count", targ)));
}
static function lockTween(targ, setLocked) {
instance.alterTweens("lock", targ, setLocked == true);
}
static function isTweenLocked(targ) {
return(Boolean(instance.getStatus("locked", targ)));
}
static function ffTween(targs, props, suppressEndEvents) {
instance.alterTweens("ff", targs, props, null, suppressEndEvents);
}
static function skipTweenTo(seconds, targs, props) {
instance.alterTweens("skipTo", targs, props, false, false, seconds);
}
static function rewTween(targs, props, pauseFlag, suppressStartEvents) {
instance.alterTweens("rewind", targs, props, pauseFlag, suppressStartEvents);
}
static function isTweenPaused(targ, prop) {
return(Boolean(instance.getStatus("paused", targ, prop)));
}
static function pauseTween(targs, props) {
instance.alterTweens("pause", targs, props);
}
static function unpauseTween(targs, props) {
instance.alterTweens("unpause", targs, props);
}
static function resumeTween(targs, props) {
instance.alterTweens("unpause", targs, props);
}
static function setColorByKey(targetObj, type, amt, rgb) {
new Color(targetObj).setTransform(getColorTransObj(type, amt, rgb));
}
static function getColorTransObj(type, amt, rgb) {
switch (type) {
case "brightness" :
var _local3 = 100 - Math.abs(amt);
var _local4 = ((amt > 0) ? (255 * (amt / 100)) : 0);
return({ra:_local3, rb:_local4, ga:_local3, gb:_local4, ba:_local3, bb:_local4});
case "brightOffset" :
return({ra:100, rb:255 * (amt / 100), ga:100, gb:255 * (amt / 100), ba:100, bb:255 * (amt / 100)});
case "contrast" :
return({ra:amt, rb:128 - (1.28 * amt), ga:amt, gb:128 - (1.28 * amt), ba:amt, bb:128 - (1.28 * amt)});
case "invertColor" :
return({ra:100 - (2 * amt), rb:amt * 2.55, ga:100 - (2 * amt), gb:amt * 2.55, ba:100 - (2 * amt), bb:amt * 2.55});
case "tint" :
if (rgb == null) {
break;
}
var _local5;
if (typeof(rgb) == "string") {
if (rgb.charAt(0) == "#") {
rgb = rgb.slice(1);
}
rgb = ((rgb.charAt(1).toLowerCase() != "x") ? ("0x" + rgb) : (rgb));
}
_local5 = Number(rgb);
return({ra:100 - amt, rb:(_local5 >> 16) * (amt / 100), ga:100 - amt, gb:((_local5 >> 8) & 255) * (amt / 100), ba:100 - amt, bb:(_local5 & 255) * (amt / 100)});
}
return({rb:0, ra:100, gb:0, ga:100, bb:0, ba:100});
}
static function getColorKeysObj(targOrTransObj) {
var _local1 = ((targOrTransObj.ra != undefined) ? (targOrTransObj) : (new Color(targOrTransObj).getTransform()));
var _local6 = (_local1.ra == _local1.ga) && (_local1.ga == _local1.ba);
var _local8 = (_local1.rb == _local1.gb) && (_local1.gb == _local1.bb);
var _local3 = {tintPercent:Number(((_local6 == true) ? (100 - _local1.ra) : 0))};
if (_local3.tintPercent != 0) {
var _local5 = 100 / _local3.tintPercent;
_local3.tint = (((_local1.rb * _local5) << 16) | ((_local1.gb * _local5) << 8)) | (_local1.bb * _local5);
var _local2 = _local3.tint.toString(16);
var _local4 = 6 - _local2.length;
while ((_local4--) > 0) {
_local2 = "0" + _local2;
}
_local3.tintString = "0x" + _local2.toUpperCase();
}
if ((_local6 == true) && (_local8 == true)) {
if (_local1.ra < 0) {
_local3.invertColor = _local1.rb * 0.392156862745098;
} else if ((_local1.ra == 100) && (_local1.rb != 0)) {
_local3.brightOffset = _local1.rb * 0.392156862745098;
}
if (_local1.ra != 100) {
if ((_local1.rb == 0) || ((_local1.rb != 0) && (((255 * ((100 - _local1.ra) / 100)) - _local1.rb) <= 1))) {
_local3.brightness = ((_local1.rb != 0) ? (100 - _local1.ra) : (_local1.ra - 100));
}
if (((128 - (1.28 * _local1.ra)) - _local1.rb) <= 1) {
_local3.contrast = _local1.ra;
}
}
}
return(_local3);
}
static function initializeTargets() {
for (var _local5 in arguments) {
var _local4 = arguments[_local5];
if ((((_local4 == MovieClip.prototype) || (_local4 == Button.prototype)) || (_local4 == TextField.prototype)) || (_local4 == Object.prototype)) {
if (_local4.oldAddListener == undefined) {
if (_local4 == TextField.prototype) {
_local4.oldAddListener = _local4.addListener;
_global.ASSetPropFlags(_local4, "oldAddListener", 7, 1);
}
_local4.addListener = function (o) {
if (this.__zigoID__ == undefined) {
com.mosesSupposes.fuse.ZigoEngine.initializeTargets(this);
}
if (this instanceof TextField) {
Function(this.oldAddListener).call(this, o);
} else {
this.addListener(o);
}
};
if (_local4 == MovieClip.prototype) {
_global.ASSetPropFlags(_local4, "addListener", 7, 1);
}
}
} else if (_local4.__zigoID__ == undefined) {
_local4.__zigoID__ = zigoIDs;
_global.ASSetPropFlags(_local4, "__zigoID__", 7, 1);
zigoIDs++;
if ((_local4._listeners == null) || (_local4.addListener == null)) {
AsBroadcaster.initialize(_local4);
}
}
}
}
static function deinitializeTargets() {
for (var _local4 in arguments) {
var _local3 = arguments[_local4];
if (_local3.__zigoID__ != undefined) {
_global.ASSetPropFlags(_local3, "__zigoID__,_listeners,broadcastMessage,addListener,removeListener", 0, 2);
delete _local3.__zigoID__;
delete _local3._listeners;
delete _local3.broadcastMessage;
delete _local3.addListener;
delete _local3.removeListener;
}
if (_local3.oldAddListener != undefined) {
_global.ASSetPropFlags(_local3, "oldAddListener", 0, 2);
_local3.addListener = _local3.oldAddListener;
delete _local3.oldAddListener;
}
}
}
static function __mgrRelay(inst, method, args) {
if (inst == instance) {
Function(com.mosesSupposes.fuse.ZigoEngine[method]).apply(com.mosesSupposes.fuse.ZigoEngine, args);
}
}
static function setup(deinitFlag) {
if (deinitFlag == true) {
_playing = false;
clearInterval(updateIntId);
delete tweenHolder.onEnterFrame;
return(undefined);
}
instance.cleanUp();
clearInterval(updateIntId);
delete updateIntId;
if ((updateTime != null) && (updateTime > 0)) {
updateIntId = setInterval(instance, "update", updateTime);
} else {
if (Object(tweenHolder).proof == null) {
setControllerDepth(6789);
Object(tweenHolder).proof = 1;
}
var _inst = instance;
tweenHolder.onEnterFrame = function () {
_inst.update.call(_inst);
};
}
_playing = true;
instance.now = getTimer();
}
static var VERSION = com.mosesSupposes.fuse.FuseKitCommon.VERSION + ", ZigoEngine based on concepts by L.Zigo";
static var EASING = "easeOutQuint";
static var DURATION = 1;
static var TIME_MULTIPLIER = 1;
static var ROUND_RESULTS = false;
static var OUTPUT_LEVEL = 1;
static var AUTOSTOP = false;
static var SKIP_LEVEL = 0;
static var _playing = false;
static var zigoIDs = 0;
static var prevTimeMult = 1;
}
Symbol 302 MovieClip [__Packages.com.mosesSupposes.fuse.ZManager] Frame 0
class com.mosesSupposes.fuse.ZManager
{
var tweens, now;
function ZManager () {
tweens = {};
numTweens = 0;
}
function addTween(obj, props, endvals, seconds, ease, delay, callback) {
var _local24 = ((callback.skipLevel == undefined) ? 0 : (callback.skipLevel));
var _local44 = ((callback.cycles == undefined) ? 1 : (callback.cycles));
var _local30 = callback.extra1;
var _local29 = callback.extra2;
var _local23 = [];
var _local14 = _global.com.mosesSupposes.fuse.FuseFMP;
var _local43 = String(("|" + _local14.getAllShortcuts().join("|")) + "|");
var _local42 = com.mosesSupposes.fuse.FuseKitCommon._cts();
var _local25 = "";
var _local28 = "";
var _local22 = obj.__zigoID__;
var _local7 = tweens[String(_local22)];
if ((_local7 != undefined) && (com.mosesSupposes.fuse.ZigoEngine.AUTOSTOP == true)) {
if (obj._listeners.length > 0) {
for (var _local40 in _local7.props) {
_local23.unshift(_local40);
}
}
_local7.numProps = 0;
cleanUp(true);
}
for (var _local47 in props) {
var _local5 = props[_local47];
var _local4 = endvals[_local47];
var _local15 = 0;
if (_local5 == "_fade") {
_local5 = "_alpha";
_local15 = ((_local4 < 50) ? -1 : 1);
}
var _local16 = _local42.indexOf(("|" + _local5) + "|") > -1;
var _local18 = _local7.colorProp;
if (_local7 != undefined) {
if ((_local16 == true) && (_local18 != undefined)) {
_local23.unshift(_local18);
delete _local7.props[_local18];
delete _local7.colorProp;
_local7.numProps--;
} else if (_local7.props[_local5] != undefined) {
_local23.unshift(_local5);
delete _local7[_local5];
_local7.numProps--;
}
}
var _local3 = {c:-1, fmp:-1, complex:-1};
var _local11 = ((_local24 == 0) && ((seconds + delay) == 0)) || ((_local24 > 0) && (seconds == 0));
var _local10 = false;
var _local13 = (_local14 != undefined) && (_local43.indexOf(("|" + _local5) + "|") > -1);
var _local19 = (_local5.toLowerCase().indexOf("colors") > -1) && (_local4 instanceof Array);
var _local27 = ((_local13 == true) && (_local5.indexOf("lor") > -1)) && (_local5.charAt(2) != "l");
if (_local13 == true) {
_local3.fmp = _local14;
_local3.ps = _local14.getFilterProp(obj, _local5, true);
_local3.special = true;
}
if (((_local16 == true) || (_local19 == true)) || (_local27 && (_local11 == false))) {
_local3.complex = 1;
if (_local16 == true) {
_local3.c = new Color(obj);
_local3.ps = Color(_local3.c).getTransform();
var _local17 = ((((_local5 == "_tint") || (_local5 == "_tintPercent")) || (_local5 == "_colorReset")) ? "tint" : (_local5.slice(1)));
var _local9 = null;
var _local12 = null;
if (_local5 != "_colorTransform") {
if (_local17 == "tint") {
if (typeof(_local4) == "object") {
_local12 = _local4.tint;
_local9 = ((_global.isNaN(_local4.percent) == true) ? 100 : (_local4.percent));
} else if ((_local5 == "_tintPercent") || (_local5 == "_colorReset")) {
var _local20 = com.mosesSupposes.fuse.ZigoEngine.getColorKeysObj(obj).tintPercent;
if (_local5 == "_colorReset") {
_local9 = Math.min(_local20, 100 - Math.abs(Number(_local4)));
} else {
_local9 = ((typeof(_local4) == "string") ? ((_local20 || 0) + Number(_local4)) : Number(_local4));
}
_local9 = Math.max(0, Math.min(_local9, 100));
_local12 = com.mosesSupposes.fuse.ZigoEngine.getColorKeysObj(obj).tint || 0;
} else {
_local12 = _local4;
_local9 = 100;
}
} else {
_local9 = ((typeof(_local4) == "string") ? ((com.mosesSupposes.fuse.ZigoEngine.getColorKeysObj(obj)[_local17] || 0) + Number(_local4)) : (_local4));
}
_local4 = com.mosesSupposes.fuse.ZigoEngine.getColorTransObj(_local17, _local9, _local12);
}
if (_local11 == true) {
if (_local5 == "_colorTransform") {
Color(_local3.c).setTransform(_local4);
} else {
com.mosesSupposes.fuse.ZigoEngine.setColorByKey(obj, _local17, _local9, _local12);
}
} else {
var _local21 = getChangeObj(_local3.ps, _local4, false, false);
_local3.ch = _local21.map;
if (_local21.changed == true) {
_local10 = true;
}
}
} else if (_local11 == true) {
_local14.setFilterProp(obj, _local5, _local4);
} else if (_local19 == true) {
_local3.c = 2;
_local3.ch = [];
for (var _local40 in _local4) {
if (_local4[_local40] != null) {
if (_local3.ps == null) {
_local3.ps = [];
}
_local3.ps[_local40] = com.mosesSupposes.fuse.ZigoEngine.getColorTransObj("tint", 100, ((_local3.ps[_local40] == null) ? obj[_local5][_local40] : _local3.ps[_local40]));
var _local21 = getChangeObj(_local3.ps[_local40], com.mosesSupposes.fuse.ZigoEngine.getColorTransObj("tint", 100, _local4[_local40]), true, false);
_local3.ch[_local40] = _local21.map;
if (_local21.changed == true) {
_local10 = true;
}
}
}
} else {
_local3.c = 1;
_local3.ps = com.mosesSupposes.fuse.ZigoEngine.getColorTransObj("tint", 100, _local3.ps);
var _local21 = getChangeObj(_local3.ps, com.mosesSupposes.fuse.ZigoEngine.getColorTransObj("tint", 100, _local4), true, false);
_local3.ch = _local21.map;
if (_local21.changed == true) {
_local10 = true;
}
}
} else if (_local5 == "_bezier_") {
removeTween(obj, "_x,_y", true);
if (_local11 == true) {
if ((_local4.x != null) && (_global.isNaN(Number(_local4.x)) == false)) {
obj._x = ((typeof(_local4.x) == "string") ? (obj._x + Number(_local4.x)) : (_local4.x));
}
if ((_local4.y != null) && (_global.isNaN(Number(_local4.y)) == false)) {
obj._y = ((typeof(_local4.y) == "string") ? (obj._y + Number(_local4.y)) : (_local4.y));
}
} else {
_local3.special = true;
_local3.ps = 0;
_local3.ch = 1;
_local3.bz = {sx:obj._x, sy:obj._y};
if ((_local4.x == null) || (_global.isNaN(Number(_local4.x)))) {
_local4.x = _local3.bz.sx;
}
if ((_local4.y == null) || (_global.isNaN(Number(_local4.y)))) {
_local4.y = _local3.bz.sy;
}
_local3.bz.chx = ((typeof(_local4.x) == "string") ? (Number(_local4.x)) : (_local4.x - _local3.bz.sx));
if (_global.isNaN(_local3.bz.chx) == true) {
_local3.bx.chx = 0;
}
_local3.bz.chy = ((typeof(_local4.y) == "string") ? (Number(_local4.y)) : (_local4.y - _local3.bz.sy));
if (_global.isNaN(_local3.bz.chy) == true) {
_local3.bx.chy = 0;
}
if ((_local4.controlX == null) || (_global.isNaN(Number(_local4.controlX)))) {
_local3.bz.ctrlx = _local3.bz.sx + (_local3.bz.chx / 2);
} else {
_local3.bz.ctrlx = ((typeof(_local4.controlX) == "string") ? (_local3.bz.sx + Number(_local4.controlX)) : (_local4.controlX));
}
if ((_local4.controlY == null) || (_global.isNaN(Number(_local4.controlY)))) {
_local3.bz.ctrly = _local3.bz.sy + (_local3.bz.chy / 2);
} else {
_local3.bz.ctrly = ((typeof(_local4.controlY) == "string") ? (_local3.bz.sy + Number(_local4.controlY)) : (_local4.controlY));
}
_local3.bz.ctrlx = _local3.bz.ctrlx - _local3.bz.sx;
_local3.bz.ctrly = _local3.bz.ctrly - _local3.bz.sy;
_local10 = (_local3.bz.chx + _local3.bz.chy) != 0;
}
} else {
if (typeof(_local4) == "object") {
_local3.complex = ((_local4 instanceof Array) ? 0 : 1);
}
if ((_local5 == "_x") || (_local5 == "_y")) {
removeTween(obj, "_bezier_", true);
}
if ((_local5 == "_frame") && (typeof(obj) == "movieclip")) {
_local3.ps = obj._currentframe;
_local3.special = true;
} else if (_local13 == false) {
if (_local3.complex > -1) {
_local3.ps = ((_local3.complex == 0) ? ([]) : ({}));
for (var _local40 in _local4) {
_local3.ps[_local40] = obj[_local5][_local40];
}
} else {
_local3.ps = obj[_local5];
}
}
if (_local11 == true) {
if (_local13 == true) {
_local14.setFilterProp(obj, _local5, ((typeof(_local4) == "string") ? (_local3.ps + Number(_local4)) : (_local4)));
} else if (_local3.complex > -1) {
for (var _local40 in _local4) {
if ((_local4[_local40] != null) && (_global.isNaN(Number(_local4[_local40])) == false)) {
obj[_local5][_local40] = ((typeof(_local4[_local40]) == "string") ? (_local3.ps[_local40] + Number(_local4[_local40])) : _local4[_local40]);
if (_global.isNaN(obj[_local5][_local40]) == true) {
obj[_local5][_local40] = 0;
}
}
}
} else {
obj[_local5] = ((typeof(_local4) == "string") ? (_local3.ps + Number(_local4)) : (_local4));
if (_local15 == 1) {
obj._visible = true;
} else if (_local15 == -1) {
obj._visible = false;
}
}
} else if (_local3.complex > -1) {
var _local21 = getChangeObj(_local3.ps, _local4, _local13, _local3.complex == 0);
_local3.ch = _local21.map;
if (_local21.changed == true) {
_local10 = true;
}
} else {
if ((_local4 == null) || (_global.isNaN(Number(_local4)))) {
_local4 = _local3.ps;
}
_local3.ch = ((typeof(_local4) == "string") ? (Number(_local4)) : (Number(_local4) - _local3.ps));
if (_global.isNaN(_local3.ch) == true) {
_local3.ch = 0;
}
_local10 = _local3.ch != 0;
}
}
if (((_local24 == 0) && ((_local10 == true) || (_local11 == false))) || ((_local10 == true) && (_local11 == false))) {
if ((_local3.complex > -1) && (!(_local3.c === 2))) {
_local3.ps = [_local3.ps];
_local3.ch = [_local3.ch];
}
_local3.ts = now + (delay * 1000);
_local3.pt = -1;
_local3.d = seconds * 1000;
_local3.ef = ease;
_local3.sf = false;
_local3.cycles = _local44;
if (_local30 != undefined) {
_local3.e1 = _local30;
}
if (_local29 != undefined) {
_local3.e2 = _local29;
}
_local3.v = _local15;
if (callback.start != undefined) {
_local3.scb = callback.start;
}
if (callback.upd != undefined) {
_local3.ucb = callback.upd;
}
if (callback.end != undefined) {
_local3.ecb = callback.end;
}
if (callback.roundResults != undefined) {
_local3.rr = callback.roundResults;
}
if (tweens[String(_local22)] == undefined) {
_local7 = (tweens[String(_local22)] = {numProps:0, locked:false, targ:obj, targID:String(("\"" + ((obj._name != undefined) ? (obj._name) : (obj.toString()))) + "\""), targZID:_local22, props:{}});
numTweens++;
}
if (_local16 == true) {
_local7.colorProp = _local5;
}
_local7.props[_local5] = _local3;
_local7.numProps++;
_local25 = (_local5 + ",") + _local25;
_local28 = (((typeof(_local4) == "string") ? (("\"" + _local4) + "\"") : (_local4)) + ",") + _local28;
}
_local3 = undefined;
}
if ((_local7 == undefined) || (_local7.numProps <= 0)) {
cleanUp();
}
if ((_local23.length > 0) && (com.mosesSupposes.fuse.ZigoEngine._listeners.length > 0)) {
com.mosesSupposes.fuse.ZigoEngine.broadcastMessage("onTweenInterrupt", {target:obj, props:_local23, __zigoID__:_local22, during:"add"});
}
if (_local25 == "") {
if (_local24 == 2) {
if (com.mosesSupposes.fuse.ZigoEngine.OUTPUT_LEVEL == 2) {
com.mosesSupposes.fuse.FuseKitCommon.error("011", ((obj._name != undefined) ? (obj._name) : (obj.toString())), props.toString());
}
} else {
var _local48 = obj._listeners.length > 0;
if (_local48 == true) {
obj.broadcastMessage("onTweenStart", {target:obj, props:props});
}
if (callback.start != undefined) {
callback.start.f.apply(callback.start.s, callback.start.a);
}
if (_local48 == true) {
obj.broadcastMessage("onTweenUpdate", {target:obj, props:props});
}
if (callback.upd != undefined) {
callback.upd.f.apply(callback.upd.s, callback.upd.a);
}
if (_local48 == true) {
obj.broadcastMessage("onTweenEnd", {target:obj, props:props});
}
if (callback.end != undefined) {
callback.end.f.apply(callback.end.s, callback.end.a);
}
}
cleanUp();
}
if (com.mosesSupposes.fuse.ZigoEngine.OUTPUT_LEVEL == 2) {
if (_local25 == "") {
com.mosesSupposes.fuse.FuseKitCommon.error("012", ((obj._name != undefined) ? (obj._name) : (obj.toString())), props.toString(), endvals.toString());
} else {
com.mosesSupposes.fuse.FuseKitCommon.error("013", ((obj._name != undefined) ? (obj._name) : (obj.toString())), _local25.slice(0, -1), _local28.slice(0, -1));
}
}
return(((_local25 == "") ? null : (_local25.slice(0, -1))));
}
function removeTween(targs, props, noInit) {
var _local4 = {};
var _local12 = paramsObj(targs, props);
if (_local12.none == true) {
return(undefined);
}
var _local16 = _local12.all;
var _local17 = _local12.allprops;
var _local9 = ((_local16 == true) ? (tweens) : (Object(_local12.tg)));
var _local8 = false;
for (var _local20 in _local9) {
var _local3 = ((_local16 == true) ? (_local20) : (String(_local9[_local20].__zigoID__)));
var _local2 = tweens[_local3];
var _local6 = ((_local17 == true) ? (_local2.props) : (_local12.props));
for (var _local14 in _local6) {
var _local5 = (_local14 == com.mosesSupposes.fuse.FuseKitCommon.ALLCOLOR) && (_local2.colorProp != undefined);
if ((_local2.props[_local14] != undefined) || (_local5 == true)) {
if (_local4[_local3] == null) {
_local4[_local3] = [];
}
_local4[_local3].unshift(_local14);
if ((_local14 == _local2.colorProp) || (_local5 == true)) {
delete _local2.props[_local2.colorProp];
delete _local2.colorProp;
} else {
delete _local2.props[_local14];
}
_local2.numProps--;
if (_local2.numProps <= 0) {
_local8 = true;
break;
}
}
}
}
if (com.mosesSupposes.fuse.ZigoEngine._listeners.length > 0) {
for (var _local19 in _local4) {
var _local7 = tweens[_local19].targ;
com.mosesSupposes.fuse.ZigoEngine.broadcastMessage("onTweenInterrupt", {target:((typeof(_local7.addProperty) == "function") ? (_local7) : (("[MISSING(\"" + tweens[_local19].targID) + "\")]")), props:_local4[_local19], __zigoID__:tweens[_local19].targZID, during:((noInit == true) ? "add" : "remove")});
}
}
if (_local8 == true) {
cleanUp(noInit);
}
}
function alterTweens(type, targs, props, pauseFlag, noEvents, skipTo) {
if (type == "lock") {
tweens[String(targs.__zigoID__)].locked = props;
return(undefined);
}
var _local11 = paramsObj(targs, props);
if (_local11.none == true) {
return(undefined);
}
var _local14 = _local11.all;
var _local15 = _local11.allprops;
var _local9 = ((_local14 == true) ? (tweens) : (Object(_local11.tg)));
var _local8 = 0;
for (var _local16 in _local9) {
var _local7 = ((_local14 == true) ? (_local16) : (String(_local9[_local16].__zigoID__)));
var _local5 = tweens[_local7];
var _local4 = ((_local15 == true) ? (_local5.props) : (_local11.props));
if (_local4.ALLCOLOR == true) {
_local4[_local5.colorProp] = true;
delete _local4.ALLCOLOR;
}
for (var _local10 in _local4) {
_local8++;
var _local2 = _local5.props[_local10];
if (type == "rewind") {
if (pauseFlag == true) {
_local2.pt = now;
}
_local2.ts = now;
if (noEvents != true) {
_local2.sf = false;
if (_local2.scb != undefined) {
_local2.scb.fired = false;
}
}
} else if (type == "ff") {
if (noEvents == true) {
_local2.suppressEnd = true;
}
_local2.o = true;
_local2.pt = -1;
_local2.ts = now - _local2.d;
} else if (type == "skipTo") {
_local2.ts = Math.min(now, (_local2.ts + (now - _local2.ts)) - (skipTo * 1000));
} else if (type == "pause") {
if (_local2.pt == -1) {
_local2.pt = now;
}
} else if (type == "unpause") {
if (_local2.pt != -1) {
_local2.ts = now - (_local2.pt - _local2.ts);
_local2.pt = -1;
}
}
}
}
if ((type == "ff") && (_local8 > 0)) {
update();
} else if ((type == "rewind") && (_local8 > 0)) {
update(true);
}
}
function getStatus(type, targ, param) {
if (targ == null) {
return(null);
}
var _local8 = String(targ).toUpperCase() == com.mosesSupposes.fuse.FuseKitCommon.ALL;
var _local4 = tweens[String(targ.__zigoID__)];
switch (type) {
case "paused" :
var _local2 = _local4.props;
if (param != null) {
if (_local2[String(param)] == undefined) {
return(false);
}
return(Boolean(_local2[String(param)].pt != -1));
}
for (var _local6 in _local2) {
if (_local2[_local6].pt != -1) {
return(true);
}
}
return(false);
case "active" :
if (param == null) {
return(Boolean(_local4 != undefined));
}
if (String(param).toUpperCase() == com.mosesSupposes.fuse.FuseKitCommon.ALLCOLOR) {
return(Boolean(_local4.colorProp != undefined));
}
return(Boolean(_local4.props[String(param)] != undefined));
case "count" :
if (!_local8) {
return(_local4.numProps);
}
var _local3 = 0;
for (var _local6 in tweens) {
_local3 = _local3 + tweens[_local6].numProps;
}
return(_local3);
case "locked" :
return(_local4.locked);
}
}
function update(force) {
var _local22 = {};
var _local24 = {};
var _local23 = {};
var _local15 = {};
var _local13 = {};
var _local14 = {};
var _local26 = false;
var _local20 = com.mosesSupposes.fuse.ZigoEngine.ROUND_RESULTS;
for (var _local35 in tweens) {
var _local12 = tweens[_local35];
var _local5 = _local12.targ;
var _local34 = _local12.props;
var _local21 = _local5._listeners.length > 0;
if (_local5.__zigoID__ == undefined) {
_local26 = true;
if (com.mosesSupposes.fuse.ZigoEngine._listeners.length > 0) {
var _local25 = [];
for (var _local30 in _local34) {
_local25.unshift(_local30);
}
com.mosesSupposes.fuse.ZigoEngine.broadcastMessage("onTweenInterrupt", {target:((typeof(_local5.addProperty) == "function") ? (_local5) : (("[MISSING:" + _local12.targID) + "]")), props:_local25, __zigoID__:_local12.targZID, during:"update"});
}
continue;
}
for (var _local30 in _local34) {
var _local3 = _local34[_local30];
if (((_local3.ts > now) || (_local3.pt != -1)) && (force != true)) {
continue;
}
var _local9 = now >= (_local3.ts + _local3.d);
if (_local3.complex == -1) {
var _local6;
if (_local9 == true) {
_local6 = _local3.ps + _local3.ch;
if ((_local3.cycles > 1) || (_local3.cycles == 0)) {
if (_local3.cycles > 1) {
_local3.cycles--;
}
_local3.ps = _local6;
_local3.ch = -_local3.ch;
_local3.ts = now;
_local9 = false;
}
} else {
_local6 = _local3.ef(now - _local3.ts, _local3.ps, _local3.ch, _local3.d, _local3.e1, _local3.e2);
}
if (_global.isNaN(_local6) == false) {
if ((_local30 != "_bezier_") && ((_local3.rr == true) || ((_local20 == true) && (!(_local3.rr === false))))) {
_local6 = Math.round(Number(_local6));
}
if (_local3.special != true) {
_local5[_local30] = _local6;
} else if (_local3.fmp != -1) {
_local3.fmp.setFilterProp(_local5, _local30, _local6);
} else if (_local30 == "_bezier_") {
var _local10 = _local3.bz;
var _local18 = _local10.sx + (_local6 * (((2 * (1 - _local6)) * _local10.ctrlx) + (_local6 * _local10.chx)));
var _local17 = _local10.sy + (_local6 * (((2 * (1 - _local6)) * _local10.ctrly) + (_local6 * _local10.chy)));
if ((_local3.rr == true) || ((_local20 == true) && (!(_local3.rr === false)))) {
_local18 = Math.round(Number(_local18));
_local17 = Math.round(Number(_local17));
}
_local5._x = _local18;
_local5._y = _local17;
} else if (_local30 == "_frame") {
MovieClip(_local5).gotoAndStop(Math.ceil(_local6));
}
}
} else {
var _local16 = (_local9 == true) && ((_local3.cycles > 1) || (_local3.cycles == 0));
var _local7 = [];
for (var _local27 in _local3.ch) {
var _local4 = ((_local3.complex == 0) ? ([]) : ({}));
for (var _local28 in _local3.ch[_local27]) {
var _local8 = _local3.ch[_local27][_local28];
var _local11 = _local3.ps[_local27][_local28];
if (_local9 == true) {
_local4[_local28] = _local11 + _local8;
if (_local16 == true) {
_local3.ch[_local27][_local28] = -_local8;
}
} else {
_local4[_local28] = _local3.ef(now - _local3.ts, _local11, _local8, _local3.d, _local3.e1, _local3.e2);
}
if (_global.isNaN(_local4[_local28]) == false) {
if ((_local3.rr == true) || ((_local20 == true) && (!(_local3.rr === false)))) {
_local4[_local28] = Math.round(_local4[_local28]);
}
}
if ((_local3.fmp == -1) && (_local3.c == -1)) {
_local5[_local30][_local28] = _local4[_local28];
}
}
_local7.push(_local4);
if ((_local3.fmp == -1) && (_local3.c == 2)) {
_local5[_local30][_local27] = Number(((_local4.rb << 16) | (_local4.gb << 8)) | _local4.bb);
}
}
if (_local3.fmp != -1) {
if (_local3.c == 1) {
_local3.fmp.setFilterProp(_local5, _local30, ((_local7[0].rb << 16) | (_local7[0].gb << 8)) | _local7[0].bb);
} else if (_local3.c == 2) {
var _local19 = [];
for (var _local28 in _local7) {
_local19.unshift(((_local7[_local28].rb << 16) | (_local7[_local28].gb << 8)) | _local7[_local28].bb);
}
_local3.fmp.setFilterProp(_local5, _local30, _local19);
}
} else if (_local3.c != -1) {
_local3.c.setTransform(_local7[0]);
}
if (_local16 == true) {
if (_local3.cycles > 1) {
_local3.cycles--;
}
_local9 = false;
_local3.ts = now;
_local3.ps = _local7;
}
}
if (_local3.sf == false) {
if (_local3.v != 0) {
_local5._visible = true;
}
if (_local21 == true) {
if (_local15[_local35] == undefined) {
_local15[_local35] = [_local5, []];
}
_local15[_local35][1].unshift(_local30);
}
_local3.sf = true;
}
if (_local3.scb.fired == false) {
_local22[String(_local3.scb.id)] = _local3.scb;
_local3.scb.fired = true;
}
if (_local21 == true) {
if (_local13[_local35] == undefined) {
_local13[_local35] = [_local5, []];
}
_local13[_local35][1].unshift(_local30);
}
if (_local3.ucb != undefined) {
_local24[String(_local3.ucb.id)] = _local3.ucb;
}
if (_local9 == true) {
if (_local3.v === -1) {
_local5._visible = false;
}
if (_local3.suppressEnd != true) {
if (_local21 == true) {
if (_local14[_local35] == undefined) {
_local14[_local35] = [_local5, []];
}
_local14[_local35][1].unshift(_local30);
}
if (_local3.ecb != undefined) {
_local23[String(_local3.ecb.id)] = _local3.ecb;
}
}
delete _local34[_local30];
if (_local30 == _local12.colorProp) {
delete _local12.colorProp;
}
_local12.numProps--;
if (_local12.numProps <= 0) {
_local26 = true;
}
}
delete _local3.suppressEnd;
}
}
for (var _local35 in _local15) {
_local15[_local35][0].broadcastMessage("onTweenStart", {target:_local15[_local35][0], props:_local15[_local35][1]});
}
for (var _local35 in _local22) {
_local22[_local35].f.apply(_local22[_local35].s, _local22[_local35].a);
}
for (var _local35 in _local13) {
_local13[_local35][0].broadcastMessage("onTweenUpdate", {target:_local13[_local35][0], props:_local13[_local35][1]});
}
for (var _local35 in _local24) {
_local24[_local35].f.apply(_local24[_local35].s, _local24[_local35].a);
}
for (var _local35 in _local14) {
_local14[_local35][0].broadcastMessage("onTweenEnd", {target:_local14[_local35][0], props:_local14[_local35][1]});
}
for (var _local35 in _local23) {
_local23[_local35].f.apply(_local23[_local35].s, _local23[_local35].a);
}
if (_local26) {
cleanUp();
}
now = getTimer();
}
function cleanUp(noInit) {
for (var _local4 in tweens) {
var _local2 = tweens[_local4].targ;
if ((tweens[_local4].numProps <= 0) || (_local2.__zigoID__ == undefined)) {
if ((((_local2 != undefined) && (_local2.tween == undefined)) && (noInit != true)) && (_local2._listeners.length <= 0)) {
com.mosesSupposes.fuse.ZigoEngine.deinitializeTargets(_local2);
}
delete tweens[_local4];
numTweens--;
}
}
if (numTweens <= 0) {
numTweens = 0;
delete tweens;
tweens = {};
if (noInit != true) {
com.mosesSupposes.fuse.ZigoEngine.__mgrRelay(this, "setup", [true]);
}
}
}
function paramsObj(targs, props, endvals, retainFade) {
var _local6 = {};
_local6.all = String(targs).toUpperCase() == com.mosesSupposes.fuse.FuseKitCommon.ALL;
_local6.none = Boolean(targs == null);
if (_local6.all == true) {
_local6.tg = [null];
} else {
_local6.tg = ((targs instanceof Array) ? (targs) : ([targs]));
for (var _local11 in _local6.tg) {
var _local7 = _local6.tg[_local11];
if ((_local7 == null) || (!((typeof(_local7) == "object") || (typeof(_local7) == "movieclip")))) {
_local6.tg.splice(Number(_local11), 1);
}
}
}
_local6.allprops = props == null;
var _local1;
var _local4;
var _local3 = {};
if (_local6.allprops == false) {
if ((typeof(props) == "string") && ((String(props).indexOf(" ") > -1) || (String(props).indexOf(",") > -1))) {
props = String(props.split(" ").join("")).split(",");
}
_local1 = ((props instanceof Array) ? (props.slice()) : ([props]));
if (endvals != undefined) {
if ((typeof(endvals) == "string") && ((String(endvals).indexOf(" ") > -1) || (String(endvals).indexOf(",") > -1))) {
endvals = String(endvals.split(" ").join("")).split(",");
}
_local4 = ((endvals instanceof Array) ? (endvals.slice()) : ([endvals]));
while (_local4.length < _local1.length) {
_local4.push(_local4[_local4.length - 1]);
}
_local4.splice(_local1.length, _local4.length - _local1.length);
}
for (var _local11 in _local1) {
var _local2 = Number(_local11);
if ((_local1[_local11] != "_scale") && (_local1[_local11] != "_size")) {
if (_local3[_local1[_local11]] == undefined) {
if ((_local1[_local11] == "_fade") && (retainFade != true)) {
_local1[_local11] = "_alpha";
}
if (String(_local1[_local11]).toUpperCase() == com.mosesSupposes.fuse.FuseKitCommon.ALLCOLOR) {
_local1[_local11] = com.mosesSupposes.fuse.FuseKitCommon.ALLCOLOR;
}
_local3[_local1[_local11]] = true;
} else {
_local1.splice(_local2, 1);
_local4.splice(_local2, 1);
}
} else {
var _local8 = String(_local1.splice(_local2, 1)[0]);
var _local5 = _local4.splice(_local2, 1)[0];
if (_local8 == "_scale") {
if (_local3._xscale == undefined) {
_local1.splice(_local2, 0, "_xscale");
_local4.splice(_local2, 0, _local5);
_local3._xscale = true;
_local2++;
}
if (_local3._yscale == undefined) {
_local1.splice(_local2, 0, "_yscale");
_local4.splice(_local2, 0, _local5);
_local3._yscale = true;
}
}
if (_local8 == "_size") {
if (_local3._width == undefined) {
_local1.splice(_local2, 0, "_width");
_local4.splice(_local2, 0, _local5);
_local3._width = true;
_local2++;
}
if (_local3._yscale == undefined) {
_local1.splice(_local2, 0, "_height");
_local4.splice(_local2, 0, _local5);
_local3._height = true;
}
}
}
}
for (var _local11 in _local1) {
if (((_local1[_local11] == "_xscale") && (_local3._width == true)) || ((_local1[_local11] == "_yscale") && (_local3._height == true))) {
_local1.splice(Number(_local11), 1);
_local4.splice(Number(_local11), 1);
delete _local3[_local1[_local11]];
}
}
}
_local6.pa = _local1;
_local6.va = _local4;
_local6.props = _local3;
return(_local6);
}
function getChangeObj(ps, ep, isFMP, useArray) {
var _local3 = {map:((useArray == true) ? ([]) : ({})), changed:false};
for (var _local7 in ep) {
if ((((((isFMP == true) && (_local7.charAt(1) == "b")) || (ep[_local7] != ps[_local7])) || (useArray == true)) && (ep[_local7] != null)) && (_global.isNaN(Number(ep[_local7])) == false)) {
_local3.map[_local7] = ((typeof(ep[_local7]) == "string") ? (Number(ep[_local7])) : (ep[_local7] - ps[_local7]));
if (_global.isNaN(_local3.map[_local7]) == true) {
_local3.map[_local7] = 0;
} else if (_local3.map[_local7] != 0) {
_local3.changed = true;
}
}
}
return(_local3);
}
var numTweens = 0;
}
Symbol 303 MovieClip [__Packages.com.mosesSupposes.fuse.PennerEasing] Frame 0
class com.mosesSupposes.fuse.PennerEasing
{
function PennerEasing () {
}
static function linear(t, b, c, d) {
return(((c * t) / d) + b);
}
static function easeInQuad(t, b, c, d) {
t = t / d;
return(((c * t) * t) + b);
}
static function easeOutQuad(t, b, c, d) {
t = t / d;
return((((-c) * t) * (t - 2)) + b);
}
static function easeInOutQuad(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return((((c / 2) * t) * t) + b);
}
t--;
return((((-c) / 2) * ((t * (t - 2)) - 1)) + b);
}
static function easeInExpo(t, b, c, d) {
return(((t == 0) ? (b) : ((c * Math.pow(2, 10 * ((t / d) - 1))) + b)));
}
static function easeOutExpo(t, b, c, d) {
return(((t == d) ? (b + c) : ((c * ((-Math.pow(2, (-10 * t) / d)) + 1)) + b)));
}
static function easeInOutExpo(t, b, c, d) {
if (t == 0) {
return(b);
}
if (t == d) {
return(b + c);
}
t = t / (d / 2);
if (t < 1) {
return(((c / 2) * Math.pow(2, 10 * (t - 1))) + b);
}
t--;
return(((c / 2) * ((-Math.pow(2, -10 * t)) + 2)) + b);
}
static function easeOutInExpo(t, b, c, d) {
if (t == 0) {
return(b);
}
if (t == d) {
return(b + c);
}
t = t / (d / 2);
if (t < 1) {
return(((c / 2) * ((-Math.pow(2, -10 * t)) + 1)) + b);
}
return(((c / 2) * (Math.pow(2, 10 * (t - 2)) + 1)) + b);
}
static function easeInElastic(t, b, c, d, a, p) {
var _local5;
if (t == 0) {
return(b);
}
t = t / d;
if (t == 1) {
return(b + c);
}
if (!p) {
p = d * 0.3;
}
if ((!a) || (a < Math.abs(c))) {
a = c;
_local5 = p / 4;
} else {
_local5 = (p / (Math.PI*2)) * Math.asin(c / a);
}
t = t - 1;
return((-((a * Math.pow(2, 10 * t)) * Math.sin((((t * d) - _local5) * (Math.PI*2)) / p))) + b);
}
static function easeOutElastic(t, b, c, d, a, p) {
var _local5;
if (t == 0) {
return(b);
}
t = t / d;
if (t == 1) {
return(b + c);
}
if (!p) {
p = d * 0.3;
}
if ((!a) || (a < Math.abs(c))) {
a = c;
_local5 = p / 4;
} else {
_local5 = (p / (Math.PI*2)) * Math.asin(c / a);
}
return((((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - _local5) * (Math.PI*2)) / p)) + c) + b);
}
static function easeInOutElastic(t, b, c, d, a, p) {
var _local5;
if (t == 0) {
return(b);
}
t = t / (d / 2);
if (t == 2) {
return(b + c);
}
if (!p) {
p = d * 0.45;
}
if ((!a) || (a < Math.abs(c))) {
a = c;
_local5 = p / 4;
} else {
_local5 = (p / (Math.PI*2)) * Math.asin(c / a);
}
if (t < 1) {
t = t - 1;
return((-0.5 * ((a * Math.pow(2, 10 * t)) * Math.sin((((t * d) - _local5) * (Math.PI*2)) / p))) + b);
}
t = t - 1;
return(((((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - _local5) * (Math.PI*2)) / p)) * 0.5) + c) + b);
}
static function easeOutInElastic(t, b, c, d, a, p) {
var _local5;
if (t == 0) {
return(b);
}
t = t / (d / 2);
if (t == 2) {
return(b + c);
}
if (!p) {
p = d * 0.45;
}
if ((!a) || (a < Math.abs(c))) {
a = c;
_local5 = p / 4;
} else {
_local5 = (p / (Math.PI*2)) * Math.asin(c / a);
}
if (t < 1) {
return(((0.5 * ((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - _local5) * (Math.PI*2)) / p))) + (c / 2)) + b);
}
return(((c / 2) + (0.5 * ((a * Math.pow(2, 10 * (t - 2))) * Math.sin((((t * d) - _local5) * (Math.PI*2)) / p)))) + b);
}
static function easeInBack(t, b, c, d, s) {
if (s == undefined) {
s = 1.70158;
}
t = t / d;
return((((c * t) * t) * (((s + 1) * t) - s)) + b);
}
static function easeOutBack(t, b, c, d, s) {
if (s == undefined) {
s = 1.70158;
}
t = (t / d) - 1;
return((c * (((t * t) * (((s + 1) * t) + s)) + 1)) + b);
}
static function easeInOutBack(t, b, c, d, s) {
if (s == undefined) {
s = 1.70158;
}
t = t / (d / 2);
if (t < 1) {
s = s * 1.525;
return(((c / 2) * ((t * t) * (((s + 1) * t) - s))) + b);
}
t = t - 2;
s = s * 1.525;
return(((c / 2) * (((t * t) * (((s + 1) * t) + s)) + 2)) + b);
}
static function easeOutInBack(t, b, c, d, s) {
if (s == undefined) {
s = 1.70158;
}
t = t / (d / 2);
if (t < 1) {
t--;
s = s * 1.525;
return(((c / 2) * (((t * t) * (((s + 1) * t) + s)) + 1)) + b);
}
t--;
s = s * 1.525;
return(((c / 2) * (((t * t) * (((s + 1) * t) - s)) + 1)) + b);
}
static function easeOutBounce(t, b, c, d) {
t = t / d;
if (t < 0.363636363636364) {
return((c * ((7.5625 * t) * t)) + b);
}
if (t < 0.727272727272727) {
t = t - 0.545454545454545;
return((c * (((7.5625 * t) * t) + 0.75)) + b);
}
if (t < 0.909090909090909) {
t = t - 0.818181818181818;
return((c * (((7.5625 * t) * t) + 0.9375)) + b);
}
t = t - 0.954545454545455;
return((c * (((7.5625 * t) * t) + 0.984375)) + b);
}
static function easeInBounce(t, b, c, d) {
return((c - easeOutBounce(d - t, 0, c, d)) + b);
}
static function easeInOutBounce(t, b, c, d) {
if (t < (d / 2)) {
return((easeInBounce(t * 2, 0, c, d) * 0.5) + b);
}
return(((easeOutBounce((t * 2) - d, 0, c, d) * 0.5) + (c * 0.5)) + b);
}
static function easeOutInBounce(t, b, c, d) {
if (t < (d / 2)) {
return((easeOutBounce(t * 2, 0, c, d) * 0.5) + b);
}
return(((easeInBounce((t * 2) - d, 0, c, d) * 0.5) + (c * 0.5)) + b);
}
static function easeInCubic(t, b, c, d) {
t = t / d;
return((((c * t) * t) * t) + b);
}
static function easeOutCubic(t, b, c, d) {
t = (t / d) - 1;
return((c * (((t * t) * t) + 1)) + b);
}
static function easeInOutCubic(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return(((((c / 2) * t) * t) * t) + b);
}
t = t - 2;
return(((c / 2) * (((t * t) * t) + 2)) + b);
}
static function easeOutInCubic(t, b, c, d) {
t = t / (d / 2);
t--;
return(((c / 2) * (((t * t) * t) + 1)) + b);
}
static function easeInQuart(t, b, c, d) {
t = t / d;
return(((((c * t) * t) * t) * t) + b);
}
static function easeOutQuart(t, b, c, d) {
t = (t / d) - 1;
return(((-c) * ((((t * t) * t) * t) - 1)) + b);
}
static function easeInOutQuart(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return((((((c / 2) * t) * t) * t) * t) + b);
}
t = t - 2;
return((((-c) / 2) * ((((t * t) * t) * t) - 2)) + b);
}
static function easeOutInQuart(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
t--;
return((((-c) / 2) * ((((t * t) * t) * t) - 1)) + b);
}
t--;
return(((c / 2) * ((((t * t) * t) * t) + 1)) + b);
}
static function easeInQuint(t, b, c, d) {
t = t / d;
return((((((c * t) * t) * t) * t) * t) + b);
}
static function easeOutQuint(t, b, c, d) {
t = (t / d) - 1;
return((c * (((((t * t) * t) * t) * t) + 1)) + b);
}
static function easeInOutQuint(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return(((((((c / 2) * t) * t) * t) * t) * t) + b);
}
t = t - 2;
return(((c / 2) * (((((t * t) * t) * t) * t) + 2)) + b);
}
static function easeOutInQuint(t, b, c, d) {
t = t / (d / 2);
t--;
return(((c / 2) * (((((t * t) * t) * t) * t) + 1)) + b);
}
static function easeInSine(t, b, c, d) {
return((((-c) * Math.cos((t / d) * (Math.PI/2))) + c) + b);
}
static function easeOutSine(t, b, c, d) {
return((c * Math.sin((t / d) * (Math.PI/2))) + b);
}
static function easeInOutSine(t, b, c, d) {
return((((-c) / 2) * (Math.cos((Math.PI * t) / d) - 1)) + b);
}
static function easeOutInSine(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return(((c / 2) * Math.sin((Math.PI * t) / 2)) + b);
}
t--;
return((((-c) / 2) * (Math.cos((Math.PI * t) / 2) - 2)) + b);
}
static function easeInCirc(t, b, c, d) {
t = t / d;
return(((-c) * (Math.sqrt(1 - (t * t)) - 1)) + b);
}
static function easeOutCirc(t, b, c, d) {
t = (t / d) - 1;
return((c * Math.sqrt(1 - (t * t))) + b);
}
static function easeInOutCirc(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return((((-c) / 2) * (Math.sqrt(1 - (t * t)) - 1)) + b);
}
t = t - 2;
return(((c / 2) * (Math.sqrt(1 - (t * t)) + 1)) + b);
}
static function easeOutInCirc(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
t--;
return(((c / 2) * Math.sqrt(1 - (t * t))) + b);
}
t--;
return(((c / 2) * (2 - Math.sqrt(1 - (t * t)))) + b);
}
static var registryKey = "pennerEasing";
}
Symbol 304 MovieClip [__Packages.mx.transitions.OnEnterFrameBeacon] Frame 0
class mx.transitions.OnEnterFrameBeacon
{
function OnEnterFrameBeacon () {
}
static function init() {
var _local4 = _global.MovieClip;
if (!_root.__OnEnterFrameBeacon) {
mx.transitions.BroadcasterMX.initialize(_local4);
var _local3 = _root.createEmptyMovieClip("__OnEnterFrameBeacon", 9876);
_local3.onEnterFrame = function () {
_global.MovieClip.broadcastMessage("onEnterFrame");
};
}
}
static var version = "1.1.0.52";
}
Symbol 305 MovieClip [__Packages.mx.transitions.BroadcasterMX] Frame 0
class mx.transitions.BroadcasterMX
{
var _listeners;
function BroadcasterMX () {
}
static function initialize(o, dontCreateArray) {
if (o.broadcastMessage != undefined) {
delete o.broadcastMessage;
}
o.addListener = mx.transitions.BroadcasterMX.prototype.addListener;
o.removeListener = mx.transitions.BroadcasterMX.prototype.removeListener;
if (!dontCreateArray) {
o._listeners = new Array();
}
}
function addListener(o) {
removeListener(o);
if (broadcastMessage == undefined) {
broadcastMessage = mx.transitions.BroadcasterMX.prototype.broadcastMessage;
}
return(_listeners.push(o));
}
function removeListener(o) {
var _local2 = _listeners;
var _local3 = _local2.length;
while (_local3--) {
if (_local2[_local3] == o) {
_local2.splice(_local3, 1);
if (!_local2.length) {
broadcastMessage = undefined;
}
return(true);
}
}
return(false);
}
function broadcastMessage() {
var _local5 = String(arguments.shift());
var _local4 = _listeners.concat();
var _local6 = _local4.length;
var _local3 = 0;
while (_local3 < _local6) {
_local4[_local3][_local5].apply(_local4[_local3], arguments);
_local3++;
}
}
static var version = "1.1.0.52";
}
Symbol 306 MovieClip [__Packages.mx.transitions.Tween] Frame 0
class mx.transitions.Tween
{
var obj, prop, begin, useSeconds, _listeners, addListener, prevTime, _time, looping, _duration, broadcastMessage, isPlaying, _fps, prevPos, _pos, change, _intervalID, _startTime;
function Tween (obj, prop, func, begin, finish, duration, useSeconds) {
mx.transitions.OnEnterFrameBeacon.init();
if (!arguments.length) {
return;
}
this.obj = obj;
this.prop = prop;
this.begin = begin;
position = (begin);
this.duration = (duration);
this.useSeconds = useSeconds;
if (func) {
this.func = func;
}
this.finish = (finish);
_listeners = [];
addListener(this);
start();
}
function set time(t) {
prevTime = _time;
if (t > duration) {
if (looping) {
rewind(t - _duration);
update();
broadcastMessage("onMotionLooped", this);
} else {
if (useSeconds) {
_time = _duration;
update();
}
stop();
broadcastMessage("onMotionFinished", this);
}
} else if (t < 0) {
rewind();
update();
} else {
_time = t;
update();
}
//return(time);
}
function get time() {
return(_time);
}
function set duration(d) {
_duration = (((d == null) || (d <= 0)) ? (_global.Infinity) : (d));
//return(duration);
}
function get duration() {
return(_duration);
}
function set FPS(fps) {
var _local2 = isPlaying;
stopEnterFrame();
_fps = fps;
if (_local2) {
startEnterFrame();
}
//return(FPS);
}
function get FPS() {
return(_fps);
}
function set position(p) {
setPosition(p);
//return(position);
}
function setPosition(p) {
prevPos = _pos;
obj[prop] = (_pos = p);
broadcastMessage("onMotionChanged", this, _pos);
updateAfterEvent();
}
function get position() {
return(getPosition());
}
function getPosition(t) {
if (t == undefined) {
t = _time;
}
return(func(t, begin, change, _duration));
}
function set finish(f) {
change = f - begin;
//return(finish);
}
function get finish() {
return(begin + change);
}
function continueTo(finish, duration) {
begin = position;
this.finish = (finish);
if (duration != undefined) {
this.duration = (duration);
}
start();
}
function yoyo() {
continueTo(begin, time);
}
function startEnterFrame() {
if (_fps == undefined) {
_global.MovieClip.addListener(this);
} else {
_intervalID = setInterval(this, "onEnterFrame", 1000 / _fps);
}
isPlaying = true;
}
function stopEnterFrame() {
if (_fps == undefined) {
_global.MovieClip.removeListener(this);
} else {
clearInterval(_intervalID);
}
isPlaying = false;
}
function start() {
rewind();
startEnterFrame();
broadcastMessage("onMotionStarted", this);
}
function stop() {
stopEnterFrame();
broadcastMessage("onMotionStopped", this);
}
function resume() {
fixTime();
startEnterFrame();
broadcastMessage("onMotionResumed", this);
}
function rewind(t) {
_time = ((t == undefined) ? 0 : (t));
fixTime();
update();
}
function fforward() {
time = (_duration);
fixTime();
}
function nextFrame() {
if (useSeconds) {
time = ((getTimer() - _startTime) / 1000);
} else {
time = (_time + 1);
}
}
function onEnterFrame() {
nextFrame();
}
function prevFrame() {
if (!useSeconds) {
time = (_time - 1);
}
}
function toString() {
return("[Tween]");
}
function fixTime() {
if (useSeconds) {
_startTime = getTimer() - (_time * 1000);
}
}
function update() {
position = (getPosition(_time));
}
static var version = "1.1.0.52";
static var __initBeacon = mx.transitions.OnEnterFrameBeacon.init();
static var __initBroadcaster = mx.transitions.BroadcasterMX.initialize(mx.transitions.Tween.prototype, true);
function func(t, b, c, d) {
return(((c * t) / d) + b);
}
}
Symbol 307 MovieClip [__Packages.WalkCollisionSystem] Frame 0
class WalkCollisionSystem
{
var collisionMethods, player_mc, walk_obj, xOffset, yOffset;
function WalkCollisionSystem (player_mc, walk_obj, xOffset, yOffset) {
collisionMethods = new Array();
this.player_mc = player_mc;
this.walk_obj = walk_obj;
this.xOffset = (xOffset ? (xOffset) : 0);
this.yOffset = (yOffset ? (yOffset) : 0);
}
function run() {
var _local2 = 0;
while (_local2 < collisionMethods.length) {
collisionMethods[_local2].call(this);
_local2++;
}
}
}
Symbol 293 MovieClip Frame 1
function setup() {
var _local1 = "glow_" + Math.floor(Math.random() * 999);
while (GLOWS_MC[_local1]) {
_local1 = "glow_" + Math.floor(Math.random() * 999);
}
var _local2 = GLOWS_MC.attachMovie("glow", _local1, nextDepth(GLOWS_MC));
_local2._x = _this._x + 8;
_local2._y = _this._y + 8;
}
_this = this;
setTimeout(setup, 1);
Symbol 296 MovieClip Frame 1
function playMovie(movieName, callbackScript) {
var movie_mc = SPRITES_MC.attachMovie(movieName, "sexMovie_mc", nextDepth(SPRITES_MC));
movie_mc._x = thisWin._x + 16;
movie_mc._y = thisWin._y + 16;
movie_mc.callbackScript = callbackScript;
movie_mc.onEnterFrame = function () {
if (movie_mc._currentframe == movie_mc._totalframes) {
movie_mc.callbackScript.nextEvent();
movie_mc.removeMovieClip();
}
};
}
if (FLAGS.windowsOpen) {
thisWin = SPRITES_MC.attachMovie("win_open", this._name, nextDepth(SPRITES_MC));
} else {
thisWin = SPRITES_MC.attachMovie("win_off", this._name, nextDepth(SPRITES_MC));
}
thisWin._x = this._x;
thisWin._y = this._y;
Symbol 298 MovieClip Frame 1
function resetSpriteLayer() {
MAP_MC.sprites_mc.removeMovieClip();
_global.SPRITES_MC = MAP_MC.createEmptyMovieClip("sprites_mc", 11);
_global.UPPER_SPRITES_MC = MAP_MC.createEmptyMovieClip("upperSprites_mc", 12);
clearInterval(autoSort_obj.loopInterval);
delete autoSort_obj;
addAutoSort = function (spriteLayer_mc) {
var _this = new Object();
_this.spriteLayer_mc = spriteLayer_mc;
_this.parallelSprites = 10;
_this.loop = function () {
for (var _local5 in spriteLayer_mc) {
var _local3 = _this.spriteLayer_mc[_local5];
var _local4 = _local3.getDepth();
var _local1 = _local3._y * _this.parallelSprites;
var _local2 = _this.spriteLayer_mc.getInstanceAtDepth(_local1);
while ((_local2 != undefined) && (_local2 != _local3)) {
_local1++;
_local2 = _this.spriteLayer_mc.getInstanceAtDepth(_local1);
}
_local3.swapDepths(_local1);
}
};
_this.loopInterval = setInterval(_this.loop, 33.3333333333333);
return(_this);
};
autoSort_obj = addAutoSort(SPRITES_MC);
}
function addPlayer() {
function makeSprite(target, newCharset, newName, depth, spriteWidth, spriteHeight, maxAnimFrames, maxDirections, maxPoseColumns, maxPoseRows, newAnimSpeed) {
newName = (newName ? (newName) : (String("sprite_" + Math.round(Math.random() * 99999))));
depth = (depth ? (depth) : 1);
spriteWidth = (spriteWidth ? (spriteWidth) : 24);
spriteHeight = (spriteHeight ? (spriteHeight) : 32);
maxAnimFrames = (maxAnimFrames ? (maxAnimFrames) : 3);
maxDirections = (maxDirections ? (maxDirections) : 4);
maxPoseColumns = (maxPoseColumns ? (maxPoseColumns) : 4);
maxPoseRows = (maxPoseRows ? (maxPoseRows) : 2);
newAnimSpeed = (newAnimSpeed ? (newAnimSpeed) : 3);
var _this = target.createEmptyMovieClip(newName, depth);
_this.createEmptyMovieClip("image_mc", 1);
_this.image_mc._x = (_this.image_mc._y = 9999);
_this.createEmptyMovieClip("mask_mc", 2);
_this.mask_mc.beginFill(0, 0);
_this.mask_mc.moveTo(0, 0);
_this.mask_mc.lineTo(16, 0);
_this.mask_mc.lineTo(16, 16);
_this.mask_mc.lineTo(0, 16);
_this.mask_mc.lineTo(0, 0);
_this.mask_mc.endFill();
_this.image_mc.setMask(_this.mask_mc);
_this.setDirection = function (newDirection) {
if (isNaN(newDirection)) {
switch (newDirection) {
case "up" :
newDirection = 0;
break;
case "right" :
newDirection = 1;
break;
case "down" :
newDirection = 2;
break;
case "left" :
newDirection = 3;
}
}
_this.direction = newDirection;
};
_this.setPose = function (newPose, newAnimYoyo) {
_this.pose = newPose;
_this.animYoyo = (newAnimYoyo ? (newAnimYoyo) : (_this.animYoyo));
};
_this.setAnim = function (isAnimating) {
if (((_this.anim == true) && (isAnimating == false)) && (_this.maxAnimFrames > 1)) {
_this.animFrame = 1;
}
_this.anim = isAnimating;
};
_this.setSpeed = function (newSpeed) {
newSpeed = Math.floor(newSpeed);
if ((newSpeed <= 0) || (newSpeed == undefined)) {
newSpeed = 1;
}
_this.animSpeed = newSpeed;
};
_this.setFrame = function (newFrame) {
_this.animFrame = newFrame;
};
_this.setCharset = function (newCharset) {
_this.charset = newCharset;
_this.setupCharset();
};
_this.setAll = function (charset, pose, direction, anim, frame, speed) {
if (charset != undefined) {
_this.setCharset(charset);
}
if (pose != undefined) {
_this.setPose(pose);
}
if (direction != undefined) {
_this.setDirection(direction);
}
if (anim != undefined) {
_this.setAnim(anim);
}
if (frame != undefined) {
_this.setFrame(frame);
}
if (speed != undefined) {
_this.setSpeed(speed);
}
};
_this.updateDirection = function () {
_this.direction = _this.direction % _this.maxDirections;
_this.y = _this.y - (_this.direction * _this.spriteHeight);
};
_this.updatePose = function () {
var _local4 = _this.maxPoseColumns * _this.maxPoseRows;
_this.pose = _this.pose % _local4;
var _local5 = _this.pose % _this.maxPoseColumns;
var _local3 = _this.spriteWidth * _this.maxAnimFrames;
var _local2 = Math.floor(_this.pose / _this.maxPoseColumns);
var _local1 = _this.spriteHeight * _this.maxDirections;
_this.x = _this.x - (_local5 * _local3);
_this.y = _this.y - (_local2 * _local1);
};
_this.updateAnimation = function () {
if (_this.animYoyo) {
if (_this.animFrame >= (_this.maxAnimFrames - 1)) {
_this.animDirection = -1;
} else if (_this.animFrame <= 0) {
_this.animDirection = 1;
}
} else {
_this.animFrame = _this.animFrame % _this.maxAnimFrames;
_this.animDirection = 1;
}
_this.x = _this.x - (_this.animFrame * _this.spriteWidth);
if (_this.anim) {
_this.animFrame = _this.animFrame + _this.animDirection;
}
};
_this.setupMask = function () {
_this.image_mc.setMask(_this.mask_mc);
_this.mask_mc._width = _this.spriteWidth;
_this.mask_mc._height = _this.spriteHeight;
_this.mask_mc._x = _this.imageOffsetX;
_this.mask_mc._y = _this.imageOffsetY;
};
_this.setupCharset = function () {
if (_this.charset != _this.oldCharset) {
_this.image_mc._x = (_this.image_mc._y = 9999);
var _local1 = flash.display.BitmapData.loadBitmap(_this.charset);
if (_local1.width > -1) {
_this.image_mc.attachBitmap(_local1, 0);
} else {
_this.loader = new MovieClipLoader();
_this.loader.loadClip(_this.charset, _this.image_mc);
_this.loader.onLoadError = function () {
_this.image_mc.removeMovieClip();
_this.attachMovie(_this.charset, "image_mc", 0);
_this.image_mc.setMask(_this.mask_mc);
delete _this.loader;
};
}
_this.oldCharset = _this.charset;
}
};
_this.lookAt = function (sprite1, sprite2) {
var _local2 = sprite2._x - sprite1._x;
var _local1 = sprite2._y - sprite1._y;
var _local3 = Math.sqrt((_local2 * _local2) + (_local1 * _local1));
var _local4 = _local2 / _local3;
var _local5 = _local1 / _local3;
if (Math.abs(_local5) > Math.abs(_local4)) {
if (_local5 < 0) {
_this.setDirection("up");
} else {
_this.setDirection("down");
}
} else if (_local4 < 0) {
_this.setDirection("left");
} else {
_this.setDirection("right");
}
};
_this.spriteWidth = (spriteWidth ? (spriteWidth) : 16);
_this.spriteHeight = (spriteHeight ? (spriteHeight) : 16);
_this.maxAnimFrames = (maxAnimFrames ? (maxAnimFrames) : 1);
_this.maxDirections = (maxDirections ? (maxDirections) : 1);
_this.maxPoseColumns = (maxPoseColumns ? (maxPoseColumns) : 1);
_this.maxPoseRows = (maxPoseRows ? (maxPoseRows) : 1);
_this.setCharset(newCharset);
_this.animDirection = 1;
_this.setSpeed(newAnimSpeed);
_this.x = 0;
_this.y = 0;
_this.imageOffsetX = -1 * (spriteWidth / 2);
_this.imageOffsetY = (-1 * (spriteHeight / 2)) - 8;
_this.animDelay = 0;
_this.direction = 0;
_this.pose = 0;
_this.anim = true;
_this.animYoyo = true;
if (maxAnimFrames > 1) {
_this.animFrame = 1;
} else {
_this.animFrame = 0;
}
_this.onEnterFrame = function () {
_this.setupCharset();
_this.setupMask();
if (_this.animDelay == 0) {
_this.x = 0;
_this.y = 0;
_this.updateDirection();
_this.updatePose();
_this.updateAnimation();
_this.image_mc._x = _this.x + _this.imageOffsetX;
_this.image_mc._y = _this.y + _this.imageOffsetY;
}
_this.animDelay++;
_this.animDelay = _this.animDelay % _this.animSpeed;
};
return(_this);
}
function makeTileCollision() {
var _local25 = function () {
var _local2 = 5;
var _local4 = this.walk_obj.xVel;
var _local3 = this.walk_obj.yVel;
var _local5 = Math.abs(_local4) / _local4;
var _local20 = ((this.player_mc._x + (_local2 * _local5)) + _local4) + this.xOffset;
var _local19 = (this.player_mc._y - _local2) + this.yOffset;
var _local15 = Math.floor(_local20 / 16);
var _local14 = Math.floor(_local19 / 16);
var _local12 = this.collision_array[_local15][_local14];
var _local9 = ((this.player_mc._x + (_local2 * _local5)) + _local4) + this.xOffset;
var _local7 = (this.player_mc._y + _local2) + this.yOffset;
var _local10 = Math.floor(_local9 / 16);
var _local13 = Math.floor(_local7 / 16);
var _local11 = this.collision_array[_local10][_local13];
if ((_local12 != 0) || (_local11 != 0)) {
this.walk_obj.xVel = 0;
}
var _local6 = Math.abs(_local3) / _local3;
var _local22 = (this.player_mc._x - _local2) + this.xOffset;
var _local21 = ((this.player_mc._y + (_local2 * _local6)) + _local3) + this.yOffset;
var _local23 = Math.floor(_local22 / 16);
var _local25 = Math.floor(_local21 / 16);
var _local17 = this.collision_array[_local23][_local25];
var _local18 = (this.player_mc._x + _local2) + this.xOffset;
var _local16 = ((this.player_mc._y + (_local2 * _local6)) + _local3) + this.yOffset;
var _local24 = Math.floor(_local18 / 16);
var _local26 = Math.floor(_local16 / 16);
var _local8 = this.collision_array[_local24][_local26];
if ((_local17 != 0) || (_local8 != 0)) {
this.walk_obj.yVel = 0;
}
};
return(_local25);
}
function makeSpriteCollision() {
var _local15 = function () {
var _local3 = 5;
var _local7 = this.walk_obj.xVel;
var _local6 = this.walk_obj.yVel;
for (var _local14 in this.spriteLayer_mc) {
var _local2 = this.spriteLayer_mc[_local14];
if ((_local2 != this.player_mc) && (_local2.doesCollide == true)) {
var _local4 = Math.abs(_local7) / _local7;
if (_local4) {
var _local8 = ((this.player_mc._x + (_local3 * _local4)) + _local7) + this.xOffset;
var _local9 = (this.player_mc._y - _local3) + this.yOffset;
if ((((_local8 > _local2._x) && (_local9 > _local2._y)) && (_local8 < (_local2._x + 16))) && (_local9 < (_local2._y + 16))) {
var _local12 = 1;
} else {
var _local12 = 0;
}
_local8 = ((this.player_mc._x + (_local3 * _local4)) + _local7) + this.xOffset;
_local9 = (this.player_mc._y + _local3) + this.yOffset;
if ((((_local8 > _local2._x) && (_local9 > _local2._y)) && (_local8 < (_local2._x + 16))) && (_local9 < (_local2._y + 16))) {
var _local11 = 1;
} else {
var _local11 = 0;
}
if ((_local12 != 0) || (_local11 != 0)) {
this.walk_obj.xVel = 0;
}
}
var _local5 = Math.abs(_local6) / _local6;
if (_local5) {
var _local8 = (this.player_mc._x - _local3) + this.xOffset;
var _local9 = ((this.player_mc._y + (_local3 * _local5)) + _local6) + this.yOffset;
if ((((_local8 > _local2._x) && (_local9 > _local2._y)) && (_local8 < (_local2._x + 16))) && (_local9 < (_local2._y + 16))) {
var _local13 = 1;
} else {
var _local13 = 0;
}
_local8 = (this.player_mc._x + _local3) + this.xOffset;
_local9 = ((this.player_mc._y + (_local3 * _local5)) + _local6) + this.yOffset;
if ((((_local8 > _local2._x) && (_local9 > _local2._y)) && (_local8 < (_local2._x + 16))) && (_local9 < (_local2._y + 16))) {
var _local10 = 1;
} else {
var _local10 = 0;
}
if ((_local13 != 0) || (_local10 != 0)) {
this.walk_obj.yVel = 0;
}
}
}
}
};
return(_local15);
}
LOOP.removeSet("player");
LOOP.removeSet("playerTalk");
_global.PLAYER_MC = SPRITES_MC.createEmptyMovieClip("player_mc", nextDepth(SPRITES_MC));
var playerImage_mc = makeSprite(PLAYER_MC, PLAYER_OBJ.charset, "image_mc", 10, 24, 32, 3, 4, 4, 2, 3);
playerImage_mc._x = 8;
playerImage_mc._y = 5;
PLAYER_MC._x = PLAYER_OBJ.x * 16;
PLAYER_MC._y = PLAYER_OBJ.y * 16;
playerImage_mc.setPose(PLAYER_OBJ.pose);
playerImage_mc.setDirection(PLAYER_OBJ.direction);
delete PLAYER_OBJ.walk_obj;
makeWalk = function (player_mc, playerImage_mc) {
var _this = new Object();
_this.walkSpeed = 3;
_this.acel = 1.2;
_this.decel = 0.5;
_this.xVel = 0;
_this.yVel = 0;
_this.up_key = 38;
_this.down_key = 40;
_this.left_key = 37;
_this.right_key = 39;
_this.loop = function () {
if (Key.isDown(_this.down_key)) {
playerImage_mc.setDirection("down");
if (_this.yVel < _this.walkSpeed) {
_this.yVel = _this.yVel + _this.acel;
}
} else if (Key.isDown(_this.up_key)) {
playerImage_mc.setDirection("up");
if (_this.yVel > (-_this.walkSpeed)) {
_this.yVel = _this.yVel - _this.acel;
}
} else if (Math.abs(_this.yVel) > 1) {
_this.yVel = _this.yVel * _this.decel;
} else {
_this.yVel = 0;
}
if (Key.isDown(_this.right_key)) {
playerImage_mc.setDirection("right");
if (_this.xVel < _this.walkSpeed) {
_this.xVel = _this.xVel + _this.acel;
}
} else if (Key.isDown(_this.left_key)) {
playerImage_mc.setDirection("left");
if (_this.xVel > (-_this.walkSpeed)) {
_this.xVel = _this.xVel - _this.acel;
}
} else if (Math.abs(_this.xVel) > 1) {
_this.xVel = _this.xVel * _this.decel;
} else {
_this.xVel = 0;
}
_this.collision.run();
var _local3 = 5;
var _local5 = 4;
var _local6 = 10;
var _local2 = ((Math.abs(_this.xVel) > Math.abs(_this.yVel)) ? (Math.abs(_this.xVel)) : (Math.abs(_this.yVel)));
var _local4 = Math.abs(_local2) / _local6;
var _local1 = _local3 - (_local5 * _local4);
_local1 = ((_local1 < 1) ? 1 : (_local1));
playerImage_mc.setSpeed(_local1);
if ((Math.abs(_this.xVel) <= 0.05) && (Math.abs(_this.yVel) <= 0.05)) {
playerImage_mc.setAnim(false);
} else {
playerImage_mc.setAnim(true);
}
player_mc._x = player_mc._x + _this.xVel;
player_mc._y = player_mc._y + _this.yVel;
};
_this.loopInterval = setInterval(_this.loop, 33.3333333333333);
return(_this);
};
PLAYER_OBJ.walk_obj = makeWalk(PLAYER_MC, playerImage_mc);
clearInterval(PLAYER_OBJ.walk_obj.loopInterval);
LOOP.addObject(PLAYER_OBJ.walk_obj, "player");
PLAYER_OBJ.walk_obj.collision = new WalkCollisionSystem(PLAYER_MC, PLAYER_OBJ.walk_obj, 8, 8);
PLAYER_OBJ.walk_obj.collision.collision_array = MAP_MC.collision_array;
PLAYER_OBJ.walk_obj.collision.collisionMethods.push(makeTileCollision());
PLAYER_OBJ.walk_obj.collision.spriteLayer_mc = SPRITES_MC;
PLAYER_OBJ.walk_obj.collision.collisionMethods.push(makeSpriteCollision());
delete PLAYER_OBJ.talk_obj;
makeTalk = function (player_mc, playerImage_mc, spriteLayer_mc) {
var _this = new Object();
_this.player_mc = player_mc;
_this.playerImage_mc = playerImage_mc;
_this.spriteLayer_mc = spriteLayer_mc;
_this.talk_key = 32;
_this.lastKey = false;
_this.loop = function () {
if (Key.isDown(_this.talk_key)) {
if (_this.lastKey == false) {
_this.lastKey = true;
switch (_this.playerImage_mc.direction) {
case 0 :
var _local6 = 0;
var _local5 = -1;
break;
case 1 :
_local6 = 1;
_local5 = 0;
break;
case 2 :
_local6 = 0;
_local5 = 1;
break;
case 3 :
_local6 = -1;
_local5 = 0;
}
var _local2 = (_this.player_mc._x + 8) + (_local6 * 16);
var _local3 = (_this.player_mc._y + 8) + (_local5 * 16);
for (var _local4 in _this.spriteLayer_mc) {
var _local1 = _this.spriteLayer_mc[_local4];
if ((((_local2 > _local1._x) && (_local3 > _local1._y)) && (_local2 < (_local1._x + 16))) && (_local3 < (_local1._y + 16))) {
_local1.talk();
}
}
}
} else {
_this.lastKey = false;
}
};
_this.loopInterval = setInterval(_this.loop, 33);
return(_this);
};
PLAYER_OBJ.talk_obj = makeTalk(PLAYER_MC, playerImage_mc, SPRITES_MC);
clearInterval(PLAYER_OBJ.talk_obj.loopInterval);
LOOP.addObject(PLAYER_OBJ.talk_obj, "player");
}
stop();
_global.MAP_SELECT = this;
makeMap = function (instanceName, target_mc, depth, width, height) {
function addCollisionMethods(_this) {
_this.twoPointCollide = function (side, sprite_mc, velocity_obj, xOffset, yOffset) {
xOffset = (xOffset ? (xOffset) : 0);
yOffset = (yOffset ? (yOffset) : 0);
var _local1 = new flash.geom.Point(sprite_mc._x + velocity_obj.xVel, sprite_mc._y + velocity_obj.yVel);
var _local3 = _local1.clone();
buffer = 4;
switch (side) {
case "up" :
_local1.x = _local1.x - (sprite_mc.width - buffer);
_local1.y = _local1.y - sprite_mc.height;
_local3.x = _local3.x + (sprite_mc.width - buffer);
_local3.y = _local3.y - sprite_mc.height;
break;
case "down" :
_local1.x = _local1.x - (sprite_mc.width - buffer);
_local1.y = _local1.y + sprite_mc.height;
_local3.x = _local3.x + (sprite_mc.width - buffer);
_local3.y = _local3.y + sprite_mc.height;
break;
case "left" :
_local1.x = _local1.x - sprite_mc.width;
_local1.y = _local1.y - (sprite_mc.height - buffer);
_local3.x = _local3.x - sprite_mc.width;
_local3.y = _local3.y + (sprite_mc.height - buffer);
break;
case "right" :
_local1.x = _local1.x + sprite_mc.width;
_local1.y = _local1.y - (sprite_mc.height - buffer);
_local3.x = _local3.x + sprite_mc.width;
_local3.y = _local3.y + (sprite_mc.height - buffer);
}
_local1.x = _local1.x + xOffset;
_local1.y = _local1.y + yOffset;
_local3.x = _local3.x + xOffset;
_local3.y = _local3.y + yOffset;
_local1.x = Math.floor(_local1.x / 16);
_local1.y = Math.floor(_local1.y / 16);
_local3.x = Math.floor(_local3.x / 16);
_local3.y = Math.floor(_local3.y / 16);
var _local5 = _this[_local1.x][_local1.y];
var _local7 = _this[_local3.x][_local3.y];
var _local4 = 0;
if ((_local5 > 0) || (_local7 > 0)) {
if ((_local5 == 1) || (_local7 == 1)) {
_local4 = 1;
} else {
_local4 = _local5;
}
}
return(_local4);
};
_this.getPixelCollision = function (x, y) {
x = Math.floor(x / 16);
y = Math.floor(y / 16);
return(_this[x][y]);
};
_this.getTileCollision(x, y);
return(_this[x][y]);
}
_global.nextDepth = function (this_mc) {
this_mc = (this_mc ? (this_mc) : _root);
var _local4 = 1;
var _local5 = 1048676 /* 0x100064 */;
for (var _local6 in this_mc) {
var _local2 = this_mc[_local6].getDepth();
if ((_local2 < _local5) && (_local2 >= _local4)) {
_local4 = _local2 + 1;
}
}
return(_local4);
};
target_mc = (target_mc ? (target_mc) : this);
depth = ((depth != undefined) ? (depth) : (nextDepth(target_mc)));
width = (width ? (width) : 20);
height = (height ? (height) : 15);
var _this = target_mc.createEmptyMovieClip(instanceName, depth);
_this.width = width;
_this.height = height;
_this.chipset_pic = new flash.display.BitmapData(480, 256, true, 0);
_this.collision_array = new Array();
var x = 0;
while (x < width) {
_this.collision_array[x] = new Array();
var y = 0;
while (y < height) {
_this.collision_array[x][y] = 0;
y++;
}
x++;
}
addCollisionMethods(_this.collision_array);
_this.reset = function (width, height) {
function addCollisionMethods(_this) {
_this.twoPointCollide = function (side, sprite_mc, velocity_obj, xOffset, yOffset) {
xOffset = (xOffset ? (xOffset) : 0);
yOffset = (yOffset ? (yOffset) : 0);
var _local1 = new flash.geom.Point(sprite_mc._x + velocity_obj.xVel, sprite_mc._y + velocity_obj.yVel);
var _local3 = _local1.clone();
buffer = 4;
switch (side) {
case "up" :
_local1.x = _local1.x - (sprite_mc.width - buffer);
_local1.y = _local1.y - sprite_mc.height;
_local3.x = _local3.x + (sprite_mc.width - buffer);
_local3.y = _local3.y - sprite_mc.height;
break;
case "down" :
_local1.x = _local1.x - (sprite_mc.width - buffer);
_local1.y = _local1.y + sprite_mc.height;
_local3.x = _local3.x + (sprite_mc.width - buffer);
_local3.y = _local3.y + sprite_mc.height;
break;
case "left" :
_local1.x = _local1.x - sprite_mc.width;
_local1.y = _local1.y - (sprite_mc.height - buffer);
_local3.x = _local3.x - sprite_mc.width;
_local3.y = _local3.y + (sprite_mc.height - buffer);
break;
case "right" :
_local1.x = _local1.x + sprite_mc.width;
_local1.y = _local1.y - (sprite_mc.height - buffer);
_local3.x = _local3.x + sprite_mc.width;
_local3.y = _local3.y + (sprite_mc.height - buffer);
}
_local1.x = _local1.x + xOffset;
_local1.y = _local1.y + yOffset;
_local3.x = _local3.x + xOffset;
_local3.y = _local3.y + yOffset;
_local1.x = Math.floor(_local1.x / 16);
_local1.y = Math.floor(_local1.y / 16);
_local3.x = Math.floor(_local3.x / 16);
_local3.y = Math.floor(_local3.y / 16);
var _local5 = _this[_local1.x][_local1.y];
var _local7 = _this[_local3.x][_local3.y];
var _local4 = 0;
if ((_local5 > 0) || (_local7 > 0)) {
if ((_local5 == 1) || (_local7 == 1)) {
_local4 = 1;
} else {
_local4 = _local5;
}
}
return(_local4);
};
_this.getPixelCollision = function (x, y) {
x = Math.floor(x / 16);
y = Math.floor(y / 16);
return(_this[x][y]);
};
_this.getTileCollision(x, y);
return(_this[x][y]);
}
for (var _local4 in _this) {
var _local1 = _this[_local4];
if (typeof(_local1) == "movieclip") {
if (_local4.slice(0, 5) == "layer") {
_local1.removeMovieClip();
}
} else if (_local1 instanceof flash.display.BitmapData) {
if ((_local4.slice(0, 5) == "layer") || (_local4 == "chipset_pic")) {
_this[_local4].dispose();
delete _this[_local4];
}
}
}
_this.width = (width ? (width) : (_this.width));
_this.height = (height ? (height) : (_this.height));
_this.chipset_pic = new flash.display.BitmapData(480, 256, true, 0);
_this.collision_array = new Array();
var x = 0;
while (x < _this.width) {
_this.collision_array[x] = new Array();
var y = 0;
while (y < _this.height) {
_this.collision_array[x][y] = 0;
y++;
}
x++;
}
addCollisionMethods(_this.collision_array);
};
_this.setTile = function (x, y, id, layer) {
layer = ((layer != undefined) ? (layer) : 0);
var _local4 = 30;
var _local9 = id % _local4;
var _local8 = Math.floor(id / _local4);
var _local5 = new flash.geom.Rectangle(_local9 * 16, _local8 * 16, 16, 16);
var _local6 = new flash.geom.Point(x * 16, y * 16);
var _local2 = ("layer" + layer) + "_mc";
var _local3 = ("layer" + layer) + "_pic";
if (_this[_local2] == undefined) {
var _local7 = (_this[_local3] = new flash.display.BitmapData(_this.width * 16, _this.height * 16, true, 0));
_this.createEmptyMovieClip(_local2, layer * 10);
_this[_local2].attachBitmap(_local7, 0, true);
}
_this[_local3].copyPixels(_this.chipset_pic, _local5, _local6);
};
_this.loadChipset = function (fileName) {
var _local2 = new flash.geom.Rectangle(0, 0, 480, 256);
_this.chipset_pic.fillRect(_local2, 0);
var _local1 = flash.display.BitmapData.loadBitmap(fileName);
if (_local1.width > -1) {
_this.chipset_pic = _local1.clone();
_local1.dispose();
_this.onLoad();
} else {
_this.createEmptyMovieClip("load_mc", 99);
_this.loader = new MovieClipLoader();
_this.loader.loadClip(fileName, _this.load_mc);
_this.loader.onLoadInit = function (load_mc) {
var _local1 = new flash.display.BitmapData(480, 256, true, 0);
_local1.draw(_this.load_mc);
_this.chipset_pic = _local1.clone();
_local1.dispose();
_this.onLoad();
_this.loader.unloadClip(load_mc);
delete _this.loader;
};
}
};
_this.drawObj = function (data_obj) {
_this.reset();
_this.width = data_obj.width;
_this.height = data_obj.height;
if (data_obj.collision != undefined) {
_this.collision_array = new Array();
var x = 0;
while (x < data_obj.width) {
_this.collision_array[x] = new Array();
var y = 0;
while (y < data_obj.height) {
_this.collision_array[x][y] = data_obj.collision[x][y];
y++;
}
x++;
}
addCollisionMethods(_this.collision_array);
}
var _local10 = new flash.geom.Rectangle(0, 0, 480, 256);
_this.chipset_pic.fillRect(_local10, 0);
var _local9 = flash.display.BitmapData.loadBitmap(data_obj.chipset);
if (_local9.width > -1) {
_this.chipset_pic = _local9.clone();
_local9.dispose();
lay = 0;
while (lay < data_obj.layers.length) {
var x = 0;
while (x < _this.width) {
var y = 0;
while (y < _this.height) {
var _local1 = data_obj.layers[lay][x][y];
_this.setTile(x, y, _local1, lay);
y++;
}
x++;
}
lay++;
}
_this.onLoad();
delete _this.loadData;
} else {
_this.createEmptyMovieClip("load_mc", 99);
_this.loader = new MovieClipLoader();
_this.loader.loadClip(data_obj.chipset, _this.load_mc);
_this.loader.onLoadInit = function (load_mc) {
var _local4 = new flash.display.BitmapData(480, 256, true, 0);
_local4.draw(_this.load_mc);
var _local5 = new flash.geom.Rectangle(0, 0, 480, 256);
_this.chipset_pic.copyPixels(_local4, _local5, {x:0, y:0});
_this.loader.unloadClip(_this.load_mc);
lay = 0;
while (lay < data_obj.layers.length) {
var _local2 = 0;
while (_local2 < _this.width) {
var _local1 = 0;
while (_local1 < _this.height) {
var _local3 = data_obj.layers[lay][_local2][_local1];
_this.setTile(_local2, _local1, _local3, lay);
_local1++;
}
_local2++;
}
lay++;
}
_this.onLoad();
delete _this.loadData;
delete _this.loader;
};
}
};
_this.load = function (fileName) {
XML.prototype.ignoreWhite = true;
_this.attachMovie(fileName, "loadMap_mc", 98);
if (_this.loadMap_mc) {
_this.loadMap_mc.onLoad = function (data) {
function readXml(parentPath, targetData) {
for (childName in parentPath.attributes) {
if (childName != "xmlType") {
var _local1 = parentPath.attributes[childName];
if (isNaN(Number(_local1))) {
if (_local1 == "true") {
targetData[childName] = true;
} else if (_local1 == "false") {
targetData[childName] = false;
} else {
var _local7 = "";
var _local9 = String.fromCharCode(10);
var _local4 = 0;
var _local2 = 0;
while (_local2 != undefined) {
_local2 = _local1.indexOf(_local9, _local4);
if (_local2 == -1) {
_local2 = undefined;
}
stringSlice = _local1.slice(_local4, _local2);
_local4 = _local2 + 1;
_local7 = _local7 + stringSlice;
}
_local1 = _local7;
targetData[childName] = _local1;
}
} else {
targetData[childName] = Number(_local1);
}
}
delete childName;
}
for (childIndex in parentPath.childNodes) {
var _local5 = parentPath.childNodes[childIndex];
var childName = _local5.nodeName;
var _local6 = _local5.attributes.xmlType;
if (_local6 == "array") {
targetData[childName] = new Array();
var _local10 = targetData[childName];
readXml(_local5, _local10);
} else if (_local6 == "variable") {
var _local1 = _local5.attributes.value;
if (isNaN(Number(_local1))) {
if (_local1 == "true") {
targetData[childName] = true;
} else if (_local1 == "false") {
targetData[childName] = false;
} else {
var _local7 = "";
var _local9 = String.fromCharCode(10);
var _local4 = 0;
var _local2 = 0;
while (_local2 != undefined) {
_local2 = _local1.indexOf(_local9, _local4);
if (_local2 == -1) {
_local2 = undefined;
}
stringSlice = _local1.slice(_local4, _local2);
_local4 = _local2 + 1;
_local7 = _local7 + stringSlice;
}
_local1 = _local7;
targetData[childName] = _local1;
}
} else {
targetData[childName] = Number(_local1);
}
} else if (_local6 == "object") {
targetData[childName] = new Object();
var _local10 = targetData[childName];
readXml(_local5, _local10);
}
}
delete childIndex;
}
_this.load_xml = data;
_this.loadData = new Object();
readXml(_this.load_xml, _this.loadData);
_this.drawObj(_this.loadData.map);
loadMap_mc.removeMovieClip();
};
} else {
_this.load_xml = new XML();
_this.load_xml.load(fileName);
_this.load_xml.onLoad = function (success) {
function readXml(parentPath, targetData) {
for (childName in parentPath.attributes) {
if (childName != "xmlType") {
var _local1 = parentPath.attributes[childName];
if (isNaN(Number(_local1))) {
if (_local1 == "true") {
targetData[childName] = true;
} else if (_local1 == "false") {
targetData[childName] = false;
} else {
var _local7 = "";
var _local9 = String.fromCharCode(10);
var _local4 = 0;
var _local2 = 0;
while (_local2 != undefined) {
_local2 = _local1.indexOf(_local9, _local4);
if (_local2 == -1) {
_local2 = undefined;
}
stringSlice = _local1.slice(_local4, _local2);
_local4 = _local2 + 1;
_local7 = _local7 + stringSlice;
}
_local1 = _local7;
targetData[childName] = _local1;
}
} else {
targetData[childName] = Number(_local1);
}
}
delete childName;
}
for (childIndex in parentPath.childNodes) {
var _local5 = parentPath.childNodes[childIndex];
var childName = _local5.nodeName;
var _local6 = _local5.attributes.xmlType;
if (_local6 == "array") {
targetData[childName] = new Array();
var _local10 = targetData[childName];
readXml(_local5, _local10);
} else if (_local6 == "variable") {
var _local1 = _local5.attributes.value;
if (isNaN(Number(_local1))) {
if (_local1 == "true") {
targetData[childName] = true;
} else if (_local1 == "false") {
targetData[childName] = false;
} else {
var _local7 = "";
var _local9 = String.fromCharCode(10);
var _local4 = 0;
var _local2 = 0;
while (_local2 != undefined) {
_local2 = _local1.indexOf(_local9, _local4);
if (_local2 == -1) {
_local2 = undefined;
}
stringSlice = _local1.slice(_local4, _local2);
_local4 = _local2 + 1;
_local7 = _local7 + stringSlice;
}
_local1 = _local7;
targetData[childName] = _local1;
}
} else {
targetData[childName] = Number(_local1);
}
} else if (_local6 == "object") {
targetData[childName] = new Object();
var _local10 = targetData[childName];
readXml(_local5, _local10);
}
}
delete childIndex;
}
if (success) {
_this.loadData = new Object();
readXml(_this.load_xml, _this.loadData);
_this.drawObj(_this.loadData.map);
}
};
}
};
_this.scroll = function (x, y, screenWidth, screenHeight) {
screenWidth = (screenWidth ? (screenWidth) : 320);
screenHeight = (screenHeight ? (screenHeight) : 240);
var _local1 = screenWidth / 2;
var _local2 = screenHeight / 2;
var _local4 = _this.width * 16;
var _local6 = _this.height * 16;
if (x < _local1) {
_this._x = 0;
} else if (x > (_local4 - _local1)) {
_this._x = (-_local4) + screenWidth;
} else {
_this._x = (-x) + _local1;
}
if (y < _local2) {
_this._y = 0;
} else if (y > (_local6 - _local2)) {
_this._y = (-_local6) + screenHeight;
} else {
_this._y = (-y) + _local2;
}
};
return(_this);
};
_global.MAP_MC = makeMap("map_mc", this, 1);
addAutoScroll = function (map_mc, target_mc, screenWidth, screenHeight) {
var _this = new Object();
_this.map_mc = map_mc;
_this.target_mc = target_mc;
_this.screenWidth = (screenWidth ? (screenWidth) : 320);
_this.screenHeight = (screenHeight ? (screenHeight) : 240);
_this.loop = function () {
if (_this.target_mc) {
_this.map_mc.scroll(_this.target_mc._x, _this.target_mc._y, _this.screenWidth, _this.screenHeight);
}
};
_this.loopInterval = setInterval(_this.loop, 33.3333333333333);
return(_this);
};
MAP_MC.scroll_obj = addAutoScroll(MAP_MC);
resetSpriteLayer();
_global.PLAYER_MC;
MAP_MC.onLoad = function () {
addPlayer();
UPDATE_APPEARANCE();
MAP_MC.scroll_obj.target_mc = PLAYER_MC;
for (var _local2 in TEXTBOX_MC) {
TEXTBOX_MC[_local2].removeMovieClip();
}
BALLOONS_MC.removeMovieClip();
_global.BALLOONS_MC = MAP_MC.attachMovie("balloons_mc", "balloonLayer_mc", 91);
TRANSITION_MC.onTransitionDone = function () {
};
TRANSITION_MC.fadeIn();
};
Symbol 298 MovieClip Frame 7
function doneTrickOrTreating() {
if (FLAGS.freestyle) {
event_teleport("home_freestyle", 0, 0);
} else {
if (FLAGS.character == 0) {
if (FLAGS.clothes == 0) {
event_teleport("home_naked_young", -1, -1);
} else if (FLAGS.candy >= 6) {
event_teleport("home_allCandy_young", 7, 8);
} else {
event_teleport("home_default_young", 7, 8);
}
}
if (FLAGS.character == 1) {
if (FLAGS.clothes == 0) {
event_teleport("home_naked_old", -1, -1);
} else if (FLAGS.candy >= 7) {
event_teleport("home_allCandy_old", 7, 8);
} else {
event_teleport("home_default_old", 7, 8);
}
}
}
}
MAP_MC.load("maps/halloween_town.xml");
var dark = MAP_MC.attachMovie("mood_night", "mood_night", 22);
dark._width = 432;
dark._height = 720;
GLOWS_MC.removeMovieClip();
_global.GLOWS_MC = MAP_MC.createEmptyMovieClip("glow_mc", 23);
this.attachMovie("hud_mc", "hud_mc", 2);
UPDATE_SETTINGS();
UPDATE_APPEARANCE();
var curfew = SPRITES_MC.createEmptyMovieClip("curfew_mc", nextDepth(SPRITES_MC));
curfew.onEnterFrame = function () {
if (FLAGS.houses == 0) {
doneTrickOrTreating();
delete curfew.onEnterFrame;
}
};
Instance of Symbol 291 MovieClip "knight_prog" in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "people3.png", 7, "right");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
event_message(talkEvents, "My parents are all on about how 'dangerous'\nthe back streets are.");
}, function () {
event_message(talkEvents, "It's true!\nYou'll lose pieces of your costume!");
}, function () {
if (FLAGS.clothes <= 3) {
event_message(talkEvents, "Er... Not that it's a bad thing.\n*blush*");
}
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "objects2.png", 2, null, null, null, UPPER_SPRITES_MC);
animDelay = 6;
animTimer = animDelay;
}
onClipEvent (enterFrame) {
animTimer--;
if (animTimer <= 0) {
var dir = (_this.image_mc.direction + 1);
_this.image_mc.setDirection(dir);
animTimer = animDelay;
}
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "objects2.png", 2, null, null, null, UPPER_SPRITES_MC);
animDelay = 6;
animTimer = animDelay;
}
onClipEvent (enterFrame) {
animTimer--;
if (animTimer <= 0) {
var dir = (_this.image_mc.direction + 1);
_this.image_mc.setDirection(dir);
animTimer = animDelay;
}
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "objects2.png", 2, null, null, null, UPPER_SPRITES_MC);
animDelay = 6;
animTimer = animDelay;
}
onClipEvent (enterFrame) {
animTimer--;
if (animTimer <= 0) {
var dir = (_this.image_mc.direction + 1);
_this.image_mc.setDirection(dir);
animTimer = animDelay;
}
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "objects2.png", 3, "down", true, null, UPPER_SPRITES_MC);
_this.image_mc.setSpeed(6);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "objects2.png", 3, "up", false, null, UPPER_SPRITES_MC);
}
Instance of Symbol 291 MovieClip "zombie_prog" in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "monster1.png", 5, "down");
_this.doesCollide = true;
_this.talk = function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
TEXTBOX_MC.setMessage("Your older sister is hot!\nI wonder if there's a way to\nmake her go trick-or-treating?", 0);
};
}
Instance of Symbol 295 MovieClip "door_home_prog" in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "left", false, "door_home");
_this.doesCollide = true;
_this.talk = function () {
_parent.doneTrickOrTreating();
};
}
Instance of Symbol 291 MovieClip "rocky_prog" in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "monster2.png", 4, "left");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
event_message(talkEvents, "I'm gonna get tons of candy \nand make my older brother jealous!");
}, function () {
event_message(talkEvents, "Siblings are like that...");
}]);
}
Instance of Symbol 291 MovieClip "slut1_prog" in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "people7.png", 5, "down");
_this.doesCollide = true;
_this.talk = function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
if (FLAGS.clothes <= 1) {
TEXTBOX_MC.setMessage("How am I supposed to compete with THAT costume!?", 0);
} else {
TEXTBOX_MC.setMessage("I HOPE I run into a trickster! \nI didn't wear this costume to get candy.", 0);
}
};
}
Instance of Symbol 291 MovieClip "armor_prog" in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "monster2.png", 3, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
event_message(talkEvents, "If it's such a big deal, how am I supposed to\ntell the safe houses from the 'dangerous' ones?", 2);
}, function () {
if (FLAGS.clothes <= 1) {
event_message(talkEvents, "...", 2);
}
}, function () {
event_message(talkEvents, "I think I'm asking the wrong person.", 2);
}]);
}
Instance of Symbol 291 MovieClip "slut2_prog" in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "people7.png", 5, "right");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
if (FLAGS.clothes <= 1) {
event_message(null, "Lucky...");
} else {
event_message(talkEvents, "My mom said that if I go to the wrong house.\nthey'll kidnap me,\ntie me up,\nstart screwing me...");
}
}, function () {
event_message(talkEvents, "Oooh!\nI get excited just thinking about it!");
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[9] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Here you go!\nHave some fireworks!", 0, "face_fireworksGuy");
}, function () {
SOUND.play("imp.wav");
FLAGS.candy++;
event_message(talkEvents, "- Recieved a rocket -", 0);
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[9] = true;
}]);
}
Instance of Symbol 291 MovieClip "mom_prog" in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "miscPeople2.png", 0, "down", false, "mom");
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
autoEvents = makeScriptSystem(_this);
autoEvents.defineScript([function () {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setDirection("up");
PLAYER_MC.image_mc.setAnim(false);
event_wait(autoEvents, 0.7);
}, function () {
event_message(autoEvents, "It's Halloween, so be careful\nThere are dangerous people out there.", 0, "face_mom");
}, function () {
event_message(autoEvents, "Don't go asking for any 'tricks'\nand, well... 'treats' might not be\na good idea either.", 0, "face_mom");
}, function () {
event_message(autoEvents, "So, um... just ring the doorbell,\nhold out your pail,\nand hope for the best.", 0, "face_mom");
}, function () {
event_message(autoEvents, ("Also, there's a curfew.\nYou can only visit " + FLAGS.houses) + " houses.", 0, "face_mom");
}, function () {
event_message(autoEvents, "Have fun!", 0, "face_mom");
}, function () {
_this.image_mc.setCharset("");
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.door_home.image_mc.setDirection("right");
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.door_home.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
}]);
waitForPlayer = function () {
if (PLAYER_MC._x != undefined) {
autoEvents.runEvent();
clearInterval(playerWait);
}
};
var playerWait = setInterval(waitForPlayer, 34);
}
Instance of Symbol 297 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "crown7.png", 1);
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.removeMovieClip();
_this.doesCollide = false;
SOUND.play("imp.wav");
FLAGS.candy++;
event_message(null, "- Found some candy -");
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[8] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
SOUND.play("cat.wav");
event_message(talkEvents, "Meow!", 0, "face_cat");
}, function () {
SOUND.play("imp.wav");
FLAGS.candy++;
event_message(talkEvents, "- Recieved catnip -", 0);
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[8] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[6] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Oh my!\nHow scary!\nHere you go little boy...", 0, "face_oldMan");
}, function () {
SOUND.play("imp.wav");
FLAGS.candy++;
event_message(talkEvents, "- Recieved a nickel -", 0);
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[6] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[5] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Nobody better lay a finger on my-\nHey!", 0, "face_bart");
}, function () {
SOUND.play("imp.wav");
FLAGS.candy++;
event_message(talkEvents, "- Grabbed a Butterfinger -", 0);
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[5] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[7] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Oh?\nSo the new pizza boy is a girl...", 0, "face_pizzaWoman");
}, function () {
event_message(talkEvents, "I do so love a challange!", 0, "face_pizzaWoman");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("down");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
balloon = BALLOONS_MC.setMessage("Eek!", _this);
balloon.onClose = function () {
talkEvents.nextEvent();
};
}, function () {
_parent.win7.playMovie("youngClosed7_vid", talkEvents);
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[7] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[2] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Like, I didn't know my sister invited\neven more people to our\nlesbian sleepover!", 0, "face_lesbian");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("down");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
balloon = BALLOONS_MC.setMessage("Eek!", _this);
balloon.onClose = function () {
talkEvents.nextEvent();
};
}, function () {
_parent.win2.playMovie("youngClosed2_vid", talkEvents);
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[2] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[3] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_wait(talkEvents, 1);
}, function () {
SOUND.play("dog.wav");
event_message(talkEvents, "Woof!", 2, "face_dog");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("up");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
event_message(talkEvents, "Oh, what a cute doggy!", 0);
}, function () {
event_wait(talkEvents, 1);
}, function () {
event_message(talkEvents, "Hey, down boy!\nWoah!", 0);
}, function () {
SOUND.play("earth8.wav");
move.defineScript([function () {
event_move(move, -1, 0, false, 0.05, PLAYER_MC);
}, function () {
event_move(move, 2, 0, false, 0.1, PLAYER_MC);
}, function () {
event_move(talkEvents, -1, 0, false, 0.05, PLAYER_MC);
}]);
move.runEvent();
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
if (FLAGS.clothes > 0) {
SOUND.play("kill1.wav");
}
event_wait(talkEvents, 1.5);
}, function () {
_parent.win3.playMovie("youngClosed3_vid", talkEvents);
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[3] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
if (!ZigoEngine) {
com.mosesSupposes.fuse.ZigoEngine.simpleSetup(com.mosesSupposes.fuse.Shortcuts, com.mosesSupposes.fuse.PennerEasing);
}
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[4] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Hey!\nI bet it's another pokemon!!", 0, "face_ash1");
}, function () {
event_message(talkEvents, "Go pokeball!", 0, "face_ash4");
}, function () {
PLAYER_MC._tint = 16746632 /* 0xFF8888 */;
PLAYER_MC._tintPercent = 100;
PLAYER_MC.alphaTo(0, 2);
event_wait(talkEvents, 2);
}, function () {
event_move(null, 0, -1, false, 0.13, PLAYER_MC);
event_wait(talkEvents, 1);
}, function () {
event_message(talkEvents, "I wanna see how strong it is!\nLet's battle it Pikachu!", 0, "face_ash2");
}, function () {
event_message(talkEvents, "Pika!", 0, "face_pikachu");
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
_parent.win4.playMovie("youngClosed4_vid", talkEvents);
}, function () {
event_message(talkEvents, "Wow!\nWhat kind of attack was that!?", 0, "face_ash1");
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._alpha = 100;
PLAYER_MC._tintPercent = 0;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[4] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[1] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Am I glad to see you!\nMy kids are out of control!", 0, "face_babysitterMom");
}, function () {
event_message(talkEvents, "You were supposed to be here hours ago!\nAnd you call yourself a babysitter...", 0, "face_babysitterMom");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("down");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
balloon = BALLOONS_MC.setMessage("Eek!", _this);
balloon.onClose = function () {
talkEvents.nextEvent();
};
}, function () {
event_wait(talkEvents, 1);
}, function () {
event_message(talkEvents, "Hey look, sis!\nShe has big round things\non her chest!", 2, "face_lilBoy");
}, function () {
event_wait(talkEvents, 0.1);
}, function () {
event_message(talkEvents, "Hey neat!\nLet's see what else she has!", 2, "face_lilGirl");
}, function () {
_parent.win1.playMovie("youngClosed1_vid", talkEvents);
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
event_message(talkEvents, "What are you kids up to!?\nI swear, I can't take my eyes off you\nfor a second!", 2, "face_babysitterMom");
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[1] = true;
}]);
}
Instance of Symbol 297 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "crown7.png", 1);
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.removeMovieClip();
_this.doesCollide = false;
SOUND.play("imp.wav");
FLAGS.candy++;
event_message(null, "- Found some candy -");
}]);
}
Instance of Symbol 297 MovieClip in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "crown7.png", 1);
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.removeMovieClip();
_this.doesCollide = false;
SOUND.play("imp.wav");
FLAGS.candy++;
event_message(null, "- Found some candy -");
}]);
}
Instance of Symbol 291 MovieClip "naked_prog" in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "ridingHood3.png", 4, "down", false, "player");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
FLAGS.clothes = 0;
FLAGS.houses = 0;
}]);
}
Instance of Symbol 291 MovieClip "allCandy_prog" in Symbol 298 MovieClip Frame 7
onClipEvent (load) {
placeSprite(this, "freej_halloween.png", 0, "down", false, "player");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
FLAGS.candy = 99;
FLAGS.houses = 0;
}]);
}
Symbol 298 MovieClip Frame 17
function doneTrickOrTreating() {
if (FLAGS.freestyle) {
event_teleport("home_freestyle", 0, 0);
} else {
if (FLAGS.character == 0) {
if (FLAGS.clothes == 0) {
event_teleport("home_naked_young", -1, -1);
} else if (FLAGS.candy >= 6) {
event_teleport("home_allCandy_young", 7, 8);
} else {
event_teleport("home_default_young", 7, 8);
}
}
if (FLAGS.character == 1) {
if (FLAGS.clothes == 0) {
event_teleport("home_naked_old", 6, 16);
} else if (FLAGS.candy >= 7) {
event_teleport("home_allCandy_old", 7, 8);
} else {
event_teleport("home_default_old", 7, 8);
}
}
}
}
MAP_MC.load("maps/halloween_town.xml");
var dark = MAP_MC.attachMovie("mood_night", "mood_night", 22);
dark._width = 432;
dark._height = 720;
GLOWS_MC.removeMovieClip();
_global.GLOWS_MC = MAP_MC.createEmptyMovieClip("glow_mc", 23);
this.attachMovie("hud_mc", "hud_mc", 2);
UPDATE_SETTINGS();
UPDATE_APPEARANCE();
var curfew = SPRITES_MC.createEmptyMovieClip("curfew_mc", nextDepth(SPRITES_MC));
curfew.onEnterFrame = function () {
if (FLAGS.houses == 0) {
doneTrickOrTreating();
delete curfew.onEnterFrame;
}
};
Instance of Symbol 291 MovieClip "knight_prog" in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "people3.png", 7, "left");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
event_message(talkEvents, "My parents are all on about how 'dangerous'\nthe back streets are.");
}, function () {
event_message(talkEvents, "It's true!\nYou'll lose pieces of your costume!");
}, function () {
if (FLAGS.clothes <= 3) {
event_message(talkEvents, "Er... Not that it's a bad thing.\n*blush*");
}
}]);
}
Instance of Symbol 291 MovieClip "zombie_prog" in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "monster1.png", 5, "left");
_this.doesCollide = true;
_this.talk = function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
TEXTBOX_MC.setMessage("I love your costume!\n*drool*", 0);
};
}
Instance of Symbol 291 MovieClip "rocky_prog" in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "monster2.png", 4, "left");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
event_message(talkEvents, "I bet if you get lots of candy,\nyour younger sister will want to\ntrick-or-treat some more.");
}]);
}
Instance of Symbol 291 MovieClip "slut1_prog" in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "people7.png", 5, "right");
_this.doesCollide = true;
_this.talk = function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
if (FLAGS.clothes <= 1) {
TEXTBOX_MC.setMessage("How am I supposed to compete with THAT costume!?", 0);
} else {
TEXTBOX_MC.setMessage("I HOPE I run into a trickster! \nI didn't wear this costume to get candy.", 0);
}
};
}
Instance of Symbol 291 MovieClip "armor_prog" in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "monster2.png", 3, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
event_message(talkEvents, "It's unusually warm out,\nso everybody opened the window shades.", 0);
}]);
}
Instance of Symbol 291 MovieClip "slut2_prog" in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "people7.png", 5, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
if (FLAGS.clothes <= 1) {
event_message(null, "Lucky...");
} else {
event_message(talkEvents, "My mom said that if I go to the wrong house.\nthey'll kidnap me,\ntie me up,\nstart screwing me...");
}
}, function () {
event_message(talkEvents, "Oooh!\nI get excited just thinking about it!");
}]);
}
Instance of Symbol 291 MovieClip "mom_prog" in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
LOOP.pauseSet("player", true);
placeSprite(this, "miscPeople2.png", 0, "down", false, "mom");
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
autoEvents = makeScriptSystem(_this);
autoEvents.defineScript([function () {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setDirection("up");
PLAYER_MC.image_mc.setAnim(false);
event_wait(autoEvents, 0.7);
}, function () {
event_message(autoEvents, "It's Halloween, so be careful\nThere are dangerous people out there.", 0, "face_mom");
}, function () {
event_message(autoEvents, "Don't go asking for any 'tricks'\nand, well... 'treats' might not be\na good idea either.", 0, "face_mom");
}, function () {
event_message(autoEvents, "So, um... just ring the doorbell,\nhold out your pail,\nand hope for the best.", 0, "face_mom");
}, function () {
event_message(autoEvents, ("Also, there's a curfew.\nYou can only visit " + FLAGS.houses) + " houses.", 0, "face_mom");
}, function () {
event_message(autoEvents, "Have fun!", 0, "face_mom");
}, function () {
_this.image_mc.setCharset("");
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.door_home.image_mc.setDirection("right");
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.door_home.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
}]);
waitForPlayer = function () {
if (PLAYER_MC._x != undefined) {
autoEvents.runEvent();
clearInterval(playerWait);
}
};
var playerWait = setInterval(waitForPlayer, 34);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[8] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
SOUND.play("cat.wav");
event_message(talkEvents, "Meow!", 0, "face_cat");
}, function () {
SOUND.play("imp.wav");
FLAGS.candy++;
event_message(talkEvents, "- Recieved catnip -", 0);
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[8] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[6] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Oh my!\nHow scary!\nHere you go little boy...", 0, "face_oldMan");
}, function () {
SOUND.play("imp.wav");
FLAGS.candy++;
event_message(talkEvents, "- Recieved a nickel -", 0);
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[6] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[5] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Nobody better lay a finger on my-\nHey!", 0, "face_bart");
}, function () {
SOUND.play("imp.wav");
FLAGS.candy++;
event_message(talkEvents, "- Grabbed a Butterfinger -", 0);
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[5] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[7] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Oh?\nSo the new pizza boy is a girl...", 0, "face_pizzaWoman");
}, function () {
event_message(talkEvents, "I do so love a challange!", 0, "face_pizzaWoman");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("down");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
balloon = BALLOONS_MC.setMessage("Eek!", _this);
balloon.onClose = function () {
talkEvents.nextEvent();
};
}, function () {
_parent.win7.playMovie("oldOpen7_vid", talkEvents);
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[7] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[2] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Like, I didn't know my sister invited\neven more people to our\nlesbian sleepover!", 0, "face_lesbian");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("down");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
balloon = BALLOONS_MC.setMessage("Eek!", _this);
balloon.onClose = function () {
talkEvents.nextEvent();
};
}, function () {
_parent.win2.playMovie("oldOpen2_vid", talkEvents);
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[2] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[3] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_wait(talkEvents, 1);
}, function () {
SOUND.play("dog.wav");
event_message(talkEvents, "Woof!", 2, "face_dog");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("up");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
event_message(talkEvents, "Oh, what a cute doggy!", 0);
}, function () {
event_wait(talkEvents, 1);
}, function () {
event_message(talkEvents, "Hey, down boy!\nWoah!", 0);
}, function () {
SOUND.play("earth8.wav");
move.defineScript([function () {
event_move(move, -1, 0, false, 0.05, PLAYER_MC);
}, function () {
event_move(move, 2, 0, false, 0.1, PLAYER_MC);
}, function () {
event_move(talkEvents, -1, 0, false, 0.05, PLAYER_MC);
}]);
move.runEvent();
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
if (FLAGS.clothes > 0) {
SOUND.play("kill1.wav");
}
event_wait(talkEvents, 1.5);
}, function () {
_parent.win3.playMovie("oldOpen3_vid", talkEvents);
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[3] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
if (!ZigoEngine) {
com.mosesSupposes.fuse.ZigoEngine.simpleSetup(com.mosesSupposes.fuse.Shortcuts, com.mosesSupposes.fuse.PennerEasing);
}
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[4] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Hey!\nI bet it's another pokemon!!", 0, "face_ash1");
}, function () {
event_message(talkEvents, "Go pokeball!", 0, "face_ash4");
}, function () {
PLAYER_MC._tint = 16746632 /* 0xFF8888 */;
PLAYER_MC._tintPercent = 100;
PLAYER_MC.alphaTo(0, 2);
event_wait(talkEvents, 2);
}, function () {
event_move(null, 0, -1, false, 0.13, PLAYER_MC);
event_wait(talkEvents, 1);
}, function () {
event_message(talkEvents, "I wanna see how strong it is!\nLet's battle it Pikachu!", 0, "face_ash2");
}, function () {
event_message(talkEvents, "Pika!", 0, "face_pikachu");
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
_parent.win4.playMovie("oldOpen4_vid", talkEvents);
}, function () {
event_message(talkEvents, "Wow!\nWhat kind of attack was that!?", 0, "face_ash1");
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._alpha = 100;
PLAYER_MC._tintPercent = 0;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[4] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[1] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Am I glad to see you!\nMy kids are out of control!", 0, "face_babysitterMom");
}, function () {
event_message(talkEvents, "You were supposed to be here hours ago!\nAnd you call yourself a babysitter...", 0, "face_babysitterMom");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("down");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
balloon = BALLOONS_MC.setMessage("Eek!", _this);
balloon.onClose = function () {
talkEvents.nextEvent();
};
}, function () {
event_wait(talkEvents, 1);
}, function () {
event_message(talkEvents, "Hey look, sis!\nShe has big round things\non her chest!", 2, "face_lilBoy");
}, function () {
event_wait(talkEvents, 0.1);
}, function () {
event_message(talkEvents, "Hey neat!\nLet's see what else she has!", 2, "face_lilGirl");
}, function () {
_parent.win1.playMovie("oldOpen1_vid", talkEvents);
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
event_message(talkEvents, "What are you kids up to!?\nI swear, I can't take my eyes off you\nfor a second!", 2, "face_babysitterMom");
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[1] = true;
}]);
}
Instance of Symbol 291 MovieClip "naked_prog" in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "freej_halloween.png", 7, "down", false, "player");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
FLAGS.clothes = 0;
FLAGS.houses = 0;
}]);
}
Instance of Symbol 291 MovieClip "allCandy_prog" in Symbol 298 MovieClip Frame 17
onClipEvent (load) {
placeSprite(this, "ridingHood3.png", 7, "left", false, "player");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
FLAGS.candy = 99;
FLAGS.houses = 0;
}]);
}
Symbol 298 MovieClip Frame 25
function doneTrickOrTreating() {
if (FLAGS.freestyle) {
event_teleport("home_freestyle", -1, -1);
} else {
if (FLAGS.character == 0) {
if (FLAGS.clothes == 0) {
event_teleport("home_naked_young", -1, -1);
} else if (FLAGS.candy >= 6) {
event_teleport("home_allCandy_young", 7, 8);
} else {
event_teleport("home_default_young", 7, 8);
}
}
if (FLAGS.character == 1) {
if (FLAGS.clothes == 0) {
event_teleport("home_naked_old", 6, 16);
} else if (FLAGS.candy >= 7) {
event_teleport("home_allCandy_old", 7, 8);
} else {
event_teleport("home_default_old", 7, 8);
}
}
}
}
MAP_MC.load("maps/halloween_town.xml");
var dark = MAP_MC.attachMovie("mood_night", "mood_night", 22);
dark._width = 432;
dark._height = 720;
GLOWS_MC.removeMovieClip();
_global.GLOWS_MC = MAP_MC.createEmptyMovieClip("glow_mc", 23);
this.attachMovie("hud_mc", "hud_mc", 2);
UPDATE_SETTINGS();
UPDATE_APPEARANCE();
var curfew = SPRITES_MC.createEmptyMovieClip("curfew_mc", nextDepth(SPRITES_MC));
curfew.onEnterFrame = function () {
if (FLAGS.houses == 0) {
doneTrickOrTreating();
delete curfew.onEnterFrame;
}
};
Instance of Symbol 291 MovieClip "zombie_prog" in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
placeSprite(this, "monster1.png", 5, "left");
_this.doesCollide = true;
_this.talk = function () {
if (FLAGS.character == 0) {
_this.image_mc.lookAt(_this, PLAYER_MC);
TEXTBOX_MC.setMessage("I wonder if your big sister will go trick-or-treating again?", 0);
}
if (FLAGS.character == 1) {
_this.image_mc.lookAt(_this, PLAYER_MC);
TEXTBOX_MC.setMessage("I love your costume!\n*drool*", 0);
}
};
}
Instance of Symbol 295 MovieClip "door_home_prog" in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up", false, "door_home");
_this.doesCollide = true;
_this.talk = function () {
_parent.doneTrickOrTreating();
};
}
Instance of Symbol 291 MovieClip "rocky_prog" in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
placeSprite(this, "monster2.png", 4, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
event_message(talkEvents, "My brother made me get more candy.\nHe doesn't know what he's missing!");
}]);
}
Instance of Symbol 291 MovieClip "slut1_prog" in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
placeSprite(this, "people7.png", 5, "up");
_this.doesCollide = true;
_this.talk = function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
if (FLAGS.clothes <= 1) {
TEXTBOX_MC.setMessage("How am I supposed to compete with THAT costume!?", 0);
} else {
TEXTBOX_MC.setMessage("I HOPE I run into a trickster! \nI didn't wear this costume to get candy.", 0);
}
};
}
Instance of Symbol 291 MovieClip "slut2_prog" in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
placeSprite(this, "people7.png", 5, "down");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
_this.image_mc.lookAt(_this, PLAYER_MC);
event_message(talkEvents, "Who cares about candy!\nI've got all night!");
}, function () {
_this.image_mc.setDirection("up");
event_message(null, "I wonder who's in this house?");
}]);
}
Instance of Symbol 291 MovieClip "mom_prog" in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
LOOP.pauseSet("player", true);
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
autoEvents = makeScriptSystem();
autoEvents.defineScript([function () {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setDirection("down");
PLAYER_MC.image_mc.setAnim(false);
event_message(autoEvents, "I'll come home when I'M ready!", 0);
}, function () {
LOOP.pauseSet("player", false);
}]);
waitForPlayer = function () {
if (PLAYER_MC._x != undefined) {
autoEvents.runEvent();
clearInterval(playerWait);
}
};
var playerWait = setInterval(waitForPlayer, 34);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[7] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Oh?\nSo the new pizza boy is a girl...", 0, "face_pizzaWoman");
}, function () {
event_message(talkEvents, "I do so love a challange!", 0, "face_pizzaWoman");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("down");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
balloon = BALLOONS_MC.setMessage("Eek!", _this);
balloon.onClose = function () {
talkEvents.nextEvent();
};
}, function () {
if (FLAGS.character == 0) {
_parent.win7.playMovie("youngOpen7_vid", talkEvents);
} else {
_parent.win7.playMovie("oldOpen7_vid", talkEvents);
}
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[7] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[2] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Like, I didn't know my sister invited\neven more people to our\nlesbian sleepover!", 0, "face_lesbian");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("down");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
balloon = BALLOONS_MC.setMessage("Eek!", _this);
balloon.onClose = function () {
talkEvents.nextEvent();
};
}, function () {
if (FLAGS.character == 0) {
_parent.win2.playMovie("youngOpen2_vid", talkEvents);
} else {
_parent.win2.playMovie("oldOpen2_vid", talkEvents);
}
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[2] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[3] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_wait(talkEvents, 1);
}, function () {
SOUND.play("dog.wav");
event_message(talkEvents, "Woof!", 2, "face_dog");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("up");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
event_message(talkEvents, "Oh, what a cute doggy!", 0);
}, function () {
event_wait(talkEvents, 1);
}, function () {
event_message(talkEvents, "Hey, down boy!\nWoah!", 0);
}, function () {
SOUND.play("earth8.wav");
move.defineScript([function () {
event_move(move, -1, 0, false, 0.05, PLAYER_MC);
}, function () {
event_move(move, 2, 0, false, 0.1, PLAYER_MC);
}, function () {
event_move(talkEvents, -1, 0, false, 0.05, PLAYER_MC);
}]);
move.runEvent();
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
if (FLAGS.clothes > 0) {
SOUND.play("kill1.wav");
}
event_wait(talkEvents, 1.5);
}, function () {
if (FLAGS.character == 0) {
_parent.win3.playMovie("youngOpen3_vid", talkEvents);
} else {
_parent.win3.playMovie("oldOpen3_vid", talkEvents);
}
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[3] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
if (!ZigoEngine) {
com.mosesSupposes.fuse.ZigoEngine.simpleSetup(com.mosesSupposes.fuse.Shortcuts, com.mosesSupposes.fuse.PennerEasing);
}
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[4] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Hey!\nI bet it's another pokemon!!", 0, "face_ash1");
}, function () {
event_message(talkEvents, "Go pokeball!", 0, "face_ash4");
}, function () {
PLAYER_MC._tint = 16746632 /* 0xFF8888 */;
PLAYER_MC._tintPercent = 100;
PLAYER_MC.alphaTo(0, 2);
event_wait(talkEvents, 2);
}, function () {
event_move(null, 0, -1, false, 0.13, PLAYER_MC);
event_wait(talkEvents, 1);
}, function () {
event_message(talkEvents, "I wanna see how strong it is!\nLet's battle it Pikachu!", 0, "face_ash2");
}, function () {
event_message(talkEvents, "Pika!", 0, "face_pikachu");
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
if (FLAGS.character == 0) {
_parent.win4.playMovie("youngOpen4_vid", talkEvents);
} else {
_parent.win4.playMovie("oldOpen4_vid", talkEvents);
}
}, function () {
event_message(talkEvents, "Wow!\nWhat kind of attack was that!?", 0, "face_ash1");
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._alpha = 100;
PLAYER_MC._tintPercent = 0;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[4] = true;
}]);
}
Instance of Symbol 295 MovieClip in Symbol 298 MovieClip Frame 25
onClipEvent (load) {
placeSprite(this, "doors.png", 7, "up");
_this.doesCollide = true;
_this.talk = function () {
talkEvents.runEvent(0);
};
talkEvents.defineScript([function () {
if (FLAGS.houseVisited[1] == true) {
TEXTBOX_MC.setMessage("I already visited this house...", 0);
} else {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
SOUND.play("knock.wav");
event_wait(talkEvents, 0.1);
}
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 0.2);
}, function () {
SOUND.play("knock.wav");
event_wait(talkEvents, 1);
}, function () {
_this.image_mc.setDirection("right");
SOUND.play("open1.wav");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("left");
event_message(talkEvents, "Am I glad to see you!\nMy kids are out of control!", 0, "face_babysitterMom");
}, function () {
event_message(talkEvents, "You were supposed to be here hours ago!\nAnd you call yourself a babysitter...", 0, "face_babysitterMom");
}, function () {
move.defineScript([function () {
PLAYER_MC.image_mc.setDirection("down");
event_move(move, 0, -1, false, 0.13, PLAYER_MC);
}, function () {
PLAYER_MC._visible = false;
}]);
move.runEvent();
balloon = BALLOONS_MC.setMessage("Eek!", _this);
balloon.onClose = function () {
talkEvents.nextEvent();
};
}, function () {
event_wait(talkEvents, 1);
}, function () {
event_message(talkEvents, "Hey look, sis!\nShe has big round things\non her chest!", 2, "face_lilBoy");
}, function () {
event_wait(talkEvents, 0.1);
}, function () {
event_message(talkEvents, "Hey neat!\nLet's see what else she has!", 2, "face_lilGirl");
}, function () {
if (FLAGS.character == 0) {
_parent.win1.playMovie("youngOpen1_vid", talkEvents);
} else {
_parent.win1.playMovie("oldOpen1_vid", talkEvents);
}
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
event_message(talkEvents, "What are you kids up to!?\nI swear, I can't take my eyes off you\nfor a second!", 2, "face_babysitterMom");
}, function () {
event_wait(talkEvents, 0.5);
}, function () {
FLAGS.clothes--;
UPDATE_APPEARANCE();
PLAYER_MC._visible = true;
move.defineScript([function () {
event_move(talkEvents, 0, 1, true, 0.13, PLAYER_MC);
}]);
move.runEvent();
}, function () {
FLAGS.houses--;
_this.image_mc.setDirection("right");
event_wait(talkEvents, 0.1);
}, function () {
_this.image_mc.setDirection("up");
SOUND.play("close1.wav");
LOOP.pauseSet("player", false);
FLAGS.houseVisited[1] = true;
}]);
}
Symbol 298 MovieClip Frame 42
MAP_MC.load("maps/house.xml");
MAP_MC.mood_night.removeMovieClip();
GLOWS_MC.removeMovieClip();
Instance of Symbol 297 MovieClip "candy_prog" in Symbol 298 MovieClip Frame 42
onClipEvent (load) {
placeSprite(this, "crown7.png", 1, false, "candy");
_this.doesCollide = true;
}
Instance of Symbol 291 MovieClip "sister_prog" in Symbol 298 MovieClip Frame 42
onClipEvent (load) {
placeSprite(this, "freej.png", 0, "up", false, "sister");
_this.doesCollide = true;
}
Instance of Symbol 295 MovieClip "chest_prog" in Symbol 298 MovieClip Frame 42
onClipEvent (load) {
placeSprite(this, "object1.png", 6, "down", false, "chest");
_this.doesCollide = true;
}
Instance of Symbol 291 MovieClip "auto_prog" in Symbol 298 MovieClip Frame 42
onClipEvent (load) {
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
autoEvents = makeScriptSystem();
autoEvents.defineScript([function () {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
PLAYER_MC.image_mc.setDirection("left");
event_wait(autoEvents, 1);
}, function () {
SPRITES_MC.sister.image_mc.setDirection("down");
event_wait(autoEvents, 1);
}, function () {
move = makeScriptSystem(SPRITES_MC.sister);
trace("move.sprite: " + move.sprite);
move.defineScript([function () {
trace("move script");
event_move(move, 0, 3, true);
}, function () {
move.sprite.image_mc.setAnim(false);
autoEvents.nextEvent();
}]);
move.runEvent();
}, function () {
event_message(autoEvents, "Hey, can I have some of your candy?", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
PLAYER_MC.image_mc.setDirection("up");
event_message(autoEvents, "No way!\nGo get your own!?", 0);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.sister.image_mc.setDirection("up");
event_message(autoEvents, "Nah, it doesn't look like it's worth it.", 2);
}, function () {
move = makeScriptSystem(SPRITES_MC.sister);
move.defineScript([function () {
event_move(move, 0, -3, true);
}, function () {
move.sprite.image_mc.setAnim(false);
autoEvents.nextEvent();
}]);
move.runEvent();
}, function () {
event_message(autoEvents, "If you came home with a ton of candy\nI might go trick-or-treating too.", 2);
}, function () {
event_message(autoEvents, "Try again?", 1, null, ["yes", "no"]);
}, function () {
if (autoEvents.choice == 0) {
LOOP.pauseSet("player", false);
event_teleport("town_young", 2, 41);
}
if (autoEvents.choice == 1) {
TRANSITION_MC.onTransitionDone = function () {
fscommand ("quit");
};
MUSIC.fadeOut(1);
TRANSITION_MC.fadeOut();
}
}]);
waitForPlayer = function () {
if (PLAYER_MC._x != undefined) {
autoEvents.runEvent();
clearInterval(playerWait);
}
};
var playerWait = setInterval(waitForPlayer, 34);
}
Symbol 298 MovieClip Frame 58
MAP_MC.load("maps/house.xml");
MAP_MC.mood_night.removeMovieClip();
GLOWS_MC.removeMovieClip();
Instance of Symbol 291 MovieClip "hood_prog" in Symbol 298 MovieClip Frame 58
onClipEvent (load) {
placeSprite(this, "ridingHood3.png", 0, "up", false, "hood");
_this.doesCollide = true;
}
Instance of Symbol 295 MovieClip "chest_prog" in Symbol 298 MovieClip Frame 58
onClipEvent (load) {
placeSprite(this, "object1.png", 6, "left", false, "chest");
_this.doesCollide = true;
}
Instance of Symbol 291 MovieClip "auto_prog" in Symbol 298 MovieClip Frame 58
onClipEvent (load) {
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
autoEvents = makeScriptSystem();
autoEvents.defineScript([function () {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
PLAYER_MC.image_mc.setDirection("left");
event_wait(autoEvents, 1);
}, function () {
SPRITES_MC.hood.image_mc.setDirection("down");
event_message(autoEvents, "Hey sis, I'm out of candy.\nCan I have some of yours?", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
PLAYER_MC.image_mc.setDirection("up");
event_message(autoEvents, "If you want more,\njust go trick-or-treating again.", 0);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.hood.image_mc.setDirection("up");
event_message(autoEvents, "I could but...\nI think they're done giving out candy now.\nYou only got a little bit.", 2);
}, function () {
event_message(autoEvents, "Try again?", 1, null, ["yes", "no"]);
}, function () {
if (autoEvents.choice == 0) {
LOOP.pauseSet("player", false);
event_teleport("town_old", 2, 41);
}
if (autoEvents.choice == 1) {
TRANSITION_MC.onTransitionDone = function () {
fscommand ("quit");
};
MUSIC.fadeOut(1);
TRANSITION_MC.fadeOut();
}
}]);
waitForPlayer = function () {
if (PLAYER_MC._x != undefined) {
autoEvents.runEvent();
clearInterval(playerWait);
}
};
var playerWait = setInterval(waitForPlayer, 34);
}
Instance of Symbol 297 MovieClip "hoodCandy_prog" in Symbol 298 MovieClip Frame 58
onClipEvent (load) {
placeSprite(this, "crown7.png", 1, false, "hoodCandy");
_this.doesCollide = true;
}
Symbol 298 MovieClip Frame 72
MAP_MC.load("maps/house.xml");
MAP_MC.mood_night.removeMovieClip();
GLOWS_MC.removeMovieClip();
Instance of Symbol 291 MovieClip "auto_prog" in Symbol 298 MovieClip Frame 72
onClipEvent (load) {
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
autoEvents = makeScriptSystem();
autoEvents.defineScript([function () {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
PLAYER_MC.image_mc.setDirection("left");
event_wait(autoEvents, 1);
}, function () {
SPRITES_MC.sister.image_mc.setDirection("down");
event_wait(autoEvents, 1);
}, function () {
move = makeScriptSystem(SPRITES_MC.sister);
move.defineScript([function () {
event_move(move, 0, 3, true);
}, function () {
move.sprite.image_mc.setAnim(false);
autoEvents.nextEvent();
}]);
move.runEvent();
}, function () {
event_message(autoEvents, "Hey, can I have some of your candy?", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
PLAYER_MC.image_mc.setDirection("up");
event_message(autoEvents, "No way!\nGo get your own!?", 0);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.sister.image_mc.setDirection("right");
event_message(autoEvents, "Fine!\nI will!", 2);
}, function () {
PLAYER_MC.image_mc.setDirection("left");
move = makeScriptSystem(SPRITES_MC.sister);
move.defineScript([function () {
event_move(move, 4, 0, true);
}, function () {
move.sprite.image_mc.setAnim(false);
autoEvents.nextEvent();
}]);
move.runEvent();
}, function () {
SPRITES_MC.chest.image_mc.setDirection("left");
SOUND.play("open1.wav");
SPRITES_MC.sister.image_mc.setCharset("freej_halloween.png");
event_wait(autoEvents, 0.2);
}, function () {
SPRITES_MC.sister.image_mc.setDirection("left");
event_message(autoEvents, "I'll get even more candy than you!", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
PLAYER_MC.image_mc.setDirection("right");
event_message(autoEvents, "Oh yeah?\nHow?", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.sister.image_mc.setDirection("down");
event_message(autoEvents, "I'm older, so my curfew's longer.\nThat means I can visit more houses than you!", 2);
}, function () {
move = makeScriptSystem(SPRITES_MC.sister);
move.defineScript([function () {
event_move(move, 0, 2, true);
}, function () {
event_move(move, 3, 0, true);
}, function () {
event_move(move, 0, 1, true);
}, function () {
move.sprite.image_mc.setAnim(false);
autoEvents.nextEvent();
}]);
move.runEvent();
}, function () {
LOOP.pauseSet("player", false);
FLAGS.character = 1;
FLAGS.windowsOpen = true;
event_teleport("town_old", 2, 41);
}]);
waitForPlayer = function () {
if (PLAYER_MC._x != undefined) {
autoEvents.runEvent();
clearInterval(playerWait);
}
};
var playerWait = setInterval(waitForPlayer, 34);
}
Instance of Symbol 291 MovieClip "sister_prog" in Symbol 298 MovieClip Frame 72
onClipEvent (load) {
placeSprite(this, "freej.png", 0, "up", false, "sister");
_this.doesCollide = true;
}
Instance of Symbol 295 MovieClip "chest_prog" in Symbol 298 MovieClip Frame 72
onClipEvent (load) {
placeSprite(this, "object1.png", 6, "down", false, "chest");
_this.doesCollide = true;
}
Symbol 298 MovieClip Frame 89
MAP_MC.load("maps/house.xml");
MAP_MC.mood_night.removeMovieClip();
GLOWS_MC.removeMovieClip();
Instance of Symbol 297 MovieClip "candy_prog" in Symbol 298 MovieClip Frame 89
onClipEvent (load) {
placeSprite(this, "crown7.png", 1, false, "candy");
_this.doesCollide = true;
}
Instance of Symbol 291 MovieClip "hood_prog" in Symbol 298 MovieClip Frame 89
onClipEvent (load) {
placeSprite(this, "ridingHood3.png", 0, "up", false, "hood");
_this.doesCollide = true;
}
Instance of Symbol 295 MovieClip "chest_prog" in Symbol 298 MovieClip Frame 89
onClipEvent (load) {
placeSprite(this, "object1.png", 6, "left", false, "chest");
_this.doesCollide = true;
}
Instance of Symbol 291 MovieClip "auto_prog" in Symbol 298 MovieClip Frame 89
onClipEvent (load) {
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
autoEvents = makeScriptSystem();
autoEvents.defineScript([function () {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
PLAYER_MC.image_mc.setDirection("left");
event_wait(autoEvents, 1);
}, function () {
SPRITES_MC.hood.image_mc.setDirection("down");
event_message(autoEvents, "Hey!\nYou got more candy than me!", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
PLAYER_MC.image_mc.setDirection("up");
event_message(autoEvents, "I told you I would.", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
move = makeScriptSystem(SPRITES_MC.hood);
move.defineScript([function () {
event_move(move, 4, 4, true, 0.13);
}, function () {
event_move(move, 3, 0, true, 0.13);
}, function () {
move.sprite.image_mc.setAnim(false);
}]);
move.runEvent();
event_message(autoEvents, "Then I'm going trick-or-treating again!", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
PLAYER_MC.image_mc.setDirection("right");
event_message(autoEvents, "What about the curfew?", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.hood.image_mc.setDirection("left");
event_message(autoEvents, "Who cares!?\nMom's already asleep!\nBesides, if we trick-or-treat all night,\nwe'll get more candy than anyone!", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
PLAYER_MC.image_mc.setDirection("down");
event_message(autoEvents, "Hmm...", 2);
}, function () {
event_message(autoEvents, "Who will go trick-or-treating?", 1, null, ["Little Sister", "Big Sister"]);
}, function () {
if (autoEvents.choice == 0) {
FLAGS.character = 0;
}
if (autoEvents.choice == 1) {
FLAGS.character = 1;
}
FLAGS.freestyle = true;
LOOP.pauseSet("player", false);
PLAYER_MC.image_mc.setDirection("down");
event_teleport("town_freestyle", 2, 40);
}]);
waitForPlayer = function () {
if (PLAYER_MC._x != undefined) {
autoEvents.runEvent();
clearInterval(playerWait);
}
};
var playerWait = setInterval(waitForPlayer, 34);
}
Instance of Symbol 297 MovieClip "hoodCandy_prog" in Symbol 298 MovieClip Frame 89
onClipEvent (load) {
placeSprite(this, "crown7.png", 1, false, "hoodCandy");
_this.doesCollide = true;
}
Symbol 298 MovieClip Frame 104
MAP_MC.load("maps/house.xml");
MAP_MC.mood_night.removeMovieClip();
GLOWS_MC.removeMovieClip();
Instance of Symbol 291 MovieClip "player_prog" in Symbol 298 MovieClip Frame 104
onClipEvent (load) {
placeSprite(this, "ridingHood3.png", 4, "down", false, "player");
_this.doesCollide = true;
trace("player_prog: SPRITES_MC.player: " + SPRITES_MC.player);
}
Instance of Symbol 291 MovieClip "sister_prog" in Symbol 298 MovieClip Frame 104
onClipEvent (load) {
placeSprite(this, "freej.png", 0, "up", false, "sister");
_this.doesCollide = true;
}
Instance of Symbol 291 MovieClip "mom_prog" in Symbol 298 MovieClip Frame 104
onClipEvent (load) {
placeSprite(this, "miscPeople2.png", 0, "left", false, "mom");
_this.doesCollide = true;
}
Instance of Symbol 291 MovieClip "auto_prog" in Symbol 298 MovieClip Frame 104
onClipEvent (load) {
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
autoEvents = makeScriptSystem();
autoEvents.defineScript([function () {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
event_wait(autoEvents, 0.5);
}, function () {
event_message(autoEvents, "Goodnes!\nWhat happened to your costume!?", 2, "face_mom");
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.player.image_mc.setDirection("right");
event_message(autoEvents, "I visited a bunch of fun places.\nBut I didn't get much candy.", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
SPRITES_MC.sister.image_mc.setDirection("down");
event_message(autoEvents, "Jeez, Mom!\nYou weren't kidding...\nTrick-or-treating IS dangerous!.", 2);
}, function () {
event_message(autoEvents, "Sort of...", 2);
}, function () {
event_message(autoEvents, "Try again?", 1, null, ["yes", "no"]);
}, function () {
if (autoEvents.choice == 0) {
LOOP.pauseSet("player", false);
event_teleport("town_young", 2, 41);
}
if (autoEvents.choice == 1) {
TRANSITION_MC.onTransitionDone = function () {
fscommand ("quit");
};
MUSIC.fadeOut(1);
TRANSITION_MC.fadeOut();
}
}]);
waitForPlayer = function () {
if (PLAYER_MC._x != undefined) {
autoEvents.runEvent();
clearInterval(playerWait);
}
};
var playerWait = setInterval(waitForPlayer, 34);
}
Instance of Symbol 295 MovieClip "chest_prog" in Symbol 298 MovieClip Frame 104
onClipEvent (load) {
placeSprite(this, "object1.png", 6, "down", false, "chest");
_this.doesCollide = true;
}
Symbol 298 MovieClip Frame 119
MAP_MC.load("maps/house.xml");
MAP_MC.mood_night.removeMovieClip();
GLOWS_MC.removeMovieClip();
Instance of Symbol 291 MovieClip "hood_prog" in Symbol 298 MovieClip Frame 119
onClipEvent (load) {
placeSprite(this, "ridingHood3.png", 0, "left", false, "hood");
_this.doesCollide = true;
}
Instance of Symbol 295 MovieClip "chest_prog" in Symbol 298 MovieClip Frame 119
onClipEvent (load) {
placeSprite(this, "object1.png", 6, "left", false, "chest");
_this.doesCollide = true;
}
Instance of Symbol 291 MovieClip "auto_prog" in Symbol 298 MovieClip Frame 119
onClipEvent (load) {
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
autoEvents = makeScriptSystem();
autoEvents.defineScript([function () {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
event_wait(autoEvents, 1);
}, function () {
PLAYER_MC.image_mc.setDirection("up");
move = makeScriptSystem(PLAYER_MC);
move.defineScript([function () {
event_move(move, 0, -3, true);
}, function () {
move.sprite.image_mc.setAnim(false);
move.sprite.image_mc.setDirection("right");
event_wait(move, 0.6);
}, function () {
event_move(move, 7, 0, true);
}, function () {
move.sprite.image_mc.setAnim(false);
event_wait(move, 0.6);
}, function () {
move.sprite.image_mc.setDirection("left");
event_wait(move, 0.6);
}, function () {
move.sprite.image_mc.setDirection("right");
event_wait(move, 0.6);
}, function () {
event_move(move, 0, -4, true);
}, function () {
move.sprite.image_mc.setAnim(false);
autoEvents.nextEvent();
}]);
move.runEvent();
}, function () {
SPRITES_MC.hood.image_mc.setDirection("right");
event_message(autoEvents, "Ha ha...\nYou went to the wrong houses!", 2);
}, function () {
event_message(autoEvents, "Try again?", 1, null, ["yes", "no"]);
}, function () {
if (autoEvents.choice == 0) {
LOOP.pauseSet("player", false);
event_teleport("town_old", 2, 41);
}
if (autoEvents.choice == 1) {
TRANSITION_MC.onTransitionDone = function () {
fscommand ("quit");
};
MUSIC.fadeOut(1);
TRANSITION_MC.fadeOut();
}
}]);
waitForPlayer = function () {
if (PLAYER_MC._x != undefined) {
autoEvents.runEvent();
clearInterval(playerWait);
}
};
var playerWait = setInterval(waitForPlayer, 34);
}
Symbol 298 MovieClip Frame 132
MAP_MC.load("maps/house.xml");
MAP_MC.mood_night.removeMovieClip();
GLOWS_MC.removeMovieClip();
Instance of Symbol 291 MovieClip "hood_prog" in Symbol 298 MovieClip Frame 132
onClipEvent (load) {
placeSprite(this, "ridingHood3.png", 0, "left", true, "hood");
_this.doesCollide = true;
}
Instance of Symbol 291 MovieClip "auto_prog" in Symbol 298 MovieClip Frame 132
onClipEvent (load) {
makeScriptSystem = function (sprite) {
sprite = (sprite ? (sprite) : this);
var _this = new Array();
_this.index = 0;
_this.sprite = sprite;
_this.runEvent = function (eventIndex) {
eventIndex = ((eventIndex != undefined) ? (eventIndex) : 0);
_this.index = eventIndex;
_this[eventIndex].call();
};
_this.nextEvent = function () {
_this.index++;
_this.runEvent(_this.index);
};
_this.defineScript = function (elements) {
var _local1 = 0;
while (_local1 < elements.length) {
_this[_local1] = elements[_local1];
_local1++;
}
};
return(_this);
};
autoEvents = makeScriptSystem();
autoEvents.defineScript([function () {
LOOP.pauseSet("player", true);
PLAYER_MC.image_mc.setAnim(false);
event_wait(autoEvents, 0.5);
}, function () {
event_message(autoEvents, "Wow!\nLook at all this candy!\nLet's go again!", 2);
}, function () {
event_wait(autoEvents, 0.1);
}, function () {
event_message(autoEvents, "Who will go trick-or-treating?", 1, null, ["Little Sister", "Big Sister"]);
}, function () {
if (autoEvents.choice == 0) {
FLAGS.character = 0;
}
if (autoEvents.choice == 1) {
FLAGS.character = 1;
}
FLAGS.freestyle = true;
LOOP.pauseSet("player", false);
PLAYER_MC.image_mc.setDirection("down");
event_teleport("town_freestyle", 2, 40);
}]);
waitForPlayer = function () {
if (PLAYER_MC._x != undefined) {
autoEvents.runEvent();
clearInterval(playerWait);
}
};
var playerWait = setInterval(waitForPlayer, 34);
}
Instance of Symbol 297 MovieClip "hoodCandy_prog" in Symbol 298 MovieClip Frame 132
onClipEvent (load) {
placeSprite(this, "crown7.png", 1, false, "hoodCandy");
_this.doesCollide = true;
}
Instance of Symbol 291 MovieClip "freej_prog" in Symbol 298 MovieClip Frame 132
onClipEvent (load) {
placeSprite(this, "freej_halloween.png", 0, "right", true, "sister");
_this.doesCollide = true;
}