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

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

unity.swf

This is the info page for
Flash #126699

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


Text
GIRL'S BEST HANGOUT

1

2

3

P

E

Y

L

o

a

d

i

n

g

.

PLAY

UNITY

DRESS UP GAME

Bastan

Ilerle

HAIR

STUDS

CHAIN

Kolye

DRESS

TOP

üst

BOTTOM

Alt

SHOES

Ayakkabı

123PEPPY

<p align="center"></p>

ENTER YOUR NAME

Voer Uw Naam

Введите свое имя

Inserisci il tuo nome

Geben Sie Ihr Name

Entrez votre nom

Adını gir

Ingrese su Nombre

Ange ditt namn

Imię i nazwisko

Digite seu nome

DESIGNED BY

<p align="center"></p>

Spela Me

YOUR FRIEND'S EMAIL :

<p align="left"></p>

SEND

SEND

ADD MORE

ADD MORE

YOUR NAME :

YOUR EMAIL ADDRESS :

MESSAGE :

YOUR FRIEND'S NAME :

<p align="left"></p>

<p align="left"></p>

<p align="left"></p>

<p align="left"></p>

<p align="left"></p>

ActionScript [AS3]

Section 1
//Back (fl.transitions.easing.Back) package fl.transitions.easing { public class Back { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0):Number{ if (!_arg5){ _arg5 = 1.70158; }; _arg1 = ((_arg1 / _arg4) - 1); return (((_arg3 * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 1)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0):Number{ if (!_arg5){ _arg5 = 1.70158; }; _arg1 = (_arg1 / _arg4); return (((((_arg3 * _arg1) * _arg1) * (((_arg5 + 1) * _arg1) - _arg5)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0):Number{ if (!_arg5){ _arg5 = 1.70158; }; _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * ((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) - _arg5))) + _arg2)); }; _arg1 = (_arg1 - 2); _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 2)) + _arg2)); } } }//package fl.transitions.easing
Section 2
//AutoAlphaPlugin (gs.plugins.AutoAlphaPlugin) package gs.plugins { import gs.*; import flash.display.*; public class AutoAlphaPlugin extends TweenPlugin { protected var _tweenVisible:Boolean; protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function AutoAlphaPlugin(){ this.propName = "autoAlpha"; this.overwriteProps = ["alpha", "visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); if (((!((_target.visible == true))) && (_tweenVisible))){ _target.visible = true; }; } public function onCompleteTween():void{ if (((((_tweenVisible) && (!((_tween.vars.runBackwards == true))))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(!((_arg2 == 0))); _tweenVisible = true; addTween(_arg1, "alpha", _arg1.alpha, _arg2, "alpha"); return (true); } override public function killProps(_arg1:Object):void{ super.killProps(_arg1); _tweenVisible = !(Boolean(("visible" in _arg1))); } } }//package gs.plugins
Section 3
//EndArrayPlugin (gs.plugins.EndArrayPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class EndArrayPlugin extends TweenPlugin { protected var _info:Array; protected var _a:Array; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function EndArrayPlugin(){ _info = []; super(); this.propName = "endArray"; this.overwriteProps = ["endArray"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:ArrayTweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _a[_local3.index] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _a[_local3.index] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function init(_arg1:Array, _arg2:Array):void{ var _local3:int; _a = _arg1; _local3 = (_arg2.length - 1); while (_local3 > -1) { if (((!((_arg1[_local3] == _arg2[_local3]))) && (!((_arg1[_local3] == null))))){ _info[_info.length] = new ArrayTweenInfo(_local3, _a[_local3], (_arg2[_local3] - _a[_local3])); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is Array))) || (!((_arg2 is Array))))){ return (false); }; init((_arg1 as Array), _arg2); return (true); } } }//package gs.plugins
Section 4
//FramePlugin (gs.plugins.FramePlugin) package gs.plugins { import gs.*; import flash.display.*; public class FramePlugin extends TweenPlugin { public var frame:int; protected var _target:MovieClip; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function FramePlugin(){ this.propName = "frame"; this.overwriteProps = ["frame"]; this.round = true; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.gotoAndStop(this.frame); } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is MovieClip))) || (isNaN(_arg2)))){ return (false); }; _target = (_arg1 as MovieClip); this.frame = _target.currentFrame; addTween(this, "frame", this.frame, _arg2, "frame"); return (true); } } }//package gs.plugins
Section 5
//RemoveTintPlugin (gs.plugins.RemoveTintPlugin) package gs.plugins { public class RemoveTintPlugin extends TintPlugin { public static const VERSION:Number = 1.01; public static const API:Number = 1; public function RemoveTintPlugin(){ this.propName = "removeTint"; } } }//package gs.plugins
Section 6
//TintPlugin (gs.plugins.TintPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.geom.*; import gs.utils.tween.*; public class TintPlugin extends TweenPlugin { protected var _ct:ColorTransform; protected var _ignoreAlpha:Boolean; protected var _target:DisplayObject; public static const VERSION:Number = 1.1; public static const API:Number = 1; protected static var _props:Array = ["redMultiplier", "greenMultiplier", "blueMultiplier", "alphaMultiplier", "redOffset", "greenOffset", "blueOffset", "alphaOffset"]; public function TintPlugin(){ this.propName = "tint"; this.overwriteProps = ["tint"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:ColorTransform; updateTweens(_arg1); if (_ignoreAlpha){ _local2 = _target.transform.colorTransform; _ct.alphaMultiplier = _local2.alphaMultiplier; _ct.alphaOffset = _local2.alphaOffset; }; _target.transform.colorTransform = _ct; } public function init(_arg1:DisplayObject, _arg2:ColorTransform):void{ var _local3:int; var _local4:String; _target = _arg1; _ct = _target.transform.colorTransform; _local3 = (_props.length - 1); while (_local3 > -1) { _local4 = _props[_local3]; if (_ct[_local4] != _arg2[_local4]){ _tweens[_tweens.length] = new TweenInfo(_ct, _local4, _ct[_local4], (_arg2[_local4] - _ct[_local4]), "tint", false); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:ColorTransform; if (!(_arg1 is DisplayObject)){ return (false); }; _local4 = new ColorTransform(); if (((!((_arg2 == null))) && (!((_arg3.exposedVars.removeTint == true))))){ _local4.color = uint(_arg2); }; _ignoreAlpha = true; init((_arg1 as DisplayObject), _local4); return (true); } } }//package gs.plugins
Section 7
//TweenPlugin (gs.plugins.TweenPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class TweenPlugin { public var overwriteProps:Array; protected var _tweens:Array; public var round:Boolean; public var onComplete:Function; public var propName:String; protected var _changeFactor:Number;// = 0 public static const VERSION:Number = 1.03; public static const API:Number = 1; public function TweenPlugin(){ _tweens = []; _changeFactor = 0; super(); } protected function updateTweens(_arg1:Number):void{ var _local2:int; var _local3:TweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _local3.target[_local3.property] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local3.target[_local3.property] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _changeFactor = _arg1; } protected function addTween(_arg1:Object, _arg2:String, _arg3:Number, _arg4, _arg5:String=null):void{ var _local6:Number; if (_arg4 != null){ _local6 = ((typeof(_arg4))=="number") ? (_arg4 - _arg3) : Number(_arg4); if (_local6 != 0){ _tweens[_tweens.length] = new TweenInfo(_arg1, _arg2, _arg3, _local6, ((_arg5) || (_arg2)), false); }; }; } public function killProps(_arg1:Object):void{ var _local2:int; _local2 = (this.overwriteProps.length - 1); while (_local2 > -1) { if ((this.overwriteProps[_local2] in _arg1)){ this.overwriteProps.splice(_local2, 1); }; _local2--; }; _local2 = (_tweens.length - 1); while (_local2 > -1) { if ((_tweens[_local2].name in _arg1)){ _tweens.splice(_local2, 1); }; _local2--; }; } public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ addTween(_arg1, this.propName, _arg1[this.propName], _arg2, this.propName); return (true); } public function get changeFactor():Number{ return (_changeFactor); } public static function activate(_arg1:Array):Boolean{ var _local2:int; var _local3:Object; _local2 = (_arg1.length - 1); while (_local2 > -1) { _local3 = new (_arg1[_local2]); TweenLite.plugins[_local3.propName] = _arg1[_local2]; _local2--; }; return (true); } } }//package gs.plugins
Section 8
//VisiblePlugin (gs.plugins.VisiblePlugin) package gs.plugins { import gs.*; import flash.display.*; public class VisiblePlugin extends TweenPlugin { protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function VisiblePlugin(){ this.propName = "visible"; this.overwriteProps = ["visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ if (_target.visible != true){ _target.visible = true; }; } public function onCompleteTween():void{ if (((!((_tween.vars.runBackwards == true))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(_arg2); return (true); } } }//package gs.plugins
Section 9
//VolumePlugin (gs.plugins.VolumePlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.media.*; public class VolumePlugin extends TweenPlugin { protected var _st:SoundTransform; protected var _target:Object; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function VolumePlugin(){ this.propName = "volume"; this.overwriteProps = ["volume"]; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.soundTransform = _st; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((isNaN(_arg2)) || (!(_arg1.hasOwnProperty("soundTransform"))))){ return (false); }; _target = _arg1; _st = _target.soundTransform; addTween(_st, "volume", _st.volume, _arg2, "volume"); return (true); } } }//package gs.plugins
Section 10
//ArrayTweenInfo (gs.utils.tween.ArrayTweenInfo) package gs.utils.tween { public class ArrayTweenInfo { public var change:Number; public var index:uint; public var start:Number; public function ArrayTweenInfo(_arg1:uint, _arg2:Number, _arg3:Number){ this.index = _arg1; this.start = _arg2; this.change = _arg3; } } }//package gs.utils.tween
Section 11
//TweenInfo (gs.utils.tween.TweenInfo) package gs.utils.tween { public class TweenInfo { public var start:Number; public var name:String; public var change:Number; public var target:Object; public var property:String; public var isPlugin:Boolean; public function TweenInfo(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number, _arg5:String, _arg6:Boolean){ this.target = _arg1; this.property = _arg2; this.start = _arg3; this.change = _arg4; this.name = _arg5; this.isPlugin = _arg6; } } }//package gs.utils.tween
Section 12
//TweenLite (gs.TweenLite) package gs { import flash.events.*; import flash.display.*; import gs.utils.tween.*; import gs.plugins.*; import flash.utils.*; public class TweenLite { public var delay:Number; protected var _hasUpdate:Boolean; protected var _hasPlugins:Boolean; public var started:Boolean; public var initted:Boolean; public var active:Boolean; public var startTime:Number; public var target:Object; public var duration:Number; public var gc:Boolean; public var vars:Object; public var ease:Function; public var tweens:Array; public var exposedVars:Object; public var combinedTimeScale:Number; public var initTime:Number; public static const version:Number = 10.09; private static var _timer:Timer = new Timer(2000); public static var defaultEase:Function = TweenLite.easeOut; public static var plugins:Object = {}; public static var currentTime:uint; public static var masterList:Dictionary = new Dictionary(false); protected static var _reservedProps:Object = {ease:1, delay:1, overwrite:1, onComplete:1, onCompleteParams:1, runBackwards:1, startAt:1, onUpdate:1, onUpdateParams:1, roundProps:1, onStart:1, onStartParams:1, persist:1, renderOnStart:1, proxiedEase:1, easeParams:1, yoyo:1, loop:1, onCompleteListener:1, onUpdateListener:1, onStartListener:1, orientToBezier:1, timeScale:1}; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; public static var timingSprite:Sprite = new Sprite(); public static var overwriteManager:Object; private static var _tlInitted:Boolean; public function TweenLite(_arg1:Object, _arg2:Number, _arg3:Object){ var _local4:int; super(); if (_arg1 == null){ return; }; if (!_tlInitted){ TweenPlugin.activate([TintPlugin, RemoveTintPlugin, FramePlugin, AutoAlphaPlugin, VisiblePlugin, VolumePlugin, EndArrayPlugin]); currentTime = getTimer(); timingSprite.addEventListener(Event.ENTER_FRAME, updateAll, false, 0, true); if (overwriteManager == null){ overwriteManager = {mode:1, enabled:false}; }; _timer.addEventListener("timer", killGarbage, false, 0, true); _timer.start(); _tlInitted = true; }; this.vars = _arg3; this.duration = ((_arg2) || (0.001)); this.delay = ((_arg3.delay) || (0)); this.combinedTimeScale = ((_arg3.timeScale) || (1)); this.active = Boolean((((_arg2 == 0)) && ((this.delay == 0)))); this.target = _arg1; if (typeof(this.vars.ease) != "function"){ this.vars.ease = defaultEase; }; if (this.vars.easeParams != null){ this.vars.proxiedEase = this.vars.ease; this.vars.ease = easeProxy; }; this.ease = this.vars.ease; this.exposedVars = ((this.vars.isTV)==true) ? this.vars.exposedVars : this.vars; this.tweens = []; this.initTime = currentTime; this.startTime = (this.initTime + (this.delay * 1000)); _local4 = ((((_arg3.overwrite == undefined)) || (((!(overwriteManager.enabled)) && ((_arg3.overwrite > 1)))))) ? overwriteManager.mode : int(_arg3.overwrite); if (((!((_arg1 in masterList))) || ((_local4 == 1)))){ masterList[_arg1] = [this]; } else { masterList[_arg1].push(this); }; if ((((((this.vars.runBackwards == true)) && (!((this.vars.renderOnStart == true))))) || (this.active))){ initTweenVals(); if (this.active){ render((this.startTime + 1)); } else { render(this.startTime); }; if (((((!((this.exposedVars.visible == null))) && ((this.vars.runBackwards == true)))) && ((this.target is DisplayObject)))){ this.target.visible = this.exposedVars.visible; }; }; } public function set enabled(_arg1:Boolean):void{ var _local2:Array; var _local3:Boolean; var _local4:int; if (_arg1){ if (!(this.target in masterList)){ masterList[this.target] = [this]; } else { _local2 = masterList[this.target]; _local4 = (_local2.length - 1); while (_local4 > -1) { if (_local2[_local4] == this){ _local3 = true; break; }; _local4--; }; if (!_local3){ _local2[_local2.length] = this; }; }; }; this.gc = (_arg1) ? false : true; if (this.gc){ this.active = false; } else { this.active = this.started; }; } public function clear():void{ this.tweens = []; this.vars = (this.exposedVars = {ease:this.vars.ease}); _hasUpdate = false; } public function render(_arg1:uint):void{ var _local2:Number; var _local3:Number; var _local4:TweenInfo; var _local5:int; _local2 = ((_arg1 - this.startTime) * 0.001); if (_local2 >= this.duration){ _local2 = this.duration; _local3 = ((((this.ease == this.vars.ease)) || ((this.duration == 0.001)))) ? 1 : 0; } else { _local3 = this.ease(_local2, 0, 1, this.duration); }; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local4 = this.tweens[_local5]; _local4.target[_local4.property] = (_local4.start + (_local3 * _local4.change)); _local5--; }; if (_hasUpdate){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (_local2 == this.duration){ complete(true); }; } public function activate():void{ this.started = (this.active = true); if (!this.initted){ initTweenVals(); }; if (this.vars.onStart != null){ this.vars.onStart.apply(null, this.vars.onStartParams); }; if (this.duration == 0.001){ this.startTime = (this.startTime - 1); }; } public function get enabled():Boolean{ return ((this.gc) ? false : true); } public function initTweenVals():void{ var _local1:String; var _local2:int; var _local3:*; var _local4:TweenInfo; if (((!((this.exposedVars.timeScale == undefined))) && ((this.target is TweenLite)))){ this.tweens[this.tweens.length] = new TweenInfo(this.target, "timeScale", this.target.timeScale, (this.exposedVars.timeScale - this.target.timeScale), "timeScale", false); }; for (_local1 in this.exposedVars) { if ((_local1 in _reservedProps)){ } else { if ((_local1 in plugins)){ _local3 = new (plugins[_local1]); if (_local3.onInitTween(this.target, this.exposedVars[_local1], this) == false){ this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); } else { this.tweens[this.tweens.length] = new TweenInfo(_local3, "changeFactor", 0, 1, ((_local3.overwriteProps.length)==1) ? _local3.overwriteProps[0] : "_MULTIPLE_", true); _hasPlugins = true; }; } else { this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); }; }; }; if (this.vars.runBackwards == true){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { _local4 = this.tweens[_local2]; this.tweens[_local2].start = (_local4.start + _local4.change); _local4.change = -(_local4.change); _local2--; }; }; if (this.vars.onUpdate != null){ _hasUpdate = true; }; if (((TweenLite.overwriteManager.enabled) && ((this.target in masterList)))){ overwriteManager.manageOverwrites(this, masterList[this.target]); }; this.initted = true; } protected function easeProxy(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams))); } public function killVars(_arg1:Object):void{ if (overwriteManager.enabled){ overwriteManager.killVars(_arg1, this.exposedVars, this.tweens); }; } public function complete(_arg1:Boolean=false):void{ var _local2:int; if (!_arg1){ if (!this.initted){ initTweenVals(); }; this.startTime = (currentTime - ((this.duration * 1000) / this.combinedTimeScale)); render(currentTime); return; }; if (_hasPlugins){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { if (((this.tweens[_local2].isPlugin) && (!((this.tweens[_local2].target.onComplete == null))))){ this.tweens[_local2].target.onComplete(); }; _local2--; }; }; if (this.vars.persist != true){ this.enabled = false; }; if (this.vars.onComplete != null){ this.vars.onComplete.apply(null, this.vars.onCompleteParams); }; } public static function updateAll(_arg1:Event=null):void{ var _local2:uint; var _local3:Dictionary; var _local4:Array; var _local5:int; var _local6:TweenLite; _local2 = (currentTime = getTimer()); _local3 = masterList; for each (_local4 in _local3) { _local5 = (_local4.length - 1); while (_local5 > -1) { _local6 = _local4[_local5]; if (_local6.active){ _local6.render(_local2); } else { if (_local6.gc){ _local4.splice(_local5, 1); } else { if (_local2 >= _local6.startTime){ _local6.activate(); _local6.render(_local2); }; }; }; _local5--; }; }; } public static function removeTween(_arg1:TweenLite, _arg2:Boolean=true):void{ if (_arg1 != null){ if (_arg2){ _arg1.clear(); }; _arg1.enabled = false; }; } public static function killTweensOf(_arg1:Object=null, _arg2:Boolean=false):void{ var _local3:Array; var _local4:int; var _local5:TweenLite; if (((!((_arg1 == null))) && ((_arg1 in masterList)))){ _local3 = masterList[_arg1]; _local4 = (_local3.length - 1); while (_local4 > -1) { _local5 = _local3[_local4]; if (((_arg2) && (!(_local5.gc)))){ _local5.complete(false); }; _local5.clear(); _local4--; }; delete masterList[_arg1]; }; } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ _arg3.runBackwards = true; return (new TweenLite(_arg1, _arg2, _arg3)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } protected static function killGarbage(_arg1:TimerEvent):void{ var _local2:Dictionary; var _local3:Object; _local2 = masterList; for (_local3 in _local2) { if (_local2[_local3].length == 0){ delete _local2[_local3]; }; }; } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null):TweenLite{ return (new TweenLite(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, overwrite:0})); } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ return (new TweenLite(_arg1, _arg2, _arg3)); } } }//package gs
Section 13
//B12_265 (unity_fla.B12_265) package unity_fla { import flash.display.*; public dynamic class B12_265 extends MovieClip { public function B12_265(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 14
//belt_196 (unity_fla.belt_196) package unity_fla { import flash.display.*; public dynamic class belt_196 extends MovieClip { public function belt_196(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(2); } } }//package unity_fla
Section 15
//bottoms_37 (unity_fla.bottoms_37) package unity_fla { import flash.display.*; public dynamic class bottoms_37 extends MovieClip { public function bottoms_37(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package unity_fla
Section 16
//buttons_241 (unity_fla.buttons_241) package unity_fla { import flash.display.*; public dynamic class buttons_241 extends MovieClip { public var glass_btn:MovieClip; public var bottoms_btn:MovieClip; public var dress_btn:MovieClip; public var tops_btn:MovieClip; public var hair_btn:MovieClip; public var bags_btn:MovieClip; public var shoes_btn:MovieClip; public var chain_btn:MovieClip; public var studs_btn:MovieClip; } }//package unity_fla
Section 17
//cbvdsfdsf_loader_7 (unity_fla.cbvdsfdsf_loader_7) package unity_fla { import flash.display.*; public dynamic class cbvdsfdsf_loader_7 extends MovieClip { public var masker:MovieClip; } }//package unity_fla
Section 18
//chain_199 (unity_fla.chain_199) package unity_fla { import flash.display.*; public dynamic class chain_199 extends MovieClip { public function chain_199(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package unity_fla
Section 19
//doll_177 (unity_fla.doll_177) package unity_fla { import flash.display.*; public dynamic class doll_177 extends MovieClip { public var dress:MovieClip; public var bags:MovieClip; public var glass:MovieClip; public var earring:MovieClip; public var bottoms:MovieClip; public var tops:MovieClip; public var chain:MovieClip; public var shoes:MovieClip; public var hair:MovieClip; } }//package unity_fla
Section 20
//dollcopy2_23 (unity_fla.dollcopy2_23) package unity_fla { import flash.display.*; public dynamic class dollcopy2_23 extends MovieClip { public var bags:MovieClip; public var bottoms:MovieClip; public var tops:MovieClip; public var hair:MovieClip; } }//package unity_fla
Section 21
//dress_182 (unity_fla.dress_182) package unity_fla { import flash.display.*; public dynamic class dress_182 extends MovieClip { public function dress_182(){ addFrameScript(0, frame1, 14, frame15); } function frame15(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package unity_fla
Section 22
//ear_210 (unity_fla.ear_210) package unity_fla { import flash.display.*; public dynamic class ear_210 extends MovieClip { public function ear_210(){ addFrameScript(0, frame1, 10, frame11); } function frame1(){ stop(); } function frame11(){ gotoAndStop(2); } } }//package unity_fla
Section 23
//enteryourname_261 (unity_fla.enteryourname_261) package unity_fla { import flash.display.*; public dynamic class enteryourname_261 extends MovieClip { public function enteryourname_261(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 24
//hairs_99 (unity_fla.hairs_99) package unity_fla { import flash.display.*; public dynamic class hairs_99 extends MovieClip { public function hairs_99(){ addFrameScript(0, frame1, 10, frame11); } function frame1(){ stop(); } function frame11(){ gotoAndStop(1); } } }//package unity_fla
Section 25
//hdhdfhf_emaiklY_270 (unity_fla.hdhdfhf_emaiklY_270) package unity_fla { import flash.events.*; import flash.display.*; import flash.text.*; public dynamic class hdhdfhf_emaiklY_270 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; public function hdhdfhf_emaiklY_270(){ addFrameScript(0, frame1); } public function hideAdd(_arg1:MouseEvent):void{ this.visible = false; } function frame1(){ this.visible = false; close.addEventListener(MouseEvent.CLICK, hideAdd); } } }//package unity_fla
Section 26
//hy_262 (unity_fla.hy_262) package unity_fla { import flash.display.*; public dynamic class hy_262 extends MovieClip { public function hy_262(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 27
//jgjyiy9_emaiklY_269 (unity_fla.jgjyiy9_emaiklY_269) package unity_fla { import flash.display.*; import flash.text.*; public dynamic class jgjyiy9_emaiklY_269 extends MovieClip { public var addition:SimpleButton; public var close:SimpleButton; public var submit:SimpleButton; public var messageDetail:TextField; public var friendName:TextField; public var friend2:MovieClip; public var friend4:MovieClip; public var friend1:MovieClip; public var friend3:MovieClip; public var friendMail:TextField; public var nameDetail:TextField; public var mailDetail:TextField; } }//package unity_fla
Section 28
//MainTimeline (unity_fla.MainTimeline) package unity_fla { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import fl.transitions.easing.*; import flash.media.*; import flash.text.*; import flash.ui.*; import flash.utils.*; import flash.net.*; import flash.system.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.printing.*; import flash.xml.*; import gs.easing.*; public dynamic class MainTimeline extends MovieClip { public var gamesbtn:MovieClip; public var t2:TextField; public var t1:TextField; public var preloader:MovieClip; public var dolls:MovieClip; public var nextbtn:MovieClip; public var contestMenu:ContextMenu; public var percentage:Number; public var playagain:MovieClip; public var logo_mc:SimpleButton; public var popup:MovieClip; public var BitsLoaded:TextField; public var queCount:uint; public var buttons2:MovieClip; public var girldollArray:Array; public var dress1; public var mailArray:Array; public var ent:MovieClip; public var sndon:SimpleButton; public var bullet:backscore; public var doll:MovieClip; public var top; public var bg_btn:MovieClip; public var bgss:MovieClip; public var sndoff:SimpleButton; public var buttons:MovieClip; public var play_more:MovieClip; public var email:MovieClip; public var bulletChannel:SoundChannel; public var contextmenuItem:ContextMenuItem; public var bot; public var pl:MovieClip; public var ball:MovieClip; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5); } public function result(_arg1:Event):void{ if (t1.text == ""){ nextbtn.visible = false; } else { nextbtn.visible = true; }; } public function dress(_arg1:MouseEvent):void{ doll.dress.nextFrame(); Globe.dress = doll.dress.currentFrame; Globe.tops = 0; Globe.bottoms = 0; doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); dress1 = 1; top = 0; bot = 0; } public function ser(_arg1:Event){ if (dress1 == 1){ buttons2.nextbtn1.visible = true; } else { if ((((top == 1)) && ((bot == 1)))){ buttons2.nextbtn1.visible = true; } else { buttons2.nextbtn1.visible = false; }; }; } function frame2(){ stop(); Globe.playback = true; if (bulletChannel){ bulletChannel.stop(); }; pl.buttonMode = true; pl.addEventListener(MouseEvent.CLICK, plays); switch (this.loaderInfo.parameters.lang){ case "fr": Globe.temp = 6; pl.gotoAndStop(Globe.temp); break; case "de": Globe.temp = 5; pl.gotoAndStop(Globe.temp); break; case "it": Globe.temp = 4; pl.gotoAndStop(Globe.temp); break; case "pl": Globe.temp = 10; pl.gotoAndStop(Globe.temp); break; case "ru": Globe.temp = 3; pl.gotoAndStop(Globe.temp); break; case "tr": Globe.temp = 7; pl.gotoAndStop(Globe.temp); break; case "sv": Globe.temp = 8; pl.gotoAndStop(Globe.temp); break; case "pt-br": Globe.temp = 11; pl.gotoAndStop(Globe.temp); break; case "es": Globe.temp = 9; pl.gotoAndStop(Globe.temp); break; case "nl": Globe.temp = 2; pl.gotoAndStop(Globe.temp); break; default: Globe.temp = 1; pl.gotoAndStop(Globe.temp); break; }; pl.addEventListener(MouseEvent.ROLL_OVER, rollover); pl.addEventListener(MouseEvent.ROLL_OUT, rollout); } function frame3(){ MochiBot.track(this, "dc9dab8d"); stop(); dress1 = 0; top = 0; bot = 0; doll.hair.gotoAndStop(1); doll.glass.gotoAndStop(1); doll.dress.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.earring.gotoAndStop(1); doll.bags.gotoAndStop(1); Globe.dress = 0; Globe.tops = 0; Globe.bottoms = 0; Globe.chain = 0; Globe.earring = 0; Globe.shoes = 0; Globe.bags = 0; Globe.hair = 0; Globe.bgss = 0; stage.addEventListener(Event.ENTER_FRAME, ser); bullet = new backscore(); bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.addEventListener(MouseEvent.CLICK, sndop); sndon.addEventListener(MouseEvent.CLICK, sndst); buttons.dress_btn.addEventListener(MouseEvent.CLICK, dress); buttons.hair_btn.addEventListener(MouseEvent.CLICK, hair); buttons.tops_btn.addEventListener(MouseEvent.CLICK, tops); buttons.bottoms_btn.addEventListener(MouseEvent.CLICK, bottoms); buttons.shoes_btn.addEventListener(MouseEvent.CLICK, shoe); buttons.chain_btn.addEventListener(MouseEvent.CLICK, chain); buttons.studs_btn.addEventListener(MouseEvent.CLICK, earring); buttons.bags_btn.addEventListener(MouseEvent.CLICK, bags); buttons.glass_btn.addEventListener(MouseEvent.CLICK, glass); buttons2.resetbtn.addEventListener(MouseEvent.CLICK, rese); buttons2.nextbtn1.addEventListener(MouseEvent.CLICK, nx); buttons.dress_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.dress_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.hair_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.hair_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.tops_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.tops_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.bottoms_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.bottoms_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.shoes_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.shoes_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.chain_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.chain_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.studs_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.studs_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.bags_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.bags_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.glass_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.glass_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.dress_btn.buttonMode = true; buttons.hair_btn.buttonMode = true; buttons.tops_btn.buttonMode = true; buttons.bottoms_btn.buttonMode = true; buttons.shoes_btn.buttonMode = true; buttons.chain_btn.buttonMode = true; buttons.studs_btn.buttonMode = true; buttons.bags_btn.buttonMode = true; buttons.glass_btn.buttonMode = true; buttons.dress_btn.gotoAndStop(Globe.temp); buttons.hair_btn.gotoAndStop(Globe.temp); buttons.tops_btn.gotoAndStop(Globe.temp); buttons.bottoms_btn.gotoAndStop(Globe.temp); buttons.shoes_btn.gotoAndStop(Globe.temp); buttons.chain_btn.gotoAndStop(Globe.temp); buttons.studs_btn.gotoAndStop(Globe.temp); buttons.bags_btn.gotoAndStop(Globe.temp); buttons.glass_btn.gotoAndStop(Globe.temp); buttons2.resetbtn.addEventListener(MouseEvent.ROLL_OVER, rollover); buttons2.nextbtn1.addEventListener(MouseEvent.ROLL_OVER, rollover); buttons2.resetbtn.addEventListener(MouseEvent.ROLL_OUT, rollout123); buttons2.nextbtn1.addEventListener(MouseEvent.ROLL_OUT, rollout123); buttons2.resetbtn.buttonMode = true; buttons2.nextbtn1.buttonMode = true; buttons2.resetbtn.gotoAndStop(Globe.temp); buttons2.nextbtn1.gotoAndStop(Globe.temp); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link); }; } function frame4(){ stop(); t1.text = ""; t1.restrict = "A-Z0-9"; ent.gotoAndStop(Globe.temp); nextbtn.gotoAndStop(Globe.temp); nextbtn.buttonMode = true; stage.addEventListener(Event.ENTER_FRAME, result); nextbtn.addEventListener(MouseEvent.CLICK, nextbtns); nextbtn.addEventListener(MouseEvent.ROLL_OVER, rollover2); nextbtn.addEventListener(MouseEvent.ROLL_OUT, rollout2); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link2); }; } function frame5(){ stop(); dolls.dress.gotoAndStop(Globe.dress); dolls.tops.gotoAndStop(Globe.tops); dolls.bottoms.gotoAndStop(Globe.bottoms); dolls.chain.gotoAndStop(Globe.chain); dolls.shoes.gotoAndStop(Globe.shoes); dolls.earring.gotoAndStop(Globe.earring); dolls.hair.gotoAndStop(Globe.hair); dolls.bags.gotoAndStop(Globe.bags); dolls.glass.gotoAndStop(Globe.glass); bg_btn.addEventListener(MouseEvent.CLICK, bgss1); bg_btn.buttonMode = true; bg_btn.gotoAndStop(Globe.temp); email.gotoAndStop(Globe.temp); play_more.gotoAndStop(Globe.temp); play_more.buttonMode = true; if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link1); }; play_more.addEventListener(MouseEvent.CLICK, link7); gamesbtn.addEventListener(MouseEvent.CLICK, link11); if (((this.loaderInfo.parameters.bg) && ((Globe.playback == false)))){ email.visible = true; playagain.tabEnabled = false; email.buttonMode = true; email.tabEnabled = false; email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); t2.text = this.loaderInfo.parameters.name; girldollArray = this.loaderInfo.parameters.girldoll.split(""); if (this.loaderInfo.parameters.bg == 1){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop(Number(girldollArray[2])); dolls.chain.gotoAndStop(Number(girldollArray[3])); dolls.shoes.gotoAndStop(Number(girldollArray[4])); dolls.earring.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.bags.gotoAndStop(Number(girldollArray[7])); dolls.glass.gotoAndStop(Number(girldollArray[8])); bgss.gotoAndStop(Number(girldollArray[9])); } else { if (this.loaderInfo.parameters.bg == 2){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop((Number(girldollArray[3]).toString() + Number(girldollArray[4]).toString())); dolls.chain.gotoAndStop(Number(girldollArray[5])); dolls.shoes.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.hair.gotoAndStop(Number(girldollArray[8])); dolls.bags.gotoAndStop(Number(girldollArray[9])); dolls.glass.gotoAndStop(Number(girldollArray[10])); bgss.gotoAndStop(Number(girldollArray[11])); } else { if (this.loaderInfo.parameters.bg == 3){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop((Number(girldollArray[2]).toString() + Number(girldollArray[3]).toString())); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.earring.gotoAndStop(Number(girldollArray[6])); dolls.hair.gotoAndStop(Number(girldollArray[7])); dolls.bags.gotoAndStop(Number(girldollArray[8])); dolls.glass.gotoAndStop(Number(girldollArray[9])); bgss.gotoAndStop(Number(girldollArray[10])); } else { if (this.loaderInfo.parameters.bg == 4){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.earring.gotoAndStop(Number(girldollArray[6])); dolls.hair.gotoAndStop(Number(girldollArray[7])); dolls.bags.gotoAndStop(Number(girldollArray[8])); dolls.glass.gotoAndStop(Number(girldollArray[9])); bgss.gotoAndStop(Number(girldollArray[10])); } else { if (this.loaderInfo.parameters.bg == 5){ dolls.dress.gotoAndStop((Number(girldollArray[0]).toString() + Number(girldollArray[1]).toString())); dolls.tops.gotoAndStop(Number(girldollArray[2]).toString()); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.earring.gotoAndStop(Number(girldollArray[6])); dolls.hair.gotoAndStop(Number(girldollArray[7])); dolls.bags.gotoAndStop(Number(girldollArray[8])); dolls.glass.gotoAndStop(Number(girldollArray[9])); bgss.gotoAndStop(Number(girldollArray[10])); }; }; }; }; }; playagain.addEventListener(MouseEvent.CLICK, plas1); playagain.tabEnabled = false; playagain.buttonMode = true; playagain.gotoAndStop(Globe.temp); } else { if (Globe.playback == true){ t2.text = Globe.tex; playagain.tabEnabled = false; email.visible = true; email.buttonMode = true; email.tabEnabled = false; dolls.dress.gotoAndStop(Globe.dress); dolls.tops.gotoAndStop(Globe.tops); dolls.bottoms.gotoAndStop(Globe.bottoms); dolls.glass.gotoAndStop(Globe.glass); dolls.chain.gotoAndStop(Globe.chain); dolls.shoes.gotoAndStop(Globe.shoes); dolls.earring.gotoAndStop(Globe.earring); dolls.hair.gotoAndStop(Globe.hair); bgss.gotoAndStop(Globe.bgss); playagain.addEventListener(MouseEvent.CLICK, plas); playagain.buttonMode = true; playagain.gotoAndStop(Globe.temp); email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); }; }; queCount = 0; mailArray = new Array(popup.friend1, popup.friend2, popup.friend3, popup.friend4); Globe.bgss = bgss.currentFrame; email.addEventListener(MouseEvent.ROLL_OVER, rollover1); email.addEventListener(MouseEvent.ROLL_OUT, rollout1); playagain.addEventListener(MouseEvent.ROLL_OVER, rollover1); playagain.addEventListener(MouseEvent.ROLL_OUT, rollout1); play_more.addEventListener(MouseEvent.ROLL_OVER, rollover1); play_more.addEventListener(MouseEvent.ROLL_OUT, rollout1); bg_btn.addEventListener(MouseEvent.ROLL_OVER, rollover3); bg_btn.addEventListener(MouseEvent.ROLL_OUT, rollout3); } function frame1(){ stop(); contestMenu = new ContextMenu(); contestMenu.hideBuiltInItems(); contextmenuItem = new ContextMenuItem("www.123peppy.com"); contextmenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, Site); contestMenu.customItems.push(contextmenuItem); this.contextMenu = contestMenu; percentage = 0; stage.addEventListener(Event.ENTER_FRAME, BeeMoving); } public function earring(_arg1:MouseEvent):void{ doll.earring.nextFrame(); Globe.earring = doll.earring.currentFrame; } public function rollout2(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } public function rollout3(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.3; _arg1.currentTarget.scaleY = 1.3; } public function rollout1(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function chain(_arg1:MouseEvent):void{ doll.chain.nextFrame(); Globe.chain = doll.chain.currentFrame; } public function plas1(_arg1:MouseEvent){ gotoAndStop(2); } public function showMailBox(_arg1:MouseEvent):void{ email.mouseEnabled = false; TweenLite.to(popup, 0.5, {y:(600 - popup.height), ease:Back.easeOut}); popup.nameDetail.text = ""; popup.mailDetail.text = ""; popup.messageDetail.text = ""; popup.friendName.text = ""; popup.friendMail.text = ""; popup.friend1.friendMail.text = ""; popup.friend2.friendMail.text = ""; popup.friend3.friendMail.text = ""; popup.friend4.friendMail.text = ""; } public function rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function rollout123(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function rollout122(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function shoe(_arg1:MouseEvent):void{ doll.shoes.nextFrame(); Globe.shoes = doll.shoes.currentFrame; } public function hideMailBox(_arg1:MouseEvent):void{ var event = _arg1; email.mouseEnabled = true; TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; popup.nameDetail.text = ""; popup.mailDetail.text = ""; popup.messageDetail.text = ""; popup.friendName.text = ""; popup.friendMail.text = ""; popup.friend1.friendMail.text = ""; popup.friend2.friendMail.text = ""; popup.friend3.friendMail.text = ""; popup.friend4.friendMail.text = ""; } public function sndop(_arg1:MouseEvent):void{ bulletChannel.stop(); sndon.visible = true; sndoff.visible = false; } public function showExtra(_arg1:MouseEvent):void{ if (queCount < 4){ mailArray[queCount].visible = true; queCount++; trace(queCount); } else { if (queCount == 4){ queCount = 0; mailArray[queCount].visible = true; queCount++; }; }; } public function nextbtns(_arg1:MouseEvent):void{ Globe.tex = t1.text; trace(Globe.tex); nextFrame(); stage.removeEventListener(Event.ENTER_FRAME, result); } public function plas(_arg1:MouseEvent){ gotoAndStop(2); } public function callMail(_arg1:MouseEvent):void{ var girlDoll:String; var countRequest:URLRequest; var countVariables:URLVariables; var loadG:URLLoader; var ups:Function; var request:URLRequest; var variables:URLVariables; var event = _arg1; ups = function (_arg1:Event):void{ }; Globe.bgss = bgss.currentFrame; girlDoll = (((((((((dolls.dress.currentFrame.toString() + dolls.tops.currentFrame.toString()) + dolls.bottoms.currentFrame.toString()) + dolls.chain.currentFrame.toString()) + dolls.shoes.currentFrame.toString()) + dolls.earring.currentFrame.toString()) + dolls.hair.currentFrame.toString()) + dolls.bags.currentFrame.toString()) + dolls.glass.currentFrame.toString()) + bgss.currentFrame.toString()); trace((girlDoll + "Final")); countRequest = new URLRequest("http://www.123peppy.com/gamecount"); countVariables = new URLVariables(); countVariables.gameid = this.loaderInfo.parameters.gameid; countRequest.data = countVariables; loadG = new URLLoader(); loadG.load(countRequest); loadG.addEventListener(Event.COMPLETE, ups); email.mouseEnabled = true; request = new URLRequest("http://facefun.123peppy.com/gamemail.php"); request.method = URLRequestMethod.POST; variables = new URLVariables(); variables.nameDetail = popup.nameDetail.text; variables.mailDetail = popup.mailDetail.text; variables.messageDetail = popup.messageDetail.text; variables.friendName = popup.friendName.text; variables.friendMail = popup.friendMail.text; variables.gamename = "Unity"; variables.friendMail1 = popup.friend1.friendMail.text; variables.friendMail2 = popup.friend2.friendMail.text; variables.friendMail3 = popup.friend3.friendMail.text; variables.friendMail4 = popup.friend4.friendMail.text; variables.girldoll = girlDoll; switch (this.loaderInfo.parameters.lang){ case "fr": variables.path = "http://www.123peppy.com/fr/play/unity"; break; case "de": variables.path = "http://www.123peppy.com/de/play/unity"; break; case "it": variables.path = "http://www.123peppy.com/it/play/unity"; break; case "pl": variables.path = "http://www.123peppy.com/pl/play/unity"; break; case "ru": variables.path = "http://www.123peppy.com/ru/play/unity"; break; case "tr": variables.path = "http://www.123peppy.com/tr/play/unity"; break; case "sv": variables.path = "http://www.123peppy.com/sv/play/unity"; break; case "pt-br": variables.path = "http://www.123peppy.com/pt-br/play/unity"; break; case "es": variables.path = "http://www.123peppy.com/es/play/unity"; break; case "nl": variables.path = "http://www.123peppy.com/nl/play/unity"; break; default: variables.path = "http://www.123peppy.com/play/unity"; break; }; variables.name = t2.text; if (dolls.dress.currentFrame > 9){ variables.bg = 5; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame <= 9)))){ variables.bg = 4; } else { if ((((dolls.bottoms.currentFrame > 9)) && ((dolls.tops.currentFrame <= 9)))){ variables.bg = 3; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame > 9)))){ variables.bg = 2; } else { variables.bg = 1; }; }; }; }; trace(variables.bg); request.data = variables; sendToURL(request); TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; } public function BeeMoving(_arg1:Event):void{ var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; _local2 = (mouseX - ball.x); _local3 = (mouseY - ball.y); ball.x = (ball.x + (_local2 * 0.2)); ball.y = (ball.y + (_local3 * 0.2)); _local4 = loaderInfo.bytesLoaded; _local5 = loaderInfo.bytesTotal; percentage = Math.round(((_local4 / _local5) * 100)); BitsLoaded.text = (((Math.round((_local4 / 0x0400)) + "kBs /") + Math.round((_local5 / 0x0400))) + "kBs"); if (_local4 == _local5){ stage.removeEventListener(Event.ENTER_FRAME, BeeMoving); if (this.loaderInfo.parameters.bg){ gotoAndStop(5); } else { gotoAndStop(2); }; }; } public function bags(_arg1:MouseEvent):void{ doll.bags.nextFrame(); Globe.bags = doll.bags.currentFrame; } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function bgss1(_arg1:MouseEvent):void{ bgss.nextFrame(); Globe.bgss = bgss.currentFrame; } public function link1(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function link2(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function glass(_arg1:MouseEvent):void{ doll.glass.nextFrame(); Globe.glass = doll.glass.currentFrame; } public function link7(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function rollover3(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.2; _arg1.currentTarget.scaleY = 1.2; } public function sndst(_arg1:MouseEvent):void{ bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.visible = true; sndon.visible = false; } public function rollover1(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function rollover2(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function link11(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.didigames.com"); navigateToURL(_local2, "_blank"); } public function bottoms(_arg1:MouseEvent):void{ doll.bottoms.nextFrame(); Globe.bottoms = doll.bottoms.currentFrame; Globe.dress = 0; doll.dress.gotoAndStop(1); dress1 = 0; bot = 1; } public function rollout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function tops(_arg1:MouseEvent):void{ doll.tops.nextFrame(); Globe.tops = doll.tops.currentFrame; Globe.dress = 0; doll.dress.gotoAndStop(1); dress1 = 0; top = 1; } public function rollover122(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function rese(_arg1:MouseEvent):void{ doll.hair.gotoAndStop(1); doll.glass.gotoAndStop(1); doll.dress.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.earring.gotoAndStop(1); doll.bags.gotoAndStop(1); dress1 = 0; top = 0; bot = 0; Globe.dress = 0; Globe.tops = 0; Globe.bottoms = 0; Globe.chain = 0; Globe.earring = 0; Globe.shoes = 0; Globe.bags = 0; Globe.hair = 0; } public function rollover123(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function nx(_arg1:MouseEvent):void{ stage.removeEventListener(Event.ENTER_FRAME, ser); nextFrame(); } public function plays(_arg1:MouseEvent):void{ nextFrame(); } public function hair(_arg1:MouseEvent):void{ doll.hair.nextFrame(); Globe.hair = doll.hair.currentFrame; } public function link(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } } }//package unity_fla
Section 29
//nere_236 (unity_fla.nere_236) package unity_fla { import flash.display.*; public dynamic class nere_236 extends MovieClip { public var resetbtn:MovieClip; public var nextbtn1:MovieClip; } }//package unity_fla
Section 30
//peppydfgfsds_loader_19 (unity_fla.peppydfgfsds_loader_19) package unity_fla { import flash.display.*; public dynamic class peppydfgfsds_loader_19 extends MovieClip { public function peppydfgfsds_loader_19(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package unity_fla
Section 31
//shape279_105 (unity_fla.shape279_105) package unity_fla { import flash.display.*; public dynamic class shape279_105 extends MovieClip { public function shape279_105(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 32
//shape279_237 (unity_fla.shape279_237) package unity_fla { import flash.display.*; public dynamic class shape279_237 extends MovieClip { public function shape279_237(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 33
//shape279_239 (unity_fla.shape279_239) package unity_fla { import flash.display.*; public dynamic class shape279_239 extends MovieClip { public function shape279_239(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 34
//shape279_242 (unity_fla.shape279_242) package unity_fla { import flash.display.*; public dynamic class shape279_242 extends MovieClip { public function shape279_242(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 35
//shape279_243 (unity_fla.shape279_243) package unity_fla { import flash.display.*; public dynamic class shape279_243 extends MovieClip { public function shape279_243(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 36
//shape279_244 (unity_fla.shape279_244) package unity_fla { import flash.display.*; public dynamic class shape279_244 extends MovieClip { public function shape279_244(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 37
//shape279_245 (unity_fla.shape279_245) package unity_fla { import flash.display.*; public dynamic class shape279_245 extends MovieClip { public function shape279_245(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 38
//shape279_246 (unity_fla.shape279_246) package unity_fla { import flash.display.*; public dynamic class shape279_246 extends MovieClip { public function shape279_246(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 39
//shape279_247 (unity_fla.shape279_247) package unity_fla { import flash.display.*; public dynamic class shape279_247 extends MovieClip { public function shape279_247(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 40
//shape279_248 (unity_fla.shape279_248) package unity_fla { import flash.display.*; public dynamic class shape279_248 extends MovieClip { public function shape279_248(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 41
//shape279_250 (unity_fla.shape279_250) package unity_fla { import flash.display.*; public dynamic class shape279_250 extends MovieClip { public function shape279_250(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 42
//shape279_260 (unity_fla.shape279_260) package unity_fla { import flash.display.*; public dynamic class shape279_260 extends MovieClip { public function shape279_260(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 43
//shape279_267 (unity_fla.shape279_267) package unity_fla { import flash.display.*; public dynamic class shape279_267 extends MovieClip { public function shape279_267(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package unity_fla
Section 44
//shoes_178 (unity_fla.shoes_178) package unity_fla { import flash.display.*; public dynamic class shoes_178 extends MovieClip { public function shoes_178(){ addFrameScript(0, frame1, 5, frame6); } function frame6(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package unity_fla
Section 45
//tops_76 (unity_fla.tops_76) package unity_fla { import flash.display.*; public dynamic class tops_76 extends MovieClip { public function tops_76(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package unity_fla
Section 46
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 47
//Globe (Globe) package { public class Globe { public static var chain:Number = 0; public static var tops:Number = 0; public static var earring:Number = 0; public static var temp:Number = 0; public static var playback:Boolean = false; public static var hair:Number = 0; public static var bgss:Number = 0; public static var tex:String = ""; public static var shoes:Number = 0; public static var bags:Number = 0; public static var bottoms:Number = 0; public static var glass:Number = 0; public static var dress:Number = 0; } }//package
Section 48
//MochiBot (MochiBot) package { import flash.display.*; import flash.net.*; import flash.system.*; public dynamic class MochiBot extends Sprite { public static function track(_arg1:Sprite, _arg2:String):MochiBot{ var _local3:MochiBot; var _local4:String; var _local5:URLVariables; var _local6:String; var _local7:URLRequest; var _local8:Loader; if (Security.sandboxType == "localWithFile"){ return (null); }; _local3 = new (MochiBot); _arg1.addChild(_local3); Security.allowDomain("*"); Security.allowInsecureDomain("*"); _local4 = "http://core.mochibot.com/my/core.swf"; _local5 = new URLVariables(); _local5["sb"] = Security.sandboxType; _local5["v"] = Capabilities.version; _local5["swfid"] = _arg2; _local5["mv"] = "8"; _local5["fv"] = "9"; _local6 = _local3.root.loaderInfo.loaderURL; if (_local6.indexOf("http") == 0){ _local5["url"] = _local6; } else { _local5["url"] = "local"; }; _local7 = new URLRequest(_local4); _local7.contentType = "application/x-www-form-urlencoded"; _local7.method = URLRequestMethod.POST; _local7.data = _local5; _local8 = new Loader(); _local3.addChild(_local8); _local8.load(_local7); return (_local3); } } }//package

Library Items

Symbol 1 Sound {backscore}
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:12
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:12
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:12
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:12
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:12
Symbol 12 MovieClipUses:3 5 7 9 11Used by:Timeline
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:26
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:26
Symbol 17 GraphicUsed by:26
Symbol 18 GraphicUsed by:26
Symbol 19 GraphicUsed by:26
Symbol 20 GraphicUsed by:26
Symbol 21 GraphicUsed by:26
Symbol 22 GraphicUsed by:26
Symbol 23 GraphicUsed by:26
Symbol 24 GraphicUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClip {unity_fla.cbvdsfdsf_loader_7}Uses:14 16 17 18 19 20 21 22 23 24 25Used by:Timeline
Symbol 27 FontUsed by:28
Symbol 28 EditableTextUses:27Used by:Timeline
Symbol 29 GraphicUsed by:Timeline
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:Timeline
Symbol 32 FontUsed by:33 377 523 536 543 555 567 579 590 601 607 613 662 663 664 665 666 667 668 669 670 671 672 732 748 750 753 755 757 758 759 760
Symbol 33 TextUses:32Used by:Timeline
Symbol 34 GraphicUsed by:58
Symbol 35 GraphicUsed by:37
Symbol 36 MovieClipUsed by:37
Symbol 37 MovieClipUses:35 36Used by:58
Symbol 38 GraphicUsed by:48
Symbol 39 ShapeTweeningUsed by:47
Symbol 40 GraphicUsed by:47
Symbol 41 ShapeTweeningUsed by:47
Symbol 42 GraphicUsed by:47
Symbol 43 ShapeTweeningUsed by:47
Symbol 44 GraphicUsed by:47
Symbol 45 ShapeTweeningUsed by:47
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:39 40 41 42 43 44 45 46Used by:48
Symbol 48 MovieClipUses:38 47Used by:56
Symbol 49 GraphicUsed by:54
Symbol 50 GraphicUsed by:54
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:54
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:49 50 52 53Used by:56
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:48 54 55Used by:58
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:34 37 56 57Used by:Timeline
Symbol 59 FontUsed by:60 61 62 63 64 65 67 68 69 70 71 72 73 74 643
Symbol 60 TextUses:59Used by:66
Symbol 61 TextUses:59Used by:66
Symbol 62 TextUses:59Used by:66
Symbol 63 TextUses:59Used by:66
Symbol 64 TextUses:59Used by:66
Symbol 65 TextUses:59Used by:66
Symbol 66 MovieClip {unity_fla.peppydfgfsds_loader_19}Uses:60 61 62 63 64 65Used by:Timeline
Symbol 67 TextUses:59Used by:75
Symbol 68 TextUses:59Used by:75
Symbol 69 TextUses:59Used by:75
Symbol 70 TextUses:59Used by:75
Symbol 71 TextUses:59Used by:75
Symbol 72 TextUses:59Used by:75
Symbol 73 TextUses:59Used by:75
Symbol 74 TextUses:59Used by:75
Symbol 75 MovieClipUses:67 68 69 70 71 72 73 74Used by:Timeline
Symbol 76 GraphicUsed by:80
Symbol 77 GraphicUsed by:80
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:80
Symbol 80 MovieClipUses:76 77 79Used by:Timeline
Symbol 81 GraphicUsed by:90
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:90
Symbol 84 GraphicUsed by:87
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:85Used by:87
Symbol 87 MovieClipUses:84 86Used by:90
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:90
Symbol 90 MovieClipUses:81 83 87 89Used by:242 518
Symbol 91 GraphicUsed by:97
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:97
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:97
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:91 93 95 96Used by:242 518
Symbol 98 GraphicUsed by:242 518
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:99Used by:101 419
Symbol 101 MovieClipUses:100Used by:242
Symbol 102 GraphicUsed by:103 155 157 196 243
Symbol 103 MovieClipUses:102Used by:242 518
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:106 449
Symbol 106 MovieClipUses:105Used by:242
Symbol 107 GraphicUsed by:110
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:110
Symbol 110 MovieClipUses:107 109Used by:185
Symbol 111 GraphicUsed by:114
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:114
Symbol 114 MovieClipUses:111 113Used by:185
Symbol 115 GraphicUsed by:141
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:141
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:118Used by:141
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:120Used by:141
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:141
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:124Used by:141
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:141
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:141
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:130Used by:141
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:141
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:141
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:136Used by:141
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:141
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:115 117 119 121 123 125 127 129 131 133 135 137 139 140Used by:185
Symbol 142 GraphicUsed by:155
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:143Used by:155 157
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:145Used by:155 157
Symbol 147 GraphicUsed by:148
Symbol 148 MovieClipUses:147Used by:155
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:149Used by:155
Symbol 151 GraphicUsed by:152
Symbol 152 MovieClipUses:151Used by:155
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:155
Symbol 155 MovieClipUses:142 144 146 102 148 150 152 154Used by:185
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:156 144 146 102Used by:185
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:158Used by:185
Symbol 160 BitmapUsed by:161 210
Symbol 161 GraphicUses:160Used by:162
Symbol 162 MovieClipUses:161Used by:185
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClipUses:163Used by:185
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:165Used by:185
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:167Used by:185
Symbol 169 GraphicUsed by:182
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:182
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:172Used by:182
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:174Used by:182
Symbol 176 GraphicUsed by:177
Symbol 177 MovieClipUses:176Used by:182
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:178Used by:182
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClipUses:180Used by:182
Symbol 182 MovieClipUses:169 171 173 175 177 179 181Used by:185
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClipUses:183Used by:185
Symbol 185 MovieClip {unity_fla.bottoms_37}Uses:110 114 141 155 157 159 162 164 166 168 182 184Used by:242 518
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:186Used by:220
Symbol 188 BitmapUsed by:189
Symbol 189 GraphicUses:188Used by:190
Symbol 190 MovieClipUses:189Used by:220
Symbol 191 BitmapUsed by:193
Symbol 192 BitmapUsed by:193
Symbol 193 GraphicUses:192 191Used by:197
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:194Used by:196
Symbol 196 MovieClipUses:102 195Used by:197
Symbol 197 MovieClipUses:193 196Used by:220
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198Used by:220
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:200Used by:220
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:202Used by:220
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:204Used by:220
Symbol 206 GraphicUsed by:209
Symbol 207 GraphicUsed by:208
Symbol 208 MovieClipUses:207Used by:209
Symbol 209 MovieClipUses:206 208Used by:220
Symbol 210 GraphicUses:160Used by:211
Symbol 211 MovieClipUses:210Used by:220
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClipUses:212Used by:220
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClipUses:214Used by:220
Symbol 216 GraphicUsed by:219
Symbol 217 GraphicUsed by:218
Symbol 218 MovieClipUses:217Used by:219
Symbol 219 MovieClipUses:216 218Used by:220
Symbol 220 MovieClip {unity_fla.tops_76}Uses:187 190 197 199 201 203 205 209 211 213 215 219Used by:242 518
Symbol 221 GraphicUsed by:226
Symbol 222 BitmapUsed by:223
Symbol 223 GraphicUses:222Used by:224
Symbol 224 MovieClipUses:223Used by:226 452
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClipUses:221 224 225Used by:227 455
Symbol 227 MovieClipUses:226Used by:242
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:228Used by:230 476
Symbol 230 MovieClipUses:229Used by:242
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClipUses:231Used by:242 518
Symbol 233 GraphicUsed by:234
Symbol 234 MovieClipUses:233Used by:235
Symbol 235 MovieClip {unity_fla.hairs_99}Uses:234Used by:242 518
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:236Used by:240
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:238Used by:240
Symbol 240 MovieClipUses:237 239Used by:241 517
Symbol 241 MovieClipUses:240Used by:242
Symbol 242 MovieClip {unity_fla.dollcopy2_23}Uses:90 97 98 101 103 106 185 220 227 230 232 235 241Used by:Timeline
Symbol 243 MovieClipUses:102Used by:376 395 397 399 401 403 405 407 409 411
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:244Used by:376 395 397 399 401 403 405 407 409 411
Symbol 246 GraphicUsed by:247
Symbol 247 MovieClipUses:246Used by:376 395 397 399 401 403 405 407 409 411
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClipUses:248Used by:376 395 397 399 401 403 405 407 409 411
Symbol 250 GraphicUsed by:376
Symbol 251 GraphicUsed by:369
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClipUses:252Used by:369
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:254Used by:369
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:256Used by:369
Symbol 258 GraphicUsed by:369
Symbol 259 GraphicUsed by:260
Symbol 260 MovieClipUses:259Used by:369
Symbol 261 GraphicUsed by:262
Symbol 262 MovieClipUses:261Used by:369
Symbol 263 GraphicUsed by:264
Symbol 264 MovieClipUses:263Used by:369
Symbol 265 BitmapUsed by:266
Symbol 266 GraphicUses:265Used by:369
Symbol 267 GraphicUsed by:268
Symbol 268 MovieClipUses:267Used by:369
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClipUses:269Used by:369
Symbol 271 GraphicUsed by:272
Symbol 272 MovieClipUses:271Used by:369
Symbol 273 GraphicUsed by:369
Symbol 274 GraphicUsed by:275
Symbol 275 MovieClipUses:274Used by:369
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClipUses:276Used by:369
Symbol 278 GraphicUsed by:279
Symbol 279 MovieClipUses:278Used by:369
Symbol 280 GraphicUsed by:369
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281Used by:369
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:283Used by:369
Symbol 285 GraphicUsed by:286
Symbol 286 MovieClipUses:285Used by:369
Symbol 287 GraphicUsed by:369
Symbol 288 GraphicUsed by:289
Symbol 289 MovieClipUses:288Used by:369
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:290Used by:369
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:292Used by:369
Symbol 294 BitmapUsed by:295
Symbol 295 GraphicUses:294Used by:369
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:369
Symbol 298 GraphicUsed by:299
Symbol 299 MovieClipUses:298Used by:369
Symbol 300 GraphicUsed by:301
Symbol 301 MovieClipUses:300Used by:369
Symbol 302 GraphicUsed by:369
Symbol 303 GraphicUsed by:304
Symbol 304 MovieClipUses:303Used by:369
Symbol 305 GraphicUsed by:306
Symbol 306 MovieClipUses:305Used by:369
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClipUses:307Used by:369
Symbol 309 GraphicUsed by:369
Symbol 310 GraphicUsed by:311
Symbol 311 MovieClipUses:310Used by:369
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:369
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClipUses:314Used by:369
Symbol 316 GraphicUsed by:369
Symbol 317 GraphicUsed by:318
Symbol 318 MovieClipUses:317Used by:369
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319Used by:369
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:321Used by:369
Symbol 323 GraphicUsed by:369
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:324Used by:369
Symbol 326 GraphicUsed by:327
Symbol 327 MovieClipUses:326Used by:369
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:328Used by:369
Symbol 330 GraphicUsed by:369
Symbol 331 GraphicUsed by:332
Symbol 332 MovieClipUses:331Used by:369
Symbol 333 GraphicUsed by:334
Symbol 334 MovieClipUses:333Used by:369
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClipUses:335Used by:369
Symbol 337 GraphicUsed by:344
Symbol 338 GraphicUsed by:339
Symbol 339 MovieClipUses:338Used by:344
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClipUses:340Used by:344
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:342Used by:344
Symbol 344 MovieClipUses:337 339 341 343Used by:369
Symbol 345 GraphicUsed by:352
Symbol 346 GraphicUsed by:347
Symbol 347 MovieClipUses:346Used by:352
Symbol 348 GraphicUsed by:349
Symbol 349 MovieClipUses:348Used by:352
Symbol 350 GraphicUsed by:351
Symbol 351 MovieClipUses:350Used by:352
Symbol 352 MovieClipUses:345 347 349 351Used by:369
Symbol 353 GraphicUsed by:360
Symbol 354 GraphicUsed by:355
Symbol 355 MovieClipUses:354Used by:360
Symbol 356 GraphicUsed by:357
Symbol 357 MovieClipUses:356Used by:360
Symbol 358 GraphicUsed by:359
Symbol 359 MovieClipUses:358Used by:360
Symbol 360 MovieClipUses:353 355 357 359Used by:369
Symbol 361 GraphicUsed by:368
Symbol 362 GraphicUsed by:363
Symbol 363 MovieClipUses:362Used by:368
Symbol 364 GraphicUsed by:365
Symbol 365 MovieClipUses:364Used by:368
Symbol 366 GraphicUsed by:367
Symbol 367 MovieClipUses:366Used by:368
Symbol 368 MovieClipUses:361 363 365 367Used by:369
Symbol 369 MovieClipUses:251 253 255 257 258 260 262 264 266 268 270 272 273 275 277 279 280 282 284 286 287 289 291 293 295 297 299 301 302 304 306 308 309 311 313 315 316 318 320 322 323 325 327 329 330 332 334 336 344 352 360 368Used by:376 395 397 399 401 403 405 407 409 411
Symbol 370 GraphicUsed by:371
Symbol 371 MovieClipUses:370Used by:376 395 397 399 401 403 405 407 409 411
Symbol 372 GraphicUsed by:373
Symbol 373 MovieClipUses:372Used by:376 395 397 399 401 403 405 407 409 411
Symbol 374 GraphicUsed by:375
Symbol 375 MovieClipUses:374Used by:376 395 397 399 401 403 405 407 409 411
Symbol 376 MovieClipUses:243 245 247 249 250 369 371 373 375Used by:388 528 541 554 566 578 589 600 612 624 638 661 718  Timeline
Symbol 377 TextUses:32Used by:388
Symbol 378 GraphicUsed by:388 528 542 554 566 578 589 600 612 624 638 718
Symbol 379 GraphicUsed by:388
Symbol 380 GraphicUsed by:388
Symbol 381 GraphicUsed by:388
Symbol 382 GraphicUsed by:388
Symbol 383 GraphicUsed by:388
Symbol 384 GraphicUsed by:388
Symbol 385 GraphicUsed by:388
Symbol 386 GraphicUsed by:388
Symbol 387 GraphicUsed by:388
Symbol 388 MovieClip {unity_fla.shape279_105}Uses:376 377 378 379 380 381 382 383 384 385 386 387Used by:Timeline
Symbol 389 FontUsed by:390
Symbol 390 TextUses:389Used by:391
Symbol 391 MovieClipUses:390Used by:Timeline
Symbol 392 FontUsed by:393 573 596 619 674 675
Symbol 393 TextUses:392Used by:Timeline
Symbol 394 GraphicUsed by:395
Symbol 395 MovieClipUses:243 245 247 249 394 369 371 373 375Used by:Timeline
Symbol 396 GraphicUsed by:397
Symbol 397 MovieClipUses:243 245 247 249 396 369 371 373 375Used by:Timeline
Symbol 398 GraphicUsed by:399
Symbol 399 MovieClipUses:243 245 247 249 398 369 371 373 375Used by:Timeline
Symbol 400 GraphicUsed by:401
Symbol 401 MovieClipUses:243 245 247 249 400 369 371 373 375Used by:Timeline
Symbol 402 GraphicUsed by:403
Symbol 403 MovieClipUses:243 245 247 249 402 369 371 373 375Used by:Timeline
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:243 245 247 249 404 369 371 373 375Used by:Timeline
Symbol 406 GraphicUsed by:407
Symbol 407 MovieClipUses:243 245 247 249 406 369 371 373 375Used by:Timeline
Symbol 408 GraphicUsed by:409
Symbol 409 MovieClipUses:243 245 247 249 408 369 371 373 375Used by:Timeline
Symbol 410 GraphicUsed by:411
Symbol 411 MovieClipUses:243 245 247 249 410 369 371 373 375Used by:Timeline
Symbol 412 GraphicUsed by:Timeline
Symbol 413 GraphicUsed by:414
Symbol 414 MovieClipUses:413Used by:419
Symbol 415 GraphicUsed by:416
Symbol 416 MovieClipUses:415Used by:419
Symbol 417 GraphicUsed by:418
Symbol 418 MovieClipUses:417Used by:419
Symbol 419 MovieClip {unity_fla.shoes_178}Uses:100 414 416 418Used by:518
Symbol 420 BitmapUsed by:421
Symbol 421 GraphicUses:420Used by:422
Symbol 422 MovieClipUses:421Used by:449
Symbol 423 GraphicUsed by:424
Symbol 424 MovieClipUses:423Used by:449
Symbol 425 GraphicUsed by:426
Symbol 426 MovieClipUses:425Used by:449
Symbol 427 BitmapUsed by:428
Symbol 428 GraphicUses:427Used by:429
Symbol 429 MovieClipUses:428Used by:449
Symbol 430 BitmapUsed by:431
Symbol 431 GraphicUses:430Used by:432
Symbol 432 MovieClipUses:431Used by:449
Symbol 433 GraphicUsed by:434
Symbol 434 MovieClipUses:433Used by:449
Symbol 435 GraphicUsed by:436
Symbol 436 MovieClipUses:435Used by:449
Symbol 437 GraphicUsed by:438
Symbol 438 MovieClipUses:437Used by:449
Symbol 439 GraphicUsed by:440
Symbol 440 MovieClipUses:439Used by:449
Symbol 441 GraphicUsed by:442
Symbol 442 MovieClipUses:441Used by:449
Symbol 443 GraphicUsed by:444
Symbol 444 MovieClipUses:443Used by:449
Symbol 445 GraphicUsed by:448
Symbol 446 GraphicUsed by:447
Symbol 447 MovieClipUses:446Used by:448
Symbol 448 MovieClipUses:445 447Used by:449
Symbol 449 MovieClip {unity_fla.dress_182}Uses:105 422 424 426 429 432 434 436 438 440 442 444 448Used by:518
Symbol 450 GraphicUsed by:452
Symbol 451 GraphicUsed by:452
Symbol 452 MovieClipUses:450 224 451Used by:455
Symbol 453 GraphicUsed by:454
Symbol 454 MovieClipUses:453Used by:455
Symbol 455 MovieClip {unity_fla.belt_196}Uses:452 226 454Used by:518
Symbol 456 GraphicUsed by:457
Symbol 457 MovieClipUses:456Used by:476
Symbol 458 GraphicUsed by:459
Symbol 459 MovieClipUses:458Used by:476
Symbol 460 GraphicUsed by:461
Symbol 461 MovieClipUses:460Used by:464
Symbol 462 GraphicUsed by:463
Symbol 463 MovieClipUses:462Used by:464
Symbol 464 MovieClipUses:461 463Used by:476
Symbol 465 GraphicUsed by:469
Symbol 466 GraphicUsed by:467
Symbol 467 MovieClipUses:466Used by:469
Symbol 468 GraphicUsed by:469
Symbol 469 MovieClipUses:465 467 468Used by:475
Symbol 470 GraphicUsed by:471
Symbol 471 MovieClipUses:470Used by:474
Symbol 472 GraphicUsed by:474
Symbol 473 GraphicUsed by:474
Symbol 474 MovieClipUses:471 472 473Used by:475
Symbol 475 MovieClipUses:469 474Used by:476
Symbol 476 MovieClip {unity_fla.chain_199}Uses:229 457 459 464 475Used by:518
Symbol 477 GraphicUsed by:478
Symbol 478 MovieClipUses:477Used by:481
Symbol 479 GraphicUsed by:480
Symbol 480 MovieClipUses:479Used by:481
Symbol 481 MovieClipUses:478 480Used by:517
Symbol 482 GraphicUsed by:483
Symbol 483 MovieClipUses:482Used by:486
Symbol 484 GraphicUsed by:485
Symbol 485 MovieClipUses:484Used by:486
Symbol 486 MovieClipUses:483 485Used by:517
Symbol 487 GraphicUsed by:488
Symbol 488 MovieClipUses:487Used by:491
Symbol 489 GraphicUsed by:490
Symbol 490 MovieClipUses:489Used by:491 492
Symbol 491 MovieClipUses:488 490Used by:492
Symbol 492 MovieClipUses:491 490Used by:517
Symbol 493 GraphicUsed by:494
Symbol 494 MovieClipUses:493Used by:495
Symbol 495 MovieClipUses:494Used by:517
Symbol 496 GraphicUsed by:497
Symbol 497 MovieClipUses:496Used by:498
Symbol 498 MovieClipUses:497Used by:517
Symbol 499 GraphicUsed by:502
Symbol 500 GraphicUsed by:501
Symbol 501 MovieClipUses:500Used by:502
Symbol 502 MovieClipUses:499 501Used by:503
Symbol 503 MovieClipUses:502Used by:517
Symbol 504 GraphicUsed by:505
Symbol 505 MovieClipUses:504Used by:512
Symbol 506 GraphicUsed by:509
Symbol 507 GraphicUsed by:508
Symbol 508 MovieClipUses:507Used by:509
Symbol 509 MovieClipUses:506 508Used by:512
Symbol 510 GraphicUsed by:511
Symbol 511 MovieClipUses:510Used by:512
Symbol 512 MovieClipUses:505 509 511Used by:513
Symbol 513 MovieClipUses:512Used by:517
Symbol 514 GraphicUsed by:515
Symbol 515 MovieClipUses:514Used by:516
Symbol 516 MovieClipUses:515Used by:517
Symbol 517 MovieClip {unity_fla.ear_210}Uses:240 481 486 492 495 498 503 513 516Used by:518
Symbol 518 MovieClip {unity_fla.doll_177}Uses:90 97 98 419 103 449 185 220 455 476 232 235 517Used by:Timeline
Symbol 519 GraphicUsed by:520 528
Symbol 520 MovieClipUses:519Used by:528
Symbol 521 GraphicUsed by:528
Symbol 522 GraphicUsed by:528
Symbol 523 TextUses:32Used by:528
Symbol 524 GraphicUsed by:528
Symbol 525 GraphicUsed by:528
Symbol 526 GraphicUsed by:528
Symbol 527 GraphicUsed by:528
Symbol 528 MovieClip {unity_fla.shape279_237}Uses:376 520 378 521 522 519 523 524 525 526 527Used by:542
Symbol 529 GraphicUsed by:530 661
Symbol 530 MovieClipUses:529Used by:541
Symbol 531 GraphicUsed by:541 661
Symbol 532 GraphicUsed by:541 661
Symbol 533 GraphicUsed by:541 661
Symbol 534 GraphicUsed by:541 661
Symbol 535 GraphicUsed by:541 661
Symbol 536 TextUses:32Used by:541 661
Symbol 537 GraphicUsed by:541 661
Symbol 538 GraphicUsed by:541 661
Symbol 539 GraphicUsed by:541 661
Symbol 540 GraphicUsed by:541 661
Symbol 541 MovieClip {unity_fla.shape279_239}Uses:376 530 531 532 533 534 535 536 537 538 539 540Used by:542
Symbol 542 MovieClip {unity_fla.nere_236}Uses:528 541 378Used by:Timeline
Symbol 543 TextUses:32Used by:554
Symbol 544 GraphicUsed by:554
Symbol 545 GraphicUsed by:554
Symbol 546 GraphicUsed by:554
Symbol 547 GraphicUsed by:554
Symbol 548 GraphicUsed by:554
Symbol 549 GraphicUsed by:554
Symbol 550 GraphicUsed by:554
Symbol 551 GraphicUsed by:554
Symbol 552 GraphicUsed by:554
Symbol 553 GraphicUsed by:554
Symbol 554 MovieClip {unity_fla.shape279_242}Uses:376 543 378 544 545 546 547 548 549 550 551 552 553Used by:639
Symbol 555 TextUses:32Used by:566
Symbol 556 GraphicUsed by:566
Symbol 557 GraphicUsed by:566
Symbol 558 GraphicUsed by:566
Symbol 559 GraphicUsed by:566
Symbol 560 GraphicUsed by:566
Symbol 561 GraphicUsed by:566
Symbol 562 GraphicUsed by:566
Symbol 563 GraphicUsed by:566
Symbol 564 GraphicUsed by:566
Symbol 565 GraphicUsed by:566
Symbol 566 MovieClip {unity_fla.shape279_243}Uses:376 555 378 556 557 558 559 560 561 562 563 564 565Used by:639
Symbol 567 TextUses:32Used by:578
Symbol 568 GraphicUsed by:578
Symbol 569 GraphicUsed by:578
Symbol 570 GraphicUsed by:578
Symbol 571 GraphicUsed by:578
Symbol 572 GraphicUsed by:578
Symbol 573 TextUses:392Used by:578
Symbol 574 GraphicUsed by:578
Symbol 575 GraphicUsed by:578
Symbol 576 GraphicUsed by:578
Symbol 577 GraphicUsed by:578 589
Symbol 578 MovieClip {unity_fla.shape279_244}Uses:376 567 378 568 569 570 571 572 573 574 575 576 577Used by:639
Symbol 579 TextUses:32Used by:589
Symbol 580 GraphicUsed by:589
Symbol 581 GraphicUsed by:589
Symbol 582 GraphicUsed by:589
Symbol 583 GraphicUsed by:589
Symbol 584 GraphicUsed by:589
Symbol 585 GraphicUsed by:589
Symbol 586 GraphicUsed by:589
Symbol 587 GraphicUsed by:589
Symbol 588 GraphicUsed by:589
Symbol 589 MovieClip {unity_fla.shape279_245}Uses:376 579 378 580 581 577 582 583 584 585 586 587 588Used by:639
Symbol 590 TextUses:32Used by:600
Symbol 591 GraphicUsed by:600
Symbol 592 GraphicUsed by:600
Symbol 593 GraphicUsed by:600
Symbol 594 GraphicUsed by:600
Symbol 595 GraphicUsed by:600
Symbol 596 TextUses:392Used by:600
Symbol 597 GraphicUsed by:600
Symbol 598 GraphicUsed by:600
Symbol 599 GraphicUsed by:600
Symbol 600 MovieClip {unity_fla.shape279_246}Uses:376 590 378 591 592 593 594 595 596 597 598 599Used by:639
Symbol 601 TextUses:32Used by:612
Symbol 602 GraphicUsed by:612
Symbol 603 GraphicUsed by:612
Symbol 604 GraphicUsed by:612
Symbol 605 GraphicUsed by:612
Symbol 606 GraphicUsed by:612
Symbol 607 TextUses:32Used by:612
Symbol 608 GraphicUsed by:612
Symbol 609 GraphicUsed by:612
Symbol 610 GraphicUsed by:612
Symbol 611 GraphicUsed by:612
Symbol 612 MovieClip {unity_fla.shape279_247}Uses:376 601 378 602 603 604 605 606 607 608 609 610 611Used by:639
Symbol 613 TextUses:32Used by:624
Symbol 614 GraphicUsed by:624
Symbol 615 GraphicUsed by:624
Symbol 616 GraphicUsed by:624
Symbol 617 GraphicUsed by:624
Symbol 618 GraphicUsed by:624
Symbol 619 TextUses:392Used by:624
Symbol 620 GraphicUsed by:624
Symbol 621 GraphicUsed by:624
Symbol 622 GraphicUsed by:624
Symbol 623 GraphicUsed by:624
Symbol 624 MovieClip {unity_fla.shape279_248}Uses:376 613 378 614 615 616 617 618 619 620 621 622 623Used by:639
Symbol 625 GraphicUsed by:626
Symbol 626 MovieClipUses:625Used by:639
Symbol 627 GraphicUsed by:628 638
Symbol 628 MovieClipUses:627Used by:638
Symbol 629 GraphicUsed by:638
Symbol 630 GraphicUsed by:638
Symbol 631 GraphicUsed by:638
Symbol 632 GraphicUsed by:638
Symbol 633 GraphicUsed by:638
Symbol 634 GraphicUsed by:638
Symbol 635 GraphicUsed by:638
Symbol 636 GraphicUsed by:638
Symbol 637 GraphicUsed by:638
Symbol 638 MovieClip {unity_fla.shape279_250}Uses:376 628 378 629 630 631 632 633 634 635 636 637 627Used by:639
Symbol 639 MovieClip {unity_fla.buttons_241}Uses:554 566 578 589 600 612 624 626 638Used by:Timeline
Symbol 640 GraphicUsed by:641
Symbol 641 MovieClipUses:640Used by:Timeline
Symbol 642 GraphicUsed by:646
Symbol 643 TextUses:59Used by:646
Symbol 644 GraphicUsed by:646
Symbol 645 GraphicUsed by:646
Symbol 646 ButtonUses:642 643 644 645Used by:Timeline
Symbol 647 GraphicUsed by:649 654 655
Symbol 648 GraphicUsed by:649 654 655
Symbol 649 MovieClipUses:647 648Used by:654 655
Symbol 650 GraphicUsed by:651 654 655
Symbol 651 MovieClipUses:650Used by:654 655
Symbol 652 GraphicUsed by:653 654
Symbol 653 MovieClipUses:652Used by:654
Symbol 654 ButtonUses:649 651 653 647 648 650 652Used by:Timeline
Symbol 655 ButtonUses:649 651 647 648 650Used by:Timeline
Symbol 656 BitmapUsed by:657
Symbol 657 GraphicUses:656Used by:658
Symbol 658 MovieClipUses:657Used by:Timeline
Symbol 659 FontUsed by:660
Symbol 660 EditableTextUses:659Used by:Timeline
Symbol 661 MovieClip {unity_fla.shape279_260}Uses:376 529 531 532 533 534 535 536 537 538 539 540Used by:Timeline
Symbol 662 TextUses:32Used by:673
Symbol 663 TextUses:32Used by:673
Symbol 664 TextUses:32Used by:673
Symbol 665 TextUses:32Used by:673
Symbol 666 TextUses:32Used by:673
Symbol 667 TextUses:32Used by:673
Symbol 668 TextUses:32Used by:673
Symbol 669 TextUses:32Used by:673
Symbol 670 TextUses:32Used by:673
Symbol 671 TextUses:32Used by:673
Symbol 672 TextUses:32Used by:673
Symbol 673 MovieClip {unity_fla.enteryourname_261}Uses:662 663 664 665 666 667 668 669 670 671 672Used by:Timeline
Symbol 674 TextUses:392Used by:Timeline
Symbol 675 EditableTextUses:392Used by:Timeline
Symbol 676 GraphicUsed by:679
Symbol 677 GraphicUsed by:678
Symbol 678 MovieClipUses:677Used by:679
Symbol 679 MovieClipUses:676 678Used by:691 703
Symbol 680 GraphicUsed by:691
Symbol 681 GraphicUsed by:691
Symbol 682 GraphicUsed by:691
Symbol 683 GraphicUsed by:691
Symbol 684 GraphicUsed by:691
Symbol 685 GraphicUsed by:691
Symbol 686 GraphicUsed by:691
Symbol 687 GraphicUsed by:691
Symbol 688 GraphicUsed by:691
Symbol 689 GraphicUsed by:691
Symbol 690 GraphicUsed by:691
Symbol 691 MovieClip {unity_fla.hy_262}Uses:679 680 681 682 683 684 685 686 687 688 689 690Used by:Timeline
Symbol 692 GraphicUsed by:703
Symbol 693 GraphicUsed by:703
Symbol 694 GraphicUsed by:703
Symbol 695 GraphicUsed by:703
Symbol 696 GraphicUsed by:703
Symbol 697 GraphicUsed by:703
Symbol 698 GraphicUsed by:703
Symbol 699 FontUsed by:700
Symbol 700 TextUses:699Used by:703
Symbol 701 GraphicUsed by:703
Symbol 702 GraphicUsed by:703
Symbol 703 MovieClip {unity_fla.B12_265}Uses:679 692 693 694 695 696 697 698 700 701 702Used by:Timeline
Symbol 704 GraphicUsed by:705
Symbol 705 MovieClipUses:704Used by:Timeline
Symbol 706 GraphicUsed by:707
Symbol 707 MovieClipUses:706Used by:718
Symbol 708 GraphicUsed by:718
Symbol 709 GraphicUsed by:718
Symbol 710 GraphicUsed by:718
Symbol 711 GraphicUsed by:718
Symbol 712 GraphicUsed by:718
Symbol 713 GraphicUsed by:718
Symbol 714 GraphicUsed by:718
Symbol 715 GraphicUsed by:718
Symbol 716 GraphicUsed by:718
Symbol 717 GraphicUsed by:718
Symbol 718 MovieClip {unity_fla.shape279_267}Uses:376 707 378 708 709 710 711 712 713 714 715 716 717Used by:Timeline
Symbol 719 GraphicUsed by:737
Symbol 720 GraphicUsed by:721 744
Symbol 721 MovieClipUses:720Used by:737 766
Symbol 722 GraphicUsed by:723 731 752 756
Symbol 723 MovieClipUses:722Used by:731 747
Symbol 724 GraphicUsed by:725 731 745 752 756
Symbol 725 MovieClipUses:724Used by:728
Symbol 726 GraphicUsed by:727 731 752 756
Symbol 727 MovieClipUses:726Used by:728 746
Symbol 728 MovieClipUses:725 727Used by:731
Symbol 729 GraphicUsed by:730
Symbol 730 ButtonUses:729Used by:731
Symbol 731 ButtonUses:723 728 730 722 724 726Used by:737 766
Symbol 732 TextUses:32Used by:737 766
Symbol 733 FontUsed by:734 761 762 763 764 765
Symbol 734 EditableTextUses:733Used by:737
Symbol 735 MovieClipUsed by:737 743
Symbol 736 MovieClipUsed by:737 743
Symbol 737 MovieClip {unity_fla.hdhdfhf_emaiklY_270}Uses:719 721 731 732 734 735 736Used by:766
Symbol 738 GraphicUsed by:743
Symbol 739 MovieClipUsed by:743
Symbol 740 GraphicUsed by:741
Symbol 741 MovieClipUses:740Used by:742
Symbol 742 MovieClipUses:741Used by:743
Symbol 743 MovieClipUses:738 739 742 735 736Used by:766
Symbol 744 MovieClipUses:720Used by:766
Symbol 745 MovieClipUses:724Used by:746
Symbol 746 MovieClipUses:745 727Used by:747
Symbol 747 MovieClipUses:723 746Used by:749 752 754 756
Symbol 748 TextUses:32Used by:749
Symbol 749 MovieClipUses:747 748Used by:752
Symbol 750 TextUses:32Used by:752
Symbol 751 GraphicUsed by:752 756
Symbol 752 ButtonUses:749 747 750 751 722 724 726Used by:766
Symbol 753 TextUses:32Used by:754
Symbol 754 MovieClipUses:747 753Used by:756
Symbol 755 TextUses:32Used by:756
Symbol 756 ButtonUses:754 747 755 751 722 724 726Used by:766
Symbol 757 TextUses:32Used by:766
Symbol 758 TextUses:32Used by:766
Symbol 759 TextUses:32Used by:766
Symbol 760 TextUses:32Used by:766
Symbol 761 EditableTextUses:733Used by:766
Symbol 762 EditableTextUses:733Used by:766
Symbol 763 EditableTextUses:733Used by:766
Symbol 764 EditableTextUses:733Used by:766
Symbol 765 EditableTextUses:733Used by:766
Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269}Uses:737 743 721 744 752 756 757 758 759 760 732 731 761 762 763 764 765Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 26 MovieClip {unity_fla.cbvdsfdsf_loader_7}
"BitsLoaded"Frame 1Symbol 28 EditableText
"ball"Frame 1Symbol 75 MovieClip
"pl"Frame 2Symbol 388 MovieClip {unity_fla.shape279_105}
"doll"Frame 3Symbol 518 MovieClip {unity_fla.doll_177}
"buttons2"Frame 3Symbol 542 MovieClip {unity_fla.nere_236}
"buttons"Frame 3Symbol 639 MovieClip {unity_fla.buttons_241}
"gamesbtn"Frame 3Symbol 641 MovieClip
"logo_mc"Frame 3Symbol 646 Button
"sndon"Frame 3Symbol 654 Button
"sndoff"Frame 3Symbol 655 Button
"t1"Frame 4Symbol 660 EditableText
"nextbtn"Frame 4Symbol 661 MovieClip {unity_fla.shape279_260}
"ent"Frame 4Symbol 673 MovieClip {unity_fla.enteryourname_261}
"dolls"Frame 5Symbol 518 MovieClip {unity_fla.doll_177}
"t2"Frame 5Symbol 675 EditableText
"playagain"Frame 5Symbol 691 MovieClip {unity_fla.hy_262}
"play_more"Frame 5Symbol 703 MovieClip {unity_fla.B12_265}
"bg_btn"Frame 5Symbol 705 MovieClip
"bgss"Frame 5Symbol 705 MovieClip
"email"Frame 5Symbol 718 MovieClip {unity_fla.shape279_267}
"popup"Frame 5Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269}
"masker"Symbol 26 MovieClip {unity_fla.cbvdsfdsf_loader_7} Frame 1Symbol 14 MovieClip
"bags"Symbol 242 MovieClip {unity_fla.dollcopy2_23} Frame 1Symbol 103 MovieClip
"bottoms"Symbol 242 MovieClip {unity_fla.dollcopy2_23} Frame 1Symbol 185 MovieClip {unity_fla.bottoms_37}
"tops"Symbol 242 MovieClip {unity_fla.dollcopy2_23} Frame 1Symbol 220 MovieClip {unity_fla.tops_76}
"hair"Symbol 242 MovieClip {unity_fla.dollcopy2_23} Frame 1Symbol 235 MovieClip {unity_fla.hairs_99}
"shoes"Symbol 518 MovieClip {unity_fla.doll_177} Frame 1Symbol 419 MovieClip {unity_fla.shoes_178}
"bags"Symbol 518 MovieClip {unity_fla.doll_177} Frame 1Symbol 103 MovieClip
"dress"Symbol 518 MovieClip {unity_fla.doll_177} Frame 1Symbol 449 MovieClip {unity_fla.dress_182}
"bottoms"Symbol 518 MovieClip {unity_fla.doll_177} Frame 1Symbol 185 MovieClip {unity_fla.bottoms_37}
"tops"Symbol 518 MovieClip {unity_fla.doll_177} Frame 1Symbol 220 MovieClip {unity_fla.tops_76}
"glass"Symbol 518 MovieClip {unity_fla.doll_177} Frame 1Symbol 455 MovieClip {unity_fla.belt_196}
"chain"Symbol 518 MovieClip {unity_fla.doll_177} Frame 1Symbol 476 MovieClip {unity_fla.chain_199}
"hair"Symbol 518 MovieClip {unity_fla.doll_177} Frame 1Symbol 235 MovieClip {unity_fla.hairs_99}
"earring"Symbol 518 MovieClip {unity_fla.doll_177} Frame 1Symbol 517 MovieClip {unity_fla.ear_210}
"resetbtn"Symbol 542 MovieClip {unity_fla.nere_236} Frame 1Symbol 528 MovieClip {unity_fla.shape279_237}
"nextbtn1"Symbol 542 MovieClip {unity_fla.nere_236} Frame 1Symbol 541 MovieClip {unity_fla.shape279_239}
"hair_btn"Symbol 639 MovieClip {unity_fla.buttons_241} Frame 1Symbol 554 MovieClip {unity_fla.shape279_242}
"studs_btn"Symbol 639 MovieClip {unity_fla.buttons_241} Frame 1Symbol 566 MovieClip {unity_fla.shape279_243}
"chain_btn"Symbol 639 MovieClip {unity_fla.buttons_241} Frame 1Symbol 578 MovieClip {unity_fla.shape279_244}
"dress_btn"Symbol 639 MovieClip {unity_fla.buttons_241} Frame 1Symbol 589 MovieClip {unity_fla.shape279_245}
"tops_btn"Symbol 639 MovieClip {unity_fla.buttons_241} Frame 1Symbol 600 MovieClip {unity_fla.shape279_246}
"bottoms_btn"Symbol 639 MovieClip {unity_fla.buttons_241} Frame 1Symbol 612 MovieClip {unity_fla.shape279_247}
"shoes_btn"Symbol 639 MovieClip {unity_fla.buttons_241} Frame 1Symbol 624 MovieClip {unity_fla.shape279_248}
"bags_btn"Symbol 639 MovieClip {unity_fla.buttons_241} Frame 1Symbol 626 MovieClip
"glass_btn"Symbol 639 MovieClip {unity_fla.buttons_241} Frame 1Symbol 638 MovieClip {unity_fla.shape279_250}
"close"Symbol 737 MovieClip {unity_fla.hdhdfhf_emaiklY_270} Frame 1Symbol 731 Button
"friendMail"Symbol 737 MovieClip {unity_fla.hdhdfhf_emaiklY_270} Frame 1Symbol 734 EditableText
"friend1"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 737 MovieClip {unity_fla.hdhdfhf_emaiklY_270}
"submit"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 752 Button
"addition"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 756 Button
"close"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 731 Button
"friend2"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 737 MovieClip {unity_fla.hdhdfhf_emaiklY_270}
"friend3"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 737 MovieClip {unity_fla.hdhdfhf_emaiklY_270}
"friend4"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 737 MovieClip {unity_fla.hdhdfhf_emaiklY_270}
"nameDetail"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 761 EditableText
"mailDetail"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 762 EditableText
"messageDetail"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 763 EditableText
"friendName"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 764 EditableText
"friendMail"Symbol 766 MovieClip {unity_fla.jgjyiy9_emaiklY_269} Frame 1Symbol 765 EditableText

Special Tags

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




http://swfchan.com/26/126699/info.shtml
Created: 25/2 -2019 19:33:37 Last modified: 25/2 -2019 19:33:37 Server time: 03/05 -2024 12:36:04