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

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

StillS.swf

This is the info page for
Flash #243994

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


Text
<P ALIGN="CENTER"><FONT FACE="_sans" SIZE="8" COLOR="#000000"><B>particle system</B></FONT></P>

S

t

i

l

ActionScript [AS1/AS2]

Symbol 15 MovieClip Frame 1
function init() { particle001._visible = 0; particle002._visible = 0; particle003._visible = 0; particle004._visible = 0; particle005._visible = 0; particle006._visible = 0; this.killAllParticles(); this._activeParticles = new Array(); if (this.persistant.toLowerCase() == "true") { this.persistant = true; } if (this.active.toLowerCase() == "true") { this.active = true; } _nextLevel = baseLevel; } function getNextLevel() { return(_nextLevel++); } function refreshParticles() { if ((!this.persistant) && (this.numFrames < this.currFrame)) { this.active = false; } if (this.active) { if (this.persistant) { var i = this._activeParticles.length; while (i < this._maxParticles) { this._activeParticles.push(new Particle(this)); if (Math.floor(this._maxParticles / this.lifespanMax) < i) { return(undefined); } i++; } } else { var i = this._activeParticles.length; while (i < this._maxParticles) { this._activeParticles.push(new Particle(this)); if (Math.floor(this._maxParticles / this.numFrames) < i) { return(undefined); } i++; } } } } function killAllParticles() { var i = 0; while (i < this._activeParticles.length) { this.killParticle(i); i++; } } function markAllParticlesDead() { var i = 0; while (i < this._activeParticles.length) { this._activeParticles[i].isDead = true; i++; } } function killParticle(index) { if (((this.persistant && (this._maxParticles >= this._activeParticles.length)) && (!this._activeParticles[index].isDead)) && (this.active)) { this._activeParticles[index].initValues(); } else { this._activeParticles[index].graphic.removeMovieClip(); delete this._activeParticles[index]; this._activeParticles.splice(index, 1); } } function updateParticles() { this.currFrame++; var i = 0; while (i < this._activeParticles.length) { if (this._activeParticles[i].age >= this._activeParticles[i].lifespan) { this.killParticle(i); } else { this._activeParticles[i].live(); } i++; } this.refreshParticles(); } this._visible = 0; eval (particleSource)._visible = 0; Particle = function (mc) { this.mc = mc; var myNum = getNextLevel(); duplicateMovieClip (particleSource, "p" + myNum, myNum); this.graphic = eval (particleSource)._parent["p" + myNum]; this.mc.rotationMin = rotationMin; this.mc.rotationMax = rotationMax; this.initValues(); }; Particle.prototype.initValues = function () { this.graphic._y = ((Math.random() * this.mc.producerHeight) - (this.mc.producerHeight / 2)) + this.mc._y; this.graphic._x = ((Math.random() * this.mc.producerWidth) - (this.mc.producerWidth / 2)) + this.mc._x; this.rot = Math.floor((Math.random() * (this.mc.rotationMax - this.mc.rotationMin)) + Number(this.mc.rotationMin)); this.graphic._XScale = this.mc.xScaleStart; this.graphic._YScale = this.mc.yScaleStart; this.graphic._alpha = this.mc.alphaStart; this.graphic.gotoAndPlay(1); this.ax = Math.floor((Math.random() * (this.mc.accelerationXMax - this.mc.accelerationXMin)) + Number(this.mc.accelerationXMin)) / 100; this.ay = Math.floor((Math.random() * (this.mc.accelerationYMax - this.mc.accelerationYMin)) + Number(this.mc.accelerationYMin)) / 100; this.vx = (Math.random() * Number(this.mc.velocityXMax - this.mc.velocityXMin)) + Number(this.mc.velocityXMin); this.vy = (Math.random() * Number(this.mc.velocityYMax - this.mc.velocityYMin)) + Number(this.mc.velocityYMin); this.age = 0; this.lifespan = (Math.random() * Number(this.mc.lifespanMax - this.mc.lifespanMin)) + Number(this.mc.lifespanMin); this.isDead = false; this.XScaleStep = Number(this.mc.xScaleStart - this.mc.xScaleEnd) / this.lifespan; this.YScaleStep = Number(this.mc.yScaleStart - this.mc.yScaleEnd) / this.lifespan; this.alphaStep = Number(this.mc.alphaStart - this.mc.alphaEnd) / this.lifespan; }; Particle.prototype.move = function () { this.vx = this.vx + this.ax; this.vy = this.vy + this.ay; this.vy = this.vy + Number(-this.mc.dragY); this.graphic._x = this.graphic._x + this.vx; this.graphic._y = this.graphic._y - this.vy; this.graphic._XScale = this.graphic._XScale - this.XScaleStep; this.graphic._YScale = this.graphic._YScale - this.YScaleStep; this.graphic._alpha = this.graphic._alpha - this.alphaStep; this.graphic._rotation = this.graphic._rotation + this.rot; }; Particle.prototype.live = function () { this.move(); this.age++; }; init();
Instance of Symbol 14 MovieClip in Symbol 15 MovieClip Frame 1
onClipEvent (enterFrame) { _parent.updateParticles(); }
Instance of Symbol 15 MovieClip in Symbol 16 MovieClip Frame 1
onClipEvent (load) { _maxParticles = 15; producerHeight = 1; producerWidth = 1; lifespanMax = 35; lifespanMin = 30; velocityXMax = 2; velocityXMin = 0; velocityYMax = 5; velocityYMin = 1; accelerationXMin = 0; accelerationXMax = 0; accelerationYMin = 0; accelerationYMax = 0; xScaleStart = 100; xScaleEnd = 500; yScaleStart = 100; yScaleEnd = 500; alphaStart = 50; alphaEnd = 0; dragY = 0; persistant = 1; numFrames = 1000000000 /* 0x3B9ACA00 */; baseLevel = 1000; rotationMin = -10; rotationMax = 10; active = "true"; particleSource = "_parent.ababa"; lastPreset = "smoke2"; currentSection = "parameters"; }
Symbol 48 MovieClip Frame 1
function init() { particle001._visible = 0; particle002._visible = 0; particle003._visible = 0; particle004._visible = 0; particle005._visible = 0; particle006._visible = 0; this.killAllParticles(); this._activeParticles = new Array(); if (this.persistant.toLowerCase() == "true") { this.persistant = true; } if (this.active.toLowerCase() == "true") { this.active = true; } _nextLevel = baseLevel; } function getNextLevel() { return(_nextLevel++); } function refreshParticles() { if ((!this.persistant) && (this.numFrames < this.currFrame)) { this.active = false; } if (this.active) { if (this.persistant) { var i = this._activeParticles.length; while (i < this._maxParticles) { this._activeParticles.push(new Particle(this)); if (Math.floor(this._maxParticles / this.lifespanMax) < i) { return(undefined); } i++; } } else { var i = this._activeParticles.length; while (i < this._maxParticles) { this._activeParticles.push(new Particle(this)); if (Math.floor(this._maxParticles / this.numFrames) < i) { return(undefined); } i++; } } } } function killAllParticles() { var i = 0; while (i < this._activeParticles.length) { this.killParticle(i); i++; } } function markAllParticlesDead() { var i = 0; while (i < this._activeParticles.length) { this._activeParticles[i].isDead = true; i++; } } function killParticle(index) { if (((this.persistant && (this._maxParticles >= this._activeParticles.length)) && (!this._activeParticles[index].isDead)) && (this.active)) { this._activeParticles[index].initValues(); } else { this._activeParticles[index].graphic.removeMovieClip(); delete this._activeParticles[index]; this._activeParticles.splice(index, 1); } } function updateParticles() { this.currFrame++; var i = 0; while (i < this._activeParticles.length) { if (this._activeParticles[i].age >= this._activeParticles[i].lifespan) { this.killParticle(i); } else { this._activeParticles[i].live(); } i++; } this.refreshParticles(); } this._visible = 0; eval (particleSource)._visible = 0; Particle = function (mc) { this.mc = mc; var myNum = getNextLevel(); duplicateMovieClip (particleSource, "p" + myNum, myNum); this.graphic = eval (particleSource)._parent["p" + myNum]; this.mc.rotationMin = rotationMin; this.mc.rotationMax = rotationMax; this.initValues(); }; Particle.prototype.initValues = function () { this.graphic._y = ((Math.random() * this.mc.producerHeight) - (this.mc.producerHeight / 2)) + this.mc._y; this.graphic._x = ((Math.random() * this.mc.producerWidth) - (this.mc.producerWidth / 2)) + this.mc._x; this.rot = Math.floor((Math.random() * (this.mc.rotationMax - this.mc.rotationMin)) + Number(this.mc.rotationMin)); this.graphic._XScale = this.mc.xScaleStart; this.graphic._YScale = this.mc.yScaleStart; this.graphic._alpha = this.mc.alphaStart; this.graphic.gotoAndPlay(1); this.ax = Math.floor((Math.random() * (this.mc.accelerationXMax - this.mc.accelerationXMin)) + Number(this.mc.accelerationXMin)) / 100; this.ay = Math.floor((Math.random() * (this.mc.accelerationYMax - this.mc.accelerationYMin)) + Number(this.mc.accelerationYMin)) / 100; this.vx = (Math.random() * Number(this.mc.velocityXMax - this.mc.velocityXMin)) + Number(this.mc.velocityXMin); this.vy = (Math.random() * Number(this.mc.velocityYMax - this.mc.velocityYMin)) + Number(this.mc.velocityYMin); this.age = 0; this.lifespan = (Math.random() * Number(this.mc.lifespanMax - this.mc.lifespanMin)) + Number(this.mc.lifespanMin); this.isDead = false; this.XScaleStep = Number(this.mc.xScaleStart - this.mc.xScaleEnd) / this.lifespan; this.YScaleStep = Number(this.mc.yScaleStart - this.mc.yScaleEnd) / this.lifespan; this.alphaStep = Number(this.mc.alphaStart - this.mc.alphaEnd) / this.lifespan; }; Particle.prototype.move = function () { this.vx = this.vx + this.ax; this.vy = this.vy + this.ay; this.vy = this.vy + Number(-this.mc.dragY); this.graphic._x = this.graphic._x + this.vx; this.graphic._y = this.graphic._y - this.vy; this.graphic._XScale = this.graphic._XScale - this.XScaleStep; this.graphic._YScale = this.graphic._YScale - this.YScaleStep; this.graphic._alpha = this.graphic._alpha - this.alphaStep; this.graphic._rotation = this.graphic._rotation + this.rot; }; Particle.prototype.live = function () { this.move(); this.age++; }; init();
Instance of Symbol 14 MovieClip in Symbol 48 MovieClip Frame 1
onClipEvent (enterFrame) { _parent.updateParticles(); }
Instance of Symbol 48 MovieClip in Symbol 49 MovieClip Frame 1
onClipEvent (load) { _maxParticles = 15; producerHeight = 10; producerWidth = 10; lifespanMax = 20; lifespanMin = 1; velocityXMax = 1; velocityXMin = -1; velocityYMax = 10; velocityYMin = 1; accelerationXMin = 0; accelerationXMax = 0; accelerationYMin = -3; accelerationYMax = 1; xScaleStart = 300; xScaleEnd = 100; yScaleStart = 300; yScaleEnd = 1; alphaStart = 100; alphaEnd = 20; dragY = 0; persistant = 0; numFrames = 100; baseLevel = 1000; rotationMin = -10; rotationMax = 10; active = "true"; particleSource = "_parent.squig"; lastPreset = "fire1"; currentSection = "parameters"; }

Library Items

Symbol 1 GraphicUsed by:2 52 204
Symbol 2 MovieClipUses:1Used by:Timeline
Symbol 3 GraphicUsed by:4
Symbol 4 MovieClipUses:3Used by:7  Timeline
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:7
Symbol 7 MovieClipUses:4 6Used by:Timeline
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:16
Symbol 10 GraphicUsed by:15 48
Symbol 11 GraphicUsed by:15 48
Symbol 12 FontUsed by:13
Symbol 13 EditableTextUses:12Used by:15 48
Symbol 14 MovieClipUsed by:15 48
Symbol 15 MovieClipUses:10 11 13 14Used by:16
Symbol 16 MovieClipUses:9 15Used by:Timeline
Symbol 17 GraphicUsed by:18 19 20
Symbol 18 MovieClipUses:17Used by:21 57
Symbol 19 MovieClipUses:17Used by:21 57
Symbol 20 MovieClipUses:17Used by:21 57
Symbol 21 MovieClipUses:18 19 20Used by:Timeline
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:22Used by:Timeline
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:24Used by:Timeline
Symbol 26 BitmapUsed by:27
Symbol 27 GraphicUses:26Used by:28
Symbol 28 MovieClipUses:27Used by:Timeline
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:31
Symbol 31 MovieClipUses:30Used by:Timeline
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:Timeline
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:Timeline
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClipUses:36Used by:Timeline
Symbol 38 GraphicUsed by:41
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:41
Symbol 41 MovieClipUses:38 40Used by:Timeline
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:Timeline
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:Timeline
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:49
Symbol 48 MovieClipUses:10 11 13 14Used by:49
Symbol 49 MovieClipUses:47 48Used by:Timeline
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:50Used by:Timeline
Symbol 52 MovieClipUses:1Used by:Timeline
Symbol 53 GraphicUsed by:58 62 70
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:56
Symbol 56 MovieClipUses:55Used by:58 62  Timeline
Symbol 57 MovieClipUses:18 19 20Used by:58 62 95 242
Symbol 58 MovieClipUses:53 56 57Used by:Timeline
Symbol 59 FontUsed by:60 63 65 67
Symbol 60 TextUses:59Used by:61
Symbol 61 MovieClipUses:60Used by:69  Timeline
Symbol 62 MovieClipUses:53 56 57Used by:Timeline
Symbol 63 TextUses:59Used by:64
Symbol 64 MovieClipUses:63Used by:69  Timeline
Symbol 65 TextUses:59Used by:66
Symbol 66 MovieClipUses:65Used by:69  Timeline
Symbol 67 TextUses:59Used by:68
Symbol 68 MovieClipUses:67Used by:69  Timeline
Symbol 69 MovieClipUses:61 64 66 68Used by:Timeline
Symbol 70 MovieClipUses:53Used by:Timeline
Symbol 71 ShapeTweeningUsed by:Timeline
Symbol 72 BitmapUsed by:73
Symbol 73 GraphicUses:72Used by:74
Symbol 74 MovieClipUses:73Used by:81
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:77
Symbol 77 MovieClipUses:76Used by:81
Symbol 78 BitmapUsed by:79
Symbol 79 GraphicUses:78Used by:80
Symbol 80 MovieClipUses:79Used by:81
Symbol 81 MovieClipUses:74 77 80Used by:957  Timeline
Symbol 82 GraphicUsed by:Timeline
Symbol 83 MovieClipUsed by:Timeline
Symbol 84 GraphicUsed by:Timeline
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:85Used by:91 92
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClipUses:87Used by:91 92
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:91 92
Symbol 91 MovieClipUses:86 88 90Used by:99  Timeline
Symbol 92 MovieClipUses:86 88 90Used by:Timeline
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:93Used by:95
Symbol 95 MovieClipUses:94 57Used by:Timeline
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:98
Symbol 98 MovieClipUses:97Used by:99  Timeline
Symbol 99 MovieClipUses:91 98Used by:100  Timeline
Symbol 100 MovieClipUses:99Used by:Timeline
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:107
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:107
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:107
Symbol 107 MovieClipUses:102 104 106Used by:Timeline
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:135
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:135
Symbol 112 GraphicUsed by:114
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:112 113Used by:135
Symbol 115 GraphicUsed by:116
Symbol 116 MovieClipUses:115Used by:135
Symbol 117 GraphicUsed by:119
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:117 118Used by:135
Symbol 120 GraphicUsed by:126
Symbol 121 GraphicUsed by:126
Symbol 122 GraphicUsed by:126
Symbol 123 GraphicUsed by:126
Symbol 124 GraphicUsed by:126 134
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:120 121 122 123 124 125Used by:135
Symbol 127 GraphicUsed by:134
Symbol 128 GraphicUsed by:134
Symbol 129 GraphicUsed by:134
Symbol 130 GraphicUsed by:134
Symbol 131 GraphicUsed by:134
Symbol 132 GraphicUsed by:134
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:127 124 128 129 130 131 132 133Used by:135
Symbol 135 MovieClipUses:109 111 114 116 119 126 134Used by:Timeline
Symbol 136 GraphicUsed by:178 182
Symbol 137 GraphicUsed by:182
Symbol 138 GraphicUsed by:182
Symbol 139 GraphicUsed by:182
Symbol 140 GraphicUsed by:182
Symbol 141 GraphicUsed by:182
Symbol 142 GraphicUsed by:182
Symbol 143 GraphicUsed by:182
Symbol 144 GraphicUsed by:182
Symbol 145 GraphicUsed by:182
Symbol 146 GraphicUsed by:182
Symbol 147 GraphicUsed by:182
Symbol 148 GraphicUsed by:182
Symbol 149 GraphicUsed by:182
Symbol 150 GraphicUsed by:182
Symbol 151 GraphicUsed by:182
Symbol 152 GraphicUsed by:182
Symbol 153 GraphicUsed by:182
Symbol 154 GraphicUsed by:182
Symbol 155 GraphicUsed by:182
Symbol 156 GraphicUsed by:182
Symbol 157 GraphicUsed by:182
Symbol 158 GraphicUsed by:182
Symbol 159 GraphicUsed by:182
Symbol 160 GraphicUsed by:182
Symbol 161 GraphicUsed by:182
Symbol 162 GraphicUsed by:182
Symbol 163 GraphicUsed by:182
Symbol 164 GraphicUsed by:178 182
Symbol 165 GraphicUsed by:182
Symbol 166 GraphicUsed by:182
Symbol 167 GraphicUsed by:182
Symbol 168 GraphicUsed by:182
Symbol 169 GraphicUsed by:182
Symbol 170 GraphicUsed by:182
Symbol 171 GraphicUsed by:178
Symbol 172 GraphicUsed by:178
Symbol 173 GraphicUsed by:178
Symbol 174 GraphicUsed by:178
Symbol 175 GraphicUsed by:178
Symbol 176 GraphicUsed by:178
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClipUses:136 171 172 164 173 174 175 176 177Used by:179 181
Symbol 179 MovieClipUses:178Used by:180 182  Timeline
Symbol 180 MovieClipUses:179Used by:182  Timeline
Symbol 181 MovieClipUses:178Used by:182  Timeline
Symbol 182 MovieClipUses:136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 180 179 181Used by:Timeline
Symbol 183 GraphicUsed by:194
Symbol 184 GraphicUsed by:194
Symbol 185 GraphicUsed by:194
Symbol 186 GraphicUsed by:194
Symbol 187 GraphicUsed by:194
Symbol 188 GraphicUsed by:194
Symbol 189 GraphicUsed by:194
Symbol 190 GraphicUsed by:194
Symbol 191 GraphicUsed by:194
Symbol 192 GraphicUsed by:194
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:183 184 185 186 187 188 189 190 191 192 193Used by:Timeline
Symbol 195 BitmapUsed by:196
Symbol 196 GraphicUses:195Used by:203
Symbol 197 BitmapUsed by:198
Symbol 198 GraphicUses:197Used by:203
Symbol 199 BitmapUsed by:200
Symbol 200 GraphicUses:199Used by:203
Symbol 201 BitmapUsed by:202
Symbol 202 GraphicUses:201Used by:203
Symbol 203 MovieClipUses:196 198 200 202Used by:Timeline
Symbol 204 MovieClipUses:1Used by:Timeline
Symbol 205 BitmapUsed by:206
Symbol 206 GraphicUses:205Used by:213
Symbol 207 BitmapUsed by:208
Symbol 208 GraphicUses:207Used by:213
Symbol 209 BitmapUsed by:210
Symbol 210 GraphicUses:209Used by:213
Symbol 211 BitmapUsed by:212
Symbol 212 GraphicUses:211Used by:213
Symbol 213 MovieClipUses:206 208 210 212Used by:Timeline
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClipUses:214Used by:Timeline
Symbol 216 GraphicUsed by:224
Symbol 217 GraphicUsed by:224
Symbol 218 GraphicUsed by:224
Symbol 219 GraphicUsed by:224
Symbol 220 GraphicUsed by:224
Symbol 221 GraphicUsed by:224
Symbol 222 GraphicUsed by:224
Symbol 223 GraphicUsed by:224
Symbol 224 MovieClipUses:216 217 218 219 220 221 222 223Used by:Timeline
Symbol 225 BitmapUsed by:226
Symbol 226 GraphicUses:225Used by:242
Symbol 227 GraphicUsed by:242
Symbol 228 BitmapUsed by:229
Symbol 229 GraphicUses:228Used by:242
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:242
Symbol 232 BitmapUsed by:233
Symbol 233 GraphicUses:232Used by:242
Symbol 234 BitmapUsed by:235
Symbol 235 GraphicUses:234Used by:242
Symbol 236 BitmapUsed by:237
Symbol 237 GraphicUses:236Used by:242
Symbol 238 BitmapUsed by:239
Symbol 239 GraphicUses:238Used by:242
Symbol 240 BitmapUsed by:241
Symbol 241 GraphicUses:240Used by:242
Symbol 242 MovieClipUses:226 227 57 229 231 233 235 237 239 241Used by:Timeline
Symbol 243 BitmapUsed by:244
Symbol 244 GraphicUses:243Used by:374
Symbol 245 GraphicUsed by:374
Symbol 246 BitmapUsed by:247
Symbol 247 GraphicUses:246Used by:374
Symbol 248 BitmapUsed by:249
Symbol 249 GraphicUses:248Used by:374
Symbol 250 GraphicUsed by:374
Symbol 251 BitmapUsed by:252
Symbol 252 GraphicUses:251Used by:374
Symbol 253 GraphicUsed by:374
Symbol 254 BitmapUsed by:255
Symbol 255 GraphicUses:254Used by:374
Symbol 256 GraphicUsed by:374
Symbol 257 BitmapUsed by:258
Symbol 258 GraphicUses:257Used by:374
Symbol 259 GraphicUsed by:374
Symbol 260 BitmapUsed by:261
Symbol 261 GraphicUses:260Used by:374
Symbol 262 GraphicUsed by:374
Symbol 263 BitmapUsed by:264
Symbol 264 GraphicUses:263Used by:374
Symbol 265 GraphicUsed by:374
Symbol 266 BitmapUsed by:267
Symbol 267 GraphicUses:266Used by:374
Symbol 268 GraphicUsed by:374
Symbol 269 BitmapUsed by:270
Symbol 270 GraphicUses:269Used by:374
Symbol 271 GraphicUsed by:374
Symbol 272 BitmapUsed by:273
Symbol 273 GraphicUses:272Used by:374
Symbol 274 GraphicUsed by:374
Symbol 275 BitmapUsed by:276
Symbol 276 GraphicUses:275Used by:374
Symbol 277 GraphicUsed by:374
Symbol 278 BitmapUsed by:279
Symbol 279 GraphicUses:278Used by:374
Symbol 280 GraphicUsed by:374
Symbol 281 BitmapUsed by:282
Symbol 282 GraphicUses:281Used by:374
Symbol 283 GraphicUsed by:374
Symbol 284 BitmapUsed by:285
Symbol 285 GraphicUses:284Used by:374
Symbol 286 GraphicUsed by:374
Symbol 287 BitmapUsed by:288
Symbol 288 GraphicUses:287Used by:374
Symbol 289 GraphicUsed by:374
Symbol 290 BitmapUsed by:291
Symbol 291 GraphicUses:290Used by:374
Symbol 292 GraphicUsed by:374
Symbol 293 BitmapUsed by:294
Symbol 294 GraphicUses:293Used by:374
Symbol 295 GraphicUsed by:374
Symbol 296 BitmapUsed by:297
Symbol 297 GraphicUses:296Used by:374
Symbol 298 GraphicUsed by:374
Symbol 299 BitmapUsed by:300
Symbol 300 GraphicUses:299Used by:374
Symbol 301 GraphicUsed by:374
Symbol 302 BitmapUsed by:303
Symbol 303 GraphicUses:302Used by:374
Symbol 304 GraphicUsed by:374
Symbol 305 BitmapUsed by:306
Symbol 306 GraphicUses:305Used by:374
Symbol 307 GraphicUsed by:374
Symbol 308 BitmapUsed by:309
Symbol 309 GraphicUses:308Used by:374
Symbol 310 GraphicUsed by:374
Symbol 311 BitmapUsed by:312
Symbol 312 GraphicUses:311Used by:374
Symbol 313 GraphicUsed by:374
Symbol 314 BitmapUsed by:315
Symbol 315 GraphicUses:314Used by:374
Symbol 316 GraphicUsed by:374
Symbol 317 BitmapUsed by:318
Symbol 318 GraphicUses:317Used by:374
Symbol 319 GraphicUsed by:374
Symbol 320 BitmapUsed by:321
Symbol 321 GraphicUses:320Used by:374
Symbol 322 GraphicUsed by:374
Symbol 323 BitmapUsed by:324
Symbol 324 GraphicUses:323Used by:374
Symbol 325 GraphicUsed by:374
Symbol 326 BitmapUsed by:327
Symbol 327 GraphicUses:326Used by:374
Symbol 328 GraphicUsed by:374
Symbol 329 BitmapUsed by:330
Symbol 330 GraphicUses:329Used by:374
Symbol 331 GraphicUsed by:374
Symbol 332 BitmapUsed by:333
Symbol 333 GraphicUses:332Used by:374
Symbol 334 GraphicUsed by:374
Symbol 335 BitmapUsed by:336
Symbol 336 GraphicUses:335Used by:374
Symbol 337 GraphicUsed by:374
Symbol 338 BitmapUsed by:339
Symbol 339 GraphicUses:338Used by:374
Symbol 340 GraphicUsed by:374
Symbol 341 BitmapUsed by:342
Symbol 342 GraphicUses:341Used by:374
Symbol 343 GraphicUsed by:374
Symbol 344 BitmapUsed by:345
Symbol 345 GraphicUses:344Used by:374
Symbol 346 GraphicUsed by:374
Symbol 347 BitmapUsed by:348
Symbol 348 GraphicUses:347Used by:374
Symbol 349 GraphicUsed by:374
Symbol 350 BitmapUsed by:351
Symbol 351 GraphicUses:350Used by:374
Symbol 352 GraphicUsed by:374
Symbol 353 BitmapUsed by:354
Symbol 354 GraphicUses:353Used by:374
Symbol 355 GraphicUsed by:374
Symbol 356 BitmapUsed by:357
Symbol 357 GraphicUses:356Used by:374
Symbol 358 GraphicUsed by:374
Symbol 359 BitmapUsed by:360
Symbol 360 GraphicUses:359Used by:374
Symbol 361 GraphicUsed by:374
Symbol 362 BitmapUsed by:363
Symbol 363 GraphicUses:362Used by:374
Symbol 364 GraphicUsed by:374
Symbol 365 BitmapUsed by:366
Symbol 366 GraphicUses:365Used by:374
Symbol 367 GraphicUsed by:374
Symbol 368 BitmapUsed by:369
Symbol 369 GraphicUses:368Used by:374
Symbol 370 GraphicUsed by:374
Symbol 371 BitmapUsed by:372
Symbol 372 GraphicUses:371Used by:374
Symbol 373 GraphicUsed by:374
Symbol 374 MovieClipUses:244 245 247 249 250 252 253 255 256 258 259 261 262 264 265 267 268 270 271 273 274 276 277 279 280 282 283 285 286 288 289 291 292 294 295 297 298 300 301 303 304 306 307 309 310 312 313 315 316 318 319 321 322 324 325 327 328 330 331 333 334 336 337 339 340 342 343 345 346 348 349 351 352 354 355 357 358 360 361 363 364 366 367 369 370 372 373Used by:Timeline
Symbol 375 BitmapUsed by:376
Symbol 376 GraphicUses:375Used by:399
Symbol 377 BitmapUsed by:378
Symbol 378 GraphicUses:377Used by:399
Symbol 379 BitmapUsed by:380
Symbol 380 GraphicUses:379Used by:399
Symbol 381 BitmapUsed by:382
Symbol 382 GraphicUses:381Used by:399
Symbol 383 BitmapUsed by:384
Symbol 384 GraphicUses:383Used by:399
Symbol 385 BitmapUsed by:386
Symbol 386 GraphicUses:385Used by:399
Symbol 387 BitmapUsed by:388
Symbol 388 GraphicUses:387Used by:399
Symbol 389 BitmapUsed by:390
Symbol 390 GraphicUses:389Used by:399
Symbol 391 BitmapUsed by:392
Symbol 392 GraphicUses:391Used by:399
Symbol 393 BitmapUsed by:394
Symbol 394 GraphicUses:393Used by:399
Symbol 395 BitmapUsed by:396
Symbol 396 GraphicUses:395Used by:399
Symbol 397 BitmapUsed by:398
Symbol 398 GraphicUses:397Used by:399
Symbol 399 MovieClipUses:376 378 380 382 384 386 388 390 392 394 396 398Used by:Timeline
Symbol 400 GraphicUsed by:Timeline
Symbol 401 GraphicUsed by:Timeline
Symbol 402 BitmapUsed by:403
Symbol 403 GraphicUses:402Used by:422
Symbol 404 BitmapUsed by:405
Symbol 405 GraphicUses:404Used by:422
Symbol 406 BitmapUsed by:407
Symbol 407 GraphicUses:406Used by:422
Symbol 408 BitmapUsed by:409
Symbol 409 GraphicUses:408Used by:422
Symbol 410 BitmapUsed by:411
Symbol 411 GraphicUses:410Used by:422
Symbol 412 BitmapUsed by:413
Symbol 413 GraphicUses:412Used by:422
Symbol 414 BitmapUsed by:415
Symbol 415 GraphicUses:414Used by:422
Symbol 416 BitmapUsed by:417
Symbol 417 GraphicUses:416Used by:422
Symbol 418 BitmapUsed by:419
Symbol 419 GraphicUses:418Used by:422
Symbol 420 BitmapUsed by:421
Symbol 421 GraphicUses:420Used by:422
Symbol 422 MovieClipUses:403 405 407 409 411 413 415 417 419 421Used by:Timeline
Symbol 423 GraphicUsed by:440
Symbol 424 BitmapUsed by:425
Symbol 425 GraphicUses:424Used by:440
Symbol 426 BitmapUsed by:427
Symbol 427 GraphicUses:426Used by:440
Symbol 428 BitmapUsed by:429
Symbol 429 GraphicUses:428Used by:440
Symbol 430 BitmapUsed by:431
Symbol 431 GraphicUses:430Used by:440
Symbol 432 BitmapUsed by:433
Symbol 433 GraphicUses:432Used by:440
Symbol 434 BitmapUsed by:435
Symbol 435 GraphicUses:434Used by:440
Symbol 436 BitmapUsed by:437
Symbol 437 GraphicUses:436Used by:440
Symbol 438 BitmapUsed by:439
Symbol 439 GraphicUses:438Used by:440
Symbol 440 MovieClipUses:423 425 427 429 431 433 435 437 439Used by:449  Timeline
Symbol 441 GraphicUsed by:442 449 458 463 561
Symbol 442 MovieClipUses:441Used by:Timeline
Symbol 443 GraphicUsed by:444
Symbol 444 MovieClipUses:443Used by:449 463
Symbol 445 GraphicUsed by:446 447
Symbol 446 MovieClipUses:445Used by:448
Symbol 447 MovieClipUses:445Used by:448
Symbol 448 MovieClipUses:446 447Used by:449
Symbol 449 MovieClipUses:440 444 441 448Used by:Timeline
Symbol 450 BitmapUsed by:451
Symbol 451 GraphicUses:450Used by:458
Symbol 452 BitmapUsed by:453
Symbol 453 GraphicUses:452Used by:458
Symbol 454 BitmapUsed by:455
Symbol 455 GraphicUses:454Used by:458
Symbol 456 BitmapUsed by:457
Symbol 457 GraphicUses:456Used by:458
Symbol 458 MovieClipUses:441 451 453 455 457Used by:463  Timeline
Symbol 459 GraphicUsed by:460 461
Symbol 460 MovieClipUses:459Used by:462
Symbol 461 MovieClipUses:459Used by:462
Symbol 462 MovieClipUses:460 461Used by:463
Symbol 463 MovieClipUses:458 444 441 462Used by:Timeline
Symbol 464 ShapeTweeningUsed by:497
Symbol 465 GraphicUsed by:497
Symbol 466 ShapeTweeningUsed by:497
Symbol 467 ShapeTweeningUsed by:497
Symbol 468 ShapeTweeningUsed by:497
Symbol 469 ShapeTweeningUsed by:497
Symbol 470 ShapeTweeningUsed by:497
Symbol 471 ShapeTweeningUsed by:497
Symbol 472 ShapeTweeningUsed by:497
Symbol 473 ShapeTweeningUsed by:497
Symbol 474 ShapeTweeningUsed by:497
Symbol 475 ShapeTweeningUsed by:497
Symbol 476 ShapeTweeningUsed by:497
Symbol 477 ShapeTweeningUsed by:497
Symbol 478 ShapeTweeningUsed by:497
Symbol 479 ShapeTweeningUsed by:497
Symbol 480 ShapeTweeningUsed by:497
Symbol 481 ShapeTweeningUsed by:497
Symbol 482 ShapeTweeningUsed by:497
Symbol 483 ShapeTweeningUsed by:497
Symbol 484 ShapeTweeningUsed by:497
Symbol 485 ShapeTweeningUsed by:497
Symbol 486 ShapeTweeningUsed by:497
Symbol 487 ShapeTweeningUsed by:497
Symbol 488 ShapeTweeningUsed by:497
Symbol 489 ShapeTweeningUsed by:497
Symbol 490 ShapeTweeningUsed by:497
Symbol 491 ShapeTweeningUsed by:497
Symbol 492 ShapeTweeningUsed by:497
Symbol 493 ShapeTweeningUsed by:497
Symbol 494 ShapeTweeningUsed by:497
Symbol 495 GraphicUsed by:497
Symbol 496 GraphicUsed by:497
Symbol 497 MovieClipUses:464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496Used by:Timeline
Symbol 498 GraphicUsed by:542 543
Symbol 499 GraphicUsed by:542 543
Symbol 500 GraphicUsed by:542 543
Symbol 501 GraphicUsed by:542 543
Symbol 502 GraphicUsed by:542 543
Symbol 503 GraphicUsed by:542 543
Symbol 504 GraphicUsed by:542 543
Symbol 505 GraphicUsed by:542 543
Symbol 506 GraphicUsed by:542 543
Symbol 507 GraphicUsed by:542 543
Symbol 508 GraphicUsed by:542 543
Symbol 509 GraphicUsed by:542 543
Symbol 510 GraphicUsed by:542 543
Symbol 511 GraphicUsed by:542 543
Symbol 512 GraphicUsed by:542 543
Symbol 513 GraphicUsed by:542 543
Symbol 514 GraphicUsed by:542 543
Symbol 515 GraphicUsed by:542 543
Symbol 516 GraphicUsed by:542 543
Symbol 517 GraphicUsed by:542 543
Symbol 518 GraphicUsed by:542 543
Symbol 519 GraphicUsed by:542 543
Symbol 520 GraphicUsed by:542 543
Symbol 521 GraphicUsed by:542 543
Symbol 522 GraphicUsed by:542 543
Symbol 523 GraphicUsed by:542 543
Symbol 524 GraphicUsed by:542 543
Symbol 525 GraphicUsed by:542 543
Symbol 526 GraphicUsed by:542 543
Symbol 527 GraphicUsed by:542 543
Symbol 528 GraphicUsed by:542 543
Symbol 529 GraphicUsed by:542 543
Symbol 530 GraphicUsed by:542 543
Symbol 531 GraphicUsed by:542 543
Symbol 532 GraphicUsed by:542 543
Symbol 533 GraphicUsed by:542 543
Symbol 534 GraphicUsed by:542 543
Symbol 535 GraphicUsed by:542 543
Symbol 536 GraphicUsed by:542 543
Symbol 537 GraphicUsed by:542 543
Symbol 538 GraphicUsed by:542 543
Symbol 539 GraphicUsed by:542 543
Symbol 540 GraphicUsed by:542 543
Symbol 541 GraphicUsed by:542 543
Symbol 542 MovieClipUses:498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541Used by:Timeline
Symbol 543 MovieClipUses:498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541Used by:Timeline
Symbol 544 ShapeTweeningUsed by:548
Symbol 545 ShapeTweeningUsed by:548
Symbol 546 ShapeTweeningUsed by:548
Symbol 547 GraphicUsed by:548
Symbol 548 MovieClipUses:544 545 546 547Used by:Timeline
Symbol 549 BitmapUsed by:550
Symbol 550 GraphicUses:549Used by:561
Symbol 551 BitmapUsed by:552
Symbol 552 GraphicUses:551Used by:561
Symbol 553 BitmapUsed by:554
Symbol 554 GraphicUses:553Used by:561
Symbol 555 BitmapUsed by:556
Symbol 556 GraphicUses:555Used by:561
Symbol 557 BitmapUsed by:558
Symbol 558 GraphicUses:557Used by:561
Symbol 559 BitmapUsed by:560
Symbol 560 GraphicUses:559Used by:561
Symbol 561 MovieClipUses:441 550 552 554 556 558 560Used by:Timeline
Symbol 562 GraphicUsed by:573
Symbol 563 BitmapUsed by:564
Symbol 564 GraphicUses:563Used by:573 575
Symbol 565 BitmapUsed by:566
Symbol 566 GraphicUses:565Used by:573
Symbol 567 BitmapUsed by:568
Symbol 568 GraphicUses:567Used by:573
Symbol 569 BitmapUsed by:570
Symbol 570 GraphicUses:569Used by:573
Symbol 571 BitmapUsed by:572
Symbol 572 GraphicUses:571Used by:573
Symbol 573 MovieClipUses:562 564 566 568 570 572Used by:Timeline
Symbol 574 GraphicUsed by:575 711 942
Symbol 575 MovieClipUses:574 564Used by:Timeline
Symbol 576 GraphicUsed by:580
Symbol 577 GraphicUsed by:580
Symbol 578 GraphicUsed by:580
Symbol 579 GraphicUsed by:580
Symbol 580 MovieClipUses:576 577 578 579Used by:Timeline
Symbol 581 GraphicUsed by:612
Symbol 582 GraphicUsed by:612
Symbol 583 GraphicUsed by:612
Symbol 584 GraphicUsed by:612
Symbol 585 GraphicUsed by:612
Symbol 586 GraphicUsed by:612
Symbol 587 GraphicUsed by:612
Symbol 588 GraphicUsed by:612
Symbol 589 GraphicUsed by:612
Symbol 590 GraphicUsed by:612
Symbol 591 GraphicUsed by:612
Symbol 592 GraphicUsed by:612
Symbol 593 GraphicUsed by:612
Symbol 594 GraphicUsed by:612
Symbol 595 GraphicUsed by:612
Symbol 596 GraphicUsed by:612
Symbol 597 GraphicUsed by:612
Symbol 598 GraphicUsed by:612
Symbol 599 GraphicUsed by:612
Symbol 600 GraphicUsed by:612
Symbol 601 GraphicUsed 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 GraphicUsed by:612
Symbol 608 GraphicUsed by:612
Symbol 609 GraphicUsed by:612
Symbol 610 GraphicUsed by:612
Symbol 611 GraphicUsed by:612
Symbol 612 MovieClipUses:581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611Used by:Timeline
Symbol 613 BitmapUsed by:614
Symbol 614 GraphicUses:613Used by:615
Symbol 615 MovieClipUses:614Used by:Timeline
Symbol 616 GraphicUsed by:660 945
Symbol 617 GraphicUsed by:660 945
Symbol 618 GraphicUsed by:660 945
Symbol 619 GraphicUsed by:660 945
Symbol 620 GraphicUsed by:660 945
Symbol 621 GraphicUsed by:660 945
Symbol 622 GraphicUsed by:660 945
Symbol 623 GraphicUsed by:660 945
Symbol 624 GraphicUsed by:660 945
Symbol 625 GraphicUsed by:660 945
Symbol 626 GraphicUsed by:660 945
Symbol 627 GraphicUsed by:660 945
Symbol 628 GraphicUsed by:660 945
Symbol 629 GraphicUsed by:660 945
Symbol 630 GraphicUsed by:660 945
Symbol 631 GraphicUsed by:660 945
Symbol 632 GraphicUsed by:660 945
Symbol 633 GraphicUsed by:660 945
Symbol 634 GraphicUsed by:660 945
Symbol 635 GraphicUsed by:660 945
Symbol 636 GraphicUsed by:660 945
Symbol 637 GraphicUsed by:660 945
Symbol 638 GraphicUsed by:660 945
Symbol 639 GraphicUsed by:660 945
Symbol 640 GraphicUsed by:660 945
Symbol 641 GraphicUsed by:660 945
Symbol 642 GraphicUsed by:660 945
Symbol 643 GraphicUsed by:660 945
Symbol 644 GraphicUsed by:660 945
Symbol 645 GraphicUsed by:660 945
Symbol 646 GraphicUsed by:660 945
Symbol 647 GraphicUsed by:660 945
Symbol 648 GraphicUsed by:660 945
Symbol 649 GraphicUsed by:660 945
Symbol 650 GraphicUsed by:660 945
Symbol 651 GraphicUsed by:660 945
Symbol 652 GraphicUsed by:660 945
Symbol 653 GraphicUsed by:660 945
Symbol 654 GraphicUsed by:660 945
Symbol 655 GraphicUsed by:660 945
Symbol 656 GraphicUsed by:660 945
Symbol 657 GraphicUsed by:660 945
Symbol 658 GraphicUsed by:660 945
Symbol 659 GraphicUsed by:660 945
Symbol 660 MovieClipUses:616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659Used by:Timeline
Symbol 661 GraphicUsed by:705 946
Symbol 662 GraphicUsed by:705 946
Symbol 663 GraphicUsed by:705 946
Symbol 664 GraphicUsed by:705 946
Symbol 665 GraphicUsed by:705 946
Symbol 666 GraphicUsed by:705 946
Symbol 667 GraphicUsed by:705 946
Symbol 668 GraphicUsed by:705 946
Symbol 669 GraphicUsed by:705 946
Symbol 670 GraphicUsed by:705 946
Symbol 671 GraphicUsed by:705 946
Symbol 672 GraphicUsed by:705 946
Symbol 673 GraphicUsed by:705 946
Symbol 674 GraphicUsed by:705 946
Symbol 675 GraphicUsed by:705 946
Symbol 676 GraphicUsed by:705 946
Symbol 677 GraphicUsed by:705 946
Symbol 678 GraphicUsed by:705 946
Symbol 679 GraphicUsed by:705 946
Symbol 680 GraphicUsed by:705 946
Symbol 681 GraphicUsed by:705 946
Symbol 682 GraphicUsed by:705 946
Symbol 683 GraphicUsed by:705 946
Symbol 684 GraphicUsed by:705 946
Symbol 685 GraphicUsed by:705 946
Symbol 686 GraphicUsed by:705 946
Symbol 687 GraphicUsed by:705 946
Symbol 688 GraphicUsed by:705 946
Symbol 689 GraphicUsed by:705 946
Symbol 690 GraphicUsed by:705 946
Symbol 691 GraphicUsed by:705 946
Symbol 692 GraphicUsed by:705 946
Symbol 693 GraphicUsed by:705 946
Symbol 694 GraphicUsed by:705 946
Symbol 695 GraphicUsed by:705 946
Symbol 696 GraphicUsed by:705 946
Symbol 697 GraphicUsed by:705 946
Symbol 698 GraphicUsed by:705 946
Symbol 699 GraphicUsed by:705 946
Symbol 700 GraphicUsed by:705 946
Symbol 701 GraphicUsed by:705 946
Symbol 702 GraphicUsed by:705 946
Symbol 703 GraphicUsed by:705 946
Symbol 704 GraphicUsed by:705 946
Symbol 705 MovieClipUses:661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704Used by:Timeline
Symbol 706 GraphicUsed by:710
Symbol 707 GraphicUsed by:710
Symbol 708 GraphicUsed by:710
Symbol 709 GraphicUsed by:710
Symbol 710 MovieClipUses:706 707 708 709Used by:Timeline
Symbol 711 MovieClipUses:574Used by:911 944 957  Timeline
Symbol 712 BitmapUsed by:713
Symbol 713 GraphicUses:712Used by:730
Symbol 714 BitmapUsed by:715
Symbol 715 GraphicUses:714Used by:730
Symbol 716 BitmapUsed by:717
Symbol 717 GraphicUses:716Used by:730
Symbol 718 BitmapUsed by:719
Symbol 719 GraphicUses:718Used by:730
Symbol 720 BitmapUsed by:721
Symbol 721 GraphicUses:720Used by:730
Symbol 722 BitmapUsed by:723
Symbol 723 GraphicUses:722Used by:730
Symbol 724 BitmapUsed by:725
Symbol 725 GraphicUses:724Used by:730
Symbol 726 BitmapUsed by:727
Symbol 727 GraphicUses:726Used by:730
Symbol 728 BitmapUsed by:729
Symbol 729 GraphicUses:728Used by:730
Symbol 730 MovieClipUses:713 715 717 719 721 723 725 727 729Used by:911 944  Timeline
Symbol 731 BitmapUsed by:732
Symbol 732 GraphicUses:731Used by:857
Symbol 733 BitmapUsed by:734
Symbol 734 GraphicUses:733Used by:857
Symbol 735 BitmapUsed by:736
Symbol 736 GraphicUses:735Used by:857
Symbol 737 BitmapUsed by:738
Symbol 738 GraphicUses:737Used by:857
Symbol 739 BitmapUsed by:740
Symbol 740 GraphicUses:739Used by:857
Symbol 741 BitmapUsed by:742
Symbol 742 GraphicUses:741Used by:857
Symbol 743 BitmapUsed by:744
Symbol 744 GraphicUses:743Used by:857
Symbol 745 BitmapUsed by:746
Symbol 746 GraphicUses:745Used by:857
Symbol 747 BitmapUsed by:748
Symbol 748 GraphicUses:747Used by:857
Symbol 749 BitmapUsed by:750
Symbol 750 GraphicUses:749Used by:857
Symbol 751 BitmapUsed by:752
Symbol 752 GraphicUses:751Used by:857
Symbol 753 BitmapUsed by:754
Symbol 754 GraphicUses:753Used by:857
Symbol 755 BitmapUsed by:756
Symbol 756 GraphicUses:755Used by:857
Symbol 757 BitmapUsed by:758
Symbol 758 GraphicUses:757Used by:857
Symbol 759 BitmapUsed by:760
Symbol 760 GraphicUses:759Used by:857
Symbol 761 BitmapUsed by:762
Symbol 762 GraphicUses:761Used by:857
Symbol 763 BitmapUsed by:764
Symbol 764 GraphicUses:763Used by:857
Symbol 765 BitmapUsed by:766
Symbol 766 GraphicUses:765Used by:857
Symbol 767 BitmapUsed by:768
Symbol 768 GraphicUses:767Used by:857
Symbol 769 BitmapUsed by:770
Symbol 770 GraphicUses:769Used by:857
Symbol 771 BitmapUsed by:772
Symbol 772 GraphicUses:771Used by:857
Symbol 773 BitmapUsed by:774
Symbol 774 GraphicUses:773Used by:857
Symbol 775 BitmapUsed by:776
Symbol 776 GraphicUses:775Used by:857
Symbol 777 BitmapUsed by:778
Symbol 778 GraphicUses:777Used by:857
Symbol 779 BitmapUsed by:780
Symbol 780 GraphicUses:779Used by:857
Symbol 781 BitmapUsed by:782
Symbol 782 GraphicUses:781Used by:857
Symbol 783 BitmapUsed by:784
Symbol 784 GraphicUses:783Used by:857
Symbol 785 BitmapUsed by:786
Symbol 786 GraphicUses:785Used by:857
Symbol 787 BitmapUsed by:788
Symbol 788 GraphicUses:787Used by:857
Symbol 789 BitmapUsed by:790
Symbol 790 GraphicUses:789Used by:857
Symbol 791 BitmapUsed by:792
Symbol 792 GraphicUses:791Used by:857
Symbol 793 BitmapUsed by:794
Symbol 794 GraphicUses:793Used by:857
Symbol 795 BitmapUsed by:796
Symbol 796 GraphicUses:795Used by:857
Symbol 797 BitmapUsed by:798
Symbol 798 GraphicUses:797Used by:857
Symbol 799 BitmapUsed by:800
Symbol 800 GraphicUses:799Used by:857
Symbol 801 BitmapUsed by:802
Symbol 802 GraphicUses:801Used by:857
Symbol 803 BitmapUsed by:804
Symbol 804 GraphicUses:803Used by:857
Symbol 805 BitmapUsed by:806
Symbol 806 GraphicUses:805Used by:857
Symbol 807 BitmapUsed by:808
Symbol 808 GraphicUses:807Used by:857
Symbol 809 BitmapUsed by:810
Symbol 810 GraphicUses:809Used by:857
Symbol 811 BitmapUsed by:812
Symbol 812 GraphicUses:811Used by:857
Symbol 813 BitmapUsed by:814
Symbol 814 GraphicUses:813Used by:857
Symbol 815 BitmapUsed by:816
Symbol 816 GraphicUses:815Used by:857
Symbol 817 BitmapUsed by:818
Symbol 818 GraphicUses:817Used by:857
Symbol 819 BitmapUsed by:820
Symbol 820 GraphicUses:819Used by:857
Symbol 821 BitmapUsed by:822
Symbol 822 GraphicUses:821Used by:857
Symbol 823 BitmapUsed by:824
Symbol 824 GraphicUses:823Used by:857
Symbol 825 BitmapUsed by:826
Symbol 826 GraphicUses:825Used by:857
Symbol 827 BitmapUsed by:828
Symbol 828 GraphicUses:827Used by:857
Symbol 829 BitmapUsed by:830
Symbol 830 GraphicUses:829Used by:857
Symbol 831 BitmapUsed by:832
Symbol 832 GraphicUses:831Used by:857
Symbol 833 BitmapUsed by:834
Symbol 834 GraphicUses:833Used by:857
Symbol 835 BitmapUsed by:836
Symbol 836 GraphicUses:835Used by:857
Symbol 837 BitmapUsed by:838
Symbol 838 GraphicUses:837Used by:857
Symbol 839 BitmapUsed by:840
Symbol 840 GraphicUses:839Used by:857
Symbol 841 BitmapUsed by:842
Symbol 842 GraphicUses:841Used by:857
Symbol 843 BitmapUsed by:844
Symbol 844 GraphicUses:843Used by:857
Symbol 845 BitmapUsed by:846
Symbol 846 GraphicUses:845Used by:857
Symbol 847 BitmapUsed by:848
Symbol 848 GraphicUses:847Used by:857
Symbol 849 BitmapUsed by:850
Symbol 850 GraphicUses:849Used by:857
Symbol 851 BitmapUsed by:852
Symbol 852 GraphicUses:851Used by:857
Symbol 853 BitmapUsed by:854
Symbol 854 GraphicUses:853Used by:857
Symbol 855 BitmapUsed by:856
Symbol 856 GraphicUses:855Used by:857
Symbol 857 MovieClipUses:732 734 736 738 740 742 744 746 748 750 752 754 756 758 760 762 764 766 768 770 772 774 776 778 780 782 784 786 788 790 792 794 796 798 800 802 804 806 808 810 812 814 816 818 820 822 824 826 828 830 832 834 836 838 840 842 844 846 848 850 852 854 856Used by:Timeline
Symbol 858 GraphicUsed by:880
Symbol 859 GraphicUsed by:880
Symbol 860 GraphicUsed by:880
Symbol 861 GraphicUsed by:880
Symbol 862 GraphicUsed by:880
Symbol 863 GraphicUsed by:880
Symbol 864 GraphicUsed by:880
Symbol 865 GraphicUsed by:880
Symbol 866 GraphicUsed by:880
Symbol 867 GraphicUsed by:880
Symbol 868 GraphicUsed by:880
Symbol 869 GraphicUsed by:880
Symbol 870 GraphicUsed by:880
Symbol 871 GraphicUsed by:880
Symbol 872 GraphicUsed by:880
Symbol 873 GraphicUsed by:880
Symbol 874 GraphicUsed by:880
Symbol 875 GraphicUsed by:880
Symbol 876 GraphicUsed by:880
Symbol 877 GraphicUsed by:880
Symbol 878 GraphicUsed by:880
Symbol 879 GraphicUsed by:880 881
Symbol 880 MovieClipUses:858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879Used by:898
Symbol 881 MovieClipUses:879Used by:895
Symbol 882 GraphicUsed by:895
Symbol 883 GraphicUsed by:895
Symbol 884 GraphicUsed by:895
Symbol 885 GraphicUsed by:895
Symbol 886 GraphicUsed by:895
Symbol 887 GraphicUsed by:895
Symbol 888 GraphicUsed by:895
Symbol 889 GraphicUsed by:895
Symbol 890 GraphicUsed by:895
Symbol 891 GraphicUsed by:895
Symbol 892 GraphicUsed by:895
Symbol 893 GraphicUsed by:895
Symbol 894 GraphicUsed by:895
Symbol 895 MovieClipUses:881 882 883 884 885 886 887 888 889 890 891 892 893 894Used by:898
Symbol 896 GraphicUsed by:897 943
Symbol 897 MovieClipUses:896Used by:898  Timeline
Symbol 898 MovieClipUses:880 895 897Used by:911 944  Timeline
Symbol 899 GraphicUsed by:902
Symbol 900 GraphicUsed by:902
Symbol 901 GraphicUsed by:902
Symbol 902 MovieClipUses:899 900 901Used by:Timeline
Symbol 903 BitmapUsed by:904
Symbol 904 GraphicUses:903Used by:909
Symbol 905 BitmapUsed by:906
Symbol 906 GraphicUses:905Used by:909
Symbol 907 BitmapUsed by:908
Symbol 908 GraphicUses:907Used by:909
Symbol 909 MovieClipUses:904 906 908Used by:Timeline
Symbol 910 GraphicUsed by:Timeline
Symbol 911 MovieClipUses:730 898 711Used by:Timeline
Symbol 912 BitmapUsed by:913
Symbol 913 GraphicUses:912Used by:924
Symbol 914 BitmapUsed by:915
Symbol 915 GraphicUses:914Used by:924
Symbol 916 BitmapUsed by:917
Symbol 917 GraphicUses:916Used by:924
Symbol 918 BitmapUsed by:919
Symbol 919 GraphicUses:918Used by:924
Symbol 920 BitmapUsed by:921
Symbol 921 GraphicUses:920Used by:924
Symbol 922 BitmapUsed by:923
Symbol 923 GraphicUses:922Used by:924
Symbol 924 MovieClipUses:913 915 917 919 921 923Used by:925
Symbol 925 MovieClipUses:924Used by:Timeline
Symbol 926 GraphicUsed by:930
Symbol 927 GraphicUsed by:930
Symbol 928 GraphicUsed by:930
Symbol 929 GraphicUsed by:930
Symbol 930 MovieClipUses:926 927 928 929Used by:Timeline
Symbol 931 GraphicUsed by:941
Symbol 932 GraphicUsed by:941
Symbol 933 GraphicUsed by:941
Symbol 934 GraphicUsed by:941
Symbol 935 GraphicUsed by:941
Symbol 936 GraphicUsed by:941
Symbol 937 GraphicUsed by:941
Symbol 938 GraphicUsed by:941
Symbol 939 GraphicUsed by:941
Symbol 940 GraphicUsed by:941
Symbol 941 MovieClipUses:931 932 933 934 935 936 937 938 939 940Used by:Timeline
Symbol 942 MovieClipUses:574Used by:Timeline
Symbol 943 MovieClipUses:896Used by:Timeline
Symbol 944 MovieClipUses:730 898 711Used by:Timeline
Symbol 945 MovieClipUses:616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659Used by:Timeline
Symbol 946 MovieClipUses:661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704Used by:Timeline
Symbol 947 GraphicUsed by:948
Symbol 948 MovieClipUses:947Used by:949 950
Symbol 949 MovieClipUses:948Used by:Timeline
Symbol 950 MovieClipUses:948Used by:Timeline
Symbol 951 GraphicUsed by:957
Symbol 952 GraphicUsed by:953
Symbol 953 MovieClipUses:952Used by:954
Symbol 954 MovieClipUses:953Used by:957
Symbol 955 GraphicUsed by:957
Symbol 956 GraphicUsed by:957
Symbol 957 MovieClipUses:951 954 955 81 711 956Used by:Timeline
Symbol 958 GraphicUsed by:959
Symbol 959 MovieClipUses:958Used by:Timeline
Streaming Sound 1Used by:Timeline

Instance Names

"ababa"Symbol 16 MovieClip Frame 1Symbol 9 MovieClip
"squig"Symbol 49 MovieClip Frame 1Symbol 47 MovieClip




http://swfchan.com/49/243994/info.shtml
Created: 2/1 -2022 12:21:57 Last modified: 2/1 -2022 12:21:57 Server time: 29/04 -2024 05:24:58